blob: 739887c6b286dcc4e3ce57817ca3ccc76700bd14 [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>
32#include <net/bluetooth/mgmt.h>
Marcel Holtmannac4b7232013-10-10 14:54:16 -070033
34#include "smp.h"
Johan Hedberg03811012010-12-08 00:21:06 +020035
Johan Hedberg2da9c552012-02-17 14:39:28 +020036#define MGMT_VERSION 1
Marcel Holtmann404566442014-01-28 15:39:01 -080037#define MGMT_REVISION 5
Johan Hedberg02d98122010-12-13 21:07:04 +020038
Johan Hedberge70bb2e2012-02-13 16:59:33 +020039static const u16 mgmt_commands[] = {
40 MGMT_OP_READ_INDEX_LIST,
41 MGMT_OP_READ_INFO,
42 MGMT_OP_SET_POWERED,
43 MGMT_OP_SET_DISCOVERABLE,
44 MGMT_OP_SET_CONNECTABLE,
45 MGMT_OP_SET_FAST_CONNECTABLE,
46 MGMT_OP_SET_PAIRABLE,
47 MGMT_OP_SET_LINK_SECURITY,
48 MGMT_OP_SET_SSP,
49 MGMT_OP_SET_HS,
50 MGMT_OP_SET_LE,
51 MGMT_OP_SET_DEV_CLASS,
52 MGMT_OP_SET_LOCAL_NAME,
53 MGMT_OP_ADD_UUID,
54 MGMT_OP_REMOVE_UUID,
55 MGMT_OP_LOAD_LINK_KEYS,
56 MGMT_OP_LOAD_LONG_TERM_KEYS,
57 MGMT_OP_DISCONNECT,
58 MGMT_OP_GET_CONNECTIONS,
59 MGMT_OP_PIN_CODE_REPLY,
60 MGMT_OP_PIN_CODE_NEG_REPLY,
61 MGMT_OP_SET_IO_CAPABILITY,
62 MGMT_OP_PAIR_DEVICE,
63 MGMT_OP_CANCEL_PAIR_DEVICE,
64 MGMT_OP_UNPAIR_DEVICE,
65 MGMT_OP_USER_CONFIRM_REPLY,
66 MGMT_OP_USER_CONFIRM_NEG_REPLY,
67 MGMT_OP_USER_PASSKEY_REPLY,
68 MGMT_OP_USER_PASSKEY_NEG_REPLY,
69 MGMT_OP_READ_LOCAL_OOB_DATA,
70 MGMT_OP_ADD_REMOTE_OOB_DATA,
71 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
72 MGMT_OP_START_DISCOVERY,
73 MGMT_OP_STOP_DISCOVERY,
74 MGMT_OP_CONFIRM_NAME,
75 MGMT_OP_BLOCK_DEVICE,
76 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070077 MGMT_OP_SET_DEVICE_ID,
Johan Hedberg4375f102013-09-25 13:26:10 +030078 MGMT_OP_SET_ADVERTISING,
Johan Hedberg0663ca22013-10-02 13:43:14 +030079 MGMT_OP_SET_BREDR,
Marcel Holtmannd13eafc2013-10-02 04:41:30 -070080 MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann7f72134e2013-10-11 14:44:58 -070081 MGMT_OP_SET_SCAN_PARAMS,
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -080082 MGMT_OP_SET_SECURE_CONN,
Marcel Holtmann4e39ac82014-01-31 11:55:22 -080083 MGMT_OP_SET_DEBUG_KEYS,
Johan Hedberg62b04cd2014-02-23 19:42:27 +020084 MGMT_OP_SET_PRIVACY,
Johan Hedberg41edf162014-02-18 10:19:35 +020085 MGMT_OP_LOAD_IRKS,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020086};
87
88static const u16 mgmt_events[] = {
89 MGMT_EV_CONTROLLER_ERROR,
90 MGMT_EV_INDEX_ADDED,
91 MGMT_EV_INDEX_REMOVED,
92 MGMT_EV_NEW_SETTINGS,
93 MGMT_EV_CLASS_OF_DEV_CHANGED,
94 MGMT_EV_LOCAL_NAME_CHANGED,
95 MGMT_EV_NEW_LINK_KEY,
96 MGMT_EV_NEW_LONG_TERM_KEY,
97 MGMT_EV_DEVICE_CONNECTED,
98 MGMT_EV_DEVICE_DISCONNECTED,
99 MGMT_EV_CONNECT_FAILED,
100 MGMT_EV_PIN_CODE_REQUEST,
101 MGMT_EV_USER_CONFIRM_REQUEST,
102 MGMT_EV_USER_PASSKEY_REQUEST,
103 MGMT_EV_AUTH_FAILED,
104 MGMT_EV_DEVICE_FOUND,
105 MGMT_EV_DISCOVERING,
106 MGMT_EV_DEVICE_BLOCKED,
107 MGMT_EV_DEVICE_UNBLOCKED,
108 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300109 MGMT_EV_PASSKEY_NOTIFY,
Marcel Holtmann1b60ef22014-02-21 21:35:30 -0800110 MGMT_EV_NEW_IRK,
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -0700111 MGMT_EV_NEW_CSRK,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200112};
113
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800114#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200115
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200116#define hdev_is_powered(hdev) (test_bit(HCI_UP, &hdev->flags) && \
117 !test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
118
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200119struct pending_cmd {
120 struct list_head list;
Johan Hedbergfc2f4b12011-11-09 13:58:56 +0200121 u16 opcode;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200122 int index;
Szymon Jancc68fb7f2011-03-22 13:12:19 +0100123 void *param;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200124 struct sock *sk;
Johan Hedberge9a416b2011-02-19 12:05:56 -0300125 void *user_data;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200126};
127
Johan Hedbergca69b792011-11-11 18:10:00 +0200128/* HCI to MGMT error code conversion table */
129static u8 mgmt_status_table[] = {
130 MGMT_STATUS_SUCCESS,
131 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
132 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
133 MGMT_STATUS_FAILED, /* Hardware Failure */
134 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
135 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
Johan Hedbergeadd6632014-01-13 17:15:53 +0200136 MGMT_STATUS_AUTH_FAILED, /* PIN or Key Missing */
Johan Hedbergca69b792011-11-11 18:10:00 +0200137 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
138 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
139 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
140 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
141 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
142 MGMT_STATUS_BUSY, /* Command Disallowed */
143 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
144 MGMT_STATUS_REJECTED, /* Rejected Security */
145 MGMT_STATUS_REJECTED, /* Rejected Personal */
146 MGMT_STATUS_TIMEOUT, /* Host Timeout */
147 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
148 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
149 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
150 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
151 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
152 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
153 MGMT_STATUS_BUSY, /* Repeated Attempts */
154 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
155 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
156 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
157 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
158 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
159 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
160 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
161 MGMT_STATUS_FAILED, /* Unspecified Error */
162 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
163 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
164 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
165 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
166 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
167 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
168 MGMT_STATUS_FAILED, /* Unit Link Key Used */
169 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
170 MGMT_STATUS_TIMEOUT, /* Instant Passed */
171 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
172 MGMT_STATUS_FAILED, /* Transaction Collision */
173 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
174 MGMT_STATUS_REJECTED, /* QoS Rejected */
175 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
176 MGMT_STATUS_REJECTED, /* Insufficient Security */
177 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
178 MGMT_STATUS_BUSY, /* Role Switch Pending */
179 MGMT_STATUS_FAILED, /* Slot Violation */
180 MGMT_STATUS_FAILED, /* Role Switch Failed */
181 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
182 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
183 MGMT_STATUS_BUSY, /* Host Busy Pairing */
184 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
185 MGMT_STATUS_BUSY, /* Controller Busy */
186 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
187 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
188 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
189 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
190 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
191};
192
193static u8 mgmt_status(u8 hci_status)
194{
195 if (hci_status < ARRAY_SIZE(mgmt_status_table))
196 return mgmt_status_table[hci_status];
197
198 return MGMT_STATUS_FAILED;
199}
200
Szymon Janc4e51eae2011-02-25 19:05:48 +0100201static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200202{
203 struct sk_buff *skb;
204 struct mgmt_hdr *hdr;
205 struct mgmt_ev_cmd_status *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300206 int err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200207
Szymon Janc34eb5252011-02-28 14:10:08 +0100208 BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200209
Andre Guedes790eff42012-06-07 19:05:46 -0300210 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200211 if (!skb)
212 return -ENOMEM;
213
214 hdr = (void *) skb_put(skb, sizeof(*hdr));
215
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700216 hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100217 hdr->index = cpu_to_le16(index);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200218 hdr->len = cpu_to_le16(sizeof(*ev));
219
220 ev = (void *) skb_put(skb, sizeof(*ev));
221 ev->status = status;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200222 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200223
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300224 err = sock_queue_rcv_skb(sk, skb);
225 if (err < 0)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200226 kfree_skb(skb);
227
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300228 return err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200229}
230
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200231static int cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300232 void *rp, size_t rp_len)
Johan Hedberg02d98122010-12-13 21:07:04 +0200233{
234 struct sk_buff *skb;
235 struct mgmt_hdr *hdr;
236 struct mgmt_ev_cmd_complete *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300237 int err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200238
239 BT_DBG("sock %p", sk);
240
Andre Guedes790eff42012-06-07 19:05:46 -0300241 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_KERNEL);
Johan Hedberg02d98122010-12-13 21:07:04 +0200242 if (!skb)
243 return -ENOMEM;
244
245 hdr = (void *) skb_put(skb, sizeof(*hdr));
Johan Hedberga38528f2011-01-22 06:46:43 +0200246
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700247 hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100248 hdr->index = cpu_to_le16(index);
Johan Hedberga38528f2011-01-22 06:46:43 +0200249 hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200250
Johan Hedberga38528f2011-01-22 06:46:43 +0200251 ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200252 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200253 ev->status = status;
Szymon Janc8020c162011-02-28 14:09:50 +0100254
255 if (rp)
256 memcpy(ev->data, rp, rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200257
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300258 err = sock_queue_rcv_skb(sk, skb);
259 if (err < 0)
Johan Hedberg02d98122010-12-13 21:07:04 +0200260 kfree_skb(skb);
261
Marcel Holtmanne5f0e152012-02-22 11:59:01 +0100262 return err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200263}
264
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300265static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
266 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200267{
268 struct mgmt_rp_read_version rp;
269
270 BT_DBG("sock %p", sk);
271
272 rp.version = MGMT_VERSION;
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700273 rp.revision = cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200274
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200275 return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300276 sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200277}
278
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300279static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
280 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200281{
282 struct mgmt_rp_read_commands *rp;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200283 const u16 num_commands = ARRAY_SIZE(mgmt_commands);
284 const u16 num_events = ARRAY_SIZE(mgmt_events);
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +0200285 __le16 *opcode;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200286 size_t rp_size;
287 int i, err;
288
289 BT_DBG("sock %p", sk);
290
291 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
292
293 rp = kmalloc(rp_size, GFP_KERNEL);
294 if (!rp)
295 return -ENOMEM;
296
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700297 rp->num_commands = cpu_to_le16(num_commands);
298 rp->num_events = cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200299
300 for (i = 0, opcode = rp->opcodes; i < num_commands; i++, opcode++)
301 put_unaligned_le16(mgmt_commands[i], opcode);
302
303 for (i = 0; i < num_events; i++, opcode++)
304 put_unaligned_le16(mgmt_events[i], opcode);
305
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200306 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300307 rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200308 kfree(rp);
309
310 return err;
311}
312
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300313static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
314 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200315{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200316 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200317 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200318 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200319 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300320 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200321
322 BT_DBG("sock %p", sk);
323
324 read_lock(&hci_dev_list_lock);
325
326 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300327 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmann1514b892013-10-06 08:25:01 -0700328 if (d->dev_type == HCI_BREDR)
329 count++;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200330 }
331
Johan Hedberga38528f2011-01-22 06:46:43 +0200332 rp_len = sizeof(*rp) + (2 * count);
333 rp = kmalloc(rp_len, GFP_ATOMIC);
334 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100335 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200336 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100337 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200338
Johan Hedberg476e44c2012-10-19 20:10:46 +0300339 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200340 list_for_each_entry(d, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200341 if (test_bit(HCI_SETUP, &d->dev_flags))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200342 continue;
343
Marcel Holtmann0736cfa2013-08-26 21:40:51 -0700344 if (test_bit(HCI_USER_CHANNEL, &d->dev_flags))
345 continue;
346
Marcel Holtmann1514b892013-10-06 08:25:01 -0700347 if (d->dev_type == HCI_BREDR) {
348 rp->index[count++] = cpu_to_le16(d->id);
349 BT_DBG("Added hci%u", d->id);
350 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200351 }
352
Johan Hedberg476e44c2012-10-19 20:10:46 +0300353 rp->num_controllers = cpu_to_le16(count);
354 rp_len = sizeof(*rp) + (2 * count);
355
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200356 read_unlock(&hci_dev_list_lock);
357
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200358 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300359 rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200360
Johan Hedberga38528f2011-01-22 06:46:43 +0200361 kfree(rp);
362
363 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200364}
365
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200366static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200367{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200368 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200369
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200370 settings |= MGMT_SETTING_POWERED;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200371 settings |= MGMT_SETTING_PAIRABLE;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800372 settings |= MGMT_SETTING_DEBUG_KEYS;
Johan Hedberg03811012010-12-08 00:21:06 +0200373
Andre Guedesed3fa312012-07-24 15:03:46 -0300374 if (lmp_bredr_capable(hdev)) {
Johan Hedberg33c525c2012-10-24 21:11:58 +0300375 settings |= MGMT_SETTING_CONNECTABLE;
Johan Hedberg1a47aee2013-03-15 17:07:06 -0500376 if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
377 settings |= MGMT_SETTING_FAST_CONNECTABLE;
Johan Hedberg33c525c2012-10-24 21:11:58 +0300378 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200379 settings |= MGMT_SETTING_BREDR;
380 settings |= MGMT_SETTING_LINK_SECURITY;
Marcel Holtmanna82974c2013-10-11 09:48:47 -0700381
382 if (lmp_ssp_capable(hdev)) {
383 settings |= MGMT_SETTING_SSP;
384 settings |= MGMT_SETTING_HS;
385 }
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800386
Marcel Holtmann5afeac142014-01-10 02:07:27 -0800387 if (lmp_sc_capable(hdev) ||
388 test_bit(HCI_FORCE_SC, &hdev->dev_flags))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800389 settings |= MGMT_SETTING_SECURE_CONN;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700390 }
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100391
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300392 if (lmp_le_capable(hdev)) {
Marcel Holtmann9d428202012-05-03 07:12:31 +0200393 settings |= MGMT_SETTING_LE;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300394 settings |= MGMT_SETTING_ADVERTISING;
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200395 settings |= MGMT_SETTING_PRIVACY;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300396 }
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200397
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200398 return settings;
399}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200400
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200401static u32 get_current_settings(struct hci_dev *hdev)
402{
403 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200404
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200405 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100406 settings |= MGMT_SETTING_POWERED;
407
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200408 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200409 settings |= MGMT_SETTING_CONNECTABLE;
410
Johan Hedberg1a4d3c42013-03-15 17:07:08 -0500411 if (test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags))
412 settings |= MGMT_SETTING_FAST_CONNECTABLE;
413
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200414 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200415 settings |= MGMT_SETTING_DISCOVERABLE;
416
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200417 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200418 settings |= MGMT_SETTING_PAIRABLE;
419
Johan Hedberg56f87902013-10-02 13:43:13 +0300420 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200421 settings |= MGMT_SETTING_BREDR;
422
Johan Hedberg06199cf2012-02-22 16:37:11 +0200423 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200424 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200425
Johan Hedberg47990ea2012-02-22 11:58:37 +0200426 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200427 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200428
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200429 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200430 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200431
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200432 if (test_bit(HCI_HS_ENABLED, &hdev->dev_flags))
433 settings |= MGMT_SETTING_HS;
434
Johan Hedbergf3d3444a2013-10-05 12:01:04 +0200435 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300436 settings |= MGMT_SETTING_ADVERTISING;
437
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800438 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags))
439 settings |= MGMT_SETTING_SECURE_CONN;
440
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800441 if (test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags))
442 settings |= MGMT_SETTING_DEBUG_KEYS;
443
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200444 if (test_bit(HCI_PRIVACY, &hdev->dev_flags))
445 settings |= MGMT_SETTING_PRIVACY;
446
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200447 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200448}
449
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300450#define PNP_INFO_SVCLASS_ID 0x1200
451
Johan Hedberg213202e2013-01-27 00:31:33 +0200452static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
453{
454 u8 *ptr = data, *uuids_start = NULL;
455 struct bt_uuid *uuid;
456
457 if (len < 4)
458 return ptr;
459
460 list_for_each_entry(uuid, &hdev->uuids, list) {
461 u16 uuid16;
462
463 if (uuid->size != 16)
464 continue;
465
466 uuid16 = get_unaligned_le16(&uuid->uuid[12]);
467 if (uuid16 < 0x1100)
468 continue;
469
470 if (uuid16 == PNP_INFO_SVCLASS_ID)
471 continue;
472
473 if (!uuids_start) {
474 uuids_start = ptr;
475 uuids_start[0] = 1;
476 uuids_start[1] = EIR_UUID16_ALL;
477 ptr += 2;
478 }
479
480 /* Stop if not enough space to put next UUID */
481 if ((ptr - data) + sizeof(u16) > len) {
482 uuids_start[1] = EIR_UUID16_SOME;
483 break;
484 }
485
486 *ptr++ = (uuid16 & 0x00ff);
487 *ptr++ = (uuid16 & 0xff00) >> 8;
488 uuids_start[0] += sizeof(uuid16);
489 }
490
491 return ptr;
492}
493
Johan Hedbergcdf19632013-01-27 00:31:34 +0200494static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
495{
496 u8 *ptr = data, *uuids_start = NULL;
497 struct bt_uuid *uuid;
498
499 if (len < 6)
500 return ptr;
501
502 list_for_each_entry(uuid, &hdev->uuids, list) {
503 if (uuid->size != 32)
504 continue;
505
506 if (!uuids_start) {
507 uuids_start = ptr;
508 uuids_start[0] = 1;
509 uuids_start[1] = EIR_UUID32_ALL;
510 ptr += 2;
511 }
512
513 /* Stop if not enough space to put next UUID */
514 if ((ptr - data) + sizeof(u32) > len) {
515 uuids_start[1] = EIR_UUID32_SOME;
516 break;
517 }
518
519 memcpy(ptr, &uuid->uuid[12], sizeof(u32));
520 ptr += sizeof(u32);
521 uuids_start[0] += sizeof(u32);
522 }
523
524 return ptr;
525}
526
Johan Hedbergc00d5752013-01-27 00:31:35 +0200527static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
528{
529 u8 *ptr = data, *uuids_start = NULL;
530 struct bt_uuid *uuid;
531
532 if (len < 18)
533 return ptr;
534
535 list_for_each_entry(uuid, &hdev->uuids, list) {
536 if (uuid->size != 128)
537 continue;
538
539 if (!uuids_start) {
540 uuids_start = ptr;
541 uuids_start[0] = 1;
542 uuids_start[1] = EIR_UUID128_ALL;
543 ptr += 2;
544 }
545
546 /* Stop if not enough space to put next UUID */
547 if ((ptr - data) + 16 > len) {
548 uuids_start[1] = EIR_UUID128_SOME;
549 break;
550 }
551
552 memcpy(ptr, uuid->uuid, 16);
553 ptr += 16;
554 uuids_start[0] += 16;
555 }
556
557 return ptr;
558}
559
Johan Hedbergeb2a8d22013-10-19 23:38:20 +0300560static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
561{
562 struct pending_cmd *cmd;
563
564 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
565 if (cmd->opcode == opcode)
566 return cmd;
567 }
568
569 return NULL;
570}
571
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700572static u8 create_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
573{
Marcel Holtmann7a5f4992013-10-16 00:16:49 -0700574 u8 ad_len = 0;
575 size_t name_len;
576
577 name_len = strlen(hdev->dev_name);
578 if (name_len > 0) {
579 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
580
581 if (name_len > max_len) {
582 name_len = max_len;
583 ptr[1] = EIR_NAME_SHORT;
584 } else
585 ptr[1] = EIR_NAME_COMPLETE;
586
587 ptr[0] = name_len + 1;
588
589 memcpy(ptr + 2, hdev->dev_name, name_len);
590
591 ad_len += (name_len + 2);
592 ptr += (name_len + 2);
593 }
594
595 return ad_len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700596}
597
598static void update_scan_rsp_data(struct hci_request *req)
599{
600 struct hci_dev *hdev = req->hdev;
601 struct hci_cp_le_set_scan_rsp_data cp;
602 u8 len;
603
Johan Hedberg7751ef12013-10-19 23:38:15 +0300604 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700605 return;
606
607 memset(&cp, 0, sizeof(cp));
608
609 len = create_scan_rsp_data(hdev, cp.data);
610
Johan Hedbergeb438b52013-10-16 15:31:07 +0300611 if (hdev->scan_rsp_data_len == len &&
612 memcmp(cp.data, hdev->scan_rsp_data, len) == 0)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700613 return;
614
Johan Hedbergeb438b52013-10-16 15:31:07 +0300615 memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
616 hdev->scan_rsp_data_len = len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700617
618 cp.length = len;
619
620 hci_req_add(req, HCI_OP_LE_SET_SCAN_RSP_DATA, sizeof(cp), &cp);
621}
622
Johan Hedberg9a43e252013-10-20 19:00:07 +0300623static u8 get_adv_discov_flags(struct hci_dev *hdev)
624{
625 struct pending_cmd *cmd;
626
627 /* If there's a pending mgmt command the flags will not yet have
628 * their final values, so check for this first.
629 */
630 cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
631 if (cmd) {
632 struct mgmt_mode *cp = cmd->param;
633 if (cp->val == 0x01)
634 return LE_AD_GENERAL;
635 else if (cp->val == 0x02)
636 return LE_AD_LIMITED;
637 } else {
638 if (test_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags))
639 return LE_AD_LIMITED;
640 else if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
641 return LE_AD_GENERAL;
642 }
643
644 return 0;
645}
646
Marcel Holtmann46cad2e2013-10-16 00:16:46 -0700647static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr)
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700648{
649 u8 ad_len = 0, flags = 0;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700650
Johan Hedberg9a43e252013-10-20 19:00:07 +0300651 flags |= get_adv_discov_flags(hdev);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700652
Johan Hedberge8340042014-01-30 11:16:50 -0800653 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700654 flags |= LE_AD_NO_BREDR;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700655
656 if (flags) {
657 BT_DBG("adv flags 0x%02x", flags);
658
659 ptr[0] = 2;
660 ptr[1] = EIR_FLAGS;
661 ptr[2] = flags;
662
663 ad_len += 3;
664 ptr += 3;
665 }
666
667 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) {
668 ptr[0] = 2;
669 ptr[1] = EIR_TX_POWER;
670 ptr[2] = (u8) hdev->adv_tx_power;
671
672 ad_len += 3;
673 ptr += 3;
674 }
675
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700676 return ad_len;
677}
678
Marcel Holtmann5947f4b2013-10-16 00:16:50 -0700679static void update_adv_data(struct hci_request *req)
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700680{
681 struct hci_dev *hdev = req->hdev;
682 struct hci_cp_le_set_adv_data cp;
683 u8 len;
684
Johan Hedberg10994ce2013-10-19 23:38:16 +0300685 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700686 return;
687
688 memset(&cp, 0, sizeof(cp));
689
Marcel Holtmann46cad2e2013-10-16 00:16:46 -0700690 len = create_adv_data(hdev, cp.data);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700691
692 if (hdev->adv_data_len == len &&
693 memcmp(cp.data, hdev->adv_data, len) == 0)
694 return;
695
696 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
697 hdev->adv_data_len = len;
698
699 cp.length = len;
700
701 hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
702}
703
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300704static void create_eir(struct hci_dev *hdev, u8 *data)
705{
706 u8 *ptr = data;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300707 size_t name_len;
708
709 name_len = strlen(hdev->dev_name);
710
711 if (name_len > 0) {
712 /* EIR Data type */
713 if (name_len > 48) {
714 name_len = 48;
715 ptr[1] = EIR_NAME_SHORT;
716 } else
717 ptr[1] = EIR_NAME_COMPLETE;
718
719 /* EIR Data length */
720 ptr[0] = name_len + 1;
721
722 memcpy(ptr + 2, hdev->dev_name, name_len);
723
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300724 ptr += (name_len + 2);
725 }
726
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100727 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700728 ptr[0] = 2;
729 ptr[1] = EIR_TX_POWER;
730 ptr[2] = (u8) hdev->inq_tx_power;
731
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700732 ptr += 3;
733 }
734
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700735 if (hdev->devid_source > 0) {
736 ptr[0] = 9;
737 ptr[1] = EIR_DEVICE_ID;
738
739 put_unaligned_le16(hdev->devid_source, ptr + 2);
740 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
741 put_unaligned_le16(hdev->devid_product, ptr + 6);
742 put_unaligned_le16(hdev->devid_version, ptr + 8);
743
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700744 ptr += 10;
745 }
746
Johan Hedberg213202e2013-01-27 00:31:33 +0200747 ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergcdf19632013-01-27 00:31:34 +0200748 ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergc00d5752013-01-27 00:31:35 +0200749 ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300750}
751
Johan Hedberg890ea892013-03-15 17:06:52 -0500752static void update_eir(struct hci_request *req)
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300753{
Johan Hedberg890ea892013-03-15 17:06:52 -0500754 struct hci_dev *hdev = req->hdev;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300755 struct hci_cp_write_eir cp;
756
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200757 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500758 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200759
Johan Hedberg976eb202012-10-24 21:12:01 +0300760 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500761 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300762
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200763 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500764 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300765
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200766 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500767 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300768
769 memset(&cp, 0, sizeof(cp));
770
771 create_eir(hdev, cp.data);
772
773 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -0500774 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300775
776 memcpy(hdev->eir, cp.data, sizeof(cp.data));
777
Johan Hedberg890ea892013-03-15 17:06:52 -0500778 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300779}
780
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200781static u8 get_service_classes(struct hci_dev *hdev)
782{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300783 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200784 u8 val = 0;
785
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300786 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200787 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200788
789 return val;
790}
791
Johan Hedberg890ea892013-03-15 17:06:52 -0500792static void update_class(struct hci_request *req)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200793{
Johan Hedberg890ea892013-03-15 17:06:52 -0500794 struct hci_dev *hdev = req->hdev;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200795 u8 cod[3];
796
797 BT_DBG("%s", hdev->name);
798
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200799 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500800 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200801
Johan Hedbergf87ea1d2013-10-19 23:38:17 +0300802 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
803 return;
804
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200805 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500806 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200807
808 cod[0] = hdev->minor_class;
809 cod[1] = hdev->major_class;
810 cod[2] = get_service_classes(hdev);
811
Marcel Holtmann6acd7db2013-10-15 06:33:53 -0700812 if (test_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags))
813 cod[1] |= 0x20;
814
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200815 if (memcmp(cod, hdev->dev_class, 3) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -0500816 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200817
Johan Hedberg890ea892013-03-15 17:06:52 -0500818 hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200819}
820
Johan Hedberga4858cb2014-02-25 19:56:31 +0200821static bool get_connectable(struct hci_dev *hdev)
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200822{
823 struct pending_cmd *cmd;
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200824
825 /* If there's a pending mgmt command the flag will not yet have
826 * it's final value, so check for this first.
827 */
828 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
829 if (cmd) {
830 struct mgmt_mode *cp = cmd->param;
Johan Hedberga4858cb2014-02-25 19:56:31 +0200831 return cp->val;
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200832 }
833
Johan Hedberga4858cb2014-02-25 19:56:31 +0200834 return test_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200835}
836
837static void enable_advertising(struct hci_request *req)
838{
839 struct hci_dev *hdev = req->hdev;
840 struct hci_cp_le_set_adv_param cp;
Johan Hedberg8f2a0602014-02-23 19:42:23 +0200841 u8 own_addr_type, enable = 0x01;
Johan Hedberga4858cb2014-02-25 19:56:31 +0200842 bool connectable;
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200843
Johan Hedberg8d972502014-02-28 12:54:14 +0200844 /* Clear the HCI_ADVERTISING bit temporarily so that the
845 * hci_update_random_address knows that it's safe to go ahead
846 * and write a new random address. The flag will be set back on
847 * as soon as the SET_ADV_ENABLE HCI command completes.
848 */
849 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
850
Johan Hedberga4858cb2014-02-25 19:56:31 +0200851 connectable = get_connectable(hdev);
Johan Hedberg8f2a0602014-02-23 19:42:23 +0200852
Johan Hedberga4858cb2014-02-25 19:56:31 +0200853 /* Set require_privacy to true only when non-connectable
854 * advertising is used. In that case it is fine to use a
855 * non-resolvable private address.
856 */
857 if (hci_update_random_address(req, !connectable, &own_addr_type) < 0)
Johan Hedberg8f2a0602014-02-23 19:42:23 +0200858 return;
859
Marcel Holtmann41c90c12014-02-23 20:25:55 -0800860 memset(&cp, 0, sizeof(cp));
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700861 cp.min_interval = cpu_to_le16(0x0800);
862 cp.max_interval = cpu_to_le16(0x0800);
Johan Hedberga4858cb2014-02-25 19:56:31 +0200863 cp.type = connectable ? LE_ADV_IND : LE_ADV_NONCONN_IND;
Johan Hedberg8f2a0602014-02-23 19:42:23 +0200864 cp.own_address_type = own_addr_type;
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200865 cp.channel_map = hdev->le_adv_channel_map;
866
867 hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);
868
869 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
870}
871
872static void disable_advertising(struct hci_request *req)
873{
874 u8 enable = 0x00;
875
876 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
877}
878
Johan Hedberg7d785252011-12-15 00:47:39 +0200879static void service_cache_off(struct work_struct *work)
880{
881 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300882 service_cache.work);
Johan Hedberg890ea892013-03-15 17:06:52 -0500883 struct hci_request req;
Johan Hedberg7d785252011-12-15 00:47:39 +0200884
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200885 if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +0200886 return;
887
Johan Hedberg890ea892013-03-15 17:06:52 -0500888 hci_req_init(&req, hdev);
889
Johan Hedberg7d785252011-12-15 00:47:39 +0200890 hci_dev_lock(hdev);
891
Johan Hedberg890ea892013-03-15 17:06:52 -0500892 update_eir(&req);
893 update_class(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +0200894
895 hci_dev_unlock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -0500896
897 hci_req_run(&req, NULL);
Johan Hedberg7d785252011-12-15 00:47:39 +0200898}
899
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200900static void rpa_expired(struct work_struct *work)
901{
902 struct hci_dev *hdev = container_of(work, struct hci_dev,
903 rpa_expired.work);
904 struct hci_request req;
905
906 BT_DBG("");
907
908 set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
909
910 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags) ||
911 hci_conn_num(hdev, LE_LINK) > 0)
912 return;
913
914 /* The generation of a new RPA and programming it into the
915 * controller happens in the enable_advertising() function.
916 */
917
918 hci_req_init(&req, hdev);
919
920 disable_advertising(&req);
921 enable_advertising(&req);
922
923 hci_req_run(&req, NULL);
924}
925
Johan Hedberg6a919082012-02-28 06:17:26 +0200926static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +0200927{
Johan Hedberg4f87da82012-03-02 19:55:56 +0200928 if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg6a919082012-02-28 06:17:26 +0200929 return;
930
Johan Hedberg4f87da82012-03-02 19:55:56 +0200931 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200932 INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
Johan Hedberg7d785252011-12-15 00:47:39 +0200933
Johan Hedberg4f87da82012-03-02 19:55:56 +0200934 /* Non-mgmt controlled devices get this bit set
935 * implicitly so that pairing works for them, however
936 * for mgmt we require user-space to explicitly enable
937 * it
938 */
939 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedberg7d785252011-12-15 00:47:39 +0200940}
941
Johan Hedberg0f4e68c2012-02-28 17:18:30 +0200942static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300943 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +0200944{
945 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +0200946
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200947 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200948
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300949 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200950
Johan Hedberg03811012010-12-08 00:21:06 +0200951 memset(&rp, 0, sizeof(rp));
952
Johan Hedberg03811012010-12-08 00:21:06 +0200953 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200954
955 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200956 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200957
958 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
959 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
960
961 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +0200962
963 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +0200964 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +0200965
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300966 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200967
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200968 return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300969 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +0200970}
971
972static void mgmt_pending_free(struct pending_cmd *cmd)
973{
974 sock_put(cmd->sk);
975 kfree(cmd->param);
976 kfree(cmd);
977}
978
979static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300980 struct hci_dev *hdev, void *data,
981 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200982{
983 struct pending_cmd *cmd;
984
Andre Guedes12b94562012-06-07 19:05:45 -0300985 cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200986 if (!cmd)
987 return NULL;
988
989 cmd->opcode = opcode;
990 cmd->index = hdev->id;
991
Andre Guedes12b94562012-06-07 19:05:45 -0300992 cmd->param = kmalloc(len, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200993 if (!cmd->param) {
994 kfree(cmd);
995 return NULL;
996 }
997
998 if (data)
999 memcpy(cmd->param, data, len);
1000
1001 cmd->sk = sk;
1002 sock_hold(sk);
1003
1004 list_add(&cmd->list, &hdev->mgmt_pending);
1005
1006 return cmd;
1007}
1008
1009static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001010 void (*cb)(struct pending_cmd *cmd,
1011 void *data),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001012 void *data)
Johan Hedberg03811012010-12-08 00:21:06 +02001013{
Andre Guedesa3d09352013-02-01 11:21:30 -03001014 struct pending_cmd *cmd, *tmp;
Johan Hedberg03811012010-12-08 00:21:06 +02001015
Andre Guedesa3d09352013-02-01 11:21:30 -03001016 list_for_each_entry_safe(cmd, tmp, &hdev->mgmt_pending, list) {
Johan Hedberg03811012010-12-08 00:21:06 +02001017 if (opcode > 0 && cmd->opcode != opcode)
1018 continue;
1019
1020 cb(cmd, data);
1021 }
1022}
1023
Johan Hedberg03811012010-12-08 00:21:06 +02001024static void mgmt_pending_remove(struct pending_cmd *cmd)
1025{
1026 list_del(&cmd->list);
1027 mgmt_pending_free(cmd);
1028}
1029
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001030static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +02001031{
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001032 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +02001033
Johan Hedbergaee9b2182012-02-18 15:07:59 +02001034 return cmd_complete(sk, hdev->id, opcode, 0, &settings,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001035 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +02001036}
1037
Johan Hedberg8b064a32014-02-24 14:52:22 +02001038static void clean_up_hci_complete(struct hci_dev *hdev, u8 status)
1039{
1040 BT_DBG("%s status 0x%02x", hdev->name, status);
1041
Johan Hedberga3172b72014-02-28 09:33:44 +02001042 if (hci_conn_count(hdev) == 0) {
1043 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001044 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02001045 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001046}
1047
1048static int clean_up_hci_state(struct hci_dev *hdev)
1049{
1050 struct hci_request req;
1051 struct hci_conn *conn;
1052
1053 hci_req_init(&req, hdev);
1054
1055 if (test_bit(HCI_ISCAN, &hdev->flags) ||
1056 test_bit(HCI_PSCAN, &hdev->flags)) {
1057 u8 scan = 0x00;
1058 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1059 }
1060
1061 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
1062 disable_advertising(&req);
1063
1064 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags)) {
Andre Guedesb1efcc22014-02-26 20:21:40 -03001065 hci_req_add_le_scan_disable(&req);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001066 }
1067
1068 list_for_each_entry(conn, &hdev->conn_hash.list, list) {
1069 struct hci_cp_disconnect dc;
Johan Hedbergc9910d02014-02-27 14:35:12 +02001070 struct hci_cp_reject_conn_req rej;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001071
Johan Hedbergc9910d02014-02-27 14:35:12 +02001072 switch (conn->state) {
1073 case BT_CONNECTED:
1074 case BT_CONFIG:
1075 dc.handle = cpu_to_le16(conn->handle);
1076 dc.reason = 0x15; /* Terminated due to Power Off */
1077 hci_req_add(&req, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1078 break;
1079 case BT_CONNECT:
1080 if (conn->type == LE_LINK)
1081 hci_req_add(&req, HCI_OP_LE_CREATE_CONN_CANCEL,
1082 0, NULL);
1083 else if (conn->type == ACL_LINK)
1084 hci_req_add(&req, HCI_OP_CREATE_CONN_CANCEL,
1085 6, &conn->dst);
1086 break;
1087 case BT_CONNECT2:
1088 bacpy(&rej.bdaddr, &conn->dst);
1089 rej.reason = 0x15; /* Terminated due to Power Off */
1090 if (conn->type == ACL_LINK)
1091 hci_req_add(&req, HCI_OP_REJECT_CONN_REQ,
1092 sizeof(rej), &rej);
1093 else if (conn->type == SCO_LINK)
1094 hci_req_add(&req, HCI_OP_REJECT_SYNC_CONN_REQ,
1095 sizeof(rej), &rej);
1096 break;
1097 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001098 }
1099
1100 return hci_req_run(&req, clean_up_hci_complete);
1101}
1102
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001103static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001104 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001105{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001106 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +02001107 struct pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001108 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001109
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001110 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001111
Johan Hedberga7e80f22013-01-09 16:05:19 +02001112 if (cp->val != 0x00 && cp->val != 0x01)
1113 return cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1114 MGMT_STATUS_INVALID_PARAMS);
1115
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001116 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001117
Johan Hedberg87b95ba2013-09-25 13:26:06 +03001118 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
1119 err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1120 MGMT_STATUS_BUSY);
1121 goto failed;
1122 }
1123
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001124 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
1125 cancel_delayed_work(&hdev->power_off);
1126
1127 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +02001128 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
1129 data, len);
1130 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001131 goto failed;
1132 }
1133 }
1134
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001135 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001136 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001137 goto failed;
1138 }
1139
Johan Hedberg03811012010-12-08 00:21:06 +02001140 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1141 if (!cmd) {
1142 err = -ENOMEM;
1143 goto failed;
1144 }
1145
Johan Hedberg8b064a32014-02-24 14:52:22 +02001146 if (cp->val) {
Johan Hedberg19202572013-01-14 22:33:51 +02001147 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001148 err = 0;
1149 } else {
1150 /* Disconnect connections, stop scans, etc */
1151 err = clean_up_hci_state(hdev);
Johan Hedberga3172b72014-02-28 09:33:44 +02001152 if (!err)
1153 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1154 HCI_POWER_OFF_TIMEOUT);
Johan Hedberg03811012010-12-08 00:21:06 +02001155
Johan Hedberg8b064a32014-02-24 14:52:22 +02001156 /* ENODATA means there were no HCI commands queued */
1157 if (err == -ENODATA) {
Johan Hedberga3172b72014-02-28 09:33:44 +02001158 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001159 queue_work(hdev->req_workqueue, &hdev->power_off.work);
1160 err = 0;
1161 }
1162 }
Johan Hedberg03811012010-12-08 00:21:06 +02001163
1164failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001165 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001166 return err;
1167}
1168
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001169static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len,
1170 struct sock *skip_sk)
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001171{
1172 struct sk_buff *skb;
1173 struct mgmt_hdr *hdr;
1174
Andre Guedes790eff42012-06-07 19:05:46 -03001175 skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001176 if (!skb)
1177 return -ENOMEM;
1178
1179 hdr = (void *) skb_put(skb, sizeof(*hdr));
1180 hdr->opcode = cpu_to_le16(event);
1181 if (hdev)
1182 hdr->index = cpu_to_le16(hdev->id);
1183 else
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001184 hdr->index = cpu_to_le16(MGMT_INDEX_NONE);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001185 hdr->len = cpu_to_le16(data_len);
1186
1187 if (data)
1188 memcpy(skb_put(skb, data_len), data, data_len);
1189
Marcel Holtmann97e0bde2012-02-22 13:49:28 +01001190 /* Time stamp */
1191 __net_timestamp(skb);
1192
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001193 hci_send_to_control(skb, skip_sk);
1194 kfree_skb(skb);
1195
1196 return 0;
1197}
1198
1199static int new_settings(struct hci_dev *hdev, struct sock *skip)
1200{
1201 __le32 ev;
1202
1203 ev = cpu_to_le32(get_current_settings(hdev));
1204
1205 return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
1206}
1207
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001208struct cmd_lookup {
1209 struct sock *sk;
1210 struct hci_dev *hdev;
1211 u8 mgmt_status;
1212};
1213
1214static void settings_rsp(struct pending_cmd *cmd, void *data)
1215{
1216 struct cmd_lookup *match = data;
1217
1218 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
1219
1220 list_del(&cmd->list);
1221
1222 if (match->sk == NULL) {
1223 match->sk = cmd->sk;
1224 sock_hold(match->sk);
1225 }
1226
1227 mgmt_pending_free(cmd);
1228}
1229
1230static void cmd_status_rsp(struct pending_cmd *cmd, void *data)
1231{
1232 u8 *status = data;
1233
1234 cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
1235 mgmt_pending_remove(cmd);
1236}
1237
Johan Hedberge6fe7982013-10-02 15:45:22 +03001238static u8 mgmt_bredr_support(struct hci_dev *hdev)
1239{
1240 if (!lmp_bredr_capable(hdev))
1241 return MGMT_STATUS_NOT_SUPPORTED;
1242 else if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1243 return MGMT_STATUS_REJECTED;
1244 else
1245 return MGMT_STATUS_SUCCESS;
1246}
1247
1248static u8 mgmt_le_support(struct hci_dev *hdev)
1249{
1250 if (!lmp_le_capable(hdev))
1251 return MGMT_STATUS_NOT_SUPPORTED;
1252 else if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
1253 return MGMT_STATUS_REJECTED;
1254 else
1255 return MGMT_STATUS_SUCCESS;
1256}
1257
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001258static void set_discoverable_complete(struct hci_dev *hdev, u8 status)
1259{
1260 struct pending_cmd *cmd;
1261 struct mgmt_mode *cp;
Marcel Holtmann970ba522013-10-15 06:33:57 -07001262 struct hci_request req;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001263 bool changed;
1264
1265 BT_DBG("status 0x%02x", status);
1266
1267 hci_dev_lock(hdev);
1268
1269 cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
1270 if (!cmd)
1271 goto unlock;
1272
1273 if (status) {
1274 u8 mgmt_err = mgmt_status(status);
1275 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001276 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001277 goto remove_cmd;
1278 }
1279
1280 cp = cmd->param;
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001281 if (cp->val) {
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001282 changed = !test_and_set_bit(HCI_DISCOVERABLE,
1283 &hdev->dev_flags);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001284
1285 if (hdev->discov_timeout > 0) {
1286 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1287 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1288 to);
1289 }
1290 } else {
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001291 changed = test_and_clear_bit(HCI_DISCOVERABLE,
1292 &hdev->dev_flags);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001293 }
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001294
1295 send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1296
1297 if (changed)
1298 new_settings(hdev, cmd->sk);
1299
Marcel Holtmann970ba522013-10-15 06:33:57 -07001300 /* When the discoverable mode gets changed, make sure
1301 * that class of device has the limited discoverable
1302 * bit correctly set.
1303 */
1304 hci_req_init(&req, hdev);
1305 update_class(&req);
1306 hci_req_run(&req, NULL);
1307
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001308remove_cmd:
1309 mgmt_pending_remove(cmd);
1310
1311unlock:
1312 hci_dev_unlock(hdev);
1313}
1314
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001315static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001316 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001317{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001318 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +02001319 struct pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001320 struct hci_request req;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001321 u16 timeout;
Johan Hedberg9a43e252013-10-20 19:00:07 +03001322 u8 scan;
Johan Hedberg03811012010-12-08 00:21:06 +02001323 int err;
1324
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001325 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001326
Johan Hedberg9a43e252013-10-20 19:00:07 +03001327 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
1328 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg33c525c2012-10-24 21:11:58 +03001329 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Johan Hedberg9a43e252013-10-20 19:00:07 +03001330 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001331
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001332 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga7e80f22013-01-09 16:05:19 +02001333 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1334 MGMT_STATUS_INVALID_PARAMS);
1335
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001336 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001337
1338 /* Disabling discoverable requires that no timeout is set,
1339 * and enabling limited discoverable requires a timeout.
1340 */
1341 if ((cp->val == 0x00 && timeout > 0) ||
1342 (cp->val == 0x02 && timeout == 0))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001343 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001344 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001345
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001346 hci_dev_lock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001347
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001348 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001349 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001350 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001351 goto failed;
1352 }
1353
1354 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001355 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001356 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001357 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001358 goto failed;
1359 }
1360
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001361 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001362 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001363 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001364 goto failed;
1365 }
1366
1367 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001368 bool changed = false;
1369
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001370 /* Setting limited discoverable when powered off is
1371 * not a valid operation since it requires a timeout
1372 * and so no need to check HCI_LIMITED_DISCOVERABLE.
1373 */
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001374 if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
1375 change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1376 changed = true;
1377 }
1378
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001379 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001380 if (err < 0)
1381 goto failed;
1382
1383 if (changed)
1384 err = new_settings(hdev, sk);
1385
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001386 goto failed;
1387 }
1388
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001389 /* If the current mode is the same, then just update the timeout
1390 * value with the new value. And if only the timeout gets updated,
1391 * then no need for any HCI transactions.
1392 */
1393 if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags) &&
1394 (cp->val == 0x02) == test_bit(HCI_LIMITED_DISCOVERABLE,
1395 &hdev->dev_flags)) {
Marcel Holtmann36261542013-10-15 08:28:51 -07001396 cancel_delayed_work(&hdev->discov_off);
1397 hdev->discov_timeout = timeout;
Marcel Holtmann955638e2012-02-22 18:21:00 +01001398
Marcel Holtmann36261542013-10-15 08:28:51 -07001399 if (cp->val && hdev->discov_timeout > 0) {
1400 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001401 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Marcel Holtmann36261542013-10-15 08:28:51 -07001402 to);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001403 }
1404
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001405 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001406 goto failed;
1407 }
1408
1409 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1410 if (!cmd) {
1411 err = -ENOMEM;
1412 goto failed;
1413 }
1414
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001415 /* Cancel any potential discoverable timeout that might be
1416 * still active and store new timeout value. The arming of
1417 * the timeout happens in the complete handler.
1418 */
1419 cancel_delayed_work(&hdev->discov_off);
1420 hdev->discov_timeout = timeout;
1421
Johan Hedbergb456f872013-10-19 23:38:22 +03001422 /* Limited discoverable mode */
1423 if (cp->val == 0x02)
1424 set_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1425 else
1426 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1427
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001428 hci_req_init(&req, hdev);
1429
Johan Hedberg9a43e252013-10-20 19:00:07 +03001430 /* The procedure for LE-only controllers is much simpler - just
1431 * update the advertising data.
1432 */
1433 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1434 goto update_ad;
1435
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001436 scan = SCAN_PAGE;
1437
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001438 if (cp->val) {
1439 struct hci_cp_write_current_iac_lap hci_cp;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001440
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001441 if (cp->val == 0x02) {
1442 /* Limited discoverable mode */
Marcel Holtmann33337dc2013-10-23 08:28:01 -07001443 hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001444 hci_cp.iac_lap[0] = 0x00; /* LIAC */
1445 hci_cp.iac_lap[1] = 0x8b;
1446 hci_cp.iac_lap[2] = 0x9e;
1447 hci_cp.iac_lap[3] = 0x33; /* GIAC */
1448 hci_cp.iac_lap[4] = 0x8b;
1449 hci_cp.iac_lap[5] = 0x9e;
1450 } else {
1451 /* General discoverable mode */
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001452 hci_cp.num_iac = 1;
1453 hci_cp.iac_lap[0] = 0x33; /* GIAC */
1454 hci_cp.iac_lap[1] = 0x8b;
1455 hci_cp.iac_lap[2] = 0x9e;
1456 }
1457
1458 hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP,
1459 (hci_cp.num_iac * 3) + 1, &hci_cp);
1460
1461 scan |= SCAN_INQUIRY;
1462 } else {
1463 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1464 }
1465
1466 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001467
Johan Hedberg9a43e252013-10-20 19:00:07 +03001468update_ad:
1469 update_adv_data(&req);
1470
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001471 err = hci_req_run(&req, set_discoverable_complete);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001472 if (err < 0)
1473 mgmt_pending_remove(cmd);
1474
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001475failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001476 hci_dev_unlock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001477 return err;
1478}
1479
Johan Hedberg406d7802013-03-15 17:07:09 -05001480static void write_fast_connectable(struct hci_request *req, bool enable)
1481{
Johan Hedbergbd98b992013-03-15 17:07:13 -05001482 struct hci_dev *hdev = req->hdev;
Johan Hedberg406d7802013-03-15 17:07:09 -05001483 struct hci_cp_write_page_scan_activity acp;
1484 u8 type;
1485
Johan Hedberg547003b2013-10-21 16:51:53 +03001486 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1487 return;
1488
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001489 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
1490 return;
1491
Johan Hedberg406d7802013-03-15 17:07:09 -05001492 if (enable) {
1493 type = PAGE_SCAN_TYPE_INTERLACED;
1494
1495 /* 160 msec page scan interval */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001496 acp.interval = cpu_to_le16(0x0100);
Johan Hedberg406d7802013-03-15 17:07:09 -05001497 } else {
1498 type = PAGE_SCAN_TYPE_STANDARD; /* default */
1499
1500 /* default 1.28 sec page scan */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001501 acp.interval = cpu_to_le16(0x0800);
Johan Hedberg406d7802013-03-15 17:07:09 -05001502 }
1503
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001504 acp.window = cpu_to_le16(0x0012);
Johan Hedberg406d7802013-03-15 17:07:09 -05001505
Johan Hedbergbd98b992013-03-15 17:07:13 -05001506 if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
1507 __cpu_to_le16(hdev->page_scan_window) != acp.window)
1508 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
1509 sizeof(acp), &acp);
1510
1511 if (hdev->page_scan_type != type)
1512 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
Johan Hedberg406d7802013-03-15 17:07:09 -05001513}
1514
Johan Hedberg2b76f452013-03-15 17:07:04 -05001515static void set_connectable_complete(struct hci_dev *hdev, u8 status)
1516{
1517 struct pending_cmd *cmd;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001518 struct mgmt_mode *cp;
1519 bool changed;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001520
1521 BT_DBG("status 0x%02x", status);
1522
1523 hci_dev_lock(hdev);
1524
1525 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
1526 if (!cmd)
1527 goto unlock;
1528
Johan Hedberg37438c12013-10-14 16:20:05 +03001529 if (status) {
1530 u8 mgmt_err = mgmt_status(status);
1531 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1532 goto remove_cmd;
1533 }
1534
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001535 cp = cmd->param;
1536 if (cp->val)
1537 changed = !test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1538 else
1539 changed = test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1540
Johan Hedberg2b76f452013-03-15 17:07:04 -05001541 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
1542
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001543 if (changed)
1544 new_settings(hdev, cmd->sk);
1545
Johan Hedberg37438c12013-10-14 16:20:05 +03001546remove_cmd:
Johan Hedberg2b76f452013-03-15 17:07:04 -05001547 mgmt_pending_remove(cmd);
1548
1549unlock:
1550 hci_dev_unlock(hdev);
1551}
1552
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001553static int set_connectable_update_settings(struct hci_dev *hdev,
1554 struct sock *sk, u8 val)
1555{
1556 bool changed = false;
1557 int err;
1558
1559 if (!!val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
1560 changed = true;
1561
1562 if (val) {
1563 set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1564 } else {
1565 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1566 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1567 }
1568
1569 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
1570 if (err < 0)
1571 return err;
1572
1573 if (changed)
1574 return new_settings(hdev, sk);
1575
1576 return 0;
1577}
1578
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001579static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001580 u16 len)
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001581{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001582 struct mgmt_mode *cp = data;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001583 struct pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001584 struct hci_request req;
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001585 u8 scan;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001586 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001587
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001588 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +02001589
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001590 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
1591 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg33c525c2012-10-24 21:11:58 +03001592 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001593 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001594
Johan Hedberga7e80f22013-01-09 16:05:19 +02001595 if (cp->val != 0x00 && cp->val != 0x01)
1596 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
1597 MGMT_STATUS_INVALID_PARAMS);
1598
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001599 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001600
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001601 if (!hdev_is_powered(hdev)) {
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001602 err = set_connectable_update_settings(hdev, sk, cp->val);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001603 goto failed;
1604 }
1605
1606 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001607 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001608 err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001609 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001610 goto failed;
1611 }
1612
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001613 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1614 if (!cmd) {
1615 err = -ENOMEM;
1616 goto failed;
1617 }
1618
Johan Hedberg2b76f452013-03-15 17:07:04 -05001619 hci_req_init(&req, hdev);
1620
Johan Hedberg9a43e252013-10-20 19:00:07 +03001621 /* If BR/EDR is not enabled and we disable advertising as a
1622 * by-product of disabling connectable, we need to update the
1623 * advertising flags.
1624 */
1625 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
1626 if (!cp->val) {
1627 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1628 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1629 }
1630 update_adv_data(&req);
1631 } else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg9b742462013-10-14 16:20:03 +03001632 if (cp->val) {
1633 scan = SCAN_PAGE;
1634 } else {
1635 scan = 0;
1636
1637 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Marcel Holtmann8d6083f2013-10-14 16:38:45 -07001638 hdev->discov_timeout > 0)
Johan Hedberg9b742462013-10-14 16:20:03 +03001639 cancel_delayed_work(&hdev->discov_off);
1640 }
1641
1642 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1643 }
Johan Hedberg2b76f452013-03-15 17:07:04 -05001644
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001645 /* If we're going from non-connectable to connectable or
1646 * vice-versa when fast connectable is enabled ensure that fast
1647 * connectable gets disabled. write_fast_connectable won't do
1648 * anything if the page scan parameters are already what they
1649 * should be.
1650 */
1651 if (cp->val || test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags))
Johan Hedberge36a3762013-03-15 17:07:10 -05001652 write_fast_connectable(&req, false);
1653
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001654 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags) &&
1655 hci_conn_num(hdev, LE_LINK) == 0) {
1656 disable_advertising(&req);
1657 enable_advertising(&req);
1658 }
1659
Johan Hedberg2b76f452013-03-15 17:07:04 -05001660 err = hci_req_run(&req, set_connectable_complete);
Johan Hedberg9b742462013-10-14 16:20:03 +03001661 if (err < 0) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001662 mgmt_pending_remove(cmd);
Johan Hedberg9b742462013-10-14 16:20:03 +03001663 if (err == -ENODATA)
Johan Hedberga81070b2013-10-19 23:38:19 +03001664 err = set_connectable_update_settings(hdev, sk,
1665 cp->val);
Johan Hedberg9b742462013-10-14 16:20:03 +03001666 goto failed;
1667 }
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001668
1669failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001670 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001671 return err;
1672}
1673
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001674static int set_pairable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001675 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001676{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001677 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07001678 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001679 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001680
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001681 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001682
Johan Hedberga7e80f22013-01-09 16:05:19 +02001683 if (cp->val != 0x00 && cp->val != 0x01)
1684 return cmd_status(sk, hdev->id, MGMT_OP_SET_PAIRABLE,
1685 MGMT_STATUS_INVALID_PARAMS);
1686
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001687 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001688
1689 if (cp->val)
Marcel Holtmann55594352013-10-06 16:11:57 -07001690 changed = !test_and_set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001691 else
Marcel Holtmann55594352013-10-06 16:11:57 -07001692 changed = test_and_clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001693
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001694 err = send_settings_rsp(sk, MGMT_OP_SET_PAIRABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001695 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07001696 goto unlock;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001697
Marcel Holtmann55594352013-10-06 16:11:57 -07001698 if (changed)
1699 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001700
Marcel Holtmann55594352013-10-06 16:11:57 -07001701unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001702 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001703 return err;
1704}
Johan Hedberg72a734e2010-12-30 00:38:22 +02001705
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001706static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
1707 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001708{
1709 struct mgmt_mode *cp = data;
1710 struct pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001711 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001712 int err;
1713
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001714 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001715
Johan Hedberge6fe7982013-10-02 15:45:22 +03001716 status = mgmt_bredr_support(hdev);
1717 if (status)
Johan Hedberg33c525c2012-10-24 21:11:58 +03001718 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03001719 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001720
Johan Hedberga7e80f22013-01-09 16:05:19 +02001721 if (cp->val != 0x00 && cp->val != 0x01)
1722 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1723 MGMT_STATUS_INVALID_PARAMS);
1724
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001725 hci_dev_lock(hdev);
1726
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001727 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001728 bool changed = false;
1729
1730 if (!!cp->val != test_bit(HCI_LINK_SECURITY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001731 &hdev->dev_flags)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001732 change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
1733 changed = true;
1734 }
1735
1736 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1737 if (err < 0)
1738 goto failed;
1739
1740 if (changed)
1741 err = new_settings(hdev, sk);
1742
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001743 goto failed;
1744 }
1745
1746 if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001747 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001748 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001749 goto failed;
1750 }
1751
1752 val = !!cp->val;
1753
1754 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
1755 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1756 goto failed;
1757 }
1758
1759 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
1760 if (!cmd) {
1761 err = -ENOMEM;
1762 goto failed;
1763 }
1764
1765 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
1766 if (err < 0) {
1767 mgmt_pending_remove(cmd);
1768 goto failed;
1769 }
1770
1771failed:
1772 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001773 return err;
1774}
1775
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001776static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001777{
1778 struct mgmt_mode *cp = data;
1779 struct pending_cmd *cmd;
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07001780 u8 status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001781 int err;
1782
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001783 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001784
Marcel Holtmanncdba5282013-10-02 21:31:52 -07001785 status = mgmt_bredr_support(hdev);
1786 if (status)
1787 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
1788
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001789 if (!lmp_ssp_capable(hdev))
1790 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1791 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001792
Johan Hedberga7e80f22013-01-09 16:05:19 +02001793 if (cp->val != 0x00 && cp->val != 0x01)
1794 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1795 MGMT_STATUS_INVALID_PARAMS);
1796
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001797 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02001798
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001799 if (!hdev_is_powered(hdev)) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001800 bool changed;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001801
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001802 if (cp->val) {
1803 changed = !test_and_set_bit(HCI_SSP_ENABLED,
1804 &hdev->dev_flags);
1805 } else {
1806 changed = test_and_clear_bit(HCI_SSP_ENABLED,
1807 &hdev->dev_flags);
1808 if (!changed)
1809 changed = test_and_clear_bit(HCI_HS_ENABLED,
1810 &hdev->dev_flags);
1811 else
1812 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001813 }
1814
1815 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1816 if (err < 0)
1817 goto failed;
1818
1819 if (changed)
1820 err = new_settings(hdev, sk);
1821
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001822 goto failed;
1823 }
1824
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001825 if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev) ||
1826 mgmt_pending_find(MGMT_OP_SET_HS, hdev)) {
Szymon Jancd97dcb62012-03-16 16:02:56 +01001827 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1828 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001829 goto failed;
1830 }
1831
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07001832 if (!!cp->val == test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001833 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1834 goto failed;
1835 }
1836
1837 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
1838 if (!cmd) {
1839 err = -ENOMEM;
1840 goto failed;
1841 }
1842
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07001843 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001844 if (err < 0) {
1845 mgmt_pending_remove(cmd);
1846 goto failed;
1847 }
1848
1849failed:
1850 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001851 return err;
1852}
1853
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001854static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001855{
1856 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07001857 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001858 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07001859 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001860
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001861 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001862
Johan Hedberge6fe7982013-10-02 15:45:22 +03001863 status = mgmt_bredr_support(hdev);
1864 if (status)
1865 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001866
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001867 if (!lmp_ssp_capable(hdev))
1868 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1869 MGMT_STATUS_NOT_SUPPORTED);
1870
1871 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
1872 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1873 MGMT_STATUS_REJECTED);
1874
Johan Hedberga7e80f22013-01-09 16:05:19 +02001875 if (cp->val != 0x00 && cp->val != 0x01)
1876 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1877 MGMT_STATUS_INVALID_PARAMS);
1878
Marcel Holtmannee392692013-10-01 22:59:23 -07001879 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001880
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001881 if (cp->val) {
Marcel Holtmannee392692013-10-01 22:59:23 -07001882 changed = !test_and_set_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001883 } else {
1884 if (hdev_is_powered(hdev)) {
1885 err = cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1886 MGMT_STATUS_REJECTED);
1887 goto unlock;
1888 }
1889
Marcel Holtmannee392692013-10-01 22:59:23 -07001890 changed = test_and_clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001891 }
Marcel Holtmannee392692013-10-01 22:59:23 -07001892
1893 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
1894 if (err < 0)
1895 goto unlock;
1896
1897 if (changed)
1898 err = new_settings(hdev, sk);
1899
1900unlock:
1901 hci_dev_unlock(hdev);
1902 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001903}
1904
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001905static void le_enable_complete(struct hci_dev *hdev, u8 status)
1906{
1907 struct cmd_lookup match = { NULL, hdev };
1908
1909 if (status) {
1910 u8 mgmt_err = mgmt_status(status);
1911
1912 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
1913 &mgmt_err);
1914 return;
1915 }
1916
1917 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
1918
1919 new_settings(hdev, match.sk);
1920
1921 if (match.sk)
1922 sock_put(match.sk);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001923
1924 /* Make sure the controller has a good default for
1925 * advertising data. Restrict the update to when LE
1926 * has actually been enabled. During power on, the
1927 * update in powered_update_hci will take care of it.
1928 */
1929 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
1930 struct hci_request req;
1931
1932 hci_dev_lock(hdev);
1933
1934 hci_req_init(&req, hdev);
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07001935 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07001936 update_scan_rsp_data(&req);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001937 hci_req_run(&req, NULL);
1938
1939 hci_dev_unlock(hdev);
1940 }
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001941}
1942
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001943static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001944{
1945 struct mgmt_mode *cp = data;
1946 struct hci_cp_write_le_host_supported hci_cp;
1947 struct pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001948 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001949 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001950 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001951
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001952 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001953
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001954 if (!lmp_le_capable(hdev))
1955 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1956 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001957
Johan Hedberga7e80f22013-01-09 16:05:19 +02001958 if (cp->val != 0x00 && cp->val != 0x01)
1959 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1960 MGMT_STATUS_INVALID_PARAMS);
1961
Johan Hedbergc73eee92013-04-19 18:35:21 +03001962 /* LE-only devices do not allow toggling LE on/off */
Johan Hedberg56f87902013-10-02 13:43:13 +03001963 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedbergc73eee92013-04-19 18:35:21 +03001964 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1965 MGMT_STATUS_REJECTED);
1966
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001967 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001968
1969 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001970 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001971
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001972 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02001973 bool changed = false;
1974
1975 if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
1976 change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
1977 changed = true;
1978 }
1979
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02001980 if (!val && test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
1981 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03001982 changed = true;
1983 }
1984
Johan Hedberg06199cf2012-02-22 16:37:11 +02001985 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
1986 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08001987 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001988
1989 if (changed)
1990 err = new_settings(hdev, sk);
1991
Johan Hedberg1de028c2012-02-29 19:55:35 -08001992 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001993 }
1994
Johan Hedberg4375f102013-09-25 13:26:10 +03001995 if (mgmt_pending_find(MGMT_OP_SET_LE, hdev) ||
1996 mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001997 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001998 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001999 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002000 }
2001
2002 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2003 if (!cmd) {
2004 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08002005 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002006 }
2007
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002008 hci_req_init(&req, hdev);
2009
Johan Hedberg06199cf2012-02-22 16:37:11 +02002010 memset(&hci_cp, 0, sizeof(hci_cp));
2011
2012 if (val) {
2013 hci_cp.le = val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002014 hci_cp.simul = lmp_le_br_capable(hdev);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002015 } else {
2016 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
2017 disable_advertising(&req);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002018 }
2019
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002020 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
2021 &hci_cp);
2022
2023 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05302024 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002025 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002026
Johan Hedberg1de028c2012-02-29 19:55:35 -08002027unlock:
2028 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002029 return err;
2030}
2031
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002032/* This is a helper function to test for pending mgmt commands that can
2033 * cause CoD or EIR HCI commands. We can only allow one such pending
2034 * mgmt command at a time since otherwise we cannot easily track what
2035 * the current values are, will be, and based on that calculate if a new
2036 * HCI command needs to be sent and if yes with what value.
2037 */
2038static bool pending_eir_or_class(struct hci_dev *hdev)
2039{
2040 struct pending_cmd *cmd;
2041
2042 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2043 switch (cmd->opcode) {
2044 case MGMT_OP_ADD_UUID:
2045 case MGMT_OP_REMOVE_UUID:
2046 case MGMT_OP_SET_DEV_CLASS:
2047 case MGMT_OP_SET_POWERED:
2048 return true;
2049 }
2050 }
2051
2052 return false;
2053}
2054
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002055static const u8 bluetooth_base_uuid[] = {
2056 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
2057 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2058};
2059
2060static u8 get_uuid_size(const u8 *uuid)
2061{
2062 u32 val;
2063
2064 if (memcmp(uuid, bluetooth_base_uuid, 12))
2065 return 128;
2066
2067 val = get_unaligned_le32(&uuid[12]);
2068 if (val > 0xffff)
2069 return 32;
2070
2071 return 16;
2072}
2073
Johan Hedberg92da6092013-03-15 17:06:55 -05002074static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
2075{
2076 struct pending_cmd *cmd;
2077
2078 hci_dev_lock(hdev);
2079
2080 cmd = mgmt_pending_find(mgmt_op, hdev);
2081 if (!cmd)
2082 goto unlock;
2083
2084 cmd_complete(cmd->sk, cmd->index, cmd->opcode, mgmt_status(status),
2085 hdev->dev_class, 3);
2086
2087 mgmt_pending_remove(cmd);
2088
2089unlock:
2090 hci_dev_unlock(hdev);
2091}
2092
2093static void add_uuid_complete(struct hci_dev *hdev, u8 status)
2094{
2095 BT_DBG("status 0x%02x", status);
2096
2097 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
2098}
2099
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002100static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002101{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002102 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002103 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002104 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002105 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002106 int err;
2107
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002108 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002109
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002110 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002111
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002112 if (pending_eir_or_class(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002113 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002114 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002115 goto failed;
2116 }
2117
Andre Guedes92c4c202012-06-07 19:05:44 -03002118 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002119 if (!uuid) {
2120 err = -ENOMEM;
2121 goto failed;
2122 }
2123
2124 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002125 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002126 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002127
Johan Hedbergde66aa62013-01-27 00:31:27 +02002128 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002129
Johan Hedberg890ea892013-03-15 17:06:52 -05002130 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002131
Johan Hedberg890ea892013-03-15 17:06:52 -05002132 update_class(&req);
2133 update_eir(&req);
2134
Johan Hedberg92da6092013-03-15 17:06:55 -05002135 err = hci_req_run(&req, add_uuid_complete);
2136 if (err < 0) {
2137 if (err != -ENODATA)
2138 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002139
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002140 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002141 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002142 goto failed;
2143 }
2144
2145 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002146 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002147 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002148 goto failed;
2149 }
2150
2151 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002152
2153failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002154 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002155 return err;
2156}
2157
Johan Hedberg24b78d02012-02-23 23:24:30 +02002158static bool enable_service_cache(struct hci_dev *hdev)
2159{
2160 if (!hdev_is_powered(hdev))
2161 return false;
2162
2163 if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02002164 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
2165 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002166 return true;
2167 }
2168
2169 return false;
2170}
2171
Johan Hedberg92da6092013-03-15 17:06:55 -05002172static void remove_uuid_complete(struct hci_dev *hdev, u8 status)
2173{
2174 BT_DBG("status 0x%02x", status);
2175
2176 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
2177}
2178
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002179static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002180 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002181{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002182 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002183 struct pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02002184 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002185 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 -05002186 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002187 int err, found;
2188
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002189 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002190
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002191 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002192
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002193 if (pending_eir_or_class(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002194 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002195 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002196 goto unlock;
2197 }
2198
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002199 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
Johan Hedberg35f74982014-02-18 17:14:32 +02002200 hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002201
Johan Hedberg24b78d02012-02-23 23:24:30 +02002202 if (enable_service_cache(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002203 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002204 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002205 goto unlock;
2206 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002207
Johan Hedberg9246a862012-02-23 21:33:16 +02002208 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002209 }
2210
2211 found = 0;
2212
Johan Hedberg056341c2013-01-27 00:31:30 +02002213 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002214 if (memcmp(match->uuid, cp->uuid, 16) != 0)
2215 continue;
2216
2217 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01002218 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002219 found++;
2220 }
2221
2222 if (found == 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002223 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002224 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002225 goto unlock;
2226 }
2227
Johan Hedberg9246a862012-02-23 21:33:16 +02002228update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05002229 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002230
Johan Hedberg890ea892013-03-15 17:06:52 -05002231 update_class(&req);
2232 update_eir(&req);
2233
Johan Hedberg92da6092013-03-15 17:06:55 -05002234 err = hci_req_run(&req, remove_uuid_complete);
2235 if (err < 0) {
2236 if (err != -ENODATA)
2237 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002238
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002239 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002240 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002241 goto unlock;
2242 }
2243
2244 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002245 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002246 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002247 goto unlock;
2248 }
2249
2250 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002251
2252unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002253 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002254 return err;
2255}
2256
Johan Hedberg92da6092013-03-15 17:06:55 -05002257static void set_class_complete(struct hci_dev *hdev, u8 status)
2258{
2259 BT_DBG("status 0x%02x", status);
2260
2261 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
2262}
2263
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002264static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002265 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002266{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002267 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002268 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002269 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002270 int err;
2271
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002272 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002273
Marcel Holtmann6203fc92013-10-02 23:37:29 -07002274 if (!lmp_bredr_capable(hdev))
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002275 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2276 MGMT_STATUS_NOT_SUPPORTED);
2277
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002278 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002279
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002280 if (pending_eir_or_class(hdev)) {
2281 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2282 MGMT_STATUS_BUSY);
2283 goto unlock;
2284 }
2285
2286 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
2287 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2288 MGMT_STATUS_INVALID_PARAMS);
2289 goto unlock;
2290 }
2291
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002292 hdev->major_class = cp->major;
2293 hdev->minor_class = cp->minor;
2294
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002295 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002296 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002297 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002298 goto unlock;
2299 }
2300
Johan Hedberg890ea892013-03-15 17:06:52 -05002301 hci_req_init(&req, hdev);
2302
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002303 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02002304 hci_dev_unlock(hdev);
2305 cancel_delayed_work_sync(&hdev->service_cache);
2306 hci_dev_lock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05002307 update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02002308 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02002309
Johan Hedberg890ea892013-03-15 17:06:52 -05002310 update_class(&req);
2311
Johan Hedberg92da6092013-03-15 17:06:55 -05002312 err = hci_req_run(&req, set_class_complete);
2313 if (err < 0) {
2314 if (err != -ENODATA)
2315 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002316
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002317 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002318 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002319 goto unlock;
2320 }
2321
2322 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002323 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002324 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002325 goto unlock;
2326 }
2327
2328 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002329
Johan Hedbergb5235a62012-02-21 14:32:24 +02002330unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002331 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002332 return err;
2333}
2334
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002335static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002336 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002337{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002338 struct mgmt_cp_load_link_keys *cp = data;
Szymon Janc4e51eae2011-02-25 19:05:48 +01002339 u16 key_count, expected_len;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002340 bool changed;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002341 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002342
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002343 BT_DBG("request for %s", hdev->name);
2344
2345 if (!lmp_bredr_capable(hdev))
2346 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2347 MGMT_STATUS_NOT_SUPPORTED);
2348
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002349 key_count = __le16_to_cpu(cp->key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002350
Johan Hedberg86742e12011-11-07 23:13:38 +02002351 expected_len = sizeof(*cp) + key_count *
2352 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002353 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002354 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02002355 expected_len, len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002356 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002357 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002358 }
2359
Johan Hedberg4ae14302013-01-20 14:27:13 +02002360 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
2361 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2362 MGMT_STATUS_INVALID_PARAMS);
2363
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002364 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002365 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002366
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002367 for (i = 0; i < key_count; i++) {
2368 struct mgmt_link_key_info *key = &cp->keys[i];
2369
Marcel Holtmann8e991132014-01-10 02:07:25 -08002370 if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002371 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2372 MGMT_STATUS_INVALID_PARAMS);
2373 }
2374
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002375 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002376
2377 hci_link_keys_clear(hdev);
2378
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002379 if (cp->debug_keys)
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002380 changed = !test_and_set_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002381 else
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002382 changed = test_and_clear_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
2383
2384 if (changed)
2385 new_settings(hdev, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002386
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002387 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002388 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002389
Johan Hedbergd753fdc2012-02-17 14:06:34 +02002390 hci_add_link_key(hdev, NULL, 0, &key->addr.bdaddr, key->val,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002391 key->type, key->pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002392 }
2393
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002394 cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02002395
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002396 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002397
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002398 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002399}
2400
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002401static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002402 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002403{
2404 struct mgmt_ev_device_unpaired ev;
2405
2406 bacpy(&ev.addr.bdaddr, bdaddr);
2407 ev.addr.type = addr_type;
2408
2409 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002410 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002411}
2412
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002413static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002414 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002415{
Johan Hedberg124f6e32012-02-09 13:50:12 +02002416 struct mgmt_cp_unpair_device *cp = data;
2417 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002418 struct hci_cp_disconnect dc;
2419 struct pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002420 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002421 int err;
2422
Johan Hedberga8a1d192011-11-10 15:54:38 +02002423 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02002424 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2425 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002426
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002427 if (!bdaddr_type_is_valid(cp->addr.type))
2428 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2429 MGMT_STATUS_INVALID_PARAMS,
2430 &rp, sizeof(rp));
2431
Johan Hedberg118da702013-01-20 14:27:20 +02002432 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
2433 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2434 MGMT_STATUS_INVALID_PARAMS,
2435 &rp, sizeof(rp));
2436
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002437 hci_dev_lock(hdev);
2438
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002439 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002440 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002441 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002442 goto unlock;
2443 }
2444
Johan Hedberge0b2b272014-02-18 17:14:31 +02002445 if (cp->addr.type == BDADDR_BREDR) {
Johan Hedberg124f6e32012-02-09 13:50:12 +02002446 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
Johan Hedberge0b2b272014-02-18 17:14:31 +02002447 } else {
2448 u8 addr_type;
2449
2450 if (cp->addr.type == BDADDR_LE_PUBLIC)
2451 addr_type = ADDR_LE_DEV_PUBLIC;
2452 else
2453 addr_type = ADDR_LE_DEV_RANDOM;
2454
Johan Hedberga7ec7332014-02-18 17:14:35 +02002455 hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type);
2456
Andre Guedesa9b0a042014-02-26 20:21:52 -03002457 hci_conn_params_del(hdev, &cp->addr.bdaddr, addr_type);
2458
Johan Hedberge0b2b272014-02-18 17:14:31 +02002459 err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
2460 }
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03002461
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002462 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002463 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002464 MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002465 goto unlock;
2466 }
2467
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002468 if (cp->disconnect) {
Andre Guedes591f47f2012-04-24 21:02:49 -03002469 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002470 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002471 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002472 else
2473 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002474 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002475 } else {
2476 conn = NULL;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002477 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002478
Johan Hedberga8a1d192011-11-10 15:54:38 +02002479 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002480 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002481 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002482 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002483 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002484 }
2485
Johan Hedberg124f6e32012-02-09 13:50:12 +02002486 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002487 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02002488 if (!cmd) {
2489 err = -ENOMEM;
2490 goto unlock;
2491 }
2492
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002493 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002494 dc.reason = 0x13; /* Remote User Terminated Connection */
2495 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
2496 if (err < 0)
2497 mgmt_pending_remove(cmd);
2498
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002499unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002500 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002501 return err;
2502}
2503
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002504static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002505 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02002506{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002507 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02002508 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002509 struct hci_cp_disconnect dc;
Johan Hedberg366a0332011-02-19 12:05:55 -03002510 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002511 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002512 int err;
2513
2514 BT_DBG("");
2515
Johan Hedberg06a63b12013-01-20 14:27:21 +02002516 memset(&rp, 0, sizeof(rp));
2517 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2518 rp.addr.type = cp->addr.type;
2519
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002520 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg06a63b12013-01-20 14:27:21 +02002521 return cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2522 MGMT_STATUS_INVALID_PARAMS,
2523 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002524
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002525 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002526
2527 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002528 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2529 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002530 goto failed;
2531 }
2532
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002533 if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002534 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2535 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002536 goto failed;
2537 }
2538
Andre Guedes591f47f2012-04-24 21:02:49 -03002539 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002540 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2541 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02002542 else
2543 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03002544
Vishal Agarwalf9607272012-06-13 05:32:43 +05302545 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002546 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2547 MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002548 goto failed;
2549 }
2550
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002551 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002552 if (!cmd) {
2553 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002554 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002555 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02002556
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002557 dc.handle = cpu_to_le16(conn->handle);
Andre Guedes3701f942012-06-11 18:41:12 -03002558 dc.reason = HCI_ERROR_REMOTE_USER_TERM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002559
2560 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
2561 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002562 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002563
2564failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002565 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002566 return err;
2567}
2568
Andre Guedes57c14772012-04-24 21:02:50 -03002569static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002570{
2571 switch (link_type) {
2572 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02002573 switch (addr_type) {
2574 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03002575 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03002576
Johan Hedberg48264f02011-11-09 13:58:58 +02002577 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002578 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002579 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02002580 }
Andre Guedes0ed09142012-04-03 08:46:54 -03002581
Johan Hedberg4c659c32011-11-07 23:13:39 +02002582 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002583 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002584 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002585 }
2586}
2587
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002588static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
2589 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02002590{
Johan Hedberg2784eb42011-01-21 13:56:35 +02002591 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002592 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02002593 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002594 int err;
2595 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002596
2597 BT_DBG("");
2598
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002599 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002600
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002601 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002602 err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002603 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002604 goto unlock;
2605 }
2606
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002607 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02002608 list_for_each_entry(c, &hdev->conn_hash.list, list) {
2609 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002610 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002611 }
2612
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002613 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03002614 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02002615 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02002616 err = -ENOMEM;
2617 goto unlock;
2618 }
2619
Johan Hedberg2784eb42011-01-21 13:56:35 +02002620 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002621 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02002622 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
2623 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002624 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03002625 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03002626 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002627 continue;
2628 i++;
2629 }
2630
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002631 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002632
Johan Hedberg4c659c32011-11-07 23:13:39 +02002633 /* Recalculate length in case of filtered SCO connections, etc */
2634 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02002635
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002636 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002637 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002638
Johan Hedberga38528f2011-01-22 06:46:43 +02002639 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002640
2641unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002642 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002643 return err;
2644}
2645
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002646static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002647 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002648{
2649 struct pending_cmd *cmd;
2650 int err;
2651
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002652 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002653 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002654 if (!cmd)
2655 return -ENOMEM;
2656
Johan Hedbergd8457692012-02-17 14:24:57 +02002657 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002658 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002659 if (err < 0)
2660 mgmt_pending_remove(cmd);
2661
2662 return err;
2663}
2664
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002665static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002666 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02002667{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002668 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002669 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002670 struct hci_cp_pin_code_reply reply;
Johan Hedberg366a0332011-02-19 12:05:55 -03002671 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002672 int err;
2673
2674 BT_DBG("");
2675
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002676 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002677
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002678 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002679 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002680 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002681 goto failed;
2682 }
2683
Johan Hedbergd8457692012-02-17 14:24:57 +02002684 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002685 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002686 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002687 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002688 goto failed;
2689 }
2690
2691 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02002692 struct mgmt_cp_pin_code_neg_reply ncp;
2693
2694 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002695
2696 BT_ERR("PIN code is not 16 bytes long");
2697
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002698 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002699 if (err >= 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002700 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002701 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002702
2703 goto failed;
2704 }
2705
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03002706 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002707 if (!cmd) {
2708 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002709 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002710 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002711
Johan Hedbergd8457692012-02-17 14:24:57 +02002712 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002713 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02002714 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02002715
2716 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
2717 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002718 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002719
2720failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002721 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002722 return err;
2723}
2724
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002725static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
2726 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002727{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002728 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002729
2730 BT_DBG("");
2731
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002732 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002733
2734 hdev->io_capability = cp->io_capability;
2735
2736 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002737 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002738
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002739 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002740
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002741 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL,
2742 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002743}
2744
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002745static struct pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002746{
2747 struct hci_dev *hdev = conn->hdev;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002748 struct pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002749
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002750 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03002751 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
2752 continue;
2753
Johan Hedberge9a416b2011-02-19 12:05:56 -03002754 if (cmd->user_data != conn)
2755 continue;
2756
2757 return cmd;
2758 }
2759
2760 return NULL;
2761}
2762
2763static void pairing_complete(struct pending_cmd *cmd, u8 status)
2764{
Johan Hedberg4e7b2032014-03-19 17:00:49 +02002765 const struct mgmt_cp_pair_device *cp = cmd->param;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002766 struct mgmt_rp_pair_device rp;
2767 struct hci_conn *conn = cmd->user_data;
2768
Johan Hedberg4e7b2032014-03-19 17:00:49 +02002769 /* If we had a pairing failure we might have already received
2770 * the remote Identity Address Information and updated the
2771 * hci_conn variables with it, however we would not yet have
2772 * notified user space of the resolved identity. Therefore, use
2773 * the address given in the Pair Device command in case the
2774 * pairing failed.
2775 */
2776 if (status) {
2777 memcpy(&rp.addr, &cp->addr, sizeof(rp.addr));
2778 } else {
2779 bacpy(&rp.addr.bdaddr, &conn->dst);
2780 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
2781 }
Johan Hedberge9a416b2011-02-19 12:05:56 -03002782
Johan Hedbergaee9b2182012-02-18 15:07:59 +02002783 cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002784 &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002785
2786 /* So we don't get further callbacks for this connection */
2787 conn->connect_cfm_cb = NULL;
2788 conn->security_cfm_cb = NULL;
2789 conn->disconn_cfm_cb = NULL;
2790
David Herrmann76a68ba2013-04-06 20:28:37 +02002791 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002792
Johan Hedberga664b5b2011-02-19 12:06:02 -03002793 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002794}
2795
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002796void mgmt_smp_complete(struct hci_conn *conn, bool complete)
2797{
2798 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
2799 struct pending_cmd *cmd;
2800
2801 cmd = find_pairing(conn);
2802 if (cmd)
2803 pairing_complete(cmd, status);
2804}
2805
Johan Hedberge9a416b2011-02-19 12:05:56 -03002806static void pairing_complete_cb(struct hci_conn *conn, u8 status)
2807{
2808 struct pending_cmd *cmd;
2809
2810 BT_DBG("status %u", status);
2811
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002812 cmd = find_pairing(conn);
2813 if (!cmd)
2814 BT_DBG("Unable to find a pending command");
2815 else
Johan Hedberge2113262012-02-18 15:20:03 +02002816 pairing_complete(cmd, mgmt_status(status));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002817}
2818
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002819static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302820{
2821 struct pending_cmd *cmd;
2822
2823 BT_DBG("status %u", status);
2824
2825 if (!status)
2826 return;
2827
2828 cmd = find_pairing(conn);
2829 if (!cmd)
2830 BT_DBG("Unable to find a pending command");
2831 else
2832 pairing_complete(cmd, mgmt_status(status));
2833}
2834
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002835static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002836 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002837{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002838 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02002839 struct mgmt_rp_pair_device rp;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002840 struct pending_cmd *cmd;
2841 u8 sec_level, auth_type;
2842 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002843 int err;
2844
2845 BT_DBG("");
2846
Szymon Jancf950a30e2013-01-18 12:48:07 +01002847 memset(&rp, 0, sizeof(rp));
2848 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2849 rp.addr.type = cp->addr.type;
2850
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002851 if (!bdaddr_type_is_valid(cp->addr.type))
2852 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2853 MGMT_STATUS_INVALID_PARAMS,
2854 &rp, sizeof(rp));
2855
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002856 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002857
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002858 if (!hdev_is_powered(hdev)) {
Szymon Jancf950a30e2013-01-18 12:48:07 +01002859 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2860 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002861 goto unlock;
2862 }
2863
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03002864 sec_level = BT_SECURITY_MEDIUM;
2865 if (cp->io_cap == 0x03)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002866 auth_type = HCI_AT_DEDICATED_BONDING;
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03002867 else
Johan Hedberge9a416b2011-02-19 12:05:56 -03002868 auth_type = HCI_AT_DEDICATED_BONDING_MITM;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002869
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002870 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03002871 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
2872 auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002873 } else {
2874 u8 addr_type;
2875
2876 /* Convert from L2CAP channel address type to HCI address type
2877 */
2878 if (cp->addr.type == BDADDR_LE_PUBLIC)
2879 addr_type = ADDR_LE_DEV_PUBLIC;
2880 else
2881 addr_type = ADDR_LE_DEV_RANDOM;
2882
2883 conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
Andre Guedes04a6c582014-02-26 20:21:44 -03002884 sec_level, auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002885 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002886
Ville Tervo30e76272011-02-22 16:10:53 -03002887 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002888 int status;
2889
2890 if (PTR_ERR(conn) == -EBUSY)
2891 status = MGMT_STATUS_BUSY;
2892 else
2893 status = MGMT_STATUS_CONNECT_FAILED;
2894
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002895 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002896 status, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002897 sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002898 goto unlock;
2899 }
2900
2901 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02002902 hci_conn_drop(conn);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002903 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002904 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002905 goto unlock;
2906 }
2907
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002908 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002909 if (!cmd) {
2910 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02002911 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002912 goto unlock;
2913 }
2914
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002915 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002916 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002917 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002918 conn->security_cfm_cb = pairing_complete_cb;
2919 conn->disconn_cfm_cb = pairing_complete_cb;
2920 } else {
2921 conn->connect_cfm_cb = le_pairing_complete_cb;
2922 conn->security_cfm_cb = le_pairing_complete_cb;
2923 conn->disconn_cfm_cb = le_pairing_complete_cb;
2924 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002925
Johan Hedberge9a416b2011-02-19 12:05:56 -03002926 conn->io_capability = cp->io_cap;
2927 cmd->user_data = conn;
2928
2929 if (conn->state == BT_CONNECTED &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002930 hci_conn_security(conn, sec_level, auth_type))
Johan Hedberge9a416b2011-02-19 12:05:56 -03002931 pairing_complete(cmd, 0);
2932
2933 err = 0;
2934
2935unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002936 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002937 return err;
2938}
2939
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002940static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2941 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02002942{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002943 struct mgmt_addr_info *addr = data;
Johan Hedberg28424702012-02-02 04:02:29 +02002944 struct pending_cmd *cmd;
2945 struct hci_conn *conn;
2946 int err;
2947
2948 BT_DBG("");
2949
Johan Hedberg28424702012-02-02 04:02:29 +02002950 hci_dev_lock(hdev);
2951
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002952 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002953 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002954 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002955 goto unlock;
2956 }
2957
Johan Hedberg28424702012-02-02 04:02:29 +02002958 cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
2959 if (!cmd) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002960 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002961 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002962 goto unlock;
2963 }
2964
2965 conn = cmd->user_data;
2966
2967 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002968 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002969 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002970 goto unlock;
2971 }
2972
2973 pairing_complete(cmd, MGMT_STATUS_CANCELLED);
2974
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002975 err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002976 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02002977unlock:
2978 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02002979 return err;
2980}
2981
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002982static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05002983 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002984 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03002985{
Johan Hedberga5c29682011-02-19 12:05:57 -03002986 struct pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08002987 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03002988 int err;
2989
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002990 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02002991
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002992 if (!hdev_is_powered(hdev)) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05002993 err = cmd_complete(sk, hdev->id, mgmt_op,
2994 MGMT_STATUS_NOT_POWERED, addr,
2995 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08002996 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002997 }
2998
Johan Hedberg1707c602013-03-15 17:07:15 -05002999 if (addr->type == BDADDR_BREDR)
3000 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02003001 else
Johan Hedberg1707c602013-03-15 17:07:15 -05003002 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08003003
Johan Hedberg272d90d2012-02-09 15:26:12 +02003004 if (!conn) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003005 err = cmd_complete(sk, hdev->id, mgmt_op,
3006 MGMT_STATUS_NOT_CONNECTED, addr,
3007 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02003008 goto done;
3009 }
3010
Johan Hedberg1707c602013-03-15 17:07:15 -05003011 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix47c15e22011-11-16 13:53:14 -08003012 /* Continue with pairing via SMP */
Brian Gix5fe57d92011-12-21 16:12:13 -08003013 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix47c15e22011-11-16 13:53:14 -08003014
Brian Gix5fe57d92011-12-21 16:12:13 -08003015 if (!err)
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003016 err = cmd_complete(sk, hdev->id, mgmt_op,
3017 MGMT_STATUS_SUCCESS, addr,
3018 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003019 else
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003020 err = cmd_complete(sk, hdev->id, mgmt_op,
3021 MGMT_STATUS_FAILED, addr,
3022 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003023
Brian Gix47c15e22011-11-16 13:53:14 -08003024 goto done;
3025 }
3026
Johan Hedberg1707c602013-03-15 17:07:15 -05003027 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003028 if (!cmd) {
3029 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003030 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003031 }
3032
Brian Gix0df4c182011-11-16 13:53:13 -08003033 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003034 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3035 struct hci_cp_user_passkey_reply cp;
3036
Johan Hedberg1707c602013-03-15 17:07:15 -05003037 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003038 cp.passkey = passkey;
3039 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3040 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003041 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3042 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003043
Johan Hedberga664b5b2011-02-19 12:06:02 -03003044 if (err < 0)
3045 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003046
Brian Gix0df4c182011-11-16 13:53:13 -08003047done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003048 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003049 return err;
3050}
3051
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303052static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3053 void *data, u16 len)
3054{
3055 struct mgmt_cp_pin_code_neg_reply *cp = data;
3056
3057 BT_DBG("");
3058
Johan Hedberg1707c602013-03-15 17:07:15 -05003059 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303060 MGMT_OP_PIN_CODE_NEG_REPLY,
3061 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3062}
3063
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003064static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3065 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003066{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003067 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003068
3069 BT_DBG("");
3070
3071 if (len != sizeof(*cp))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003072 return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003073 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003074
Johan Hedberg1707c602013-03-15 17:07:15 -05003075 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003076 MGMT_OP_USER_CONFIRM_REPLY,
3077 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003078}
3079
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003080static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003081 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003082{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003083 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003084
3085 BT_DBG("");
3086
Johan Hedberg1707c602013-03-15 17:07:15 -05003087 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003088 MGMT_OP_USER_CONFIRM_NEG_REPLY,
3089 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003090}
3091
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003092static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3093 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003094{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003095 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003096
3097 BT_DBG("");
3098
Johan Hedberg1707c602013-03-15 17:07:15 -05003099 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003100 MGMT_OP_USER_PASSKEY_REPLY,
3101 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003102}
3103
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003104static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003105 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003106{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003107 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003108
3109 BT_DBG("");
3110
Johan Hedberg1707c602013-03-15 17:07:15 -05003111 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003112 MGMT_OP_USER_PASSKEY_NEG_REPLY,
3113 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003114}
3115
Johan Hedberg13928972013-03-15 17:07:00 -05003116static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003117{
Johan Hedberg13928972013-03-15 17:07:00 -05003118 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003119 struct hci_cp_write_local_name cp;
3120
Johan Hedberg13928972013-03-15 17:07:00 -05003121 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003122
Johan Hedberg890ea892013-03-15 17:06:52 -05003123 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003124}
3125
Johan Hedberg13928972013-03-15 17:07:00 -05003126static void set_name_complete(struct hci_dev *hdev, u8 status)
3127{
3128 struct mgmt_cp_set_local_name *cp;
3129 struct pending_cmd *cmd;
3130
3131 BT_DBG("status 0x%02x", status);
3132
3133 hci_dev_lock(hdev);
3134
3135 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
3136 if (!cmd)
3137 goto unlock;
3138
3139 cp = cmd->param;
3140
3141 if (status)
3142 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3143 mgmt_status(status));
3144 else
3145 cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3146 cp, sizeof(*cp));
3147
3148 mgmt_pending_remove(cmd);
3149
3150unlock:
3151 hci_dev_unlock(hdev);
3152}
3153
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003154static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003155 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003156{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003157 struct mgmt_cp_set_local_name *cp = data;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003158 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003159 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003160 int err;
3161
3162 BT_DBG("");
3163
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003164 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003165
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003166 /* If the old values are the same as the new ones just return a
3167 * direct command complete event.
3168 */
3169 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3170 !memcmp(hdev->short_name, cp->short_name,
3171 sizeof(hdev->short_name))) {
3172 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3173 data, len);
3174 goto failed;
3175 }
3176
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003177 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003178
Johan Hedbergb5235a62012-02-21 14:32:24 +02003179 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003180 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003181
3182 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003183 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003184 if (err < 0)
3185 goto failed;
3186
3187 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003188 sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003189
Johan Hedbergb5235a62012-02-21 14:32:24 +02003190 goto failed;
3191 }
3192
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003193 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003194 if (!cmd) {
3195 err = -ENOMEM;
3196 goto failed;
3197 }
3198
Johan Hedberg13928972013-03-15 17:07:00 -05003199 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3200
Johan Hedberg890ea892013-03-15 17:06:52 -05003201 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003202
3203 if (lmp_bredr_capable(hdev)) {
3204 update_name(&req);
3205 update_eir(&req);
3206 }
3207
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003208 /* The name is stored in the scan response data and so
3209 * no need to udpate the advertising data here.
3210 */
Johan Hedberg3f985052013-03-15 17:07:02 -05003211 if (lmp_le_capable(hdev))
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003212 update_scan_rsp_data(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003213
Johan Hedberg13928972013-03-15 17:07:00 -05003214 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003215 if (err < 0)
3216 mgmt_pending_remove(cmd);
3217
3218failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003219 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003220 return err;
3221}
3222
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003223static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003224 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01003225{
Szymon Jancc35938b2011-03-22 13:12:21 +01003226 struct pending_cmd *cmd;
3227 int err;
3228
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003229 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01003230
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003231 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003232
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003233 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003234 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003235 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003236 goto unlock;
3237 }
3238
Andre Guedes9a1a1992012-07-24 15:03:48 -03003239 if (!lmp_ssp_capable(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003240 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003241 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003242 goto unlock;
3243 }
3244
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003245 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003246 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003247 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01003248 goto unlock;
3249 }
3250
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003251 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01003252 if (!cmd) {
3253 err = -ENOMEM;
3254 goto unlock;
3255 }
3256
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08003257 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags))
3258 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA,
3259 0, NULL);
3260 else
3261 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
3262
Szymon Jancc35938b2011-03-22 13:12:21 +01003263 if (err < 0)
3264 mgmt_pending_remove(cmd);
3265
3266unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003267 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003268 return err;
3269}
3270
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003271static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003272 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003273{
Szymon Janc2763eda2011-03-22 13:12:22 +01003274 int err;
3275
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003276 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003277
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003278 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003279
Marcel Holtmannec109112014-01-10 02:07:30 -08003280 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
3281 struct mgmt_cp_add_remote_oob_data *cp = data;
3282 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003283
Marcel Holtmannec109112014-01-10 02:07:30 -08003284 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3285 cp->hash, cp->randomizer);
3286 if (err < 0)
3287 status = MGMT_STATUS_FAILED;
3288 else
3289 status = MGMT_STATUS_SUCCESS;
3290
3291 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3292 status, &cp->addr, sizeof(cp->addr));
3293 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
3294 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
3295 u8 status;
3296
3297 err = hci_add_remote_oob_ext_data(hdev, &cp->addr.bdaddr,
3298 cp->hash192,
3299 cp->randomizer192,
3300 cp->hash256,
3301 cp->randomizer256);
3302 if (err < 0)
3303 status = MGMT_STATUS_FAILED;
3304 else
3305 status = MGMT_STATUS_SUCCESS;
3306
3307 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3308 status, &cp->addr, sizeof(cp->addr));
3309 } else {
3310 BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
3311 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3312 MGMT_STATUS_INVALID_PARAMS);
3313 }
Szymon Janc2763eda2011-03-22 13:12:22 +01003314
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003315 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003316 return err;
3317}
3318
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003319static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003320 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003321{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003322 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003323 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01003324 int err;
3325
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003326 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003327
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003328 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003329
Johan Hedberg664ce4c2012-02-09 15:44:09 +02003330 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01003331 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003332 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01003333 else
Szymon Janca6785be2012-12-13 15:11:21 +01003334 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003335
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003336 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003337 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01003338
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003339 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003340 return err;
3341}
3342
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003343static int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status)
3344{
3345 struct pending_cmd *cmd;
3346 u8 type;
3347 int err;
3348
3349 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3350
3351 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
3352 if (!cmd)
3353 return -ENOENT;
3354
3355 type = hdev->discovery.type;
3356
3357 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
3358 &type, sizeof(type));
3359 mgmt_pending_remove(cmd);
3360
3361 return err;
3362}
3363
Andre Guedes7c307722013-04-30 15:29:28 -03003364static void start_discovery_complete(struct hci_dev *hdev, u8 status)
3365{
3366 BT_DBG("status %d", status);
3367
3368 if (status) {
3369 hci_dev_lock(hdev);
3370 mgmt_start_discovery_failed(hdev, status);
3371 hci_dev_unlock(hdev);
3372 return;
3373 }
3374
3375 hci_dev_lock(hdev);
3376 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
3377 hci_dev_unlock(hdev);
3378
3379 switch (hdev->discovery.type) {
3380 case DISCOV_TYPE_LE:
3381 queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable,
Andre Guedes0d8cc932013-04-30 15:29:31 -03003382 DISCOV_LE_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03003383 break;
3384
3385 case DISCOV_TYPE_INTERLEAVED:
3386 queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable,
Andre Guedes0d8cc932013-04-30 15:29:31 -03003387 DISCOV_INTERLEAVED_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03003388 break;
3389
3390 case DISCOV_TYPE_BREDR:
3391 break;
3392
3393 default:
3394 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
3395 }
3396}
3397
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003398static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003399 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04003400{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003401 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04003402 struct pending_cmd *cmd;
Andre Guedes7c307722013-04-30 15:29:28 -03003403 struct hci_cp_le_set_scan_param param_cp;
3404 struct hci_cp_le_set_scan_enable enable_cp;
3405 struct hci_cp_inquiry inq_cp;
3406 struct hci_request req;
3407 /* General inquiry access code (GIAC) */
3408 u8 lap[3] = { 0x33, 0x8b, 0x9e };
Johan Hedbergd9483942014-02-23 19:42:24 +02003409 u8 status, own_addr_type;
Johan Hedberg14a53662011-04-27 10:29:56 -04003410 int err;
3411
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003412 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04003413
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003414 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003415
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003416 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003417 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003418 MGMT_STATUS_NOT_POWERED);
Johan Hedbergbd2d1332011-11-07 23:13:37 +02003419 goto failed;
3420 }
3421
Andre Guedes642be6c2012-03-21 00:03:37 -03003422 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
3423 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3424 MGMT_STATUS_BUSY);
3425 goto failed;
3426 }
3427
Johan Hedbergff9ef572012-01-04 14:23:45 +02003428 if (hdev->discovery.state != DISCOVERY_STOPPED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003429 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003430 MGMT_STATUS_BUSY);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003431 goto failed;
3432 }
3433
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003434 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04003435 if (!cmd) {
3436 err = -ENOMEM;
3437 goto failed;
3438 }
3439
Andre Guedes4aab14e2012-02-17 20:39:36 -03003440 hdev->discovery.type = cp->type;
3441
Andre Guedes7c307722013-04-30 15:29:28 -03003442 hci_req_init(&req, hdev);
3443
Andre Guedes4aab14e2012-02-17 20:39:36 -03003444 switch (hdev->discovery.type) {
Andre Guedesf39799f2012-02-17 20:39:35 -03003445 case DISCOV_TYPE_BREDR:
Johan Hedberge6fe7982013-10-02 15:45:22 +03003446 status = mgmt_bredr_support(hdev);
3447 if (status) {
Johan Hedberg04106752013-01-10 14:54:09 +02003448 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003449 status);
Johan Hedberg04106752013-01-10 14:54:09 +02003450 mgmt_pending_remove(cmd);
3451 goto failed;
3452 }
3453
Andre Guedes7c307722013-04-30 15:29:28 -03003454 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
3455 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3456 MGMT_STATUS_BUSY);
3457 mgmt_pending_remove(cmd);
3458 goto failed;
3459 }
3460
3461 hci_inquiry_cache_flush(hdev);
3462
3463 memset(&inq_cp, 0, sizeof(inq_cp));
3464 memcpy(&inq_cp.lap, lap, sizeof(inq_cp.lap));
Andre Guedes0d8cc932013-04-30 15:29:31 -03003465 inq_cp.length = DISCOV_BREDR_INQUIRY_LEN;
Andre Guedes7c307722013-04-30 15:29:28 -03003466 hci_req_add(&req, HCI_OP_INQUIRY, sizeof(inq_cp), &inq_cp);
Andre Guedesf39799f2012-02-17 20:39:35 -03003467 break;
3468
3469 case DISCOV_TYPE_LE:
Andre Guedes7c307722013-04-30 15:29:28 -03003470 case DISCOV_TYPE_INTERLEAVED:
Johan Hedberge6fe7982013-10-02 15:45:22 +03003471 status = mgmt_le_support(hdev);
3472 if (status) {
Johan Hedberg04106752013-01-10 14:54:09 +02003473 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003474 status);
Johan Hedberg04106752013-01-10 14:54:09 +02003475 mgmt_pending_remove(cmd);
3476 goto failed;
3477 }
3478
Andre Guedes7c307722013-04-30 15:29:28 -03003479 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
Johan Hedberg56f87902013-10-02 13:43:13 +03003480 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
Johan Hedberg04106752013-01-10 14:54:09 +02003481 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3482 MGMT_STATUS_NOT_SUPPORTED);
3483 mgmt_pending_remove(cmd);
3484 goto failed;
3485 }
3486
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003487 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
Andre Guedes7c307722013-04-30 15:29:28 -03003488 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3489 MGMT_STATUS_REJECTED);
3490 mgmt_pending_remove(cmd);
3491 goto failed;
3492 }
3493
Andre Guedesc54c3862014-02-26 20:21:50 -03003494 /* If controller is scanning, it means the background scanning
3495 * is running. Thus, we should temporarily stop it in order to
3496 * set the discovery scanning parameters.
3497 */
3498 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
3499 hci_req_add_le_scan_disable(&req);
Andre Guedes7c307722013-04-30 15:29:28 -03003500
3501 memset(&param_cp, 0, sizeof(param_cp));
Johan Hedbergd9483942014-02-23 19:42:24 +02003502
Marcel Holtmann94b1fc92014-02-23 20:25:54 -08003503 /* All active scans will be done with either a resolvable
3504 * private address (when privacy feature has been enabled)
3505 * or unresolvable private address.
3506 */
3507 err = hci_update_random_address(&req, true, &own_addr_type);
Johan Hedbergd9483942014-02-23 19:42:24 +02003508 if (err < 0) {
3509 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3510 MGMT_STATUS_FAILED);
3511 mgmt_pending_remove(cmd);
3512 goto failed;
3513 }
3514
Andre Guedes7c307722013-04-30 15:29:28 -03003515 param_cp.type = LE_SCAN_ACTIVE;
Andre Guedes0d8cc932013-04-30 15:29:31 -03003516 param_cp.interval = cpu_to_le16(DISCOV_LE_SCAN_INT);
3517 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
Johan Hedbergd9483942014-02-23 19:42:24 +02003518 param_cp.own_address_type = own_addr_type;
Andre Guedes7c307722013-04-30 15:29:28 -03003519 hci_req_add(&req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
3520 &param_cp);
3521
3522 memset(&enable_cp, 0, sizeof(enable_cp));
3523 enable_cp.enable = LE_SCAN_ENABLE;
3524 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
3525 hci_req_add(&req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
3526 &enable_cp);
Andre Guedes5e0452c2012-02-17 20:39:38 -03003527 break;
3528
Andre Guedesf39799f2012-02-17 20:39:35 -03003529 default:
Johan Hedberg04106752013-01-10 14:54:09 +02003530 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3531 MGMT_STATUS_INVALID_PARAMS);
3532 mgmt_pending_remove(cmd);
3533 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03003534 }
Andre Guedes3fd24152012-02-03 17:48:01 -03003535
Andre Guedes7c307722013-04-30 15:29:28 -03003536 err = hci_req_run(&req, start_discovery_complete);
Johan Hedberg14a53662011-04-27 10:29:56 -04003537 if (err < 0)
3538 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003539 else
3540 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04003541
3542failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003543 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003544 return err;
3545}
3546
Andre Guedes1183fdc2013-04-30 15:29:35 -03003547static int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status)
3548{
3549 struct pending_cmd *cmd;
3550 int err;
3551
3552 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
3553 if (!cmd)
3554 return -ENOENT;
3555
3556 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
3557 &hdev->discovery.type, sizeof(hdev->discovery.type));
3558 mgmt_pending_remove(cmd);
3559
3560 return err;
3561}
3562
Andre Guedes0e05bba2013-04-30 15:29:33 -03003563static void stop_discovery_complete(struct hci_dev *hdev, u8 status)
3564{
3565 BT_DBG("status %d", status);
3566
3567 hci_dev_lock(hdev);
3568
3569 if (status) {
3570 mgmt_stop_discovery_failed(hdev, status);
3571 goto unlock;
3572 }
3573
3574 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3575
3576unlock:
3577 hci_dev_unlock(hdev);
3578}
3579
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003580static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003581 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04003582{
Johan Hedbergd9306502012-02-20 23:25:18 +02003583 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04003584 struct pending_cmd *cmd;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003585 struct hci_cp_remote_name_req_cancel cp;
3586 struct inquiry_entry *e;
Andre Guedes0e05bba2013-04-30 15:29:33 -03003587 struct hci_request req;
Johan Hedberg14a53662011-04-27 10:29:56 -04003588 int err;
3589
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003590 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04003591
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003592 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003593
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003594 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003595 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003596 MGMT_STATUS_REJECTED, &mgmt_cp->type,
3597 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02003598 goto unlock;
3599 }
3600
3601 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003602 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003603 MGMT_STATUS_INVALID_PARAMS, &mgmt_cp->type,
3604 sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003605 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02003606 }
3607
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003608 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04003609 if (!cmd) {
3610 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003611 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04003612 }
3613
Andre Guedes0e05bba2013-04-30 15:29:33 -03003614 hci_req_init(&req, hdev);
3615
Andre Guedese0d9727e2012-03-20 15:15:36 -03003616 switch (hdev->discovery.state) {
3617 case DISCOVERY_FINDING:
Andre Guedes0e05bba2013-04-30 15:29:33 -03003618 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
3619 hci_req_add(&req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
3620 } else {
3621 cancel_delayed_work(&hdev->le_scan_disable);
3622
Andre Guedesb1efcc22014-02-26 20:21:40 -03003623 hci_req_add_le_scan_disable(&req);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003624 }
Andre Guedesc9ecc482012-03-15 16:52:08 -03003625
Andre Guedese0d9727e2012-03-20 15:15:36 -03003626 break;
3627
3628 case DISCOVERY_RESOLVING:
3629 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003630 NAME_PENDING);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003631 if (!e) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003632 mgmt_pending_remove(cmd);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003633 err = cmd_complete(sk, hdev->id,
3634 MGMT_OP_STOP_DISCOVERY, 0,
3635 &mgmt_cp->type,
3636 sizeof(mgmt_cp->type));
3637 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3638 goto unlock;
3639 }
3640
3641 bacpy(&cp.bdaddr, &e->data.bdaddr);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003642 hci_req_add(&req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
3643 &cp);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003644
3645 break;
3646
3647 default:
3648 BT_DBG("unknown discovery state %u", hdev->discovery.state);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003649
3650 mgmt_pending_remove(cmd);
3651 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
3652 MGMT_STATUS_FAILED, &mgmt_cp->type,
3653 sizeof(mgmt_cp->type));
3654 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003655 }
3656
Andre Guedes0e05bba2013-04-30 15:29:33 -03003657 err = hci_req_run(&req, stop_discovery_complete);
Johan Hedberg14a53662011-04-27 10:29:56 -04003658 if (err < 0)
3659 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003660 else
3661 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Johan Hedberg14a53662011-04-27 10:29:56 -04003662
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003663unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003664 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003665 return err;
3666}
3667
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003668static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003669 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02003670{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003671 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003672 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003673 int err;
3674
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003675 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003676
Johan Hedberg561aafb2012-01-04 13:31:59 +02003677 hci_dev_lock(hdev);
3678
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003679 if (!hci_discovery_active(hdev)) {
Lukasz Rymanowskid3a25412014-02-27 16:47:28 +01003680 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
3681 MGMT_STATUS_FAILED, &cp->addr,
3682 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003683 goto failed;
3684 }
3685
Johan Hedberga198e7b2012-02-17 14:27:06 +02003686 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003687 if (!e) {
Lukasz Rymanowskid3a25412014-02-27 16:47:28 +01003688 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
3689 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
3690 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02003691 goto failed;
3692 }
3693
3694 if (cp->name_known) {
3695 e->name_state = NAME_KNOWN;
3696 list_del(&e->list);
3697 } else {
3698 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02003699 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003700 }
3701
Johan Hedberge3846622013-01-09 15:29:33 +02003702 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr,
3703 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02003704
3705failed:
3706 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003707 return err;
3708}
3709
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003710static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003711 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03003712{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003713 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003714 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03003715 int err;
3716
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003717 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03003718
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003719 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02003720 return cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
3721 MGMT_STATUS_INVALID_PARAMS,
3722 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003723
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003724 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003725
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003726 err = hci_blacklist_add(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03003727 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003728 status = MGMT_STATUS_FAILED;
Antti Julku7fbec222011-06-15 12:01:15 +03003729 else
Szymon Janca6785be2012-12-13 15:11:21 +01003730 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003731
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003732 err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003733 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03003734
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003735 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03003736
3737 return err;
3738}
3739
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003740static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003741 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03003742{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003743 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003744 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03003745 int err;
3746
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003747 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03003748
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003749 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02003750 return cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
3751 MGMT_STATUS_INVALID_PARAMS,
3752 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003753
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003754 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003755
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003756 err = hci_blacklist_del(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03003757 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003758 status = MGMT_STATUS_INVALID_PARAMS;
Antti Julku7fbec222011-06-15 12:01:15 +03003759 else
Szymon Janca6785be2012-12-13 15:11:21 +01003760 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003761
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003762 err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003763 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03003764
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003765 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03003766
3767 return err;
3768}
3769
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003770static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
3771 u16 len)
3772{
3773 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05003774 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003775 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01003776 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003777
3778 BT_DBG("%s", hdev->name);
3779
Szymon Jancc72d4b82012-03-16 16:02:57 +01003780 source = __le16_to_cpu(cp->source);
3781
3782 if (source > 0x0002)
3783 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
3784 MGMT_STATUS_INVALID_PARAMS);
3785
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003786 hci_dev_lock(hdev);
3787
Szymon Jancc72d4b82012-03-16 16:02:57 +01003788 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003789 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
3790 hdev->devid_product = __le16_to_cpu(cp->product);
3791 hdev->devid_version = __le16_to_cpu(cp->version);
3792
3793 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);
3794
Johan Hedberg890ea892013-03-15 17:06:52 -05003795 hci_req_init(&req, hdev);
3796 update_eir(&req);
3797 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003798
3799 hci_dev_unlock(hdev);
3800
3801 return err;
3802}
3803
Johan Hedberg4375f102013-09-25 13:26:10 +03003804static void set_advertising_complete(struct hci_dev *hdev, u8 status)
3805{
3806 struct cmd_lookup match = { NULL, hdev };
3807
3808 if (status) {
3809 u8 mgmt_err = mgmt_status(status);
3810
3811 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
3812 cmd_status_rsp, &mgmt_err);
3813 return;
3814 }
3815
3816 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
3817 &match);
3818
3819 new_settings(hdev, match.sk);
3820
3821 if (match.sk)
3822 sock_put(match.sk);
3823}
3824
Marcel Holtmann21b51872013-10-10 09:47:53 -07003825static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
3826 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03003827{
3828 struct mgmt_mode *cp = data;
3829 struct pending_cmd *cmd;
3830 struct hci_request req;
Johan Hedberge6fe7982013-10-02 15:45:22 +03003831 u8 val, enabled, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03003832 int err;
3833
3834 BT_DBG("request for %s", hdev->name);
3835
Johan Hedberge6fe7982013-10-02 15:45:22 +03003836 status = mgmt_le_support(hdev);
3837 if (status)
Johan Hedberg4375f102013-09-25 13:26:10 +03003838 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003839 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03003840
3841 if (cp->val != 0x00 && cp->val != 0x01)
3842 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3843 MGMT_STATUS_INVALID_PARAMS);
3844
3845 hci_dev_lock(hdev);
3846
3847 val = !!cp->val;
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003848 enabled = test_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003849
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02003850 /* The following conditions are ones which mean that we should
3851 * not do any HCI communication but directly send a mgmt
3852 * response to user space (after toggling the flag if
3853 * necessary).
3854 */
3855 if (!hdev_is_powered(hdev) || val == enabled ||
Marcel Holtmannb145edc2013-10-10 09:47:54 -07003856 hci_conn_num(hdev, LE_LINK) > 0) {
Johan Hedberg4375f102013-09-25 13:26:10 +03003857 bool changed = false;
3858
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003859 if (val != test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
3860 change_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003861 changed = true;
3862 }
3863
3864 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
3865 if (err < 0)
3866 goto unlock;
3867
3868 if (changed)
3869 err = new_settings(hdev, sk);
3870
3871 goto unlock;
3872 }
3873
3874 if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
3875 mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
3876 err = cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3877 MGMT_STATUS_BUSY);
3878 goto unlock;
3879 }
3880
3881 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
3882 if (!cmd) {
3883 err = -ENOMEM;
3884 goto unlock;
3885 }
3886
3887 hci_req_init(&req, hdev);
3888
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07003889 if (val)
3890 enable_advertising(&req);
3891 else
3892 disable_advertising(&req);
Johan Hedberg4375f102013-09-25 13:26:10 +03003893
3894 err = hci_req_run(&req, set_advertising_complete);
3895 if (err < 0)
3896 mgmt_pending_remove(cmd);
3897
3898unlock:
3899 hci_dev_unlock(hdev);
3900 return err;
3901}
3902
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003903static int set_static_address(struct sock *sk, struct hci_dev *hdev,
3904 void *data, u16 len)
3905{
3906 struct mgmt_cp_set_static_address *cp = data;
3907 int err;
3908
3909 BT_DBG("%s", hdev->name);
3910
Marcel Holtmann62af4442013-10-02 22:10:32 -07003911 if (!lmp_le_capable(hdev))
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003912 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann62af4442013-10-02 22:10:32 -07003913 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003914
3915 if (hdev_is_powered(hdev))
3916 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
3917 MGMT_STATUS_REJECTED);
3918
3919 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
3920 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
3921 return cmd_status(sk, hdev->id,
3922 MGMT_OP_SET_STATIC_ADDRESS,
3923 MGMT_STATUS_INVALID_PARAMS);
3924
3925 /* Two most significant bits shall be set */
3926 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
3927 return cmd_status(sk, hdev->id,
3928 MGMT_OP_SET_STATIC_ADDRESS,
3929 MGMT_STATUS_INVALID_PARAMS);
3930 }
3931
3932 hci_dev_lock(hdev);
3933
3934 bacpy(&hdev->static_addr, &cp->bdaddr);
3935
3936 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, 0, NULL, 0);
3937
3938 hci_dev_unlock(hdev);
3939
3940 return err;
3941}
3942
Marcel Holtmann14b49b92013-10-11 08:23:20 -07003943static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
3944 void *data, u16 len)
3945{
3946 struct mgmt_cp_set_scan_params *cp = data;
3947 __u16 interval, window;
3948 int err;
3949
3950 BT_DBG("%s", hdev->name);
3951
3952 if (!lmp_le_capable(hdev))
3953 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3954 MGMT_STATUS_NOT_SUPPORTED);
3955
3956 interval = __le16_to_cpu(cp->interval);
3957
3958 if (interval < 0x0004 || interval > 0x4000)
3959 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3960 MGMT_STATUS_INVALID_PARAMS);
3961
3962 window = __le16_to_cpu(cp->window);
3963
3964 if (window < 0x0004 || window > 0x4000)
3965 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3966 MGMT_STATUS_INVALID_PARAMS);
3967
Marcel Holtmann899e1072013-10-14 09:55:32 -07003968 if (window > interval)
3969 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3970 MGMT_STATUS_INVALID_PARAMS);
3971
Marcel Holtmann14b49b92013-10-11 08:23:20 -07003972 hci_dev_lock(hdev);
3973
3974 hdev->le_scan_interval = interval;
3975 hdev->le_scan_window = window;
3976
3977 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0, NULL, 0);
3978
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03003979 /* If background scan is running, restart it so new parameters are
3980 * loaded.
3981 */
3982 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags) &&
3983 hdev->discovery.state == DISCOVERY_STOPPED) {
3984 struct hci_request req;
3985
3986 hci_req_init(&req, hdev);
3987
3988 hci_req_add_le_scan_disable(&req);
3989 hci_req_add_le_passive_scan(&req);
3990
3991 hci_req_run(&req, NULL);
3992 }
3993
Marcel Holtmann14b49b92013-10-11 08:23:20 -07003994 hci_dev_unlock(hdev);
3995
3996 return err;
3997}
3998
Johan Hedberg33e38b32013-03-15 17:07:05 -05003999static void fast_connectable_complete(struct hci_dev *hdev, u8 status)
4000{
4001 struct pending_cmd *cmd;
4002
4003 BT_DBG("status 0x%02x", status);
4004
4005 hci_dev_lock(hdev);
4006
4007 cmd = mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4008 if (!cmd)
4009 goto unlock;
4010
4011 if (status) {
4012 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4013 mgmt_status(status));
4014 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004015 struct mgmt_mode *cp = cmd->param;
4016
4017 if (cp->val)
4018 set_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4019 else
4020 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4021
Johan Hedberg33e38b32013-03-15 17:07:05 -05004022 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4023 new_settings(hdev, cmd->sk);
4024 }
4025
4026 mgmt_pending_remove(cmd);
4027
4028unlock:
4029 hci_dev_unlock(hdev);
4030}
4031
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004032static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004033 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03004034{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004035 struct mgmt_mode *cp = data;
Johan Hedberg33e38b32013-03-15 17:07:05 -05004036 struct pending_cmd *cmd;
4037 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03004038 int err;
4039
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004040 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004041
Johan Hedberg56f87902013-10-02 13:43:13 +03004042 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) ||
4043 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberg33c525c2012-10-24 21:11:58 +03004044 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4045 MGMT_STATUS_NOT_SUPPORTED);
4046
Johan Hedberga7e80f22013-01-09 16:05:19 +02004047 if (cp->val != 0x00 && cp->val != 0x01)
4048 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4049 MGMT_STATUS_INVALID_PARAMS);
4050
Johan Hedberg5400c042012-02-21 16:40:33 +02004051 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004052 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004053 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02004054
4055 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004056 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004057 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004058
4059 hci_dev_lock(hdev);
4060
Johan Hedberg05cbf292013-03-15 17:07:07 -05004061 if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
4062 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4063 MGMT_STATUS_BUSY);
4064 goto unlock;
4065 }
4066
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004067 if (!!cp->val == test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) {
4068 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
4069 hdev);
4070 goto unlock;
4071 }
4072
Johan Hedberg33e38b32013-03-15 17:07:05 -05004073 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
4074 data, len);
4075 if (!cmd) {
4076 err = -ENOMEM;
4077 goto unlock;
4078 }
4079
4080 hci_req_init(&req, hdev);
4081
Johan Hedberg406d7802013-03-15 17:07:09 -05004082 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004083
4084 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004085 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004086 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004087 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004088 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004089 }
4090
Johan Hedberg33e38b32013-03-15 17:07:05 -05004091unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03004092 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004093
Antti Julkuf6422ec2011-06-22 13:11:56 +03004094 return err;
4095}
4096
Johan Hedberg67e5a7a2013-10-14 21:15:25 +03004097static void set_bredr_scan(struct hci_request *req)
4098{
4099 struct hci_dev *hdev = req->hdev;
4100 u8 scan = 0;
4101
4102 /* Ensure that fast connectable is disabled. This function will
4103 * not do anything if the page scan parameters are already what
4104 * they should be.
4105 */
4106 write_fast_connectable(req, false);
4107
4108 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
4109 scan |= SCAN_PAGE;
4110 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
4111 scan |= SCAN_INQUIRY;
4112
4113 if (scan)
4114 hci_req_add(req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
4115}
4116
Johan Hedberg0663ca22013-10-02 13:43:14 +03004117static void set_bredr_complete(struct hci_dev *hdev, u8 status)
4118{
4119 struct pending_cmd *cmd;
4120
4121 BT_DBG("status 0x%02x", status);
4122
4123 hci_dev_lock(hdev);
4124
4125 cmd = mgmt_pending_find(MGMT_OP_SET_BREDR, hdev);
4126 if (!cmd)
4127 goto unlock;
4128
4129 if (status) {
4130 u8 mgmt_err = mgmt_status(status);
4131
4132 /* We need to restore the flag if related HCI commands
4133 * failed.
4134 */
4135 clear_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4136
4137 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
4138 } else {
4139 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
4140 new_settings(hdev, cmd->sk);
4141 }
4142
4143 mgmt_pending_remove(cmd);
4144
4145unlock:
4146 hci_dev_unlock(hdev);
4147}
4148
4149static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
4150{
4151 struct mgmt_mode *cp = data;
4152 struct pending_cmd *cmd;
4153 struct hci_request req;
4154 int err;
4155
4156 BT_DBG("request for %s", hdev->name);
4157
4158 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
4159 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4160 MGMT_STATUS_NOT_SUPPORTED);
4161
4162 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
4163 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4164 MGMT_STATUS_REJECTED);
4165
4166 if (cp->val != 0x00 && cp->val != 0x01)
4167 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4168 MGMT_STATUS_INVALID_PARAMS);
4169
4170 hci_dev_lock(hdev);
4171
4172 if (cp->val == test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
4173 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4174 goto unlock;
4175 }
4176
4177 if (!hdev_is_powered(hdev)) {
4178 if (!cp->val) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03004179 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
4180 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
4181 clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
4182 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4183 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
4184 }
4185
4186 change_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4187
4188 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4189 if (err < 0)
4190 goto unlock;
4191
4192 err = new_settings(hdev, sk);
4193 goto unlock;
4194 }
4195
4196 /* Reject disabling when powered on */
4197 if (!cp->val) {
4198 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4199 MGMT_STATUS_REJECTED);
4200 goto unlock;
4201 }
4202
4203 if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) {
4204 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4205 MGMT_STATUS_BUSY);
4206 goto unlock;
4207 }
4208
4209 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
4210 if (!cmd) {
4211 err = -ENOMEM;
4212 goto unlock;
4213 }
4214
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004215 /* We need to flip the bit already here so that update_adv_data
Johan Hedberg0663ca22013-10-02 13:43:14 +03004216 * generates the correct flags.
4217 */
4218 set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4219
4220 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004221
4222 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
4223 set_bredr_scan(&req);
4224
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07004225 /* Since only the advertising data flags will change, there
4226 * is no need to update the scan response data.
4227 */
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004228 update_adv_data(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004229
Johan Hedberg0663ca22013-10-02 13:43:14 +03004230 err = hci_req_run(&req, set_bredr_complete);
4231 if (err < 0)
4232 mgmt_pending_remove(cmd);
4233
4234unlock:
4235 hci_dev_unlock(hdev);
4236 return err;
4237}
4238
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004239static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
4240 void *data, u16 len)
4241{
4242 struct mgmt_mode *cp = data;
4243 struct pending_cmd *cmd;
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004244 u8 val, status;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004245 int err;
4246
4247 BT_DBG("request for %s", hdev->name);
4248
4249 status = mgmt_bredr_support(hdev);
4250 if (status)
4251 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4252 status);
4253
Marcel Holtmann5afeac142014-01-10 02:07:27 -08004254 if (!lmp_sc_capable(hdev) &&
4255 !test_bit(HCI_FORCE_SC, &hdev->dev_flags))
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004256 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4257 MGMT_STATUS_NOT_SUPPORTED);
4258
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004259 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004260 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4261 MGMT_STATUS_INVALID_PARAMS);
4262
4263 hci_dev_lock(hdev);
4264
4265 if (!hdev_is_powered(hdev)) {
4266 bool changed;
4267
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004268 if (cp->val) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004269 changed = !test_and_set_bit(HCI_SC_ENABLED,
4270 &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004271 if (cp->val == 0x02)
4272 set_bit(HCI_SC_ONLY, &hdev->dev_flags);
4273 else
4274 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4275 } else {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004276 changed = test_and_clear_bit(HCI_SC_ENABLED,
4277 &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004278 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4279 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004280
4281 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
4282 if (err < 0)
4283 goto failed;
4284
4285 if (changed)
4286 err = new_settings(hdev, sk);
4287
4288 goto failed;
4289 }
4290
4291 if (mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
4292 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4293 MGMT_STATUS_BUSY);
4294 goto failed;
4295 }
4296
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004297 val = !!cp->val;
4298
4299 if (val == test_bit(HCI_SC_ENABLED, &hdev->dev_flags) &&
4300 (cp->val == 0x02) == test_bit(HCI_SC_ONLY, &hdev->dev_flags)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004301 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
4302 goto failed;
4303 }
4304
4305 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
4306 if (!cmd) {
4307 err = -ENOMEM;
4308 goto failed;
4309 }
4310
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004311 err = hci_send_cmd(hdev, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004312 if (err < 0) {
4313 mgmt_pending_remove(cmd);
4314 goto failed;
4315 }
4316
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004317 if (cp->val == 0x02)
4318 set_bit(HCI_SC_ONLY, &hdev->dev_flags);
4319 else
4320 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4321
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004322failed:
4323 hci_dev_unlock(hdev);
4324 return err;
4325}
4326
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004327static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
4328 void *data, u16 len)
4329{
4330 struct mgmt_mode *cp = data;
4331 bool changed;
4332 int err;
4333
4334 BT_DBG("request for %s", hdev->name);
4335
4336 if (cp->val != 0x00 && cp->val != 0x01)
4337 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
4338 MGMT_STATUS_INVALID_PARAMS);
4339
4340 hci_dev_lock(hdev);
4341
4342 if (cp->val)
4343 changed = !test_and_set_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
4344 else
4345 changed = test_and_clear_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
4346
4347 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
4348 if (err < 0)
4349 goto unlock;
4350
4351 if (changed)
4352 err = new_settings(hdev, sk);
4353
4354unlock:
4355 hci_dev_unlock(hdev);
4356 return err;
4357}
4358
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004359static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
4360 u16 len)
4361{
4362 struct mgmt_cp_set_privacy *cp = cp_data;
4363 bool changed;
4364 int err;
4365
4366 BT_DBG("request for %s", hdev->name);
4367
4368 if (!lmp_le_capable(hdev))
4369 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4370 MGMT_STATUS_NOT_SUPPORTED);
4371
4372 if (cp->privacy != 0x00 && cp->privacy != 0x01)
4373 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4374 MGMT_STATUS_INVALID_PARAMS);
4375
4376 if (hdev_is_powered(hdev))
4377 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4378 MGMT_STATUS_REJECTED);
4379
4380 hci_dev_lock(hdev);
4381
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02004382 /* If user space supports this command it is also expected to
4383 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
4384 */
4385 set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags);
4386
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004387 if (cp->privacy) {
4388 changed = !test_and_set_bit(HCI_PRIVACY, &hdev->dev_flags);
4389 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
4390 set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
4391 } else {
4392 changed = test_and_clear_bit(HCI_PRIVACY, &hdev->dev_flags);
4393 memset(hdev->irk, 0, sizeof(hdev->irk));
4394 clear_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
4395 }
4396
4397 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
4398 if (err < 0)
4399 goto unlock;
4400
4401 if (changed)
4402 err = new_settings(hdev, sk);
4403
4404unlock:
4405 hci_dev_unlock(hdev);
4406 return err;
4407}
4408
Johan Hedberg41edf162014-02-18 10:19:35 +02004409static bool irk_is_valid(struct mgmt_irk_info *irk)
4410{
4411 switch (irk->addr.type) {
4412 case BDADDR_LE_PUBLIC:
4413 return true;
4414
4415 case BDADDR_LE_RANDOM:
4416 /* Two most significant bits shall be set */
4417 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
4418 return false;
4419 return true;
4420 }
4421
4422 return false;
4423}
4424
4425static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
4426 u16 len)
4427{
4428 struct mgmt_cp_load_irks *cp = cp_data;
4429 u16 irk_count, expected_len;
4430 int i, err;
4431
4432 BT_DBG("request for %s", hdev->name);
4433
4434 if (!lmp_le_capable(hdev))
4435 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
4436 MGMT_STATUS_NOT_SUPPORTED);
4437
4438 irk_count = __le16_to_cpu(cp->irk_count);
4439
4440 expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
4441 if (expected_len != len) {
4442 BT_ERR("load_irks: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02004443 expected_len, len);
Johan Hedberg41edf162014-02-18 10:19:35 +02004444 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
4445 MGMT_STATUS_INVALID_PARAMS);
4446 }
4447
4448 BT_DBG("%s irk_count %u", hdev->name, irk_count);
4449
4450 for (i = 0; i < irk_count; i++) {
4451 struct mgmt_irk_info *key = &cp->irks[i];
4452
4453 if (!irk_is_valid(key))
4454 return cmd_status(sk, hdev->id,
4455 MGMT_OP_LOAD_IRKS,
4456 MGMT_STATUS_INVALID_PARAMS);
4457 }
4458
4459 hci_dev_lock(hdev);
4460
4461 hci_smp_irks_clear(hdev);
4462
4463 for (i = 0; i < irk_count; i++) {
4464 struct mgmt_irk_info *irk = &cp->irks[i];
4465 u8 addr_type;
4466
4467 if (irk->addr.type == BDADDR_LE_PUBLIC)
4468 addr_type = ADDR_LE_DEV_PUBLIC;
4469 else
4470 addr_type = ADDR_LE_DEV_RANDOM;
4471
4472 hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val,
4473 BDADDR_ANY);
4474 }
4475
4476 set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags);
4477
4478 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
4479
4480 hci_dev_unlock(hdev);
4481
4482 return err;
4483}
4484
Johan Hedberg3f706b72013-01-20 14:27:16 +02004485static bool ltk_is_valid(struct mgmt_ltk_info *key)
4486{
4487 if (key->master != 0x00 && key->master != 0x01)
4488 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08004489
4490 switch (key->addr.type) {
4491 case BDADDR_LE_PUBLIC:
4492 return true;
4493
4494 case BDADDR_LE_RANDOM:
4495 /* Two most significant bits shall be set */
4496 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
4497 return false;
4498 return true;
4499 }
4500
4501 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02004502}
4503
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004504static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004505 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004506{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004507 struct mgmt_cp_load_long_term_keys *cp = cp_data;
4508 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004509 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004510
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07004511 BT_DBG("request for %s", hdev->name);
4512
4513 if (!lmp_le_capable(hdev))
4514 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
4515 MGMT_STATUS_NOT_SUPPORTED);
4516
Marcel Holtmann1f350c82012-03-12 20:31:08 -07004517 key_count = __le16_to_cpu(cp->key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004518
4519 expected_len = sizeof(*cp) + key_count *
4520 sizeof(struct mgmt_ltk_info);
4521 if (expected_len != len) {
4522 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02004523 expected_len, len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004524 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Johan Hedberge57e6192013-01-20 14:27:14 +02004525 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004526 }
4527
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004528 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004529
Johan Hedberg54ad6d82013-01-20 14:27:15 +02004530 for (i = 0; i < key_count; i++) {
4531 struct mgmt_ltk_info *key = &cp->keys[i];
4532
Johan Hedberg3f706b72013-01-20 14:27:16 +02004533 if (!ltk_is_valid(key))
Johan Hedberg54ad6d82013-01-20 14:27:15 +02004534 return cmd_status(sk, hdev->id,
4535 MGMT_OP_LOAD_LONG_TERM_KEYS,
4536 MGMT_STATUS_INVALID_PARAMS);
4537 }
4538
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004539 hci_dev_lock(hdev);
4540
4541 hci_smp_ltks_clear(hdev);
4542
4543 for (i = 0; i < key_count; i++) {
4544 struct mgmt_ltk_info *key = &cp->keys[i];
Marcel Holtmann79d95a12013-10-13 03:57:38 -07004545 u8 type, addr_type;
4546
4547 if (key->addr.type == BDADDR_LE_PUBLIC)
4548 addr_type = ADDR_LE_DEV_PUBLIC;
4549 else
4550 addr_type = ADDR_LE_DEV_RANDOM;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004551
4552 if (key->master)
4553 type = HCI_SMP_LTK;
4554 else
4555 type = HCI_SMP_LTK_SLAVE;
4556
Johan Hedberg35d70272014-02-19 14:57:47 +02004557 hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
4558 key->type, key->val, key->enc_size, key->ediv,
4559 key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004560 }
4561
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004562 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
4563 NULL, 0);
4564
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004565 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004566
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004567 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004568}
4569
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02004570static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004571 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
4572 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02004573 bool var_len;
4574 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004575} mgmt_handlers[] = {
4576 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02004577 { read_version, false, MGMT_READ_VERSION_SIZE },
4578 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
4579 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
4580 { read_controller_info, false, MGMT_READ_INFO_SIZE },
4581 { set_powered, false, MGMT_SETTING_SIZE },
4582 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
4583 { set_connectable, false, MGMT_SETTING_SIZE },
4584 { set_fast_connectable, false, MGMT_SETTING_SIZE },
4585 { set_pairable, false, MGMT_SETTING_SIZE },
4586 { set_link_security, false, MGMT_SETTING_SIZE },
4587 { set_ssp, false, MGMT_SETTING_SIZE },
4588 { set_hs, false, MGMT_SETTING_SIZE },
4589 { set_le, false, MGMT_SETTING_SIZE },
4590 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
4591 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
4592 { add_uuid, false, MGMT_ADD_UUID_SIZE },
4593 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
4594 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
4595 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
4596 { disconnect, false, MGMT_DISCONNECT_SIZE },
4597 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
4598 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
4599 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
4600 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
4601 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
4602 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
4603 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
4604 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
4605 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
4606 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
4607 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
4608 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
Marcel Holtmannec109112014-01-10 02:07:30 -08004609 { add_remote_oob_data, true, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
Johan Hedbergbe22b542012-03-01 22:24:41 +02004610 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
4611 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
4612 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
4613 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
4614 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
4615 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004616 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg4375f102013-09-25 13:26:10 +03004617 { set_advertising, false, MGMT_SETTING_SIZE },
Johan Hedberg0663ca22013-10-02 13:43:14 +03004618 { set_bredr, false, MGMT_SETTING_SIZE },
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004619 { set_static_address, false, MGMT_SET_STATIC_ADDRESS_SIZE },
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004620 { set_scan_params, false, MGMT_SET_SCAN_PARAMS_SIZE },
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004621 { set_secure_conn, false, MGMT_SETTING_SIZE },
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004622 { set_debug_keys, false, MGMT_SETTING_SIZE },
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004623 { set_privacy, false, MGMT_SET_PRIVACY_SIZE },
Johan Hedberg41edf162014-02-18 10:19:35 +02004624 { load_irks, true, MGMT_LOAD_IRKS_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004625};
4626
4627
Johan Hedberg03811012010-12-08 00:21:06 +02004628int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
4629{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004630 void *buf;
4631 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02004632 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01004633 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004634 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02004635 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02004636 int err;
4637
4638 BT_DBG("got %zu bytes", msglen);
4639
4640 if (msglen < sizeof(*hdr))
4641 return -EINVAL;
4642
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03004643 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02004644 if (!buf)
4645 return -ENOMEM;
4646
4647 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
4648 err = -EFAULT;
4649 goto done;
4650 }
4651
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004652 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07004653 opcode = __le16_to_cpu(hdr->opcode);
4654 index = __le16_to_cpu(hdr->index);
4655 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02004656
4657 if (len != msglen - sizeof(*hdr)) {
4658 err = -EINVAL;
4659 goto done;
4660 }
4661
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004662 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004663 hdev = hci_dev_get(index);
4664 if (!hdev) {
4665 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004666 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004667 goto done;
4668 }
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07004669
Johan Hedbergcebf4cf2013-10-10 18:06:04 +02004670 if (test_bit(HCI_SETUP, &hdev->dev_flags) ||
4671 test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07004672 err = cmd_status(sk, index, opcode,
4673 MGMT_STATUS_INVALID_INDEX);
4674 goto done;
4675 }
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004676 }
4677
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004678 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004679 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02004680 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02004681 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004682 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004683 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02004684 }
4685
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004686 if ((hdev && opcode < MGMT_OP_READ_INFO) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004687 (!hdev && opcode >= MGMT_OP_READ_INFO)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004688 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004689 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004690 goto done;
4691 }
4692
Johan Hedbergbe22b542012-03-01 22:24:41 +02004693 handler = &mgmt_handlers[opcode];
4694
4695 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004696 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02004697 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004698 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02004699 goto done;
4700 }
4701
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004702 if (hdev)
4703 mgmt_init_hdev(sk, hdev);
4704
4705 cp = buf + sizeof(*hdr);
4706
Johan Hedbergbe22b542012-03-01 22:24:41 +02004707 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02004708 if (err < 0)
4709 goto done;
4710
Johan Hedberg03811012010-12-08 00:21:06 +02004711 err = msglen;
4712
4713done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004714 if (hdev)
4715 hci_dev_put(hdev);
4716
Johan Hedberg03811012010-12-08 00:21:06 +02004717 kfree(buf);
4718 return err;
4719}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004720
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004721void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004722{
Marcel Holtmann1514b892013-10-06 08:25:01 -07004723 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004724 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03004725
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004726 mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004727}
4728
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004729void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004730{
Johan Hedberg5f159032012-03-02 03:13:19 +02004731 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02004732
Marcel Holtmann1514b892013-10-06 08:25:01 -07004733 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004734 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03004735
Johan Hedberg744cf192011-11-08 20:40:14 +02004736 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02004737
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004738 mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02004739}
4740
Andre Guedes6046dc32014-02-26 20:21:51 -03004741/* This function requires the caller holds hdev->lock */
4742static void restart_le_auto_conns(struct hci_dev *hdev)
4743{
4744 struct hci_conn_params *p;
4745
4746 list_for_each_entry(p, &hdev->le_conn_params, list) {
4747 if (p->auto_connect == HCI_AUTO_CONN_ALWAYS)
4748 hci_pend_le_conn_add(hdev, &p->addr, p->addr_type);
4749 }
4750}
4751
Johan Hedberg229ab392013-03-15 17:06:53 -05004752static void powered_complete(struct hci_dev *hdev, u8 status)
4753{
4754 struct cmd_lookup match = { NULL, hdev };
4755
4756 BT_DBG("status 0x%02x", status);
4757
4758 hci_dev_lock(hdev);
4759
Andre Guedes6046dc32014-02-26 20:21:51 -03004760 restart_le_auto_conns(hdev);
4761
Johan Hedberg229ab392013-03-15 17:06:53 -05004762 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
4763
4764 new_settings(hdev, match.sk);
4765
4766 hci_dev_unlock(hdev);
4767
4768 if (match.sk)
4769 sock_put(match.sk);
4770}
4771
Johan Hedberg70da6242013-03-15 17:06:51 -05004772static int powered_update_hci(struct hci_dev *hdev)
4773{
Johan Hedberg890ea892013-03-15 17:06:52 -05004774 struct hci_request req;
Johan Hedberg70da6242013-03-15 17:06:51 -05004775 u8 link_sec;
4776
Johan Hedberg890ea892013-03-15 17:06:52 -05004777 hci_req_init(&req, hdev);
4778
Johan Hedberg70da6242013-03-15 17:06:51 -05004779 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
4780 !lmp_host_ssp_capable(hdev)) {
4781 u8 ssp = 1;
4782
Johan Hedberg890ea892013-03-15 17:06:52 -05004783 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, 1, &ssp);
Johan Hedberg70da6242013-03-15 17:06:51 -05004784 }
4785
Johan Hedbergc73eee92013-04-19 18:35:21 +03004786 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
4787 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05004788 struct hci_cp_write_le_host_supported cp;
4789
4790 cp.le = 1;
4791 cp.simul = lmp_le_br_capable(hdev);
4792
4793 /* Check first if we already have the right
4794 * host state (host features set)
4795 */
4796 if (cp.le != lmp_host_le_capable(hdev) ||
4797 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05004798 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
4799 sizeof(cp), &cp);
Johan Hedberg70da6242013-03-15 17:06:51 -05004800 }
4801
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004802 if (lmp_le_capable(hdev)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07004803 /* Make sure the controller has a good default for
4804 * advertising data. This also applies to the case
4805 * where BR/EDR was toggled during the AUTO_OFF phase.
4806 */
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07004807 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004808 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07004809 update_scan_rsp_data(&req);
4810 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07004811
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004812 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
4813 enable_advertising(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03004814 }
4815
Johan Hedberg70da6242013-03-15 17:06:51 -05004816 link_sec = test_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
4817 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05004818 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
4819 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05004820
4821 if (lmp_bredr_capable(hdev)) {
Johan Hedberg56f87902013-10-02 13:43:13 +03004822 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
4823 set_bredr_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05004824 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05004825 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05004826 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05004827 }
4828
Johan Hedberg229ab392013-03-15 17:06:53 -05004829 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05004830}
4831
Johan Hedberg744cf192011-11-08 20:40:14 +02004832int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02004833{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02004834 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg229ab392013-03-15 17:06:53 -05004835 u8 status_not_powered = MGMT_STATUS_NOT_POWERED;
4836 u8 zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02004837 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02004838
Johan Hedberg5e5282b2012-02-21 16:01:30 +02004839 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
4840 return 0;
4841
Johan Hedberg5e5282b2012-02-21 16:01:30 +02004842 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05004843 if (powered_update_hci(hdev) == 0)
4844 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02004845
Johan Hedberg229ab392013-03-15 17:06:53 -05004846 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
4847 &match);
4848 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02004849 }
4850
Johan Hedberg229ab392013-03-15 17:06:53 -05004851 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
4852 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status_not_powered);
4853
4854 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
4855 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
4856 zero_cod, sizeof(zero_cod), NULL);
4857
4858new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02004859 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02004860
4861 if (match.sk)
4862 sock_put(match.sk);
4863
Johan Hedberg7bb895d2012-02-17 01:20:00 +02004864 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02004865}
Johan Hedberg73f22f62010-12-29 16:00:25 +02004866
Marcel Holtmann3eec7052013-10-06 23:55:46 -07004867void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03004868{
4869 struct pending_cmd *cmd;
4870 u8 status;
4871
4872 cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
4873 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07004874 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03004875
4876 if (err == -ERFKILL)
4877 status = MGMT_STATUS_RFKILLED;
4878 else
4879 status = MGMT_STATUS_FAILED;
4880
Marcel Holtmann3eec7052013-10-06 23:55:46 -07004881 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03004882
4883 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03004884}
4885
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004886void mgmt_discoverable_timeout(struct hci_dev *hdev)
4887{
4888 struct hci_request req;
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004889
4890 hci_dev_lock(hdev);
4891
4892 /* When discoverable timeout triggers, then just make sure
4893 * the limited discoverable flag is cleared. Even in the case
4894 * of a timeout triggered from general discoverable, it is
4895 * safe to unconditionally clear the flag.
4896 */
4897 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004898 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004899
4900 hci_req_init(&req, hdev);
Johan Hedberg4b580612013-10-19 23:38:21 +03004901 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
4902 u8 scan = SCAN_PAGE;
4903 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
4904 sizeof(scan), &scan);
4905 }
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004906 update_class(&req);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004907 update_adv_data(&req);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004908 hci_req_run(&req, NULL);
4909
4910 hdev->discov_timeout = 0;
4911
Johan Hedberg9a43e252013-10-20 19:00:07 +03004912 new_settings(hdev, NULL);
4913
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004914 hci_dev_unlock(hdev);
4915}
4916
Marcel Holtmann86a75642013-10-15 06:33:54 -07004917void mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
Johan Hedberg73f22f62010-12-29 16:00:25 +02004918{
Marcel Holtmann86a75642013-10-15 06:33:54 -07004919 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02004920
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03004921 /* Nothing needed here if there's a pending command since that
4922 * commands request completion callback takes care of everything
4923 * necessary.
4924 */
4925 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev))
Marcel Holtmann86a75642013-10-15 06:33:54 -07004926 return;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03004927
Johan Hedbergbd107992014-02-24 14:52:19 +02004928 /* Powering off may clear the scan mode - don't let that interfere */
4929 if (!discoverable && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
4930 return;
4931
Johan Hedberg9a43e252013-10-20 19:00:07 +03004932 if (discoverable) {
Marcel Holtmann86a75642013-10-15 06:33:54 -07004933 changed = !test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004934 } else {
4935 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Marcel Holtmann86a75642013-10-15 06:33:54 -07004936 changed = test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004937 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02004938
Johan Hedberg9a43e252013-10-20 19:00:07 +03004939 if (changed) {
4940 struct hci_request req;
4941
4942 /* In case this change in discoverable was triggered by
4943 * a disabling of connectable there could be a need to
4944 * update the advertising flags.
4945 */
4946 hci_req_init(&req, hdev);
4947 update_adv_data(&req);
4948 hci_req_run(&req, NULL);
4949
Marcel Holtmann86a75642013-10-15 06:33:54 -07004950 new_settings(hdev, NULL);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004951 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02004952}
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004953
Marcel Holtmanna3309162013-10-15 06:33:55 -07004954void mgmt_connectable(struct hci_dev *hdev, u8 connectable)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004955{
Marcel Holtmanna3309162013-10-15 06:33:55 -07004956 bool changed;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004957
Johan Hedbergd7b856f2013-10-14 16:20:04 +03004958 /* Nothing needed here if there's a pending command since that
4959 * commands request completion callback takes care of everything
4960 * necessary.
4961 */
4962 if (mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev))
Marcel Holtmanna3309162013-10-15 06:33:55 -07004963 return;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03004964
Johan Hedbergce3f24c2014-02-24 14:52:20 +02004965 /* Powering off may clear the scan mode - don't let that interfere */
4966 if (!connectable && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
4967 return;
4968
Marcel Holtmanna3309162013-10-15 06:33:55 -07004969 if (connectable)
4970 changed = !test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
4971 else
4972 changed = test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004973
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02004974 if (changed)
Marcel Holtmanna3309162013-10-15 06:33:55 -07004975 new_settings(hdev, NULL);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004976}
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004977
Johan Hedberg778b2352014-02-24 14:52:17 +02004978void mgmt_advertising(struct hci_dev *hdev, u8 advertising)
4979{
Johan Hedberg7c4cfab2014-02-24 14:52:21 +02004980 /* Powering off may stop advertising - don't let that interfere */
4981 if (!advertising && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
4982 return;
4983
Johan Hedberg778b2352014-02-24 14:52:17 +02004984 if (advertising)
4985 set_bit(HCI_ADVERTISING, &hdev->dev_flags);
4986 else
4987 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
4988}
4989
Marcel Holtmann4796e8a2013-10-15 06:33:56 -07004990void mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004991{
Johan Hedbergca69b792011-11-11 18:10:00 +02004992 u8 mgmt_err = mgmt_status(status);
4993
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004994 if (scan & SCAN_PAGE)
Johan Hedberg744cf192011-11-08 20:40:14 +02004995 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004996 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004997
4998 if (scan & SCAN_INQUIRY)
Johan Hedberg744cf192011-11-08 20:40:14 +02004999 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005000 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02005001}
5002
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07005003void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
5004 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005005{
Johan Hedberg86742e12011-11-07 23:13:38 +02005006 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005007
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005008 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005009
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005010 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02005011 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005012 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005013 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03005014 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005015 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005016
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07005017 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005018}
Johan Hedbergf7520542011-01-20 12:34:39 +02005019
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005020void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005021{
5022 struct mgmt_ev_new_long_term_key ev;
5023
5024 memset(&ev, 0, sizeof(ev));
5025
Marcel Holtmann5192d302014-02-19 17:11:58 -08005026 /* Devices using resolvable or non-resolvable random addresses
5027 * without providing an indentity resolving key don't require
5028 * to store long term keys. Their addresses will change the
5029 * next time around.
5030 *
5031 * Only when a remote device provides an identity address
5032 * make sure the long term key is stored. If the remote
5033 * identity is known, the long term keys are internally
5034 * mapped to the identity address. So allow static random
5035 * and public addresses here.
5036 */
Johan Hedbergba74b662014-02-19 14:57:45 +02005037 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
5038 (key->bdaddr.b[5] & 0xc0) != 0xc0)
5039 ev.store_hint = 0x00;
5040 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005041 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02005042
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005043 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005044 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Marcel Holtmannd40f3ee2014-01-31 18:42:17 -08005045 ev.key.type = key->authenticated;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005046 ev.key.enc_size = key->enc_size;
5047 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08005048 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005049
5050 if (key->type == HCI_SMP_LTK)
5051 ev.key.master = 1;
5052
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005053 memcpy(ev.key.val, key->val, sizeof(key->val));
5054
Marcel Holtmann083368f2013-10-15 14:26:29 -07005055 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005056}
5057
Johan Hedberg95fbac82014-02-19 15:18:31 +02005058void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
5059{
5060 struct mgmt_ev_new_irk ev;
5061
5062 memset(&ev, 0, sizeof(ev));
5063
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08005064 /* For identity resolving keys from devices that are already
5065 * using a public address or static random address, do not
5066 * ask for storing this key. The identity resolving key really
5067 * is only mandatory for devices using resovlable random
5068 * addresses.
5069 *
5070 * Storing all identity resolving keys has the downside that
5071 * they will be also loaded on next boot of they system. More
5072 * identity resolving keys, means more time during scanning is
5073 * needed to actually resolve these addresses.
5074 */
5075 if (bacmp(&irk->rpa, BDADDR_ANY))
5076 ev.store_hint = 0x01;
5077 else
5078 ev.store_hint = 0x00;
5079
Johan Hedberg95fbac82014-02-19 15:18:31 +02005080 bacpy(&ev.rpa, &irk->rpa);
5081 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
5082 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
5083 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
5084
5085 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
5086}
5087
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005088void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
5089 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07005090{
5091 struct mgmt_ev_new_csrk ev;
5092
5093 memset(&ev, 0, sizeof(ev));
5094
5095 /* Devices using resolvable or non-resolvable random addresses
5096 * without providing an indentity resolving key don't require
5097 * to store signature resolving keys. Their addresses will change
5098 * the next time around.
5099 *
5100 * Only when a remote device provides an identity address
5101 * make sure the signature resolving key is stored. So allow
5102 * static random and public addresses here.
5103 */
5104 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
5105 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
5106 ev.store_hint = 0x00;
5107 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005108 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07005109
5110 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
5111 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
5112 ev.key.master = csrk->master;
5113 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
5114
5115 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
5116}
5117
Marcel Holtmann94933992013-10-15 10:26:39 -07005118static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
5119 u8 data_len)
5120{
5121 eir[eir_len++] = sizeof(type) + data_len;
5122 eir[eir_len++] = type;
5123 memcpy(&eir[eir_len], data, data_len);
5124 eir_len += data_len;
5125
5126 return eir_len;
5127}
5128
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07005129void mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5130 u8 addr_type, u32 flags, u8 *name, u8 name_len,
5131 u8 *dev_class)
Johan Hedbergf7520542011-01-20 12:34:39 +02005132{
Johan Hedbergb644ba32012-01-17 21:48:47 +02005133 char buf[512];
5134 struct mgmt_ev_device_connected *ev = (void *) buf;
5135 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02005136
Johan Hedbergb644ba32012-01-17 21:48:47 +02005137 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005138 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02005139
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02005140 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02005141
Johan Hedbergb644ba32012-01-17 21:48:47 +02005142 if (name_len > 0)
5143 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005144 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005145
5146 if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
Brian Gix53156382012-03-09 14:07:03 -08005147 eir_len = eir_append_data(ev->eir, eir_len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005148 EIR_CLASS_OF_DEV, dev_class, 3);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005149
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02005150 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005151
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07005152 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
5153 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02005154}
5155
Johan Hedberg8962ee72011-01-20 12:40:27 +02005156static void disconnect_rsp(struct pending_cmd *cmd, void *data)
5157{
Szymon Jancc68fb7f2011-03-22 13:12:19 +01005158 struct mgmt_cp_disconnect *cp = cmd->param;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005159 struct sock **sk = data;
Johan Hedberga38528f2011-01-22 06:46:43 +02005160 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005161
Johan Hedberg88c3df12012-02-09 14:27:38 +02005162 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5163 rp.addr.type = cp->addr.type;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005164
Johan Hedbergaee9b2182012-02-18 15:07:59 +02005165 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005166 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02005167
5168 *sk = cmd->sk;
5169 sock_hold(*sk);
5170
Johan Hedberga664b5b2011-02-19 12:06:02 -03005171 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005172}
5173
Johan Hedberg124f6e32012-02-09 13:50:12 +02005174static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02005175{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02005176 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02005177 struct mgmt_cp_unpair_device *cp = cmd->param;
5178 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02005179
5180 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02005181 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5182 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02005183
Johan Hedbergb1078ad2012-02-09 17:21:16 +02005184 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
5185
Johan Hedbergaee9b2182012-02-18 15:07:59 +02005186 cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02005187
5188 mgmt_pending_remove(cmd);
5189}
5190
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07005191void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02005192 u8 link_type, u8 addr_type, u8 reason,
5193 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02005194{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02005195 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8b064a32014-02-24 14:52:22 +02005196 struct pending_cmd *power_off;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005197 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005198
Johan Hedberg8b064a32014-02-24 14:52:22 +02005199 power_off = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
5200 if (power_off) {
5201 struct mgmt_mode *cp = power_off->param;
5202
5203 /* The connection is still in hci_conn_hash so test for 1
5204 * instead of 0 to know if this is the last one.
5205 */
Johan Hedberga3172b72014-02-28 09:33:44 +02005206 if (!cp->val && hci_conn_count(hdev) == 1) {
5207 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02005208 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02005209 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02005210 }
5211
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02005212 if (!mgmt_connected)
5213 return;
5214
Andre Guedes57eb7762013-10-30 19:01:41 -03005215 if (link_type != ACL_LINK && link_type != LE_LINK)
5216 return;
5217
Johan Hedberg744cf192011-11-08 20:40:14 +02005218 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02005219
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02005220 bacpy(&ev.addr.bdaddr, bdaddr);
5221 ev.addr.type = link_to_bdaddr(link_type, addr_type);
5222 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02005223
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07005224 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005225
5226 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01005227 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005228
Johan Hedberg124f6e32012-02-09 13:50:12 +02005229 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005230 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005231}
5232
Marcel Holtmann78929242013-10-06 23:55:47 -07005233void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
5234 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02005235{
Andre Guedes3655bba2013-10-30 19:01:40 -03005236 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
5237 struct mgmt_cp_disconnect *cp;
Johan Hedberg88c3df12012-02-09 14:27:38 +02005238 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005239 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005240
Jefferson Delfes36a75f12012-09-18 13:36:54 -04005241 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
5242 hdev);
5243
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005244 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005245 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07005246 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005247
Andre Guedes3655bba2013-10-30 19:01:40 -03005248 cp = cmd->param;
5249
5250 if (bacmp(bdaddr, &cp->addr.bdaddr))
5251 return;
5252
5253 if (cp->addr.type != bdaddr_type)
5254 return;
5255
Johan Hedberg88c3df12012-02-09 14:27:38 +02005256 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes3655bba2013-10-30 19:01:40 -03005257 rp.addr.type = bdaddr_type;
Johan Hedberg37d9ef72011-11-10 15:54:39 +02005258
Marcel Holtmann78929242013-10-06 23:55:47 -07005259 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
5260 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02005261
Johan Hedberga664b5b2011-02-19 12:06:02 -03005262 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02005263}
Johan Hedberg17d5c042011-01-22 06:09:08 +02005264
Marcel Holtmann445608d2013-10-06 23:55:48 -07005265void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5266 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02005267{
5268 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02005269 struct pending_cmd *power_off;
5270
5271 power_off = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
5272 if (power_off) {
5273 struct mgmt_mode *cp = power_off->param;
5274
5275 /* The connection is still in hci_conn_hash so test for 1
5276 * instead of 0 to know if this is the last one.
5277 */
Johan Hedberga3172b72014-02-28 09:33:44 +02005278 if (!cp->val && hci_conn_count(hdev) == 1) {
5279 cancel_delayed_work(&hdev->power_off);
Johan Hedbergc9910d02014-02-27 14:35:12 +02005280 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02005281 }
Johan Hedbergc9910d02014-02-27 14:35:12 +02005282 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02005283
Johan Hedberg4c659c32011-11-07 23:13:39 +02005284 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005285 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02005286 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02005287
Marcel Holtmann445608d2013-10-06 23:55:48 -07005288 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02005289}
Johan Hedberg980e1a52011-01-22 06:10:07 +02005290
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07005291void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005292{
5293 struct mgmt_ev_pin_code_request ev;
5294
Johan Hedbergd8457692012-02-17 14:24:57 +02005295 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005296 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02005297 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005298
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07005299 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005300}
5301
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005302void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
5303 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005304{
5305 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005306 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005307
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005308 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005309 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005310 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005311
Johan Hedbergd8457692012-02-17 14:24:57 +02005312 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005313 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005314
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005315 cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
5316 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02005317
Johan Hedberga664b5b2011-02-19 12:06:02 -03005318 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005319}
5320
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005321void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
5322 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005323{
5324 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005325 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005326
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005327 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005328 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005329 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005330
Johan Hedbergd8457692012-02-17 14:24:57 +02005331 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005332 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005333
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005334 cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
5335 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02005336
Johan Hedberga664b5b2011-02-19 12:06:02 -03005337 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005338}
Johan Hedberga5c29682011-02-19 12:05:57 -03005339
Johan Hedberg744cf192011-11-08 20:40:14 +02005340int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02005341 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005342 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03005343{
5344 struct mgmt_ev_user_confirm_request ev;
5345
Johan Hedberg744cf192011-11-08 20:40:14 +02005346 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03005347
Johan Hedberg272d90d2012-02-09 15:26:12 +02005348 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005349 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07005350 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02005351 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03005352
Johan Hedberg744cf192011-11-08 20:40:14 +02005353 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005354 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03005355}
5356
Johan Hedberg272d90d2012-02-09 15:26:12 +02005357int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03005358 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08005359{
5360 struct mgmt_ev_user_passkey_request ev;
5361
5362 BT_DBG("%s", hdev->name);
5363
Johan Hedberg272d90d2012-02-09 15:26:12 +02005364 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005365 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08005366
5367 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005368 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08005369}
5370
Brian Gix0df4c182011-11-16 13:53:13 -08005371static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03005372 u8 link_type, u8 addr_type, u8 status,
5373 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03005374{
5375 struct pending_cmd *cmd;
5376 struct mgmt_rp_user_confirm_reply rp;
5377 int err;
5378
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005379 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03005380 if (!cmd)
5381 return -ENOENT;
5382
Johan Hedberg272d90d2012-02-09 15:26:12 +02005383 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005384 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergaee9b2182012-02-18 15:07:59 +02005385 err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005386 &rp, sizeof(rp));
Johan Hedberga5c29682011-02-19 12:05:57 -03005387
Johan Hedberga664b5b2011-02-19 12:06:02 -03005388 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03005389
5390 return err;
5391}
5392
Johan Hedberg744cf192011-11-08 20:40:14 +02005393int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005394 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03005395{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005396 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005397 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03005398}
5399
Johan Hedberg272d90d2012-02-09 15:26:12 +02005400int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005401 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03005402{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005403 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03005404 status,
5405 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03005406}
Johan Hedberg2a611692011-02-19 12:06:00 -03005407
Brian Gix604086b2011-11-23 08:28:33 -08005408int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005409 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08005410{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005411 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005412 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08005413}
5414
Johan Hedberg272d90d2012-02-09 15:26:12 +02005415int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005416 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08005417{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005418 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03005419 status,
5420 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08005421}
5422
Johan Hedberg92a25252012-09-06 18:39:26 +03005423int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
5424 u8 link_type, u8 addr_type, u32 passkey,
5425 u8 entered)
5426{
5427 struct mgmt_ev_passkey_notify ev;
5428
5429 BT_DBG("%s", hdev->name);
5430
5431 bacpy(&ev.addr.bdaddr, bdaddr);
5432 ev.addr.type = link_to_bdaddr(link_type, addr_type);
5433 ev.passkey = __cpu_to_le32(passkey);
5434 ev.entered = entered;
5435
5436 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
5437}
5438
Marcel Holtmanne5460992013-10-15 14:26:23 -07005439void mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5440 u8 addr_type, u8 status)
Johan Hedberg2a611692011-02-19 12:06:00 -03005441{
5442 struct mgmt_ev_auth_failed ev;
5443
Johan Hedbergbab73cb2012-02-09 16:07:29 +02005444 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005445 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02005446 ev.status = mgmt_status(status);
Johan Hedberg2a611692011-02-19 12:06:00 -03005447
Marcel Holtmanne5460992013-10-15 14:26:23 -07005448 mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg2a611692011-02-19 12:06:00 -03005449}
Johan Hedbergb312b1612011-03-16 14:29:37 +02005450
Marcel Holtmann464996a2013-10-15 14:26:24 -07005451void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005452{
5453 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07005454 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005455
5456 if (status) {
5457 u8 mgmt_err = mgmt_status(status);
5458 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005459 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07005460 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005461 }
5462
Marcel Holtmann464996a2013-10-15 14:26:24 -07005463 if (test_bit(HCI_AUTH, &hdev->flags))
5464 changed = !test_and_set_bit(HCI_LINK_SECURITY,
5465 &hdev->dev_flags);
5466 else
5467 changed = test_and_clear_bit(HCI_LINK_SECURITY,
5468 &hdev->dev_flags);
Johan Hedberg47990ea2012-02-22 11:58:37 +02005469
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005470 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005471 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005472
Johan Hedberg47990ea2012-02-22 11:58:37 +02005473 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07005474 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005475
5476 if (match.sk)
5477 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005478}
5479
Johan Hedberg890ea892013-03-15 17:06:52 -05005480static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02005481{
Johan Hedberg890ea892013-03-15 17:06:52 -05005482 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02005483 struct hci_cp_write_eir cp;
5484
Johan Hedberg976eb202012-10-24 21:12:01 +03005485 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05005486 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02005487
Johan Hedbergc80da272012-02-22 15:38:48 +02005488 memset(hdev->eir, 0, sizeof(hdev->eir));
5489
Johan Hedbergcacaf522012-02-21 00:52:42 +02005490 memset(&cp, 0, sizeof(cp));
5491
Johan Hedberg890ea892013-03-15 17:06:52 -05005492 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02005493}
5494
Marcel Holtmann3e248562013-10-15 14:26:25 -07005495void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005496{
5497 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05005498 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005499 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005500
5501 if (status) {
5502 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005503
5504 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005505 &hdev->dev_flags)) {
5506 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmann3e248562013-10-15 14:26:25 -07005507 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005508 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005509
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005510 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
5511 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07005512 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005513 }
5514
5515 if (enable) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005516 changed = !test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005517 } else {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005518 changed = test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
5519 if (!changed)
5520 changed = test_and_clear_bit(HCI_HS_ENABLED,
5521 &hdev->dev_flags);
5522 else
5523 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005524 }
5525
5526 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
5527
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005528 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07005529 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005530
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02005531 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005532 sock_put(match.sk);
5533
Johan Hedberg890ea892013-03-15 17:06:52 -05005534 hci_req_init(&req, hdev);
5535
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02005536 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05005537 update_eir(&req);
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02005538 else
Johan Hedberg890ea892013-03-15 17:06:52 -05005539 clear_eir(&req);
5540
5541 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005542}
5543
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005544void mgmt_sc_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
5545{
5546 struct cmd_lookup match = { NULL, hdev };
5547 bool changed = false;
5548
5549 if (status) {
5550 u8 mgmt_err = mgmt_status(status);
5551
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005552 if (enable) {
5553 if (test_and_clear_bit(HCI_SC_ENABLED,
5554 &hdev->dev_flags))
5555 new_settings(hdev, NULL);
5556 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
5557 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005558
5559 mgmt_pending_foreach(MGMT_OP_SET_SECURE_CONN, hdev,
5560 cmd_status_rsp, &mgmt_err);
5561 return;
5562 }
5563
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005564 if (enable) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005565 changed = !test_and_set_bit(HCI_SC_ENABLED, &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005566 } else {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005567 changed = test_and_clear_bit(HCI_SC_ENABLED, &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005568 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
5569 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005570
5571 mgmt_pending_foreach(MGMT_OP_SET_SECURE_CONN, hdev,
5572 settings_rsp, &match);
5573
5574 if (changed)
5575 new_settings(hdev, match.sk);
5576
5577 if (match.sk)
5578 sock_put(match.sk);
5579}
5580
Johan Hedberg92da6092013-03-15 17:06:55 -05005581static void sk_lookup(struct pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02005582{
5583 struct cmd_lookup *match = data;
5584
Johan Hedberg90e70452012-02-23 23:09:40 +02005585 if (match->sk == NULL) {
5586 match->sk = cmd->sk;
5587 sock_hold(match->sk);
5588 }
Johan Hedberg90e70452012-02-23 23:09:40 +02005589}
5590
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07005591void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
5592 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005593{
Johan Hedberg90e70452012-02-23 23:09:40 +02005594 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005595
Johan Hedberg92da6092013-03-15 17:06:55 -05005596 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
5597 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
5598 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02005599
5600 if (!status)
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07005601 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class, 3,
5602 NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02005603
5604 if (match.sk)
5605 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005606}
5607
Marcel Holtmann7667da32013-10-15 14:26:27 -07005608void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02005609{
Johan Hedbergb312b1612011-03-16 14:29:37 +02005610 struct mgmt_cp_set_local_name ev;
Johan Hedberg13928972013-03-15 17:07:00 -05005611 struct pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02005612
Johan Hedberg13928972013-03-15 17:07:00 -05005613 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07005614 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02005615
5616 memset(&ev, 0, sizeof(ev));
5617 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02005618 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02005619
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005620 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05005621 if (!cmd) {
5622 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02005623
Johan Hedberg13928972013-03-15 17:07:00 -05005624 /* If this is a HCI command related to powering on the
5625 * HCI dev don't send any mgmt signals.
5626 */
5627 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07005628 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02005629 }
5630
Marcel Holtmann7667da32013-10-15 14:26:27 -07005631 mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
5632 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02005633}
Szymon Jancc35938b2011-03-22 13:12:21 +01005634
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005635void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192,
5636 u8 *randomizer192, u8 *hash256,
5637 u8 *randomizer256, u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01005638{
5639 struct pending_cmd *cmd;
Szymon Jancc35938b2011-03-22 13:12:21 +01005640
Johan Hedberg744cf192011-11-08 20:40:14 +02005641 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01005642
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005643 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01005644 if (!cmd)
Marcel Holtmann3edaf092013-10-15 14:26:28 -07005645 return;
Szymon Jancc35938b2011-03-22 13:12:21 +01005646
5647 if (status) {
Marcel Holtmann3edaf092013-10-15 14:26:28 -07005648 cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
5649 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01005650 } else {
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005651 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags) &&
5652 hash256 && randomizer256) {
5653 struct mgmt_rp_read_local_oob_ext_data rp;
Szymon Jancc35938b2011-03-22 13:12:21 +01005654
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005655 memcpy(rp.hash192, hash192, sizeof(rp.hash192));
5656 memcpy(rp.randomizer192, randomizer192,
5657 sizeof(rp.randomizer192));
Szymon Jancc35938b2011-03-22 13:12:21 +01005658
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005659 memcpy(rp.hash256, hash256, sizeof(rp.hash256));
5660 memcpy(rp.randomizer256, randomizer256,
5661 sizeof(rp.randomizer256));
5662
5663 cmd_complete(cmd->sk, hdev->id,
5664 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
5665 &rp, sizeof(rp));
5666 } else {
5667 struct mgmt_rp_read_local_oob_data rp;
5668
5669 memcpy(rp.hash, hash192, sizeof(rp.hash));
5670 memcpy(rp.randomizer, randomizer192,
5671 sizeof(rp.randomizer));
5672
5673 cmd_complete(cmd->sk, hdev->id,
5674 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
5675 &rp, sizeof(rp));
5676 }
Szymon Jancc35938b2011-03-22 13:12:21 +01005677 }
5678
5679 mgmt_pending_remove(cmd);
Szymon Jancc35938b2011-03-22 13:12:21 +01005680}
Johan Hedberge17acd42011-03-30 23:57:16 +03005681
Marcel Holtmann901801b2013-10-06 23:55:51 -07005682void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5683 u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name, u8
5684 ssp, u8 *eir, u16 eir_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03005685{
Johan Hedberge319d2e2012-01-15 19:51:59 +02005686 char buf[512];
5687 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg5cedbb82014-02-18 21:41:37 +02005688 struct smp_irk *irk;
Johan Hedberg1dc06092012-01-15 21:01:23 +02005689 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03005690
Andre Guedes12602d02013-04-30 15:29:40 -03005691 if (!hci_discovery_active(hdev))
Marcel Holtmann901801b2013-10-06 23:55:51 -07005692 return;
Andre Guedes12602d02013-04-30 15:29:40 -03005693
Johan Hedberg1dc06092012-01-15 21:01:23 +02005694 /* Leave 5 bytes for a potential CoD field */
5695 if (sizeof(*ev) + eir_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07005696 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03005697
Johan Hedberg1dc06092012-01-15 21:01:23 +02005698 memset(buf, 0, sizeof(buf));
5699
Johan Hedberg5cedbb82014-02-18 21:41:37 +02005700 irk = hci_get_irk(hdev, bdaddr, addr_type);
5701 if (irk) {
5702 bacpy(&ev->addr.bdaddr, &irk->bdaddr);
5703 ev->addr.type = link_to_bdaddr(link_type, irk->addr_type);
5704 } else {
5705 bacpy(&ev->addr.bdaddr, bdaddr);
5706 ev->addr.type = link_to_bdaddr(link_type, addr_type);
5707 }
5708
Johan Hedberge319d2e2012-01-15 19:51:59 +02005709 ev->rssi = rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +02005710 if (cfm_name)
Joe Perchesdcf4adb2014-03-12 10:52:35 -07005711 ev->flags |= cpu_to_le32(MGMT_DEV_FOUND_CONFIRM_NAME);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02005712 if (!ssp)
Joe Perchesdcf4adb2014-03-12 10:52:35 -07005713 ev->flags |= cpu_to_le32(MGMT_DEV_FOUND_LEGACY_PAIRING);
Johan Hedberge17acd42011-03-30 23:57:16 +03005714
Johan Hedberg1dc06092012-01-15 21:01:23 +02005715 if (eir_len > 0)
Johan Hedberge319d2e2012-01-15 19:51:59 +02005716 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03005717
Johan Hedberg1dc06092012-01-15 21:01:23 +02005718 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
5719 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005720 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02005721
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02005722 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedberg1dc06092012-01-15 21:01:23 +02005723 ev_size = sizeof(*ev) + eir_len;
Andre Guedesf8523592011-09-09 18:56:26 -03005724
Marcel Holtmann901801b2013-10-06 23:55:51 -07005725 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03005726}
Johan Hedberga88a9652011-03-30 13:18:12 +03005727
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07005728void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5729 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03005730{
Johan Hedbergb644ba32012-01-17 21:48:47 +02005731 struct mgmt_ev_device_found *ev;
5732 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
5733 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03005734
Johan Hedbergb644ba32012-01-17 21:48:47 +02005735 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03005736
Johan Hedbergb644ba32012-01-17 21:48:47 +02005737 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03005738
Johan Hedbergb644ba32012-01-17 21:48:47 +02005739 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005740 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005741 ev->rssi = rssi;
5742
5743 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005744 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005745
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02005746 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005747
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07005748 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03005749}
Johan Hedberg314b2382011-04-27 10:29:57 -04005750
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07005751void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04005752{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02005753 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02005754 struct pending_cmd *cmd;
5755
Andre Guedes343fb142011-11-22 17:14:19 -03005756 BT_DBG("%s discovering %u", hdev->name, discovering);
5757
Johan Hedberg164a6e72011-11-01 17:06:44 +02005758 if (discovering)
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005759 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02005760 else
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005761 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02005762
5763 if (cmd != NULL) {
Johan Hedbergf808e162012-02-19 12:52:07 +02005764 u8 type = hdev->discovery.type;
5765
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005766 cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
5767 sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02005768 mgmt_pending_remove(cmd);
5769 }
5770
Johan Hedbergf963e8e2012-02-20 23:30:44 +02005771 memset(&ev, 0, sizeof(ev));
5772 ev.type = hdev->discovery.type;
5773 ev.discovering = discovering;
5774
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07005775 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04005776}
Antti Julku5e762442011-08-25 16:48:02 +03005777
Johan Hedberg88c1fe42012-02-09 15:56:11 +02005778int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03005779{
5780 struct pending_cmd *cmd;
5781 struct mgmt_ev_device_blocked ev;
5782
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005783 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03005784
Johan Hedberg88c1fe42012-02-09 15:56:11 +02005785 bacpy(&ev.addr.bdaddr, bdaddr);
5786 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03005787
Johan Hedberg744cf192011-11-08 20:40:14 +02005788 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005789 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03005790}
5791
Johan Hedberg88c1fe42012-02-09 15:56:11 +02005792int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03005793{
5794 struct pending_cmd *cmd;
5795 struct mgmt_ev_device_unblocked ev;
5796
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005797 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03005798
Johan Hedberg88c1fe42012-02-09 15:56:11 +02005799 bacpy(&ev.addr.bdaddr, bdaddr);
5800 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03005801
Johan Hedberg744cf192011-11-08 20:40:14 +02005802 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005803 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03005804}
Marcel Holtmann5976e602013-10-06 04:08:14 -07005805
5806static void adv_enable_complete(struct hci_dev *hdev, u8 status)
5807{
5808 BT_DBG("%s status %u", hdev->name, status);
5809
5810 /* Clear the advertising mgmt setting if we failed to re-enable it */
5811 if (status) {
5812 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07005813 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07005814 }
5815}
5816
5817void mgmt_reenable_advertising(struct hci_dev *hdev)
5818{
5819 struct hci_request req;
5820
Marcel Holtmannb145edc2013-10-10 09:47:54 -07005821 if (hci_conn_num(hdev, LE_LINK) > 0)
Marcel Holtmann5976e602013-10-06 04:08:14 -07005822 return;
5823
5824 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags))
5825 return;
5826
5827 hci_req_init(&req, hdev);
5828 enable_advertising(&req);
5829
5830 /* If this fails we have no option but to let user space know
5831 * that we've disabled advertising.
5832 */
5833 if (hci_req_run(&req, adv_enable_complete) < 0) {
5834 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07005835 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07005836 }
5837}