blob: b34e13aed51c5ab5f136e36b1ac65d90d5d858f3 [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 Holtmann40456642014-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-12-13 21:07:06 +0200209
Andre Guedes790eff42012-06-07 19:05:46 -0300210 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
Johan Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-12-13 21:07:06 +0200226 kfree_skb(skb);
227
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300228 return err;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200229}
230
Johan Hedbergaee9b212012-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 Hedbergaee9b212012-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 Hedbergaee9b212012-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 Hedbergaee9b212012-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 Hedbergaee9b212012-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 Holtmann5afeac12014-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergaee9b212012-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 Hedbergf7b64e692010-12-13 21:07:06 +02001345
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001346 hci_dev_lock(hdev);
Johan Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-12-13 21:07:06 +02001472 if (err < 0)
1473 mgmt_pending_remove(cmd);
1474
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001475failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001476 hci_dev_unlock(hdev);
Johan Hedbergf7b64e692010-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 Hedbergf7b64e692010-12-13 21:07:06 +02001581{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001582 struct mgmt_mode *cp = data;
Johan Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Padovan6039aa72012-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{
2765 struct mgmt_rp_pair_device rp;
2766 struct hci_conn *conn = cmd->user_data;
2767
Johan Hedberg61b1a7f2014-03-20 12:54:16 +02002768 bacpy(&rp.addr.bdaddr, &conn->dst);
2769 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002770
Johan Hedbergaee9b212012-02-18 15:07:59 +02002771 cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002772 &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002773
2774 /* So we don't get further callbacks for this connection */
2775 conn->connect_cfm_cb = NULL;
2776 conn->security_cfm_cb = NULL;
2777 conn->disconn_cfm_cb = NULL;
2778
David Herrmann76a68ba2013-04-06 20:28:37 +02002779 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002780
Johan Hedberga664b5b2011-02-19 12:06:02 -03002781 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002782}
2783
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002784void mgmt_smp_complete(struct hci_conn *conn, bool complete)
2785{
2786 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
2787 struct pending_cmd *cmd;
2788
2789 cmd = find_pairing(conn);
2790 if (cmd)
2791 pairing_complete(cmd, status);
2792}
2793
Johan Hedberge9a416b2011-02-19 12:05:56 -03002794static void pairing_complete_cb(struct hci_conn *conn, u8 status)
2795{
2796 struct pending_cmd *cmd;
2797
2798 BT_DBG("status %u", status);
2799
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002800 cmd = find_pairing(conn);
2801 if (!cmd)
2802 BT_DBG("Unable to find a pending command");
2803 else
Johan Hedberge2113262012-02-18 15:20:03 +02002804 pairing_complete(cmd, mgmt_status(status));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002805}
2806
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002807static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302808{
2809 struct pending_cmd *cmd;
2810
2811 BT_DBG("status %u", status);
2812
2813 if (!status)
2814 return;
2815
2816 cmd = find_pairing(conn);
2817 if (!cmd)
2818 BT_DBG("Unable to find a pending command");
2819 else
2820 pairing_complete(cmd, mgmt_status(status));
2821}
2822
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002823static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002824 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002825{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002826 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02002827 struct mgmt_rp_pair_device rp;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002828 struct pending_cmd *cmd;
2829 u8 sec_level, auth_type;
2830 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002831 int err;
2832
2833 BT_DBG("");
2834
Szymon Jancf950a30e2013-01-18 12:48:07 +01002835 memset(&rp, 0, sizeof(rp));
2836 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2837 rp.addr.type = cp->addr.type;
2838
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002839 if (!bdaddr_type_is_valid(cp->addr.type))
2840 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2841 MGMT_STATUS_INVALID_PARAMS,
2842 &rp, sizeof(rp));
2843
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002844 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002845
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002846 if (!hdev_is_powered(hdev)) {
Szymon Jancf950a30e2013-01-18 12:48:07 +01002847 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2848 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002849 goto unlock;
2850 }
2851
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03002852 sec_level = BT_SECURITY_MEDIUM;
2853 if (cp->io_cap == 0x03)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002854 auth_type = HCI_AT_DEDICATED_BONDING;
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03002855 else
Johan Hedberge9a416b2011-02-19 12:05:56 -03002856 auth_type = HCI_AT_DEDICATED_BONDING_MITM;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002857
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002858 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03002859 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
2860 auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002861 } else {
2862 u8 addr_type;
2863
2864 /* Convert from L2CAP channel address type to HCI address type
2865 */
2866 if (cp->addr.type == BDADDR_LE_PUBLIC)
2867 addr_type = ADDR_LE_DEV_PUBLIC;
2868 else
2869 addr_type = ADDR_LE_DEV_RANDOM;
2870
2871 conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
Andre Guedes04a6c582014-02-26 20:21:44 -03002872 sec_level, auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002873 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002874
Ville Tervo30e76272011-02-22 16:10:53 -03002875 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002876 int status;
2877
2878 if (PTR_ERR(conn) == -EBUSY)
2879 status = MGMT_STATUS_BUSY;
2880 else
2881 status = MGMT_STATUS_CONNECT_FAILED;
2882
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002883 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002884 status, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002885 sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002886 goto unlock;
2887 }
2888
2889 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02002890 hci_conn_drop(conn);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002891 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002892 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002893 goto unlock;
2894 }
2895
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002896 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002897 if (!cmd) {
2898 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02002899 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002900 goto unlock;
2901 }
2902
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002903 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002904 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002905 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002906 conn->security_cfm_cb = pairing_complete_cb;
2907 conn->disconn_cfm_cb = pairing_complete_cb;
2908 } else {
2909 conn->connect_cfm_cb = le_pairing_complete_cb;
2910 conn->security_cfm_cb = le_pairing_complete_cb;
2911 conn->disconn_cfm_cb = le_pairing_complete_cb;
2912 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002913
Johan Hedberge9a416b2011-02-19 12:05:56 -03002914 conn->io_capability = cp->io_cap;
2915 cmd->user_data = conn;
2916
2917 if (conn->state == BT_CONNECTED &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002918 hci_conn_security(conn, sec_level, auth_type))
Johan Hedberge9a416b2011-02-19 12:05:56 -03002919 pairing_complete(cmd, 0);
2920
2921 err = 0;
2922
2923unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002924 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002925 return err;
2926}
2927
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002928static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2929 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02002930{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002931 struct mgmt_addr_info *addr = data;
Johan Hedberg28424702012-02-02 04:02:29 +02002932 struct pending_cmd *cmd;
2933 struct hci_conn *conn;
2934 int err;
2935
2936 BT_DBG("");
2937
Johan Hedberg28424702012-02-02 04:02:29 +02002938 hci_dev_lock(hdev);
2939
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002940 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002941 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002942 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002943 goto unlock;
2944 }
2945
Johan Hedberg28424702012-02-02 04:02:29 +02002946 cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
2947 if (!cmd) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002948 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002949 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002950 goto unlock;
2951 }
2952
2953 conn = cmd->user_data;
2954
2955 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002956 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002957 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002958 goto unlock;
2959 }
2960
2961 pairing_complete(cmd, MGMT_STATUS_CANCELLED);
2962
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002963 err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002964 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02002965unlock:
2966 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02002967 return err;
2968}
2969
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002970static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05002971 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002972 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03002973{
Johan Hedberga5c29682011-02-19 12:05:57 -03002974 struct pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08002975 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03002976 int err;
2977
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002978 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02002979
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002980 if (!hdev_is_powered(hdev)) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05002981 err = cmd_complete(sk, hdev->id, mgmt_op,
2982 MGMT_STATUS_NOT_POWERED, addr,
2983 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08002984 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002985 }
2986
Johan Hedberg1707c602013-03-15 17:07:15 -05002987 if (addr->type == BDADDR_BREDR)
2988 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02002989 else
Johan Hedberg1707c602013-03-15 17:07:15 -05002990 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08002991
Johan Hedberg272d90d2012-02-09 15:26:12 +02002992 if (!conn) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05002993 err = cmd_complete(sk, hdev->id, mgmt_op,
2994 MGMT_STATUS_NOT_CONNECTED, addr,
2995 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02002996 goto done;
2997 }
2998
Johan Hedberg1707c602013-03-15 17:07:15 -05002999 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix47c15e22011-11-16 13:53:14 -08003000 /* Continue with pairing via SMP */
Brian Gix5fe57d92011-12-21 16:12:13 -08003001 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix47c15e22011-11-16 13:53:14 -08003002
Brian Gix5fe57d92011-12-21 16:12:13 -08003003 if (!err)
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003004 err = cmd_complete(sk, hdev->id, mgmt_op,
3005 MGMT_STATUS_SUCCESS, addr,
3006 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003007 else
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003008 err = cmd_complete(sk, hdev->id, mgmt_op,
3009 MGMT_STATUS_FAILED, addr,
3010 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003011
Brian Gix47c15e22011-11-16 13:53:14 -08003012 goto done;
3013 }
3014
Johan Hedberg1707c602013-03-15 17:07:15 -05003015 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003016 if (!cmd) {
3017 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003018 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003019 }
3020
Brian Gix0df4c182011-11-16 13:53:13 -08003021 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003022 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3023 struct hci_cp_user_passkey_reply cp;
3024
Johan Hedberg1707c602013-03-15 17:07:15 -05003025 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003026 cp.passkey = passkey;
3027 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3028 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003029 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3030 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003031
Johan Hedberga664b5b2011-02-19 12:06:02 -03003032 if (err < 0)
3033 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003034
Brian Gix0df4c182011-11-16 13:53:13 -08003035done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003036 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003037 return err;
3038}
3039
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303040static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3041 void *data, u16 len)
3042{
3043 struct mgmt_cp_pin_code_neg_reply *cp = data;
3044
3045 BT_DBG("");
3046
Johan Hedberg1707c602013-03-15 17:07:15 -05003047 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303048 MGMT_OP_PIN_CODE_NEG_REPLY,
3049 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3050}
3051
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003052static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3053 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003054{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003055 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003056
3057 BT_DBG("");
3058
3059 if (len != sizeof(*cp))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003060 return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003061 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003062
Johan Hedberg1707c602013-03-15 17:07:15 -05003063 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003064 MGMT_OP_USER_CONFIRM_REPLY,
3065 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003066}
3067
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003068static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003069 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003070{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003071 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003072
3073 BT_DBG("");
3074
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_NEG_REPLY,
3077 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003078}
3079
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003080static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3081 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003082{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003083 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -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_PASSKEY_REPLY,
3089 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003090}
3091
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003092static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003093 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003094{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003095 struct mgmt_cp_user_passkey_neg_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_NEG_REPLY,
3101 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003102}
3103
Johan Hedberg13928972013-03-15 17:07:00 -05003104static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003105{
Johan Hedberg13928972013-03-15 17:07:00 -05003106 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003107 struct hci_cp_write_local_name cp;
3108
Johan Hedberg13928972013-03-15 17:07:00 -05003109 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003110
Johan Hedberg890ea892013-03-15 17:06:52 -05003111 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003112}
3113
Johan Hedberg13928972013-03-15 17:07:00 -05003114static void set_name_complete(struct hci_dev *hdev, u8 status)
3115{
3116 struct mgmt_cp_set_local_name *cp;
3117 struct pending_cmd *cmd;
3118
3119 BT_DBG("status 0x%02x", status);
3120
3121 hci_dev_lock(hdev);
3122
3123 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
3124 if (!cmd)
3125 goto unlock;
3126
3127 cp = cmd->param;
3128
3129 if (status)
3130 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3131 mgmt_status(status));
3132 else
3133 cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3134 cp, sizeof(*cp));
3135
3136 mgmt_pending_remove(cmd);
3137
3138unlock:
3139 hci_dev_unlock(hdev);
3140}
3141
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003142static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003143 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003144{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003145 struct mgmt_cp_set_local_name *cp = data;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003146 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003147 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003148 int err;
3149
3150 BT_DBG("");
3151
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003152 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003153
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003154 /* If the old values are the same as the new ones just return a
3155 * direct command complete event.
3156 */
3157 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3158 !memcmp(hdev->short_name, cp->short_name,
3159 sizeof(hdev->short_name))) {
3160 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3161 data, len);
3162 goto failed;
3163 }
3164
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003165 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003166
Johan Hedbergb5235a62012-02-21 14:32:24 +02003167 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003168 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003169
3170 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003171 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003172 if (err < 0)
3173 goto failed;
3174
3175 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003176 sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003177
Johan Hedbergb5235a62012-02-21 14:32:24 +02003178 goto failed;
3179 }
3180
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003181 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003182 if (!cmd) {
3183 err = -ENOMEM;
3184 goto failed;
3185 }
3186
Johan Hedberg13928972013-03-15 17:07:00 -05003187 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3188
Johan Hedberg890ea892013-03-15 17:06:52 -05003189 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003190
3191 if (lmp_bredr_capable(hdev)) {
3192 update_name(&req);
3193 update_eir(&req);
3194 }
3195
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003196 /* The name is stored in the scan response data and so
3197 * no need to udpate the advertising data here.
3198 */
Johan Hedberg3f985052013-03-15 17:07:02 -05003199 if (lmp_le_capable(hdev))
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003200 update_scan_rsp_data(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003201
Johan Hedberg13928972013-03-15 17:07:00 -05003202 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003203 if (err < 0)
3204 mgmt_pending_remove(cmd);
3205
3206failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003207 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003208 return err;
3209}
3210
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003211static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003212 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01003213{
Szymon Jancc35938b2011-03-22 13:12:21 +01003214 struct pending_cmd *cmd;
3215 int err;
3216
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003217 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01003218
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003219 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003220
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003221 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003222 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003223 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003224 goto unlock;
3225 }
3226
Andre Guedes9a1a1992012-07-24 15:03:48 -03003227 if (!lmp_ssp_capable(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003228 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003229 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003230 goto unlock;
3231 }
3232
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003233 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, 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_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01003236 goto unlock;
3237 }
3238
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003239 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01003240 if (!cmd) {
3241 err = -ENOMEM;
3242 goto unlock;
3243 }
3244
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08003245 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags))
3246 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA,
3247 0, NULL);
3248 else
3249 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
3250
Szymon Jancc35938b2011-03-22 13:12:21 +01003251 if (err < 0)
3252 mgmt_pending_remove(cmd);
3253
3254unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003255 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003256 return err;
3257}
3258
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003259static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003260 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003261{
Szymon Janc2763eda2011-03-22 13:12:22 +01003262 int err;
3263
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003264 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003265
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003266 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003267
Marcel Holtmannec109112014-01-10 02:07:30 -08003268 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
3269 struct mgmt_cp_add_remote_oob_data *cp = data;
3270 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003271
Marcel Holtmannec109112014-01-10 02:07:30 -08003272 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3273 cp->hash, cp->randomizer);
3274 if (err < 0)
3275 status = MGMT_STATUS_FAILED;
3276 else
3277 status = MGMT_STATUS_SUCCESS;
3278
3279 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3280 status, &cp->addr, sizeof(cp->addr));
3281 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
3282 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
3283 u8 status;
3284
3285 err = hci_add_remote_oob_ext_data(hdev, &cp->addr.bdaddr,
3286 cp->hash192,
3287 cp->randomizer192,
3288 cp->hash256,
3289 cp->randomizer256);
3290 if (err < 0)
3291 status = MGMT_STATUS_FAILED;
3292 else
3293 status = MGMT_STATUS_SUCCESS;
3294
3295 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3296 status, &cp->addr, sizeof(cp->addr));
3297 } else {
3298 BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
3299 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3300 MGMT_STATUS_INVALID_PARAMS);
3301 }
Szymon Janc2763eda2011-03-22 13:12:22 +01003302
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003303 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003304 return err;
3305}
3306
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003307static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003308 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003309{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003310 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003311 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01003312 int err;
3313
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003314 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003315
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003316 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003317
Johan Hedberg664ce4c2012-02-09 15:44:09 +02003318 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01003319 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003320 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01003321 else
Szymon Janca6785be2012-12-13 15:11:21 +01003322 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003323
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003324 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003325 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01003326
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003327 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003328 return err;
3329}
3330
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003331static int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status)
3332{
3333 struct pending_cmd *cmd;
3334 u8 type;
3335 int err;
3336
3337 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3338
3339 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
3340 if (!cmd)
3341 return -ENOENT;
3342
3343 type = hdev->discovery.type;
3344
3345 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
3346 &type, sizeof(type));
3347 mgmt_pending_remove(cmd);
3348
3349 return err;
3350}
3351
Andre Guedes7c307722013-04-30 15:29:28 -03003352static void start_discovery_complete(struct hci_dev *hdev, u8 status)
3353{
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01003354 unsigned long timeout = 0;
3355
Andre Guedes7c307722013-04-30 15:29:28 -03003356 BT_DBG("status %d", status);
3357
3358 if (status) {
3359 hci_dev_lock(hdev);
3360 mgmt_start_discovery_failed(hdev, status);
3361 hci_dev_unlock(hdev);
3362 return;
3363 }
3364
3365 hci_dev_lock(hdev);
3366 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
3367 hci_dev_unlock(hdev);
3368
3369 switch (hdev->discovery.type) {
3370 case DISCOV_TYPE_LE:
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01003371 timeout = DISCOV_LE_TIMEOUT;
Andre Guedes7c307722013-04-30 15:29:28 -03003372 break;
3373
3374 case DISCOV_TYPE_INTERLEAVED:
Lukasz Rymanowskib9a7a612014-03-27 20:55:20 +01003375 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03003376 break;
3377
3378 case DISCOV_TYPE_BREDR:
3379 break;
3380
3381 default:
3382 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
3383 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01003384
3385 if (!timeout)
3386 return;
3387
3388 queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable, timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03003389}
3390
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003391static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003392 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04003393{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003394 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04003395 struct pending_cmd *cmd;
Andre Guedes7c307722013-04-30 15:29:28 -03003396 struct hci_cp_le_set_scan_param param_cp;
3397 struct hci_cp_le_set_scan_enable enable_cp;
3398 struct hci_cp_inquiry inq_cp;
3399 struct hci_request req;
3400 /* General inquiry access code (GIAC) */
3401 u8 lap[3] = { 0x33, 0x8b, 0x9e };
Johan Hedbergd9483942014-02-23 19:42:24 +02003402 u8 status, own_addr_type;
Johan Hedberg14a53662011-04-27 10:29:56 -04003403 int err;
3404
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003405 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04003406
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003407 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003408
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003409 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003410 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003411 MGMT_STATUS_NOT_POWERED);
Johan Hedbergbd2d1332011-11-07 23:13:37 +02003412 goto failed;
3413 }
3414
Andre Guedes642be6c2012-03-21 00:03:37 -03003415 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
3416 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3417 MGMT_STATUS_BUSY);
3418 goto failed;
3419 }
3420
Johan Hedbergff9ef572012-01-04 14:23:45 +02003421 if (hdev->discovery.state != DISCOVERY_STOPPED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003422 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003423 MGMT_STATUS_BUSY);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003424 goto failed;
3425 }
3426
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003427 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04003428 if (!cmd) {
3429 err = -ENOMEM;
3430 goto failed;
3431 }
3432
Andre Guedes4aab14e2012-02-17 20:39:36 -03003433 hdev->discovery.type = cp->type;
3434
Andre Guedes7c307722013-04-30 15:29:28 -03003435 hci_req_init(&req, hdev);
3436
Andre Guedes4aab14e2012-02-17 20:39:36 -03003437 switch (hdev->discovery.type) {
Andre Guedesf39799f2012-02-17 20:39:35 -03003438 case DISCOV_TYPE_BREDR:
Johan Hedberge6fe7982013-10-02 15:45:22 +03003439 status = mgmt_bredr_support(hdev);
3440 if (status) {
Johan Hedberg04106752013-01-10 14:54:09 +02003441 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003442 status);
Johan Hedberg04106752013-01-10 14:54:09 +02003443 mgmt_pending_remove(cmd);
3444 goto failed;
3445 }
3446
Andre Guedes7c307722013-04-30 15:29:28 -03003447 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
3448 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3449 MGMT_STATUS_BUSY);
3450 mgmt_pending_remove(cmd);
3451 goto failed;
3452 }
3453
3454 hci_inquiry_cache_flush(hdev);
3455
3456 memset(&inq_cp, 0, sizeof(inq_cp));
3457 memcpy(&inq_cp.lap, lap, sizeof(inq_cp.lap));
Andre Guedes0d8cc932013-04-30 15:29:31 -03003458 inq_cp.length = DISCOV_BREDR_INQUIRY_LEN;
Andre Guedes7c307722013-04-30 15:29:28 -03003459 hci_req_add(&req, HCI_OP_INQUIRY, sizeof(inq_cp), &inq_cp);
Andre Guedesf39799f2012-02-17 20:39:35 -03003460 break;
3461
3462 case DISCOV_TYPE_LE:
Andre Guedes7c307722013-04-30 15:29:28 -03003463 case DISCOV_TYPE_INTERLEAVED:
Johan Hedberge6fe7982013-10-02 15:45:22 +03003464 status = mgmt_le_support(hdev);
3465 if (status) {
Johan Hedberg04106752013-01-10 14:54:09 +02003466 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003467 status);
Johan Hedberg04106752013-01-10 14:54:09 +02003468 mgmt_pending_remove(cmd);
3469 goto failed;
3470 }
3471
Andre Guedes7c307722013-04-30 15:29:28 -03003472 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
Johan Hedberg56f87902013-10-02 13:43:13 +03003473 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
Johan Hedberg04106752013-01-10 14:54:09 +02003474 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3475 MGMT_STATUS_NOT_SUPPORTED);
3476 mgmt_pending_remove(cmd);
3477 goto failed;
3478 }
3479
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003480 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
Andre Guedes7c307722013-04-30 15:29:28 -03003481 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3482 MGMT_STATUS_REJECTED);
3483 mgmt_pending_remove(cmd);
3484 goto failed;
3485 }
3486
Andre Guedesc54c3862014-02-26 20:21:50 -03003487 /* If controller is scanning, it means the background scanning
3488 * is running. Thus, we should temporarily stop it in order to
3489 * set the discovery scanning parameters.
3490 */
3491 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
3492 hci_req_add_le_scan_disable(&req);
Andre Guedes7c307722013-04-30 15:29:28 -03003493
3494 memset(&param_cp, 0, sizeof(param_cp));
Johan Hedbergd9483942014-02-23 19:42:24 +02003495
Marcel Holtmann94b1fc92014-02-23 20:25:54 -08003496 /* All active scans will be done with either a resolvable
3497 * private address (when privacy feature has been enabled)
3498 * or unresolvable private address.
3499 */
3500 err = hci_update_random_address(&req, true, &own_addr_type);
Johan Hedbergd9483942014-02-23 19:42:24 +02003501 if (err < 0) {
3502 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3503 MGMT_STATUS_FAILED);
3504 mgmt_pending_remove(cmd);
3505 goto failed;
3506 }
3507
Andre Guedes7c307722013-04-30 15:29:28 -03003508 param_cp.type = LE_SCAN_ACTIVE;
Andre Guedes0d8cc932013-04-30 15:29:31 -03003509 param_cp.interval = cpu_to_le16(DISCOV_LE_SCAN_INT);
3510 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
Johan Hedbergd9483942014-02-23 19:42:24 +02003511 param_cp.own_address_type = own_addr_type;
Andre Guedes7c307722013-04-30 15:29:28 -03003512 hci_req_add(&req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
3513 &param_cp);
3514
3515 memset(&enable_cp, 0, sizeof(enable_cp));
3516 enable_cp.enable = LE_SCAN_ENABLE;
3517 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
3518 hci_req_add(&req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
3519 &enable_cp);
Andre Guedes5e0452c2012-02-17 20:39:38 -03003520 break;
3521
Andre Guedesf39799f2012-02-17 20:39:35 -03003522 default:
Johan Hedberg04106752013-01-10 14:54:09 +02003523 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3524 MGMT_STATUS_INVALID_PARAMS);
3525 mgmt_pending_remove(cmd);
3526 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03003527 }
Andre Guedes3fd24152012-02-03 17:48:01 -03003528
Andre Guedes7c307722013-04-30 15:29:28 -03003529 err = hci_req_run(&req, start_discovery_complete);
Johan Hedberg14a53662011-04-27 10:29:56 -04003530 if (err < 0)
3531 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003532 else
3533 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04003534
3535failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003536 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003537 return err;
3538}
3539
Andre Guedes1183fdc2013-04-30 15:29:35 -03003540static int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status)
3541{
3542 struct pending_cmd *cmd;
3543 int err;
3544
3545 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
3546 if (!cmd)
3547 return -ENOENT;
3548
3549 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
3550 &hdev->discovery.type, sizeof(hdev->discovery.type));
3551 mgmt_pending_remove(cmd);
3552
3553 return err;
3554}
3555
Andre Guedes0e05bba2013-04-30 15:29:33 -03003556static void stop_discovery_complete(struct hci_dev *hdev, u8 status)
3557{
3558 BT_DBG("status %d", status);
3559
3560 hci_dev_lock(hdev);
3561
3562 if (status) {
3563 mgmt_stop_discovery_failed(hdev, status);
3564 goto unlock;
3565 }
3566
3567 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3568
3569unlock:
3570 hci_dev_unlock(hdev);
3571}
3572
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003573static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003574 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04003575{
Johan Hedbergd9306502012-02-20 23:25:18 +02003576 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04003577 struct pending_cmd *cmd;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003578 struct hci_cp_remote_name_req_cancel cp;
3579 struct inquiry_entry *e;
Andre Guedes0e05bba2013-04-30 15:29:33 -03003580 struct hci_request req;
Johan Hedberg14a53662011-04-27 10:29:56 -04003581 int err;
3582
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003583 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04003584
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003585 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003586
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003587 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003588 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003589 MGMT_STATUS_REJECTED, &mgmt_cp->type,
3590 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02003591 goto unlock;
3592 }
3593
3594 if (hdev->discovery.type != mgmt_cp->type) {
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_INVALID_PARAMS, &mgmt_cp->type,
3597 sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003598 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02003599 }
3600
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003601 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04003602 if (!cmd) {
3603 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003604 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04003605 }
3606
Andre Guedes0e05bba2013-04-30 15:29:33 -03003607 hci_req_init(&req, hdev);
3608
Andre Guedese0d9727e2012-03-20 15:15:36 -03003609 switch (hdev->discovery.state) {
3610 case DISCOVERY_FINDING:
Andre Guedes0e05bba2013-04-30 15:29:33 -03003611 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
3612 hci_req_add(&req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
3613 } else {
3614 cancel_delayed_work(&hdev->le_scan_disable);
3615
Andre Guedesb1efcc22014-02-26 20:21:40 -03003616 hci_req_add_le_scan_disable(&req);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003617 }
Andre Guedesc9ecc482012-03-15 16:52:08 -03003618
Andre Guedese0d9727e2012-03-20 15:15:36 -03003619 break;
3620
3621 case DISCOVERY_RESOLVING:
3622 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003623 NAME_PENDING);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003624 if (!e) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003625 mgmt_pending_remove(cmd);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003626 err = cmd_complete(sk, hdev->id,
3627 MGMT_OP_STOP_DISCOVERY, 0,
3628 &mgmt_cp->type,
3629 sizeof(mgmt_cp->type));
3630 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3631 goto unlock;
3632 }
3633
3634 bacpy(&cp.bdaddr, &e->data.bdaddr);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003635 hci_req_add(&req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
3636 &cp);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003637
3638 break;
3639
3640 default:
3641 BT_DBG("unknown discovery state %u", hdev->discovery.state);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003642
3643 mgmt_pending_remove(cmd);
3644 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
3645 MGMT_STATUS_FAILED, &mgmt_cp->type,
3646 sizeof(mgmt_cp->type));
3647 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003648 }
3649
Andre Guedes0e05bba2013-04-30 15:29:33 -03003650 err = hci_req_run(&req, stop_discovery_complete);
Johan Hedberg14a53662011-04-27 10:29:56 -04003651 if (err < 0)
3652 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003653 else
3654 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Johan Hedberg14a53662011-04-27 10:29:56 -04003655
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003656unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003657 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003658 return err;
3659}
3660
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003661static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003662 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02003663{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003664 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003665 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003666 int err;
3667
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003668 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003669
Johan Hedberg561aafb2012-01-04 13:31:59 +02003670 hci_dev_lock(hdev);
3671
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003672 if (!hci_discovery_active(hdev)) {
Lukasz Rymanowskid3a25412014-02-27 16:47:28 +01003673 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
3674 MGMT_STATUS_FAILED, &cp->addr,
3675 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003676 goto failed;
3677 }
3678
Johan Hedberga198e7b2012-02-17 14:27:06 +02003679 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003680 if (!e) {
Lukasz Rymanowskid3a25412014-02-27 16:47:28 +01003681 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
3682 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
3683 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02003684 goto failed;
3685 }
3686
3687 if (cp->name_known) {
3688 e->name_state = NAME_KNOWN;
3689 list_del(&e->list);
3690 } else {
3691 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02003692 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003693 }
3694
Johan Hedberge3846622013-01-09 15:29:33 +02003695 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr,
3696 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02003697
3698failed:
3699 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003700 return err;
3701}
3702
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003703static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003704 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03003705{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003706 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003707 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03003708 int err;
3709
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003710 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03003711
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003712 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02003713 return cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
3714 MGMT_STATUS_INVALID_PARAMS,
3715 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003716
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003717 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003718
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003719 err = hci_blacklist_add(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03003720 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003721 status = MGMT_STATUS_FAILED;
Antti Julku7fbec222011-06-15 12:01:15 +03003722 else
Szymon Janca6785be2012-12-13 15:11:21 +01003723 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003724
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003725 err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003726 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03003727
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003728 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03003729
3730 return err;
3731}
3732
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003733static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003734 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03003735{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003736 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003737 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03003738 int err;
3739
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003740 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03003741
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003742 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02003743 return cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
3744 MGMT_STATUS_INVALID_PARAMS,
3745 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003746
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003747 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003748
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003749 err = hci_blacklist_del(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03003750 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003751 status = MGMT_STATUS_INVALID_PARAMS;
Antti Julku7fbec222011-06-15 12:01:15 +03003752 else
Szymon Janca6785be2012-12-13 15:11:21 +01003753 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003754
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003755 err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003756 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03003757
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003758 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03003759
3760 return err;
3761}
3762
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003763static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
3764 u16 len)
3765{
3766 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05003767 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003768 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01003769 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003770
3771 BT_DBG("%s", hdev->name);
3772
Szymon Jancc72d4b82012-03-16 16:02:57 +01003773 source = __le16_to_cpu(cp->source);
3774
3775 if (source > 0x0002)
3776 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
3777 MGMT_STATUS_INVALID_PARAMS);
3778
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003779 hci_dev_lock(hdev);
3780
Szymon Jancc72d4b82012-03-16 16:02:57 +01003781 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003782 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
3783 hdev->devid_product = __le16_to_cpu(cp->product);
3784 hdev->devid_version = __le16_to_cpu(cp->version);
3785
3786 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);
3787
Johan Hedberg890ea892013-03-15 17:06:52 -05003788 hci_req_init(&req, hdev);
3789 update_eir(&req);
3790 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003791
3792 hci_dev_unlock(hdev);
3793
3794 return err;
3795}
3796
Johan Hedberg4375f102013-09-25 13:26:10 +03003797static void set_advertising_complete(struct hci_dev *hdev, u8 status)
3798{
3799 struct cmd_lookup match = { NULL, hdev };
3800
3801 if (status) {
3802 u8 mgmt_err = mgmt_status(status);
3803
3804 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
3805 cmd_status_rsp, &mgmt_err);
3806 return;
3807 }
3808
3809 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
3810 &match);
3811
3812 new_settings(hdev, match.sk);
3813
3814 if (match.sk)
3815 sock_put(match.sk);
3816}
3817
Marcel Holtmann21b51872013-10-10 09:47:53 -07003818static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
3819 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03003820{
3821 struct mgmt_mode *cp = data;
3822 struct pending_cmd *cmd;
3823 struct hci_request req;
Johan Hedberge6fe7982013-10-02 15:45:22 +03003824 u8 val, enabled, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03003825 int err;
3826
3827 BT_DBG("request for %s", hdev->name);
3828
Johan Hedberge6fe7982013-10-02 15:45:22 +03003829 status = mgmt_le_support(hdev);
3830 if (status)
Johan Hedberg4375f102013-09-25 13:26:10 +03003831 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003832 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03003833
3834 if (cp->val != 0x00 && cp->val != 0x01)
3835 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3836 MGMT_STATUS_INVALID_PARAMS);
3837
3838 hci_dev_lock(hdev);
3839
3840 val = !!cp->val;
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003841 enabled = test_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003842
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02003843 /* The following conditions are ones which mean that we should
3844 * not do any HCI communication but directly send a mgmt
3845 * response to user space (after toggling the flag if
3846 * necessary).
3847 */
3848 if (!hdev_is_powered(hdev) || val == enabled ||
Marcel Holtmannb145edc2013-10-10 09:47:54 -07003849 hci_conn_num(hdev, LE_LINK) > 0) {
Johan Hedberg4375f102013-09-25 13:26:10 +03003850 bool changed = false;
3851
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003852 if (val != test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
3853 change_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003854 changed = true;
3855 }
3856
3857 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
3858 if (err < 0)
3859 goto unlock;
3860
3861 if (changed)
3862 err = new_settings(hdev, sk);
3863
3864 goto unlock;
3865 }
3866
3867 if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
3868 mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
3869 err = cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3870 MGMT_STATUS_BUSY);
3871 goto unlock;
3872 }
3873
3874 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
3875 if (!cmd) {
3876 err = -ENOMEM;
3877 goto unlock;
3878 }
3879
3880 hci_req_init(&req, hdev);
3881
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07003882 if (val)
3883 enable_advertising(&req);
3884 else
3885 disable_advertising(&req);
Johan Hedberg4375f102013-09-25 13:26:10 +03003886
3887 err = hci_req_run(&req, set_advertising_complete);
3888 if (err < 0)
3889 mgmt_pending_remove(cmd);
3890
3891unlock:
3892 hci_dev_unlock(hdev);
3893 return err;
3894}
3895
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003896static int set_static_address(struct sock *sk, struct hci_dev *hdev,
3897 void *data, u16 len)
3898{
3899 struct mgmt_cp_set_static_address *cp = data;
3900 int err;
3901
3902 BT_DBG("%s", hdev->name);
3903
Marcel Holtmann62af4442013-10-02 22:10:32 -07003904 if (!lmp_le_capable(hdev))
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003905 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann62af4442013-10-02 22:10:32 -07003906 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003907
3908 if (hdev_is_powered(hdev))
3909 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
3910 MGMT_STATUS_REJECTED);
3911
3912 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
3913 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
3914 return cmd_status(sk, hdev->id,
3915 MGMT_OP_SET_STATIC_ADDRESS,
3916 MGMT_STATUS_INVALID_PARAMS);
3917
3918 /* Two most significant bits shall be set */
3919 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
3920 return cmd_status(sk, hdev->id,
3921 MGMT_OP_SET_STATIC_ADDRESS,
3922 MGMT_STATUS_INVALID_PARAMS);
3923 }
3924
3925 hci_dev_lock(hdev);
3926
3927 bacpy(&hdev->static_addr, &cp->bdaddr);
3928
3929 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, 0, NULL, 0);
3930
3931 hci_dev_unlock(hdev);
3932
3933 return err;
3934}
3935
Marcel Holtmann14b49b92013-10-11 08:23:20 -07003936static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
3937 void *data, u16 len)
3938{
3939 struct mgmt_cp_set_scan_params *cp = data;
3940 __u16 interval, window;
3941 int err;
3942
3943 BT_DBG("%s", hdev->name);
3944
3945 if (!lmp_le_capable(hdev))
3946 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3947 MGMT_STATUS_NOT_SUPPORTED);
3948
3949 interval = __le16_to_cpu(cp->interval);
3950
3951 if (interval < 0x0004 || interval > 0x4000)
3952 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3953 MGMT_STATUS_INVALID_PARAMS);
3954
3955 window = __le16_to_cpu(cp->window);
3956
3957 if (window < 0x0004 || window > 0x4000)
3958 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3959 MGMT_STATUS_INVALID_PARAMS);
3960
Marcel Holtmann899e1072013-10-14 09:55:32 -07003961 if (window > interval)
3962 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3963 MGMT_STATUS_INVALID_PARAMS);
3964
Marcel Holtmann14b49b92013-10-11 08:23:20 -07003965 hci_dev_lock(hdev);
3966
3967 hdev->le_scan_interval = interval;
3968 hdev->le_scan_window = window;
3969
3970 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0, NULL, 0);
3971
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03003972 /* If background scan is running, restart it so new parameters are
3973 * loaded.
3974 */
3975 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags) &&
3976 hdev->discovery.state == DISCOVERY_STOPPED) {
3977 struct hci_request req;
3978
3979 hci_req_init(&req, hdev);
3980
3981 hci_req_add_le_scan_disable(&req);
3982 hci_req_add_le_passive_scan(&req);
3983
3984 hci_req_run(&req, NULL);
3985 }
3986
Marcel Holtmann14b49b92013-10-11 08:23:20 -07003987 hci_dev_unlock(hdev);
3988
3989 return err;
3990}
3991
Johan Hedberg33e38b32013-03-15 17:07:05 -05003992static void fast_connectable_complete(struct hci_dev *hdev, u8 status)
3993{
3994 struct pending_cmd *cmd;
3995
3996 BT_DBG("status 0x%02x", status);
3997
3998 hci_dev_lock(hdev);
3999
4000 cmd = mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4001 if (!cmd)
4002 goto unlock;
4003
4004 if (status) {
4005 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4006 mgmt_status(status));
4007 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004008 struct mgmt_mode *cp = cmd->param;
4009
4010 if (cp->val)
4011 set_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4012 else
4013 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4014
Johan Hedberg33e38b32013-03-15 17:07:05 -05004015 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4016 new_settings(hdev, cmd->sk);
4017 }
4018
4019 mgmt_pending_remove(cmd);
4020
4021unlock:
4022 hci_dev_unlock(hdev);
4023}
4024
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004025static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004026 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03004027{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004028 struct mgmt_mode *cp = data;
Johan Hedberg33e38b32013-03-15 17:07:05 -05004029 struct pending_cmd *cmd;
4030 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03004031 int err;
4032
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004033 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004034
Johan Hedberg56f87902013-10-02 13:43:13 +03004035 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) ||
4036 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberg33c525c2012-10-24 21:11:58 +03004037 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4038 MGMT_STATUS_NOT_SUPPORTED);
4039
Johan Hedberga7e80f22013-01-09 16:05:19 +02004040 if (cp->val != 0x00 && cp->val != 0x01)
4041 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4042 MGMT_STATUS_INVALID_PARAMS);
4043
Johan Hedberg5400c042012-02-21 16:40:33 +02004044 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004045 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004046 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02004047
4048 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004049 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004050 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004051
4052 hci_dev_lock(hdev);
4053
Johan Hedberg05cbf292013-03-15 17:07:07 -05004054 if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
4055 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4056 MGMT_STATUS_BUSY);
4057 goto unlock;
4058 }
4059
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004060 if (!!cp->val == test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) {
4061 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
4062 hdev);
4063 goto unlock;
4064 }
4065
Johan Hedberg33e38b32013-03-15 17:07:05 -05004066 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
4067 data, len);
4068 if (!cmd) {
4069 err = -ENOMEM;
4070 goto unlock;
4071 }
4072
4073 hci_req_init(&req, hdev);
4074
Johan Hedberg406d7802013-03-15 17:07:09 -05004075 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004076
4077 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004078 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004079 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004080 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004081 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004082 }
4083
Johan Hedberg33e38b32013-03-15 17:07:05 -05004084unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03004085 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004086
Antti Julkuf6422ec2011-06-22 13:11:56 +03004087 return err;
4088}
4089
Johan Hedberg67e5a7a2013-10-14 21:15:25 +03004090static void set_bredr_scan(struct hci_request *req)
4091{
4092 struct hci_dev *hdev = req->hdev;
4093 u8 scan = 0;
4094
4095 /* Ensure that fast connectable is disabled. This function will
4096 * not do anything if the page scan parameters are already what
4097 * they should be.
4098 */
4099 write_fast_connectable(req, false);
4100
4101 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
4102 scan |= SCAN_PAGE;
4103 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
4104 scan |= SCAN_INQUIRY;
4105
4106 if (scan)
4107 hci_req_add(req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
4108}
4109
Johan Hedberg0663ca22013-10-02 13:43:14 +03004110static void set_bredr_complete(struct hci_dev *hdev, u8 status)
4111{
4112 struct pending_cmd *cmd;
4113
4114 BT_DBG("status 0x%02x", status);
4115
4116 hci_dev_lock(hdev);
4117
4118 cmd = mgmt_pending_find(MGMT_OP_SET_BREDR, hdev);
4119 if (!cmd)
4120 goto unlock;
4121
4122 if (status) {
4123 u8 mgmt_err = mgmt_status(status);
4124
4125 /* We need to restore the flag if related HCI commands
4126 * failed.
4127 */
4128 clear_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4129
4130 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
4131 } else {
4132 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
4133 new_settings(hdev, cmd->sk);
4134 }
4135
4136 mgmt_pending_remove(cmd);
4137
4138unlock:
4139 hci_dev_unlock(hdev);
4140}
4141
4142static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
4143{
4144 struct mgmt_mode *cp = data;
4145 struct pending_cmd *cmd;
4146 struct hci_request req;
4147 int err;
4148
4149 BT_DBG("request for %s", hdev->name);
4150
4151 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
4152 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4153 MGMT_STATUS_NOT_SUPPORTED);
4154
4155 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
4156 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4157 MGMT_STATUS_REJECTED);
4158
4159 if (cp->val != 0x00 && cp->val != 0x01)
4160 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4161 MGMT_STATUS_INVALID_PARAMS);
4162
4163 hci_dev_lock(hdev);
4164
4165 if (cp->val == test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
4166 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4167 goto unlock;
4168 }
4169
4170 if (!hdev_is_powered(hdev)) {
4171 if (!cp->val) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03004172 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
4173 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
4174 clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
4175 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4176 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
4177 }
4178
4179 change_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4180
4181 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4182 if (err < 0)
4183 goto unlock;
4184
4185 err = new_settings(hdev, sk);
4186 goto unlock;
4187 }
4188
4189 /* Reject disabling when powered on */
4190 if (!cp->val) {
4191 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4192 MGMT_STATUS_REJECTED);
4193 goto unlock;
4194 }
4195
4196 if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) {
4197 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4198 MGMT_STATUS_BUSY);
4199 goto unlock;
4200 }
4201
4202 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
4203 if (!cmd) {
4204 err = -ENOMEM;
4205 goto unlock;
4206 }
4207
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004208 /* We need to flip the bit already here so that update_adv_data
Johan Hedberg0663ca22013-10-02 13:43:14 +03004209 * generates the correct flags.
4210 */
4211 set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4212
4213 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004214
4215 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
4216 set_bredr_scan(&req);
4217
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07004218 /* Since only the advertising data flags will change, there
4219 * is no need to update the scan response data.
4220 */
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004221 update_adv_data(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004222
Johan Hedberg0663ca22013-10-02 13:43:14 +03004223 err = hci_req_run(&req, set_bredr_complete);
4224 if (err < 0)
4225 mgmt_pending_remove(cmd);
4226
4227unlock:
4228 hci_dev_unlock(hdev);
4229 return err;
4230}
4231
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004232static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
4233 void *data, u16 len)
4234{
4235 struct mgmt_mode *cp = data;
4236 struct pending_cmd *cmd;
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004237 u8 val, status;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004238 int err;
4239
4240 BT_DBG("request for %s", hdev->name);
4241
4242 status = mgmt_bredr_support(hdev);
4243 if (status)
4244 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4245 status);
4246
Marcel Holtmann5afeac12014-01-10 02:07:27 -08004247 if (!lmp_sc_capable(hdev) &&
4248 !test_bit(HCI_FORCE_SC, &hdev->dev_flags))
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004249 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4250 MGMT_STATUS_NOT_SUPPORTED);
4251
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004252 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004253 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4254 MGMT_STATUS_INVALID_PARAMS);
4255
4256 hci_dev_lock(hdev);
4257
4258 if (!hdev_is_powered(hdev)) {
4259 bool changed;
4260
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004261 if (cp->val) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004262 changed = !test_and_set_bit(HCI_SC_ENABLED,
4263 &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004264 if (cp->val == 0x02)
4265 set_bit(HCI_SC_ONLY, &hdev->dev_flags);
4266 else
4267 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4268 } else {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004269 changed = test_and_clear_bit(HCI_SC_ENABLED,
4270 &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004271 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4272 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004273
4274 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
4275 if (err < 0)
4276 goto failed;
4277
4278 if (changed)
4279 err = new_settings(hdev, sk);
4280
4281 goto failed;
4282 }
4283
4284 if (mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
4285 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4286 MGMT_STATUS_BUSY);
4287 goto failed;
4288 }
4289
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004290 val = !!cp->val;
4291
4292 if (val == test_bit(HCI_SC_ENABLED, &hdev->dev_flags) &&
4293 (cp->val == 0x02) == test_bit(HCI_SC_ONLY, &hdev->dev_flags)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004294 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
4295 goto failed;
4296 }
4297
4298 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
4299 if (!cmd) {
4300 err = -ENOMEM;
4301 goto failed;
4302 }
4303
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004304 err = hci_send_cmd(hdev, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004305 if (err < 0) {
4306 mgmt_pending_remove(cmd);
4307 goto failed;
4308 }
4309
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004310 if (cp->val == 0x02)
4311 set_bit(HCI_SC_ONLY, &hdev->dev_flags);
4312 else
4313 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4314
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004315failed:
4316 hci_dev_unlock(hdev);
4317 return err;
4318}
4319
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004320static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
4321 void *data, u16 len)
4322{
4323 struct mgmt_mode *cp = data;
4324 bool changed;
4325 int err;
4326
4327 BT_DBG("request for %s", hdev->name);
4328
4329 if (cp->val != 0x00 && cp->val != 0x01)
4330 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
4331 MGMT_STATUS_INVALID_PARAMS);
4332
4333 hci_dev_lock(hdev);
4334
4335 if (cp->val)
4336 changed = !test_and_set_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
4337 else
4338 changed = test_and_clear_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
4339
4340 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
4341 if (err < 0)
4342 goto unlock;
4343
4344 if (changed)
4345 err = new_settings(hdev, sk);
4346
4347unlock:
4348 hci_dev_unlock(hdev);
4349 return err;
4350}
4351
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004352static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
4353 u16 len)
4354{
4355 struct mgmt_cp_set_privacy *cp = cp_data;
4356 bool changed;
4357 int err;
4358
4359 BT_DBG("request for %s", hdev->name);
4360
4361 if (!lmp_le_capable(hdev))
4362 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4363 MGMT_STATUS_NOT_SUPPORTED);
4364
4365 if (cp->privacy != 0x00 && cp->privacy != 0x01)
4366 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4367 MGMT_STATUS_INVALID_PARAMS);
4368
4369 if (hdev_is_powered(hdev))
4370 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4371 MGMT_STATUS_REJECTED);
4372
4373 hci_dev_lock(hdev);
4374
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02004375 /* If user space supports this command it is also expected to
4376 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
4377 */
4378 set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags);
4379
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004380 if (cp->privacy) {
4381 changed = !test_and_set_bit(HCI_PRIVACY, &hdev->dev_flags);
4382 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
4383 set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
4384 } else {
4385 changed = test_and_clear_bit(HCI_PRIVACY, &hdev->dev_flags);
4386 memset(hdev->irk, 0, sizeof(hdev->irk));
4387 clear_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
4388 }
4389
4390 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
4391 if (err < 0)
4392 goto unlock;
4393
4394 if (changed)
4395 err = new_settings(hdev, sk);
4396
4397unlock:
4398 hci_dev_unlock(hdev);
4399 return err;
4400}
4401
Johan Hedberg41edf162014-02-18 10:19:35 +02004402static bool irk_is_valid(struct mgmt_irk_info *irk)
4403{
4404 switch (irk->addr.type) {
4405 case BDADDR_LE_PUBLIC:
4406 return true;
4407
4408 case BDADDR_LE_RANDOM:
4409 /* Two most significant bits shall be set */
4410 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
4411 return false;
4412 return true;
4413 }
4414
4415 return false;
4416}
4417
4418static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
4419 u16 len)
4420{
4421 struct mgmt_cp_load_irks *cp = cp_data;
4422 u16 irk_count, expected_len;
4423 int i, err;
4424
4425 BT_DBG("request for %s", hdev->name);
4426
4427 if (!lmp_le_capable(hdev))
4428 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
4429 MGMT_STATUS_NOT_SUPPORTED);
4430
4431 irk_count = __le16_to_cpu(cp->irk_count);
4432
4433 expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
4434 if (expected_len != len) {
4435 BT_ERR("load_irks: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02004436 expected_len, len);
Johan Hedberg41edf162014-02-18 10:19:35 +02004437 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
4438 MGMT_STATUS_INVALID_PARAMS);
4439 }
4440
4441 BT_DBG("%s irk_count %u", hdev->name, irk_count);
4442
4443 for (i = 0; i < irk_count; i++) {
4444 struct mgmt_irk_info *key = &cp->irks[i];
4445
4446 if (!irk_is_valid(key))
4447 return cmd_status(sk, hdev->id,
4448 MGMT_OP_LOAD_IRKS,
4449 MGMT_STATUS_INVALID_PARAMS);
4450 }
4451
4452 hci_dev_lock(hdev);
4453
4454 hci_smp_irks_clear(hdev);
4455
4456 for (i = 0; i < irk_count; i++) {
4457 struct mgmt_irk_info *irk = &cp->irks[i];
4458 u8 addr_type;
4459
4460 if (irk->addr.type == BDADDR_LE_PUBLIC)
4461 addr_type = ADDR_LE_DEV_PUBLIC;
4462 else
4463 addr_type = ADDR_LE_DEV_RANDOM;
4464
4465 hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val,
4466 BDADDR_ANY);
4467 }
4468
4469 set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags);
4470
4471 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
4472
4473 hci_dev_unlock(hdev);
4474
4475 return err;
4476}
4477
Johan Hedberg3f706b72013-01-20 14:27:16 +02004478static bool ltk_is_valid(struct mgmt_ltk_info *key)
4479{
4480 if (key->master != 0x00 && key->master != 0x01)
4481 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08004482
4483 switch (key->addr.type) {
4484 case BDADDR_LE_PUBLIC:
4485 return true;
4486
4487 case BDADDR_LE_RANDOM:
4488 /* Two most significant bits shall be set */
4489 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
4490 return false;
4491 return true;
4492 }
4493
4494 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02004495}
4496
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004497static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004498 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004499{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004500 struct mgmt_cp_load_long_term_keys *cp = cp_data;
4501 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004502 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004503
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07004504 BT_DBG("request for %s", hdev->name);
4505
4506 if (!lmp_le_capable(hdev))
4507 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
4508 MGMT_STATUS_NOT_SUPPORTED);
4509
Marcel Holtmann1f350c82012-03-12 20:31:08 -07004510 key_count = __le16_to_cpu(cp->key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004511
4512 expected_len = sizeof(*cp) + key_count *
4513 sizeof(struct mgmt_ltk_info);
4514 if (expected_len != len) {
4515 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02004516 expected_len, len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004517 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Johan Hedberge57e6192013-01-20 14:27:14 +02004518 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004519 }
4520
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004521 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004522
Johan Hedberg54ad6d82013-01-20 14:27:15 +02004523 for (i = 0; i < key_count; i++) {
4524 struct mgmt_ltk_info *key = &cp->keys[i];
4525
Johan Hedberg3f706b72013-01-20 14:27:16 +02004526 if (!ltk_is_valid(key))
Johan Hedberg54ad6d82013-01-20 14:27:15 +02004527 return cmd_status(sk, hdev->id,
4528 MGMT_OP_LOAD_LONG_TERM_KEYS,
4529 MGMT_STATUS_INVALID_PARAMS);
4530 }
4531
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004532 hci_dev_lock(hdev);
4533
4534 hci_smp_ltks_clear(hdev);
4535
4536 for (i = 0; i < key_count; i++) {
4537 struct mgmt_ltk_info *key = &cp->keys[i];
Marcel Holtmann79d95a12013-10-13 03:57:38 -07004538 u8 type, addr_type;
4539
4540 if (key->addr.type == BDADDR_LE_PUBLIC)
4541 addr_type = ADDR_LE_DEV_PUBLIC;
4542 else
4543 addr_type = ADDR_LE_DEV_RANDOM;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004544
4545 if (key->master)
4546 type = HCI_SMP_LTK;
4547 else
4548 type = HCI_SMP_LTK_SLAVE;
4549
Johan Hedberg35d70272014-02-19 14:57:47 +02004550 hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
4551 key->type, key->val, key->enc_size, key->ediv,
4552 key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004553 }
4554
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004555 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
4556 NULL, 0);
4557
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004558 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004559
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004560 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004561}
4562
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02004563static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004564 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
4565 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02004566 bool var_len;
4567 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004568} mgmt_handlers[] = {
4569 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02004570 { read_version, false, MGMT_READ_VERSION_SIZE },
4571 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
4572 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
4573 { read_controller_info, false, MGMT_READ_INFO_SIZE },
4574 { set_powered, false, MGMT_SETTING_SIZE },
4575 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
4576 { set_connectable, false, MGMT_SETTING_SIZE },
4577 { set_fast_connectable, false, MGMT_SETTING_SIZE },
4578 { set_pairable, false, MGMT_SETTING_SIZE },
4579 { set_link_security, false, MGMT_SETTING_SIZE },
4580 { set_ssp, false, MGMT_SETTING_SIZE },
4581 { set_hs, false, MGMT_SETTING_SIZE },
4582 { set_le, false, MGMT_SETTING_SIZE },
4583 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
4584 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
4585 { add_uuid, false, MGMT_ADD_UUID_SIZE },
4586 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
4587 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
4588 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
4589 { disconnect, false, MGMT_DISCONNECT_SIZE },
4590 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
4591 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
4592 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
4593 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
4594 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
4595 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
4596 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
4597 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
4598 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
4599 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
4600 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
4601 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
Marcel Holtmannec109112014-01-10 02:07:30 -08004602 { add_remote_oob_data, true, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
Johan Hedbergbe22b542012-03-01 22:24:41 +02004603 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
4604 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
4605 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
4606 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
4607 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
4608 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004609 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg4375f102013-09-25 13:26:10 +03004610 { set_advertising, false, MGMT_SETTING_SIZE },
Johan Hedberg0663ca22013-10-02 13:43:14 +03004611 { set_bredr, false, MGMT_SETTING_SIZE },
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004612 { set_static_address, false, MGMT_SET_STATIC_ADDRESS_SIZE },
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004613 { set_scan_params, false, MGMT_SET_SCAN_PARAMS_SIZE },
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004614 { set_secure_conn, false, MGMT_SETTING_SIZE },
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004615 { set_debug_keys, false, MGMT_SETTING_SIZE },
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004616 { set_privacy, false, MGMT_SET_PRIVACY_SIZE },
Johan Hedberg41edf162014-02-18 10:19:35 +02004617 { load_irks, true, MGMT_LOAD_IRKS_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004618};
4619
4620
Johan Hedberg03811012010-12-08 00:21:06 +02004621int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
4622{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004623 void *buf;
4624 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02004625 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01004626 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004627 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02004628 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02004629 int err;
4630
4631 BT_DBG("got %zu bytes", msglen);
4632
4633 if (msglen < sizeof(*hdr))
4634 return -EINVAL;
4635
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03004636 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02004637 if (!buf)
4638 return -ENOMEM;
4639
4640 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
4641 err = -EFAULT;
4642 goto done;
4643 }
4644
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004645 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07004646 opcode = __le16_to_cpu(hdr->opcode);
4647 index = __le16_to_cpu(hdr->index);
4648 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02004649
4650 if (len != msglen - sizeof(*hdr)) {
4651 err = -EINVAL;
4652 goto done;
4653 }
4654
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004655 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004656 hdev = hci_dev_get(index);
4657 if (!hdev) {
4658 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004659 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004660 goto done;
4661 }
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07004662
Johan Hedbergcebf4cf2013-10-10 18:06:04 +02004663 if (test_bit(HCI_SETUP, &hdev->dev_flags) ||
4664 test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07004665 err = cmd_status(sk, index, opcode,
4666 MGMT_STATUS_INVALID_INDEX);
4667 goto done;
4668 }
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004669 }
4670
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004671 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004672 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02004673 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02004674 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004675 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004676 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02004677 }
4678
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004679 if ((hdev && opcode < MGMT_OP_READ_INFO) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004680 (!hdev && opcode >= MGMT_OP_READ_INFO)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004681 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004682 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004683 goto done;
4684 }
4685
Johan Hedbergbe22b542012-03-01 22:24:41 +02004686 handler = &mgmt_handlers[opcode];
4687
4688 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004689 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02004690 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004691 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02004692 goto done;
4693 }
4694
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004695 if (hdev)
4696 mgmt_init_hdev(sk, hdev);
4697
4698 cp = buf + sizeof(*hdr);
4699
Johan Hedbergbe22b542012-03-01 22:24:41 +02004700 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02004701 if (err < 0)
4702 goto done;
4703
Johan Hedberg03811012010-12-08 00:21:06 +02004704 err = msglen;
4705
4706done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004707 if (hdev)
4708 hci_dev_put(hdev);
4709
Johan Hedberg03811012010-12-08 00:21:06 +02004710 kfree(buf);
4711 return err;
4712}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004713
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004714void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004715{
Marcel Holtmann1514b892013-10-06 08:25:01 -07004716 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004717 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03004718
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004719 mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004720}
4721
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004722void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004723{
Johan Hedberg5f159032012-03-02 03:13:19 +02004724 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02004725
Marcel Holtmann1514b892013-10-06 08:25:01 -07004726 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004727 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03004728
Johan Hedberg744cf192011-11-08 20:40:14 +02004729 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02004730
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004731 mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02004732}
4733
Andre Guedes6046dc32014-02-26 20:21:51 -03004734/* This function requires the caller holds hdev->lock */
4735static void restart_le_auto_conns(struct hci_dev *hdev)
4736{
4737 struct hci_conn_params *p;
4738
4739 list_for_each_entry(p, &hdev->le_conn_params, list) {
4740 if (p->auto_connect == HCI_AUTO_CONN_ALWAYS)
4741 hci_pend_le_conn_add(hdev, &p->addr, p->addr_type);
4742 }
4743}
4744
Johan Hedberg229ab392013-03-15 17:06:53 -05004745static void powered_complete(struct hci_dev *hdev, u8 status)
4746{
4747 struct cmd_lookup match = { NULL, hdev };
4748
4749 BT_DBG("status 0x%02x", status);
4750
4751 hci_dev_lock(hdev);
4752
Andre Guedes6046dc32014-02-26 20:21:51 -03004753 restart_le_auto_conns(hdev);
4754
Johan Hedberg229ab392013-03-15 17:06:53 -05004755 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
4756
4757 new_settings(hdev, match.sk);
4758
4759 hci_dev_unlock(hdev);
4760
4761 if (match.sk)
4762 sock_put(match.sk);
4763}
4764
Johan Hedberg70da6242013-03-15 17:06:51 -05004765static int powered_update_hci(struct hci_dev *hdev)
4766{
Johan Hedberg890ea892013-03-15 17:06:52 -05004767 struct hci_request req;
Johan Hedberg70da6242013-03-15 17:06:51 -05004768 u8 link_sec;
4769
Johan Hedberg890ea892013-03-15 17:06:52 -05004770 hci_req_init(&req, hdev);
4771
Johan Hedberg70da6242013-03-15 17:06:51 -05004772 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
4773 !lmp_host_ssp_capable(hdev)) {
4774 u8 ssp = 1;
4775
Johan Hedberg890ea892013-03-15 17:06:52 -05004776 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, 1, &ssp);
Johan Hedberg70da6242013-03-15 17:06:51 -05004777 }
4778
Johan Hedbergc73eee92013-04-19 18:35:21 +03004779 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
4780 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05004781 struct hci_cp_write_le_host_supported cp;
4782
4783 cp.le = 1;
4784 cp.simul = lmp_le_br_capable(hdev);
4785
4786 /* Check first if we already have the right
4787 * host state (host features set)
4788 */
4789 if (cp.le != lmp_host_le_capable(hdev) ||
4790 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05004791 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
4792 sizeof(cp), &cp);
Johan Hedberg70da6242013-03-15 17:06:51 -05004793 }
4794
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004795 if (lmp_le_capable(hdev)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07004796 /* Make sure the controller has a good default for
4797 * advertising data. This also applies to the case
4798 * where BR/EDR was toggled during the AUTO_OFF phase.
4799 */
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07004800 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004801 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07004802 update_scan_rsp_data(&req);
4803 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07004804
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004805 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
4806 enable_advertising(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03004807 }
4808
Johan Hedberg70da6242013-03-15 17:06:51 -05004809 link_sec = test_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
4810 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05004811 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
4812 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05004813
4814 if (lmp_bredr_capable(hdev)) {
Johan Hedberg56f87902013-10-02 13:43:13 +03004815 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
4816 set_bredr_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05004817 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05004818 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05004819 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05004820 }
4821
Johan Hedberg229ab392013-03-15 17:06:53 -05004822 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05004823}
4824
Johan Hedberg744cf192011-11-08 20:40:14 +02004825int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02004826{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02004827 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg229ab392013-03-15 17:06:53 -05004828 u8 status_not_powered = MGMT_STATUS_NOT_POWERED;
4829 u8 zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02004830 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02004831
Johan Hedberg5e5282b2012-02-21 16:01:30 +02004832 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
4833 return 0;
4834
Johan Hedberg5e5282b2012-02-21 16:01:30 +02004835 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05004836 if (powered_update_hci(hdev) == 0)
4837 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02004838
Johan Hedberg229ab392013-03-15 17:06:53 -05004839 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
4840 &match);
4841 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02004842 }
4843
Johan Hedberg229ab392013-03-15 17:06:53 -05004844 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
4845 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status_not_powered);
4846
4847 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
4848 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
4849 zero_cod, sizeof(zero_cod), NULL);
4850
4851new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02004852 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02004853
4854 if (match.sk)
4855 sock_put(match.sk);
4856
Johan Hedberg7bb895d2012-02-17 01:20:00 +02004857 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02004858}
Johan Hedberg73f22f62010-12-29 16:00:25 +02004859
Marcel Holtmann3eec7052013-10-06 23:55:46 -07004860void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03004861{
4862 struct pending_cmd *cmd;
4863 u8 status;
4864
4865 cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
4866 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07004867 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03004868
4869 if (err == -ERFKILL)
4870 status = MGMT_STATUS_RFKILLED;
4871 else
4872 status = MGMT_STATUS_FAILED;
4873
Marcel Holtmann3eec7052013-10-06 23:55:46 -07004874 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03004875
4876 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03004877}
4878
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004879void mgmt_discoverable_timeout(struct hci_dev *hdev)
4880{
4881 struct hci_request req;
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004882
4883 hci_dev_lock(hdev);
4884
4885 /* When discoverable timeout triggers, then just make sure
4886 * the limited discoverable flag is cleared. Even in the case
4887 * of a timeout triggered from general discoverable, it is
4888 * safe to unconditionally clear the flag.
4889 */
4890 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004891 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004892
4893 hci_req_init(&req, hdev);
Johan Hedberg4b580612013-10-19 23:38:21 +03004894 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
4895 u8 scan = SCAN_PAGE;
4896 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
4897 sizeof(scan), &scan);
4898 }
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004899 update_class(&req);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004900 update_adv_data(&req);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004901 hci_req_run(&req, NULL);
4902
4903 hdev->discov_timeout = 0;
4904
Johan Hedberg9a43e252013-10-20 19:00:07 +03004905 new_settings(hdev, NULL);
4906
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07004907 hci_dev_unlock(hdev);
4908}
4909
Marcel Holtmann86a75642013-10-15 06:33:54 -07004910void mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
Johan Hedberg73f22f62010-12-29 16:00:25 +02004911{
Marcel Holtmann86a75642013-10-15 06:33:54 -07004912 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02004913
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03004914 /* Nothing needed here if there's a pending command since that
4915 * commands request completion callback takes care of everything
4916 * necessary.
4917 */
4918 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev))
Marcel Holtmann86a75642013-10-15 06:33:54 -07004919 return;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03004920
Johan Hedbergbd107992014-02-24 14:52:19 +02004921 /* Powering off may clear the scan mode - don't let that interfere */
4922 if (!discoverable && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
4923 return;
4924
Johan Hedberg9a43e252013-10-20 19:00:07 +03004925 if (discoverable) {
Marcel Holtmann86a75642013-10-15 06:33:54 -07004926 changed = !test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004927 } else {
4928 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Marcel Holtmann86a75642013-10-15 06:33:54 -07004929 changed = test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004930 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02004931
Johan Hedberg9a43e252013-10-20 19:00:07 +03004932 if (changed) {
4933 struct hci_request req;
4934
4935 /* In case this change in discoverable was triggered by
4936 * a disabling of connectable there could be a need to
4937 * update the advertising flags.
4938 */
4939 hci_req_init(&req, hdev);
4940 update_adv_data(&req);
4941 hci_req_run(&req, NULL);
4942
Marcel Holtmann86a75642013-10-15 06:33:54 -07004943 new_settings(hdev, NULL);
Johan Hedberg9a43e252013-10-20 19:00:07 +03004944 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02004945}
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004946
Marcel Holtmanna3309162013-10-15 06:33:55 -07004947void mgmt_connectable(struct hci_dev *hdev, u8 connectable)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004948{
Marcel Holtmanna3309162013-10-15 06:33:55 -07004949 bool changed;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004950
Johan Hedbergd7b856f2013-10-14 16:20:04 +03004951 /* Nothing needed here if there's a pending command since that
4952 * commands request completion callback takes care of everything
4953 * necessary.
4954 */
4955 if (mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev))
Marcel Holtmanna3309162013-10-15 06:33:55 -07004956 return;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03004957
Johan Hedbergce3f24c2014-02-24 14:52:20 +02004958 /* Powering off may clear the scan mode - don't let that interfere */
4959 if (!connectable && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
4960 return;
4961
Marcel Holtmanna3309162013-10-15 06:33:55 -07004962 if (connectable)
4963 changed = !test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
4964 else
4965 changed = test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004966
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02004967 if (changed)
Marcel Holtmanna3309162013-10-15 06:33:55 -07004968 new_settings(hdev, NULL);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004969}
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004970
Johan Hedberg778b2352014-02-24 14:52:17 +02004971void mgmt_advertising(struct hci_dev *hdev, u8 advertising)
4972{
Johan Hedberg7c4cfab2014-02-24 14:52:21 +02004973 /* Powering off may stop advertising - don't let that interfere */
4974 if (!advertising && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
4975 return;
4976
Johan Hedberg778b2352014-02-24 14:52:17 +02004977 if (advertising)
4978 set_bit(HCI_ADVERTISING, &hdev->dev_flags);
4979 else
4980 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
4981}
4982
Marcel Holtmann4796e8a2013-10-15 06:33:56 -07004983void mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004984{
Johan Hedbergca69b792011-11-11 18:10:00 +02004985 u8 mgmt_err = mgmt_status(status);
4986
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004987 if (scan & SCAN_PAGE)
Johan Hedberg744cf192011-11-08 20:40:14 +02004988 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004989 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004990
4991 if (scan & SCAN_INQUIRY)
Johan Hedberg744cf192011-11-08 20:40:14 +02004992 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004993 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004994}
4995
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07004996void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
4997 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004998{
Johan Hedberg86742e12011-11-07 23:13:38 +02004999 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005000
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005001 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005002
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005003 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02005004 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005005 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005006 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03005007 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005008 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005009
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07005010 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005011}
Johan Hedbergf7520542011-01-20 12:34:39 +02005012
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005013void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005014{
5015 struct mgmt_ev_new_long_term_key ev;
5016
5017 memset(&ev, 0, sizeof(ev));
5018
Marcel Holtmann5192d302014-02-19 17:11:58 -08005019 /* Devices using resolvable or non-resolvable random addresses
5020 * without providing an indentity resolving key don't require
5021 * to store long term keys. Their addresses will change the
5022 * next time around.
5023 *
5024 * Only when a remote device provides an identity address
5025 * make sure the long term key is stored. If the remote
5026 * identity is known, the long term keys are internally
5027 * mapped to the identity address. So allow static random
5028 * and public addresses here.
5029 */
Johan Hedbergba74b662014-02-19 14:57:45 +02005030 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
5031 (key->bdaddr.b[5] & 0xc0) != 0xc0)
5032 ev.store_hint = 0x00;
5033 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005034 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02005035
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005036 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005037 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Marcel Holtmannd40f3ee2014-01-31 18:42:17 -08005038 ev.key.type = key->authenticated;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005039 ev.key.enc_size = key->enc_size;
5040 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08005041 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005042
5043 if (key->type == HCI_SMP_LTK)
5044 ev.key.master = 1;
5045
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005046 memcpy(ev.key.val, key->val, sizeof(key->val));
5047
Marcel Holtmann083368f2013-10-15 14:26:29 -07005048 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005049}
5050
Johan Hedberg95fbac82014-02-19 15:18:31 +02005051void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
5052{
5053 struct mgmt_ev_new_irk ev;
5054
5055 memset(&ev, 0, sizeof(ev));
5056
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08005057 /* For identity resolving keys from devices that are already
5058 * using a public address or static random address, do not
5059 * ask for storing this key. The identity resolving key really
5060 * is only mandatory for devices using resovlable random
5061 * addresses.
5062 *
5063 * Storing all identity resolving keys has the downside that
5064 * they will be also loaded on next boot of they system. More
5065 * identity resolving keys, means more time during scanning is
5066 * needed to actually resolve these addresses.
5067 */
5068 if (bacmp(&irk->rpa, BDADDR_ANY))
5069 ev.store_hint = 0x01;
5070 else
5071 ev.store_hint = 0x00;
5072
Johan Hedberg95fbac82014-02-19 15:18:31 +02005073 bacpy(&ev.rpa, &irk->rpa);
5074 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
5075 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
5076 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
5077
5078 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
5079}
5080
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005081void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
5082 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07005083{
5084 struct mgmt_ev_new_csrk ev;
5085
5086 memset(&ev, 0, sizeof(ev));
5087
5088 /* Devices using resolvable or non-resolvable random addresses
5089 * without providing an indentity resolving key don't require
5090 * to store signature resolving keys. Their addresses will change
5091 * the next time around.
5092 *
5093 * Only when a remote device provides an identity address
5094 * make sure the signature resolving key is stored. So allow
5095 * static random and public addresses here.
5096 */
5097 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
5098 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
5099 ev.store_hint = 0x00;
5100 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005101 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07005102
5103 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
5104 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
5105 ev.key.master = csrk->master;
5106 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
5107
5108 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
5109}
5110
Marcel Holtmann94933992013-10-15 10:26:39 -07005111static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
5112 u8 data_len)
5113{
5114 eir[eir_len++] = sizeof(type) + data_len;
5115 eir[eir_len++] = type;
5116 memcpy(&eir[eir_len], data, data_len);
5117 eir_len += data_len;
5118
5119 return eir_len;
5120}
5121
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07005122void mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5123 u8 addr_type, u32 flags, u8 *name, u8 name_len,
5124 u8 *dev_class)
Johan Hedbergf7520542011-01-20 12:34:39 +02005125{
Johan Hedbergb644ba32012-01-17 21:48:47 +02005126 char buf[512];
5127 struct mgmt_ev_device_connected *ev = (void *) buf;
5128 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02005129
Johan Hedbergb644ba32012-01-17 21:48:47 +02005130 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005131 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02005132
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02005133 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02005134
Johan Hedbergb644ba32012-01-17 21:48:47 +02005135 if (name_len > 0)
5136 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005137 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005138
5139 if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
Brian Gix53156382012-03-09 14:07:03 -08005140 eir_len = eir_append_data(ev->eir, eir_len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005141 EIR_CLASS_OF_DEV, dev_class, 3);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005142
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02005143 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005144
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07005145 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
5146 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02005147}
5148
Johan Hedberg8962ee72011-01-20 12:40:27 +02005149static void disconnect_rsp(struct pending_cmd *cmd, void *data)
5150{
Szymon Jancc68fb7f2011-03-22 13:12:19 +01005151 struct mgmt_cp_disconnect *cp = cmd->param;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005152 struct sock **sk = data;
Johan Hedberga38528f2011-01-22 06:46:43 +02005153 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005154
Johan Hedberg88c3df12012-02-09 14:27:38 +02005155 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5156 rp.addr.type = cp->addr.type;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005157
Johan Hedbergaee9b212012-02-18 15:07:59 +02005158 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005159 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02005160
5161 *sk = cmd->sk;
5162 sock_hold(*sk);
5163
Johan Hedberga664b5b2011-02-19 12:06:02 -03005164 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005165}
5166
Johan Hedberg124f6e32012-02-09 13:50:12 +02005167static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02005168{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02005169 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02005170 struct mgmt_cp_unpair_device *cp = cmd->param;
5171 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02005172
5173 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02005174 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5175 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02005176
Johan Hedbergb1078ad2012-02-09 17:21:16 +02005177 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
5178
Johan Hedbergaee9b212012-02-18 15:07:59 +02005179 cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02005180
5181 mgmt_pending_remove(cmd);
5182}
5183
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07005184void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02005185 u8 link_type, u8 addr_type, u8 reason,
5186 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02005187{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02005188 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8b064a32014-02-24 14:52:22 +02005189 struct pending_cmd *power_off;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005190 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005191
Johan Hedberg8b064a32014-02-24 14:52:22 +02005192 power_off = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
5193 if (power_off) {
5194 struct mgmt_mode *cp = power_off->param;
5195
5196 /* The connection is still in hci_conn_hash so test for 1
5197 * instead of 0 to know if this is the last one.
5198 */
Johan Hedberga3172b72014-02-28 09:33:44 +02005199 if (!cp->val && hci_conn_count(hdev) == 1) {
5200 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02005201 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02005202 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02005203 }
5204
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02005205 if (!mgmt_connected)
5206 return;
5207
Andre Guedes57eb7762013-10-30 19:01:41 -03005208 if (link_type != ACL_LINK && link_type != LE_LINK)
5209 return;
5210
Johan Hedberg744cf192011-11-08 20:40:14 +02005211 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02005212
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02005213 bacpy(&ev.addr.bdaddr, bdaddr);
5214 ev.addr.type = link_to_bdaddr(link_type, addr_type);
5215 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02005216
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07005217 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005218
5219 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01005220 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005221
Johan Hedberg124f6e32012-02-09 13:50:12 +02005222 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005223 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005224}
5225
Marcel Holtmann78929242013-10-06 23:55:47 -07005226void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
5227 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02005228{
Andre Guedes3655bba2013-10-30 19:01:40 -03005229 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
5230 struct mgmt_cp_disconnect *cp;
Johan Hedberg88c3df12012-02-09 14:27:38 +02005231 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005232 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005233
Jefferson Delfes36a75f12012-09-18 13:36:54 -04005234 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
5235 hdev);
5236
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005237 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005238 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07005239 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005240
Andre Guedes3655bba2013-10-30 19:01:40 -03005241 cp = cmd->param;
5242
5243 if (bacmp(bdaddr, &cp->addr.bdaddr))
5244 return;
5245
5246 if (cp->addr.type != bdaddr_type)
5247 return;
5248
Johan Hedberg88c3df12012-02-09 14:27:38 +02005249 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes3655bba2013-10-30 19:01:40 -03005250 rp.addr.type = bdaddr_type;
Johan Hedberg37d9ef72011-11-10 15:54:39 +02005251
Marcel Holtmann78929242013-10-06 23:55:47 -07005252 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
5253 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02005254
Johan Hedberga664b5b2011-02-19 12:06:02 -03005255 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02005256}
Johan Hedberg17d5c042011-01-22 06:09:08 +02005257
Marcel Holtmann445608d2013-10-06 23:55:48 -07005258void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5259 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02005260{
5261 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02005262 struct pending_cmd *power_off;
5263
5264 power_off = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
5265 if (power_off) {
5266 struct mgmt_mode *cp = power_off->param;
5267
5268 /* The connection is still in hci_conn_hash so test for 1
5269 * instead of 0 to know if this is the last one.
5270 */
Johan Hedberga3172b72014-02-28 09:33:44 +02005271 if (!cp->val && hci_conn_count(hdev) == 1) {
5272 cancel_delayed_work(&hdev->power_off);
Johan Hedbergc9910d02014-02-27 14:35:12 +02005273 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02005274 }
Johan Hedbergc9910d02014-02-27 14:35:12 +02005275 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02005276
Johan Hedberg4c659c32011-11-07 23:13:39 +02005277 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005278 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02005279 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02005280
Marcel Holtmann445608d2013-10-06 23:55:48 -07005281 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02005282}
Johan Hedberg980e1a52011-01-22 06:10:07 +02005283
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07005284void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005285{
5286 struct mgmt_ev_pin_code_request ev;
5287
Johan Hedbergd8457692012-02-17 14:24:57 +02005288 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005289 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02005290 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005291
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07005292 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005293}
5294
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005295void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
5296 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005297{
5298 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005299 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005300
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005301 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005302 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005303 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005304
Johan Hedbergd8457692012-02-17 14:24:57 +02005305 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005306 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005307
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005308 cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
5309 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02005310
Johan Hedberga664b5b2011-02-19 12:06:02 -03005311 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005312}
5313
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005314void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
5315 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005316{
5317 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005318 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005319
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005320 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005321 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005322 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005323
Johan Hedbergd8457692012-02-17 14:24:57 +02005324 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005325 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005326
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005327 cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
5328 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02005329
Johan Hedberga664b5b2011-02-19 12:06:02 -03005330 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005331}
Johan Hedberga5c29682011-02-19 12:05:57 -03005332
Johan Hedberg744cf192011-11-08 20:40:14 +02005333int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02005334 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005335 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03005336{
5337 struct mgmt_ev_user_confirm_request ev;
5338
Johan Hedberg744cf192011-11-08 20:40:14 +02005339 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03005340
Johan Hedberg272d90d2012-02-09 15:26:12 +02005341 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005342 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07005343 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02005344 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03005345
Johan Hedberg744cf192011-11-08 20:40:14 +02005346 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005347 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03005348}
5349
Johan Hedberg272d90d2012-02-09 15:26:12 +02005350int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03005351 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08005352{
5353 struct mgmt_ev_user_passkey_request ev;
5354
5355 BT_DBG("%s", hdev->name);
5356
Johan Hedberg272d90d2012-02-09 15:26:12 +02005357 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005358 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08005359
5360 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005361 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08005362}
5363
Brian Gix0df4c182011-11-16 13:53:13 -08005364static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03005365 u8 link_type, u8 addr_type, u8 status,
5366 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03005367{
5368 struct pending_cmd *cmd;
5369 struct mgmt_rp_user_confirm_reply rp;
5370 int err;
5371
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005372 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03005373 if (!cmd)
5374 return -ENOENT;
5375
Johan Hedberg272d90d2012-02-09 15:26:12 +02005376 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005377 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergaee9b212012-02-18 15:07:59 +02005378 err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005379 &rp, sizeof(rp));
Johan Hedberga5c29682011-02-19 12:05:57 -03005380
Johan Hedberga664b5b2011-02-19 12:06:02 -03005381 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03005382
5383 return err;
5384}
5385
Johan Hedberg744cf192011-11-08 20:40:14 +02005386int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005387 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03005388{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005389 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005390 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03005391}
5392
Johan Hedberg272d90d2012-02-09 15:26:12 +02005393int mgmt_user_confirm_neg_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 Padovan8fc9ced2012-05-23 04:04:21 -03005397 status,
5398 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03005399}
Johan Hedberg2a611692011-02-19 12:06:00 -03005400
Brian Gix604086b2011-11-23 08:28:33 -08005401int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005402 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08005403{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005404 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005405 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08005406}
5407
Johan Hedberg272d90d2012-02-09 15:26:12 +02005408int mgmt_user_passkey_neg_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 Padovan8fc9ced2012-05-23 04:04:21 -03005412 status,
5413 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08005414}
5415
Johan Hedberg92a25252012-09-06 18:39:26 +03005416int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
5417 u8 link_type, u8 addr_type, u32 passkey,
5418 u8 entered)
5419{
5420 struct mgmt_ev_passkey_notify ev;
5421
5422 BT_DBG("%s", hdev->name);
5423
5424 bacpy(&ev.addr.bdaddr, bdaddr);
5425 ev.addr.type = link_to_bdaddr(link_type, addr_type);
5426 ev.passkey = __cpu_to_le32(passkey);
5427 ev.entered = entered;
5428
5429 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
5430}
5431
Marcel Holtmanne5460992013-10-15 14:26:23 -07005432void mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5433 u8 addr_type, u8 status)
Johan Hedberg2a611692011-02-19 12:06:00 -03005434{
5435 struct mgmt_ev_auth_failed ev;
5436
Johan Hedbergbab73cb2012-02-09 16:07:29 +02005437 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005438 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02005439 ev.status = mgmt_status(status);
Johan Hedberg2a611692011-02-19 12:06:00 -03005440
Marcel Holtmanne5460992013-10-15 14:26:23 -07005441 mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg2a611692011-02-19 12:06:00 -03005442}
Johan Hedbergb312b1612011-03-16 14:29:37 +02005443
Marcel Holtmann464996a2013-10-15 14:26:24 -07005444void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005445{
5446 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07005447 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005448
5449 if (status) {
5450 u8 mgmt_err = mgmt_status(status);
5451 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005452 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07005453 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005454 }
5455
Marcel Holtmann464996a2013-10-15 14:26:24 -07005456 if (test_bit(HCI_AUTH, &hdev->flags))
5457 changed = !test_and_set_bit(HCI_LINK_SECURITY,
5458 &hdev->dev_flags);
5459 else
5460 changed = test_and_clear_bit(HCI_LINK_SECURITY,
5461 &hdev->dev_flags);
Johan Hedberg47990ea2012-02-22 11:58:37 +02005462
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005463 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005464 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005465
Johan Hedberg47990ea2012-02-22 11:58:37 +02005466 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07005467 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005468
5469 if (match.sk)
5470 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005471}
5472
Johan Hedberg890ea892013-03-15 17:06:52 -05005473static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02005474{
Johan Hedberg890ea892013-03-15 17:06:52 -05005475 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02005476 struct hci_cp_write_eir cp;
5477
Johan Hedberg976eb202012-10-24 21:12:01 +03005478 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05005479 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02005480
Johan Hedbergc80da272012-02-22 15:38:48 +02005481 memset(hdev->eir, 0, sizeof(hdev->eir));
5482
Johan Hedbergcacaf522012-02-21 00:52:42 +02005483 memset(&cp, 0, sizeof(cp));
5484
Johan Hedberg890ea892013-03-15 17:06:52 -05005485 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02005486}
5487
Marcel Holtmann3e248562013-10-15 14:26:25 -07005488void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005489{
5490 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05005491 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005492 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005493
5494 if (status) {
5495 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005496
5497 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005498 &hdev->dev_flags)) {
5499 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmann3e248562013-10-15 14:26:25 -07005500 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005501 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005502
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005503 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
5504 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07005505 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005506 }
5507
5508 if (enable) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005509 changed = !test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005510 } else {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005511 changed = test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
5512 if (!changed)
5513 changed = test_and_clear_bit(HCI_HS_ENABLED,
5514 &hdev->dev_flags);
5515 else
5516 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005517 }
5518
5519 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
5520
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005521 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07005522 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005523
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02005524 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005525 sock_put(match.sk);
5526
Johan Hedberg890ea892013-03-15 17:06:52 -05005527 hci_req_init(&req, hdev);
5528
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02005529 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05005530 update_eir(&req);
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02005531 else
Johan Hedberg890ea892013-03-15 17:06:52 -05005532 clear_eir(&req);
5533
5534 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005535}
5536
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005537void mgmt_sc_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
5538{
5539 struct cmd_lookup match = { NULL, hdev };
5540 bool changed = false;
5541
5542 if (status) {
5543 u8 mgmt_err = mgmt_status(status);
5544
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005545 if (enable) {
5546 if (test_and_clear_bit(HCI_SC_ENABLED,
5547 &hdev->dev_flags))
5548 new_settings(hdev, NULL);
5549 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
5550 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005551
5552 mgmt_pending_foreach(MGMT_OP_SET_SECURE_CONN, hdev,
5553 cmd_status_rsp, &mgmt_err);
5554 return;
5555 }
5556
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005557 if (enable) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005558 changed = !test_and_set_bit(HCI_SC_ENABLED, &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005559 } else {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005560 changed = test_and_clear_bit(HCI_SC_ENABLED, &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005561 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
5562 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005563
5564 mgmt_pending_foreach(MGMT_OP_SET_SECURE_CONN, hdev,
5565 settings_rsp, &match);
5566
5567 if (changed)
5568 new_settings(hdev, match.sk);
5569
5570 if (match.sk)
5571 sock_put(match.sk);
5572}
5573
Johan Hedberg92da6092013-03-15 17:06:55 -05005574static void sk_lookup(struct pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02005575{
5576 struct cmd_lookup *match = data;
5577
Johan Hedberg90e70452012-02-23 23:09:40 +02005578 if (match->sk == NULL) {
5579 match->sk = cmd->sk;
5580 sock_hold(match->sk);
5581 }
Johan Hedberg90e70452012-02-23 23:09:40 +02005582}
5583
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07005584void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
5585 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005586{
Johan Hedberg90e70452012-02-23 23:09:40 +02005587 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005588
Johan Hedberg92da6092013-03-15 17:06:55 -05005589 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
5590 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
5591 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02005592
5593 if (!status)
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07005594 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class, 3,
5595 NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02005596
5597 if (match.sk)
5598 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005599}
5600
Marcel Holtmann7667da32013-10-15 14:26:27 -07005601void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02005602{
Johan Hedbergb312b1612011-03-16 14:29:37 +02005603 struct mgmt_cp_set_local_name ev;
Johan Hedberg13928972013-03-15 17:07:00 -05005604 struct pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02005605
Johan Hedberg13928972013-03-15 17:07:00 -05005606 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07005607 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02005608
5609 memset(&ev, 0, sizeof(ev));
5610 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02005611 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02005612
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005613 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05005614 if (!cmd) {
5615 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02005616
Johan Hedberg13928972013-03-15 17:07:00 -05005617 /* If this is a HCI command related to powering on the
5618 * HCI dev don't send any mgmt signals.
5619 */
5620 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07005621 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02005622 }
5623
Marcel Holtmann7667da32013-10-15 14:26:27 -07005624 mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
5625 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02005626}
Szymon Jancc35938b2011-03-22 13:12:21 +01005627
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005628void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192,
5629 u8 *randomizer192, u8 *hash256,
5630 u8 *randomizer256, u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01005631{
5632 struct pending_cmd *cmd;
Szymon Jancc35938b2011-03-22 13:12:21 +01005633
Johan Hedberg744cf192011-11-08 20:40:14 +02005634 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01005635
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005636 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01005637 if (!cmd)
Marcel Holtmann3edaf092013-10-15 14:26:28 -07005638 return;
Szymon Jancc35938b2011-03-22 13:12:21 +01005639
5640 if (status) {
Marcel Holtmann3edaf092013-10-15 14:26:28 -07005641 cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
5642 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01005643 } else {
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005644 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags) &&
5645 hash256 && randomizer256) {
5646 struct mgmt_rp_read_local_oob_ext_data rp;
Szymon Jancc35938b2011-03-22 13:12:21 +01005647
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005648 memcpy(rp.hash192, hash192, sizeof(rp.hash192));
5649 memcpy(rp.randomizer192, randomizer192,
5650 sizeof(rp.randomizer192));
Szymon Jancc35938b2011-03-22 13:12:21 +01005651
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005652 memcpy(rp.hash256, hash256, sizeof(rp.hash256));
5653 memcpy(rp.randomizer256, randomizer256,
5654 sizeof(rp.randomizer256));
5655
5656 cmd_complete(cmd->sk, hdev->id,
5657 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
5658 &rp, sizeof(rp));
5659 } else {
5660 struct mgmt_rp_read_local_oob_data rp;
5661
5662 memcpy(rp.hash, hash192, sizeof(rp.hash));
5663 memcpy(rp.randomizer, randomizer192,
5664 sizeof(rp.randomizer));
5665
5666 cmd_complete(cmd->sk, hdev->id,
5667 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
5668 &rp, sizeof(rp));
5669 }
Szymon Jancc35938b2011-03-22 13:12:21 +01005670 }
5671
5672 mgmt_pending_remove(cmd);
Szymon Jancc35938b2011-03-22 13:12:21 +01005673}
Johan Hedberge17acd42011-03-30 23:57:16 +03005674
Marcel Holtmann901801b2013-10-06 23:55:51 -07005675void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Johan Hedberg73cf71d2014-03-25 12:06:19 +02005676 u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name,
5677 u8 ssp, u8 *eir, u16 eir_len, u8 *scan_rsp,
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02005678 u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03005679{
Johan Hedberge319d2e2012-01-15 19:51:59 +02005680 char buf[512];
5681 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg5cedbb82014-02-18 21:41:37 +02005682 struct smp_irk *irk;
Johan Hedberg1dc06092012-01-15 21:01:23 +02005683 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03005684
Andre Guedes12602d02013-04-30 15:29:40 -03005685 if (!hci_discovery_active(hdev))
Marcel Holtmann901801b2013-10-06 23:55:51 -07005686 return;
Andre Guedes12602d02013-04-30 15:29:40 -03005687
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02005688 /* Make sure that the buffer is big enough. The 5 extra bytes
5689 * are for the potential CoD field.
5690 */
5691 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07005692 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03005693
Johan Hedberg1dc06092012-01-15 21:01:23 +02005694 memset(buf, 0, sizeof(buf));
5695
Johan Hedberg5cedbb82014-02-18 21:41:37 +02005696 irk = hci_get_irk(hdev, bdaddr, addr_type);
5697 if (irk) {
5698 bacpy(&ev->addr.bdaddr, &irk->bdaddr);
5699 ev->addr.type = link_to_bdaddr(link_type, irk->addr_type);
5700 } else {
5701 bacpy(&ev->addr.bdaddr, bdaddr);
5702 ev->addr.type = link_to_bdaddr(link_type, addr_type);
5703 }
5704
Johan Hedberge319d2e2012-01-15 19:51:59 +02005705 ev->rssi = rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +02005706 if (cfm_name)
Joe Perchesdcf4adb2014-03-12 10:52:35 -07005707 ev->flags |= cpu_to_le32(MGMT_DEV_FOUND_CONFIRM_NAME);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02005708 if (!ssp)
Joe Perchesdcf4adb2014-03-12 10:52:35 -07005709 ev->flags |= cpu_to_le32(MGMT_DEV_FOUND_LEGACY_PAIRING);
Johan Hedberge17acd42011-03-30 23:57:16 +03005710
Johan Hedberg1dc06092012-01-15 21:01:23 +02005711 if (eir_len > 0)
Johan Hedberge319d2e2012-01-15 19:51:59 +02005712 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03005713
Johan Hedberg1dc06092012-01-15 21:01:23 +02005714 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
5715 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005716 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02005717
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02005718 if (scan_rsp_len > 0)
5719 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
5720
5721 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
5722 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03005723
Marcel Holtmann901801b2013-10-06 23:55:51 -07005724 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03005725}
Johan Hedberga88a9652011-03-30 13:18:12 +03005726
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07005727void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5728 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03005729{
Johan Hedbergb644ba32012-01-17 21:48:47 +02005730 struct mgmt_ev_device_found *ev;
5731 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
5732 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03005733
Johan Hedbergb644ba32012-01-17 21:48:47 +02005734 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03005735
Johan Hedbergb644ba32012-01-17 21:48:47 +02005736 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03005737
Johan Hedbergb644ba32012-01-17 21:48:47 +02005738 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005739 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005740 ev->rssi = rssi;
5741
5742 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005743 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005744
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02005745 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005746
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07005747 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03005748}
Johan Hedberg314b2382011-04-27 10:29:57 -04005749
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07005750void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04005751{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02005752 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02005753 struct pending_cmd *cmd;
5754
Andre Guedes343fb142011-11-22 17:14:19 -03005755 BT_DBG("%s discovering %u", hdev->name, discovering);
5756
Johan Hedberg164a6e72011-11-01 17:06:44 +02005757 if (discovering)
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005758 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02005759 else
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005760 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02005761
5762 if (cmd != NULL) {
Johan Hedbergf808e162012-02-19 12:52:07 +02005763 u8 type = hdev->discovery.type;
5764
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005765 cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
5766 sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02005767 mgmt_pending_remove(cmd);
5768 }
5769
Johan Hedbergf963e8e2012-02-20 23:30:44 +02005770 memset(&ev, 0, sizeof(ev));
5771 ev.type = hdev->discovery.type;
5772 ev.discovering = discovering;
5773
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07005774 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04005775}
Antti Julku5e762442011-08-25 16:48:02 +03005776
Johan Hedberg88c1fe42012-02-09 15:56:11 +02005777int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03005778{
5779 struct pending_cmd *cmd;
5780 struct mgmt_ev_device_blocked ev;
5781
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005782 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03005783
Johan Hedberg88c1fe42012-02-09 15:56:11 +02005784 bacpy(&ev.addr.bdaddr, bdaddr);
5785 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03005786
Johan Hedberg744cf192011-11-08 20:40:14 +02005787 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005788 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03005789}
5790
Johan Hedberg88c1fe42012-02-09 15:56:11 +02005791int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03005792{
5793 struct pending_cmd *cmd;
5794 struct mgmt_ev_device_unblocked ev;
5795
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005796 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03005797
Johan Hedberg88c1fe42012-02-09 15:56:11 +02005798 bacpy(&ev.addr.bdaddr, bdaddr);
5799 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03005800
Johan Hedberg744cf192011-11-08 20:40:14 +02005801 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005802 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03005803}
Marcel Holtmann5976e602013-10-06 04:08:14 -07005804
5805static void adv_enable_complete(struct hci_dev *hdev, u8 status)
5806{
5807 BT_DBG("%s status %u", hdev->name, status);
5808
5809 /* Clear the advertising mgmt setting if we failed to re-enable it */
5810 if (status) {
5811 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07005812 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07005813 }
5814}
5815
5816void mgmt_reenable_advertising(struct hci_dev *hdev)
5817{
5818 struct hci_request req;
5819
Marcel Holtmannb145edc2013-10-10 09:47:54 -07005820 if (hci_conn_num(hdev, LE_LINK) > 0)
Marcel Holtmann5976e602013-10-06 04:08:14 -07005821 return;
5822
5823 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags))
5824 return;
5825
5826 hci_req_init(&req, hdev);
5827 enable_advertising(&req);
5828
5829 /* If this fails we have no option but to let user space know
5830 * that we've disabled advertising.
5831 */
5832 if (hci_req_run(&req, adv_enable_complete) < 0) {
5833 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07005834 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07005835 }
5836}