blob: a9d7506be1a3d872eea72aea6421da612c82e52d [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>
Brian Gix5fe57d92011-12-21 16:12:13 -080033#include <net/bluetooth/smp.h>
Johan Hedberg03811012010-12-08 00:21:06 +020034
Johan Hedberg2da9c552012-02-17 14:39:28 +020035#define MGMT_VERSION 1
Marcel Holtmann9ab8cf32013-10-02 05:18:31 -070036#define MGMT_REVISION 4
Johan Hedberg02d98122010-12-13 21:07:04 +020037
Johan Hedberge70bb2e2012-02-13 16:59:33 +020038static const u16 mgmt_commands[] = {
39 MGMT_OP_READ_INDEX_LIST,
40 MGMT_OP_READ_INFO,
41 MGMT_OP_SET_POWERED,
42 MGMT_OP_SET_DISCOVERABLE,
43 MGMT_OP_SET_CONNECTABLE,
44 MGMT_OP_SET_FAST_CONNECTABLE,
45 MGMT_OP_SET_PAIRABLE,
46 MGMT_OP_SET_LINK_SECURITY,
47 MGMT_OP_SET_SSP,
48 MGMT_OP_SET_HS,
49 MGMT_OP_SET_LE,
50 MGMT_OP_SET_DEV_CLASS,
51 MGMT_OP_SET_LOCAL_NAME,
52 MGMT_OP_ADD_UUID,
53 MGMT_OP_REMOVE_UUID,
54 MGMT_OP_LOAD_LINK_KEYS,
55 MGMT_OP_LOAD_LONG_TERM_KEYS,
56 MGMT_OP_DISCONNECT,
57 MGMT_OP_GET_CONNECTIONS,
58 MGMT_OP_PIN_CODE_REPLY,
59 MGMT_OP_PIN_CODE_NEG_REPLY,
60 MGMT_OP_SET_IO_CAPABILITY,
61 MGMT_OP_PAIR_DEVICE,
62 MGMT_OP_CANCEL_PAIR_DEVICE,
63 MGMT_OP_UNPAIR_DEVICE,
64 MGMT_OP_USER_CONFIRM_REPLY,
65 MGMT_OP_USER_CONFIRM_NEG_REPLY,
66 MGMT_OP_USER_PASSKEY_REPLY,
67 MGMT_OP_USER_PASSKEY_NEG_REPLY,
68 MGMT_OP_READ_LOCAL_OOB_DATA,
69 MGMT_OP_ADD_REMOTE_OOB_DATA,
70 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
71 MGMT_OP_START_DISCOVERY,
72 MGMT_OP_STOP_DISCOVERY,
73 MGMT_OP_CONFIRM_NAME,
74 MGMT_OP_BLOCK_DEVICE,
75 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070076 MGMT_OP_SET_DEVICE_ID,
Johan Hedberg4375f102013-09-25 13:26:10 +030077 MGMT_OP_SET_ADVERTISING,
Johan Hedberg0663ca22013-10-02 13:43:14 +030078 MGMT_OP_SET_BREDR,
Marcel Holtmannd13eafc2013-10-02 04:41:30 -070079 MGMT_OP_SET_STATIC_ADDRESS,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020080};
81
82static const u16 mgmt_events[] = {
83 MGMT_EV_CONTROLLER_ERROR,
84 MGMT_EV_INDEX_ADDED,
85 MGMT_EV_INDEX_REMOVED,
86 MGMT_EV_NEW_SETTINGS,
87 MGMT_EV_CLASS_OF_DEV_CHANGED,
88 MGMT_EV_LOCAL_NAME_CHANGED,
89 MGMT_EV_NEW_LINK_KEY,
90 MGMT_EV_NEW_LONG_TERM_KEY,
91 MGMT_EV_DEVICE_CONNECTED,
92 MGMT_EV_DEVICE_DISCONNECTED,
93 MGMT_EV_CONNECT_FAILED,
94 MGMT_EV_PIN_CODE_REQUEST,
95 MGMT_EV_USER_CONFIRM_REQUEST,
96 MGMT_EV_USER_PASSKEY_REQUEST,
97 MGMT_EV_AUTH_FAILED,
98 MGMT_EV_DEVICE_FOUND,
99 MGMT_EV_DISCOVERING,
100 MGMT_EV_DEVICE_BLOCKED,
101 MGMT_EV_DEVICE_UNBLOCKED,
102 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300103 MGMT_EV_PASSKEY_NOTIFY,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200104};
105
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800106#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200107
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200108#define hdev_is_powered(hdev) (test_bit(HCI_UP, &hdev->flags) && \
109 !test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
110
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200111struct pending_cmd {
112 struct list_head list;
Johan Hedbergfc2f4b12011-11-09 13:58:56 +0200113 u16 opcode;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200114 int index;
Szymon Jancc68fb7f2011-03-22 13:12:19 +0100115 void *param;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200116 struct sock *sk;
Johan Hedberge9a416b2011-02-19 12:05:56 -0300117 void *user_data;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200118};
119
Johan Hedbergca69b792011-11-11 18:10:00 +0200120/* HCI to MGMT error code conversion table */
121static u8 mgmt_status_table[] = {
122 MGMT_STATUS_SUCCESS,
123 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
124 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
125 MGMT_STATUS_FAILED, /* Hardware Failure */
126 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
127 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
128 MGMT_STATUS_NOT_PAIRED, /* PIN or Key Missing */
129 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
130 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
131 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
132 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
133 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
134 MGMT_STATUS_BUSY, /* Command Disallowed */
135 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
136 MGMT_STATUS_REJECTED, /* Rejected Security */
137 MGMT_STATUS_REJECTED, /* Rejected Personal */
138 MGMT_STATUS_TIMEOUT, /* Host Timeout */
139 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
140 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
141 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
142 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
143 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
144 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
145 MGMT_STATUS_BUSY, /* Repeated Attempts */
146 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
147 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
148 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
149 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
150 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
151 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
152 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
153 MGMT_STATUS_FAILED, /* Unspecified Error */
154 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
155 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
156 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
157 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
158 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
159 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
160 MGMT_STATUS_FAILED, /* Unit Link Key Used */
161 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
162 MGMT_STATUS_TIMEOUT, /* Instant Passed */
163 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
164 MGMT_STATUS_FAILED, /* Transaction Collision */
165 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
166 MGMT_STATUS_REJECTED, /* QoS Rejected */
167 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
168 MGMT_STATUS_REJECTED, /* Insufficient Security */
169 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
170 MGMT_STATUS_BUSY, /* Role Switch Pending */
171 MGMT_STATUS_FAILED, /* Slot Violation */
172 MGMT_STATUS_FAILED, /* Role Switch Failed */
173 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
174 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
175 MGMT_STATUS_BUSY, /* Host Busy Pairing */
176 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
177 MGMT_STATUS_BUSY, /* Controller Busy */
178 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
179 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
180 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
181 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
182 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
183};
184
185static u8 mgmt_status(u8 hci_status)
186{
187 if (hci_status < ARRAY_SIZE(mgmt_status_table))
188 return mgmt_status_table[hci_status];
189
190 return MGMT_STATUS_FAILED;
191}
192
Szymon Janc4e51eae2011-02-25 19:05:48 +0100193static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200194{
195 struct sk_buff *skb;
196 struct mgmt_hdr *hdr;
197 struct mgmt_ev_cmd_status *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300198 int err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200199
Szymon Janc34eb5252011-02-28 14:10:08 +0100200 BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200201
Andre Guedes790eff42012-06-07 19:05:46 -0300202 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200203 if (!skb)
204 return -ENOMEM;
205
206 hdr = (void *) skb_put(skb, sizeof(*hdr));
207
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530208 hdr->opcode = __constant_cpu_to_le16(MGMT_EV_CMD_STATUS);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100209 hdr->index = cpu_to_le16(index);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200210 hdr->len = cpu_to_le16(sizeof(*ev));
211
212 ev = (void *) skb_put(skb, sizeof(*ev));
213 ev->status = status;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200214 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200215
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300216 err = sock_queue_rcv_skb(sk, skb);
217 if (err < 0)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200218 kfree_skb(skb);
219
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300220 return err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200221}
222
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200223static int cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300224 void *rp, size_t rp_len)
Johan Hedberg02d98122010-12-13 21:07:04 +0200225{
226 struct sk_buff *skb;
227 struct mgmt_hdr *hdr;
228 struct mgmt_ev_cmd_complete *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300229 int err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200230
231 BT_DBG("sock %p", sk);
232
Andre Guedes790eff42012-06-07 19:05:46 -0300233 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_KERNEL);
Johan Hedberg02d98122010-12-13 21:07:04 +0200234 if (!skb)
235 return -ENOMEM;
236
237 hdr = (void *) skb_put(skb, sizeof(*hdr));
Johan Hedberga38528f2011-01-22 06:46:43 +0200238
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530239 hdr->opcode = __constant_cpu_to_le16(MGMT_EV_CMD_COMPLETE);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100240 hdr->index = cpu_to_le16(index);
Johan Hedberga38528f2011-01-22 06:46:43 +0200241 hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200242
Johan Hedberga38528f2011-01-22 06:46:43 +0200243 ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200244 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200245 ev->status = status;
Szymon Janc8020c162011-02-28 14:09:50 +0100246
247 if (rp)
248 memcpy(ev->data, rp, rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200249
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300250 err = sock_queue_rcv_skb(sk, skb);
251 if (err < 0)
Johan Hedberg02d98122010-12-13 21:07:04 +0200252 kfree_skb(skb);
253
Marcel Holtmanne5f0e152012-02-22 11:59:01 +0100254 return err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200255}
256
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300257static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
258 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200259{
260 struct mgmt_rp_read_version rp;
261
262 BT_DBG("sock %p", sk);
263
264 rp.version = MGMT_VERSION;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200265 rp.revision = __constant_cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200266
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200267 return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300268 sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200269}
270
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300271static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
272 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200273{
274 struct mgmt_rp_read_commands *rp;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200275 const u16 num_commands = ARRAY_SIZE(mgmt_commands);
276 const u16 num_events = ARRAY_SIZE(mgmt_events);
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +0200277 __le16 *opcode;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200278 size_t rp_size;
279 int i, err;
280
281 BT_DBG("sock %p", sk);
282
283 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
284
285 rp = kmalloc(rp_size, GFP_KERNEL);
286 if (!rp)
287 return -ENOMEM;
288
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200289 rp->num_commands = __constant_cpu_to_le16(num_commands);
290 rp->num_events = __constant_cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200291
292 for (i = 0, opcode = rp->opcodes; i < num_commands; i++, opcode++)
293 put_unaligned_le16(mgmt_commands[i], opcode);
294
295 for (i = 0; i < num_events; i++, opcode++)
296 put_unaligned_le16(mgmt_events[i], opcode);
297
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200298 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300299 rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200300 kfree(rp);
301
302 return err;
303}
304
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300305static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
306 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200307{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200308 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200309 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200310 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200311 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300312 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200313
314 BT_DBG("sock %p", sk);
315
316 read_lock(&hci_dev_list_lock);
317
318 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300319 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmann1514b892013-10-06 08:25:01 -0700320 if (d->dev_type == HCI_BREDR)
321 count++;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200322 }
323
Johan Hedberga38528f2011-01-22 06:46:43 +0200324 rp_len = sizeof(*rp) + (2 * count);
325 rp = kmalloc(rp_len, GFP_ATOMIC);
326 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100327 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200328 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100329 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200330
Johan Hedberg476e44c2012-10-19 20:10:46 +0300331 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200332 list_for_each_entry(d, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200333 if (test_bit(HCI_SETUP, &d->dev_flags))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200334 continue;
335
Marcel Holtmann0736cfa2013-08-26 21:40:51 -0700336 if (test_bit(HCI_USER_CHANNEL, &d->dev_flags))
337 continue;
338
Marcel Holtmann1514b892013-10-06 08:25:01 -0700339 if (d->dev_type == HCI_BREDR) {
340 rp->index[count++] = cpu_to_le16(d->id);
341 BT_DBG("Added hci%u", d->id);
342 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200343 }
344
Johan Hedberg476e44c2012-10-19 20:10:46 +0300345 rp->num_controllers = cpu_to_le16(count);
346 rp_len = sizeof(*rp) + (2 * count);
347
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200348 read_unlock(&hci_dev_list_lock);
349
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200350 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300351 rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200352
Johan Hedberga38528f2011-01-22 06:46:43 +0200353 kfree(rp);
354
355 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200356}
357
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200358static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200359{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200360 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200361
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200362 settings |= MGMT_SETTING_POWERED;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200363 settings |= MGMT_SETTING_PAIRABLE;
Johan Hedberg03811012010-12-08 00:21:06 +0200364
Andre Guedes9a1a1992012-07-24 15:03:48 -0300365 if (lmp_ssp_capable(hdev))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200366 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200367
Andre Guedesed3fa312012-07-24 15:03:46 -0300368 if (lmp_bredr_capable(hdev)) {
Johan Hedberg33c525c2012-10-24 21:11:58 +0300369 settings |= MGMT_SETTING_CONNECTABLE;
Johan Hedberg1a47aee2013-03-15 17:07:06 -0500370 if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
371 settings |= MGMT_SETTING_FAST_CONNECTABLE;
Johan Hedberg33c525c2012-10-24 21:11:58 +0300372 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200373 settings |= MGMT_SETTING_BREDR;
374 settings |= MGMT_SETTING_LINK_SECURITY;
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100375 settings |= MGMT_SETTING_HS;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700376 }
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100377
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300378 if (lmp_le_capable(hdev)) {
Marcel Holtmann9d428202012-05-03 07:12:31 +0200379 settings |= MGMT_SETTING_LE;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300380 settings |= MGMT_SETTING_ADVERTISING;
381 }
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200382
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200383 return settings;
384}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200385
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200386static u32 get_current_settings(struct hci_dev *hdev)
387{
388 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200389
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200390 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100391 settings |= MGMT_SETTING_POWERED;
392
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200393 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200394 settings |= MGMT_SETTING_CONNECTABLE;
395
Johan Hedberg1a4d3c42013-03-15 17:07:08 -0500396 if (test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags))
397 settings |= MGMT_SETTING_FAST_CONNECTABLE;
398
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200399 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200400 settings |= MGMT_SETTING_DISCOVERABLE;
401
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200402 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200403 settings |= MGMT_SETTING_PAIRABLE;
404
Johan Hedberg56f87902013-10-02 13:43:13 +0300405 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200406 settings |= MGMT_SETTING_BREDR;
407
Johan Hedberg06199cf2012-02-22 16:37:11 +0200408 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200409 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200410
Johan Hedberg47990ea2012-02-22 11:58:37 +0200411 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200412 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200413
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200414 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200415 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200416
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200417 if (test_bit(HCI_HS_ENABLED, &hdev->dev_flags))
418 settings |= MGMT_SETTING_HS;
419
Johan Hedbergf3d3444a2013-10-05 12:01:04 +0200420 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300421 settings |= MGMT_SETTING_ADVERTISING;
422
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200423 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200424}
425
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300426#define PNP_INFO_SVCLASS_ID 0x1200
427
Johan Hedberg213202e2013-01-27 00:31:33 +0200428static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
429{
430 u8 *ptr = data, *uuids_start = NULL;
431 struct bt_uuid *uuid;
432
433 if (len < 4)
434 return ptr;
435
436 list_for_each_entry(uuid, &hdev->uuids, list) {
437 u16 uuid16;
438
439 if (uuid->size != 16)
440 continue;
441
442 uuid16 = get_unaligned_le16(&uuid->uuid[12]);
443 if (uuid16 < 0x1100)
444 continue;
445
446 if (uuid16 == PNP_INFO_SVCLASS_ID)
447 continue;
448
449 if (!uuids_start) {
450 uuids_start = ptr;
451 uuids_start[0] = 1;
452 uuids_start[1] = EIR_UUID16_ALL;
453 ptr += 2;
454 }
455
456 /* Stop if not enough space to put next UUID */
457 if ((ptr - data) + sizeof(u16) > len) {
458 uuids_start[1] = EIR_UUID16_SOME;
459 break;
460 }
461
462 *ptr++ = (uuid16 & 0x00ff);
463 *ptr++ = (uuid16 & 0xff00) >> 8;
464 uuids_start[0] += sizeof(uuid16);
465 }
466
467 return ptr;
468}
469
Johan Hedbergcdf19632013-01-27 00:31:34 +0200470static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
471{
472 u8 *ptr = data, *uuids_start = NULL;
473 struct bt_uuid *uuid;
474
475 if (len < 6)
476 return ptr;
477
478 list_for_each_entry(uuid, &hdev->uuids, list) {
479 if (uuid->size != 32)
480 continue;
481
482 if (!uuids_start) {
483 uuids_start = ptr;
484 uuids_start[0] = 1;
485 uuids_start[1] = EIR_UUID32_ALL;
486 ptr += 2;
487 }
488
489 /* Stop if not enough space to put next UUID */
490 if ((ptr - data) + sizeof(u32) > len) {
491 uuids_start[1] = EIR_UUID32_SOME;
492 break;
493 }
494
495 memcpy(ptr, &uuid->uuid[12], sizeof(u32));
496 ptr += sizeof(u32);
497 uuids_start[0] += sizeof(u32);
498 }
499
500 return ptr;
501}
502
Johan Hedbergc00d5752013-01-27 00:31:35 +0200503static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
504{
505 u8 *ptr = data, *uuids_start = NULL;
506 struct bt_uuid *uuid;
507
508 if (len < 18)
509 return ptr;
510
511 list_for_each_entry(uuid, &hdev->uuids, list) {
512 if (uuid->size != 128)
513 continue;
514
515 if (!uuids_start) {
516 uuids_start = ptr;
517 uuids_start[0] = 1;
518 uuids_start[1] = EIR_UUID128_ALL;
519 ptr += 2;
520 }
521
522 /* Stop if not enough space to put next UUID */
523 if ((ptr - data) + 16 > len) {
524 uuids_start[1] = EIR_UUID128_SOME;
525 break;
526 }
527
528 memcpy(ptr, uuid->uuid, 16);
529 ptr += 16;
530 uuids_start[0] += 16;
531 }
532
533 return ptr;
534}
535
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300536static void create_eir(struct hci_dev *hdev, u8 *data)
537{
538 u8 *ptr = data;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300539 size_t name_len;
540
541 name_len = strlen(hdev->dev_name);
542
543 if (name_len > 0) {
544 /* EIR Data type */
545 if (name_len > 48) {
546 name_len = 48;
547 ptr[1] = EIR_NAME_SHORT;
548 } else
549 ptr[1] = EIR_NAME_COMPLETE;
550
551 /* EIR Data length */
552 ptr[0] = name_len + 1;
553
554 memcpy(ptr + 2, hdev->dev_name, name_len);
555
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300556 ptr += (name_len + 2);
557 }
558
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100559 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700560 ptr[0] = 2;
561 ptr[1] = EIR_TX_POWER;
562 ptr[2] = (u8) hdev->inq_tx_power;
563
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700564 ptr += 3;
565 }
566
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700567 if (hdev->devid_source > 0) {
568 ptr[0] = 9;
569 ptr[1] = EIR_DEVICE_ID;
570
571 put_unaligned_le16(hdev->devid_source, ptr + 2);
572 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
573 put_unaligned_le16(hdev->devid_product, ptr + 6);
574 put_unaligned_le16(hdev->devid_version, ptr + 8);
575
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700576 ptr += 10;
577 }
578
Johan Hedberg213202e2013-01-27 00:31:33 +0200579 ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergcdf19632013-01-27 00:31:34 +0200580 ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergc00d5752013-01-27 00:31:35 +0200581 ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300582}
583
Johan Hedberg890ea892013-03-15 17:06:52 -0500584static void update_eir(struct hci_request *req)
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300585{
Johan Hedberg890ea892013-03-15 17:06:52 -0500586 struct hci_dev *hdev = req->hdev;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300587 struct hci_cp_write_eir cp;
588
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200589 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500590 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200591
Johan Hedberg976eb202012-10-24 21:12:01 +0300592 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500593 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300594
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200595 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500596 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300597
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200598 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500599 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300600
601 memset(&cp, 0, sizeof(cp));
602
603 create_eir(hdev, cp.data);
604
605 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -0500606 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300607
608 memcpy(hdev->eir, cp.data, sizeof(cp.data));
609
Johan Hedberg890ea892013-03-15 17:06:52 -0500610 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300611}
612
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200613static u8 get_service_classes(struct hci_dev *hdev)
614{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300615 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200616 u8 val = 0;
617
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300618 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200619 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200620
621 return val;
622}
623
Johan Hedberg890ea892013-03-15 17:06:52 -0500624static void update_class(struct hci_request *req)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200625{
Johan Hedberg890ea892013-03-15 17:06:52 -0500626 struct hci_dev *hdev = req->hdev;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200627 u8 cod[3];
628
629 BT_DBG("%s", hdev->name);
630
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200631 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500632 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200633
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200634 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500635 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200636
637 cod[0] = hdev->minor_class;
638 cod[1] = hdev->major_class;
639 cod[2] = get_service_classes(hdev);
640
641 if (memcmp(cod, hdev->dev_class, 3) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -0500642 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200643
Johan Hedberg890ea892013-03-15 17:06:52 -0500644 hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200645}
646
Johan Hedberg7d785252011-12-15 00:47:39 +0200647static void service_cache_off(struct work_struct *work)
648{
649 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300650 service_cache.work);
Johan Hedberg890ea892013-03-15 17:06:52 -0500651 struct hci_request req;
Johan Hedberg7d785252011-12-15 00:47:39 +0200652
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200653 if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +0200654 return;
655
Johan Hedberg890ea892013-03-15 17:06:52 -0500656 hci_req_init(&req, hdev);
657
Johan Hedberg7d785252011-12-15 00:47:39 +0200658 hci_dev_lock(hdev);
659
Johan Hedberg890ea892013-03-15 17:06:52 -0500660 update_eir(&req);
661 update_class(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +0200662
663 hci_dev_unlock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -0500664
665 hci_req_run(&req, NULL);
Johan Hedberg7d785252011-12-15 00:47:39 +0200666}
667
Johan Hedberg6a919082012-02-28 06:17:26 +0200668static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +0200669{
Johan Hedberg4f87da82012-03-02 19:55:56 +0200670 if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg6a919082012-02-28 06:17:26 +0200671 return;
672
Johan Hedberg4f87da82012-03-02 19:55:56 +0200673 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedberg7d785252011-12-15 00:47:39 +0200674
Johan Hedberg4f87da82012-03-02 19:55:56 +0200675 /* Non-mgmt controlled devices get this bit set
676 * implicitly so that pairing works for them, however
677 * for mgmt we require user-space to explicitly enable
678 * it
679 */
680 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedberg7d785252011-12-15 00:47:39 +0200681}
682
Johan Hedberg0f4e68c2012-02-28 17:18:30 +0200683static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300684 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +0200685{
686 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +0200687
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200688 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200689
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300690 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200691
Johan Hedberg03811012010-12-08 00:21:06 +0200692 memset(&rp, 0, sizeof(rp));
693
Johan Hedberg03811012010-12-08 00:21:06 +0200694 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200695
696 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200697 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200698
699 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
700 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
701
702 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +0200703
704 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +0200705 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +0200706
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300707 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200708
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200709 return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300710 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +0200711}
712
713static void mgmt_pending_free(struct pending_cmd *cmd)
714{
715 sock_put(cmd->sk);
716 kfree(cmd->param);
717 kfree(cmd);
718}
719
720static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300721 struct hci_dev *hdev, void *data,
722 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200723{
724 struct pending_cmd *cmd;
725
Andre Guedes12b94562012-06-07 19:05:45 -0300726 cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200727 if (!cmd)
728 return NULL;
729
730 cmd->opcode = opcode;
731 cmd->index = hdev->id;
732
Andre Guedes12b94562012-06-07 19:05:45 -0300733 cmd->param = kmalloc(len, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200734 if (!cmd->param) {
735 kfree(cmd);
736 return NULL;
737 }
738
739 if (data)
740 memcpy(cmd->param, data, len);
741
742 cmd->sk = sk;
743 sock_hold(sk);
744
745 list_add(&cmd->list, &hdev->mgmt_pending);
746
747 return cmd;
748}
749
750static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300751 void (*cb)(struct pending_cmd *cmd,
752 void *data),
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300753 void *data)
Johan Hedberg03811012010-12-08 00:21:06 +0200754{
Andre Guedesa3d09352013-02-01 11:21:30 -0300755 struct pending_cmd *cmd, *tmp;
Johan Hedberg03811012010-12-08 00:21:06 +0200756
Andre Guedesa3d09352013-02-01 11:21:30 -0300757 list_for_each_entry_safe(cmd, tmp, &hdev->mgmt_pending, list) {
Johan Hedberg03811012010-12-08 00:21:06 +0200758 if (opcode > 0 && cmd->opcode != opcode)
759 continue;
760
761 cb(cmd, data);
762 }
763}
764
765static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
766{
767 struct pending_cmd *cmd;
768
769 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
770 if (cmd->opcode == opcode)
771 return cmd;
772 }
773
774 return NULL;
775}
776
777static void mgmt_pending_remove(struct pending_cmd *cmd)
778{
779 list_del(&cmd->list);
780 mgmt_pending_free(cmd);
781}
782
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200783static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +0200784{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200785 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +0200786
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200787 return cmd_complete(sk, hdev->id, opcode, 0, &settings,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300788 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +0200789}
790
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200791static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300792 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200793{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300794 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200795 struct pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200796 int err;
Johan Hedberg03811012010-12-08 00:21:06 +0200797
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200798 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200799
Johan Hedberga7e80f22013-01-09 16:05:19 +0200800 if (cp->val != 0x00 && cp->val != 0x01)
801 return cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
802 MGMT_STATUS_INVALID_PARAMS);
803
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300804 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200805
Johan Hedberg87b95ba2013-09-25 13:26:06 +0300806 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
807 err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
808 MGMT_STATUS_BUSY);
809 goto failed;
810 }
811
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100812 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
813 cancel_delayed_work(&hdev->power_off);
814
815 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +0200816 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
817 data, len);
818 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100819 goto failed;
820 }
821 }
822
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200823 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200824 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200825 goto failed;
826 }
827
Johan Hedberg03811012010-12-08 00:21:06 +0200828 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
829 if (!cmd) {
830 err = -ENOMEM;
831 goto failed;
832 }
833
834 if (cp->val)
Johan Hedberg19202572013-01-14 22:33:51 +0200835 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg03811012010-12-08 00:21:06 +0200836 else
Johan Hedberg19202572013-01-14 22:33:51 +0200837 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg03811012010-12-08 00:21:06 +0200838
839 err = 0;
840
841failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300842 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200843 return err;
844}
845
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300846static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len,
847 struct sock *skip_sk)
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200848{
849 struct sk_buff *skb;
850 struct mgmt_hdr *hdr;
851
Andre Guedes790eff42012-06-07 19:05:46 -0300852 skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200853 if (!skb)
854 return -ENOMEM;
855
856 hdr = (void *) skb_put(skb, sizeof(*hdr));
857 hdr->opcode = cpu_to_le16(event);
858 if (hdev)
859 hdr->index = cpu_to_le16(hdev->id);
860 else
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530861 hdr->index = __constant_cpu_to_le16(MGMT_INDEX_NONE);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200862 hdr->len = cpu_to_le16(data_len);
863
864 if (data)
865 memcpy(skb_put(skb, data_len), data, data_len);
866
Marcel Holtmann97e0bde2012-02-22 13:49:28 +0100867 /* Time stamp */
868 __net_timestamp(skb);
869
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200870 hci_send_to_control(skb, skip_sk);
871 kfree_skb(skb);
872
873 return 0;
874}
875
876static int new_settings(struct hci_dev *hdev, struct sock *skip)
877{
878 __le32 ev;
879
880 ev = cpu_to_le32(get_current_settings(hdev));
881
882 return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
883}
884
Johan Hedbergbd99abd2013-09-25 13:26:07 +0300885struct cmd_lookup {
886 struct sock *sk;
887 struct hci_dev *hdev;
888 u8 mgmt_status;
889};
890
891static void settings_rsp(struct pending_cmd *cmd, void *data)
892{
893 struct cmd_lookup *match = data;
894
895 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
896
897 list_del(&cmd->list);
898
899 if (match->sk == NULL) {
900 match->sk = cmd->sk;
901 sock_hold(match->sk);
902 }
903
904 mgmt_pending_free(cmd);
905}
906
907static void cmd_status_rsp(struct pending_cmd *cmd, void *data)
908{
909 u8 *status = data;
910
911 cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
912 mgmt_pending_remove(cmd);
913}
914
Johan Hedberge6fe7982013-10-02 15:45:22 +0300915static u8 mgmt_bredr_support(struct hci_dev *hdev)
916{
917 if (!lmp_bredr_capable(hdev))
918 return MGMT_STATUS_NOT_SUPPORTED;
919 else if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
920 return MGMT_STATUS_REJECTED;
921 else
922 return MGMT_STATUS_SUCCESS;
923}
924
925static u8 mgmt_le_support(struct hci_dev *hdev)
926{
927 if (!lmp_le_capable(hdev))
928 return MGMT_STATUS_NOT_SUPPORTED;
929 else if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
930 return MGMT_STATUS_REJECTED;
931 else
932 return MGMT_STATUS_SUCCESS;
933}
934
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200935static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300936 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200937{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300938 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200939 struct pending_cmd *cmd;
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200940 u16 timeout;
Johan Hedberge6fe7982013-10-02 15:45:22 +0300941 u8 scan, status;
Johan Hedberg03811012010-12-08 00:21:06 +0200942 int err;
943
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200944 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200945
Johan Hedberge6fe7982013-10-02 15:45:22 +0300946 status = mgmt_bredr_support(hdev);
947 if (status)
Johan Hedberg33c525c2012-10-24 21:11:58 +0300948 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Johan Hedberge6fe7982013-10-02 15:45:22 +0300949 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +0300950
Johan Hedberga7e80f22013-01-09 16:05:19 +0200951 if (cp->val != 0x00 && cp->val != 0x01)
952 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
953 MGMT_STATUS_INVALID_PARAMS);
954
Marcel Holtmann1f350c82012-03-12 20:31:08 -0700955 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann24c54a92012-02-22 18:06:34 +0100956 if (!cp->val && timeout > 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200957 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300958 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200959
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300960 hci_dev_lock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200961
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200962 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200963 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300964 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200965 goto failed;
966 }
967
968 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -0300969 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200970 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300971 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200972 goto failed;
973 }
974
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200975 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200976 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300977 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200978 goto failed;
979 }
980
981 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200982 bool changed = false;
983
984 if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
985 change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
986 changed = true;
987 }
988
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200989 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200990 if (err < 0)
991 goto failed;
992
993 if (changed)
994 err = new_settings(hdev, sk);
995
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200996 goto failed;
997 }
998
999 if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
Marcel Holtmann955638e2012-02-22 18:21:00 +01001000 if (hdev->discov_timeout > 0) {
1001 cancel_delayed_work(&hdev->discov_off);
1002 hdev->discov_timeout = 0;
1003 }
1004
1005 if (cp->val && timeout > 0) {
1006 hdev->discov_timeout = timeout;
1007 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1008 msecs_to_jiffies(hdev->discov_timeout * 1000));
1009 }
1010
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001011 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001012 goto failed;
1013 }
1014
1015 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1016 if (!cmd) {
1017 err = -ENOMEM;
1018 goto failed;
1019 }
1020
1021 scan = SCAN_PAGE;
1022
1023 if (cp->val)
1024 scan |= SCAN_INQUIRY;
1025 else
1026 cancel_delayed_work(&hdev->discov_off);
1027
1028 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1029 if (err < 0)
1030 mgmt_pending_remove(cmd);
1031
Johan Hedberg03811012010-12-08 00:21:06 +02001032 if (cp->val)
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001033 hdev->discov_timeout = timeout;
Johan Hedberg03811012010-12-08 00:21:06 +02001034
1035failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001036 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001037 return err;
1038}
1039
Johan Hedberg406d7802013-03-15 17:07:09 -05001040static void write_fast_connectable(struct hci_request *req, bool enable)
1041{
Johan Hedbergbd98b992013-03-15 17:07:13 -05001042 struct hci_dev *hdev = req->hdev;
Johan Hedberg406d7802013-03-15 17:07:09 -05001043 struct hci_cp_write_page_scan_activity acp;
1044 u8 type;
1045
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001046 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
1047 return;
1048
Johan Hedberg406d7802013-03-15 17:07:09 -05001049 if (enable) {
1050 type = PAGE_SCAN_TYPE_INTERLACED;
1051
1052 /* 160 msec page scan interval */
1053 acp.interval = __constant_cpu_to_le16(0x0100);
1054 } else {
1055 type = PAGE_SCAN_TYPE_STANDARD; /* default */
1056
1057 /* default 1.28 sec page scan */
1058 acp.interval = __constant_cpu_to_le16(0x0800);
1059 }
1060
1061 acp.window = __constant_cpu_to_le16(0x0012);
1062
Johan Hedbergbd98b992013-03-15 17:07:13 -05001063 if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
1064 __cpu_to_le16(hdev->page_scan_window) != acp.window)
1065 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
1066 sizeof(acp), &acp);
1067
1068 if (hdev->page_scan_type != type)
1069 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
Johan Hedberg406d7802013-03-15 17:07:09 -05001070}
1071
Johan Hedberg2b76f452013-03-15 17:07:04 -05001072static void set_connectable_complete(struct hci_dev *hdev, u8 status)
1073{
1074 struct pending_cmd *cmd;
1075
1076 BT_DBG("status 0x%02x", status);
1077
1078 hci_dev_lock(hdev);
1079
1080 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
1081 if (!cmd)
1082 goto unlock;
1083
1084 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
1085
1086 mgmt_pending_remove(cmd);
1087
1088unlock:
1089 hci_dev_unlock(hdev);
1090}
1091
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001092static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001093 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001094{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001095 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +02001096 struct pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001097 struct hci_request req;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001098 u8 scan, status;
Johan Hedberg03811012010-12-08 00:21:06 +02001099 int err;
1100
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001101 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +02001102
Johan Hedberge6fe7982013-10-02 15:45:22 +03001103 status = mgmt_bredr_support(hdev);
1104 if (status)
Johan Hedberg33c525c2012-10-24 21:11:58 +03001105 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Johan Hedberge6fe7982013-10-02 15:45:22 +03001106 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001107
Johan Hedberga7e80f22013-01-09 16:05:19 +02001108 if (cp->val != 0x00 && cp->val != 0x01)
1109 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
1110 MGMT_STATUS_INVALID_PARAMS);
1111
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001112 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001113
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001114 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001115 bool changed = false;
1116
1117 if (!!cp->val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
1118 changed = true;
1119
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +02001120 if (cp->val) {
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001121 set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +02001122 } else {
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001123 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1124 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1125 }
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001126
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001127 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001128 if (err < 0)
1129 goto failed;
1130
1131 if (changed)
1132 err = new_settings(hdev, sk);
1133
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001134 goto failed;
1135 }
1136
1137 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001138 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001139 err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001140 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001141 goto failed;
1142 }
1143
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001144 if (!!cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001145 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001146 goto failed;
1147 }
1148
1149 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1150 if (!cmd) {
1151 err = -ENOMEM;
1152 goto failed;
1153 }
1154
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +02001155 if (cp->val) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001156 scan = SCAN_PAGE;
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +02001157 } else {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001158 scan = 0;
1159
Johan Hedbergdf2c6c52012-02-21 19:15:49 +02001160 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001161 hdev->discov_timeout > 0)
Johan Hedbergdf2c6c52012-02-21 19:15:49 +02001162 cancel_delayed_work(&hdev->discov_off);
1163 }
1164
Johan Hedberg2b76f452013-03-15 17:07:04 -05001165 hci_req_init(&req, hdev);
1166
1167 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1168
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001169 /* If we're going from non-connectable to connectable or
1170 * vice-versa when fast connectable is enabled ensure that fast
1171 * connectable gets disabled. write_fast_connectable won't do
1172 * anything if the page scan parameters are already what they
1173 * should be.
1174 */
1175 if (cp->val || test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags))
Johan Hedberge36a3762013-03-15 17:07:10 -05001176 write_fast_connectable(&req, false);
1177
Johan Hedberg2b76f452013-03-15 17:07:04 -05001178 err = hci_req_run(&req, set_connectable_complete);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001179 if (err < 0)
1180 mgmt_pending_remove(cmd);
1181
1182failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001183 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001184 return err;
1185}
1186
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001187static int set_pairable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001188 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001189{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001190 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07001191 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001192 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001193
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001194 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001195
Johan Hedberga7e80f22013-01-09 16:05:19 +02001196 if (cp->val != 0x00 && cp->val != 0x01)
1197 return cmd_status(sk, hdev->id, MGMT_OP_SET_PAIRABLE,
1198 MGMT_STATUS_INVALID_PARAMS);
1199
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001200 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001201
1202 if (cp->val)
Marcel Holtmann55594352013-10-06 16:11:57 -07001203 changed = !test_and_set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001204 else
Marcel Holtmann55594352013-10-06 16:11:57 -07001205 changed = test_and_clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001206
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001207 err = send_settings_rsp(sk, MGMT_OP_SET_PAIRABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001208 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07001209 goto unlock;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001210
Marcel Holtmann55594352013-10-06 16:11:57 -07001211 if (changed)
1212 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001213
Marcel Holtmann55594352013-10-06 16:11:57 -07001214unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001215 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001216 return err;
1217}
Johan Hedberg72a734e2010-12-30 00:38:22 +02001218
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001219static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
1220 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001221{
1222 struct mgmt_mode *cp = data;
1223 struct pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001224 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001225 int err;
1226
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001227 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001228
Johan Hedberge6fe7982013-10-02 15:45:22 +03001229 status = mgmt_bredr_support(hdev);
1230 if (status)
Johan Hedberg33c525c2012-10-24 21:11:58 +03001231 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03001232 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001233
Johan Hedberga7e80f22013-01-09 16:05:19 +02001234 if (cp->val != 0x00 && cp->val != 0x01)
1235 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1236 MGMT_STATUS_INVALID_PARAMS);
1237
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001238 hci_dev_lock(hdev);
1239
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001240 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001241 bool changed = false;
1242
1243 if (!!cp->val != test_bit(HCI_LINK_SECURITY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001244 &hdev->dev_flags)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001245 change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
1246 changed = true;
1247 }
1248
1249 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1250 if (err < 0)
1251 goto failed;
1252
1253 if (changed)
1254 err = new_settings(hdev, sk);
1255
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001256 goto failed;
1257 }
1258
1259 if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001260 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001261 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001262 goto failed;
1263 }
1264
1265 val = !!cp->val;
1266
1267 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
1268 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1269 goto failed;
1270 }
1271
1272 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
1273 if (!cmd) {
1274 err = -ENOMEM;
1275 goto failed;
1276 }
1277
1278 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
1279 if (err < 0) {
1280 mgmt_pending_remove(cmd);
1281 goto failed;
1282 }
1283
1284failed:
1285 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001286 return err;
1287}
1288
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001289static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001290{
1291 struct mgmt_mode *cp = data;
1292 struct pending_cmd *cmd;
Marcel Holtmanncdba5282013-10-02 21:31:52 -07001293 u8 val, status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001294 int err;
1295
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001296 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001297
Marcel Holtmanncdba5282013-10-02 21:31:52 -07001298 status = mgmt_bredr_support(hdev);
1299 if (status)
1300 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
1301
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001302 if (!lmp_ssp_capable(hdev))
1303 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1304 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001305
Johan Hedberga7e80f22013-01-09 16:05:19 +02001306 if (cp->val != 0x00 && cp->val != 0x01)
1307 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1308 MGMT_STATUS_INVALID_PARAMS);
1309
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001310 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02001311
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001312 val = !!cp->val;
1313
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001314 if (!hdev_is_powered(hdev)) {
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001315 bool changed = false;
1316
1317 if (val != test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
1318 change_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
1319 changed = true;
1320 }
1321
1322 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1323 if (err < 0)
1324 goto failed;
1325
1326 if (changed)
1327 err = new_settings(hdev, sk);
1328
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001329 goto failed;
1330 }
1331
1332 if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev)) {
Szymon Jancd97dcb62012-03-16 16:02:56 +01001333 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1334 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001335 goto failed;
1336 }
1337
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001338 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) == val) {
1339 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1340 goto failed;
1341 }
1342
1343 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
1344 if (!cmd) {
1345 err = -ENOMEM;
1346 goto failed;
1347 }
1348
1349 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(val), &val);
1350 if (err < 0) {
1351 mgmt_pending_remove(cmd);
1352 goto failed;
1353 }
1354
1355failed:
1356 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001357 return err;
1358}
1359
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001360static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001361{
1362 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07001363 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001364 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07001365 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001366
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001367 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001368
Johan Hedberge6fe7982013-10-02 15:45:22 +03001369 status = mgmt_bredr_support(hdev);
1370 if (status)
1371 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001372
Johan Hedberga7e80f22013-01-09 16:05:19 +02001373 if (cp->val != 0x00 && cp->val != 0x01)
1374 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1375 MGMT_STATUS_INVALID_PARAMS);
1376
Marcel Holtmannee392692013-10-01 22:59:23 -07001377 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001378
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001379 if (cp->val) {
Marcel Holtmannee392692013-10-01 22:59:23 -07001380 changed = !test_and_set_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001381 } else {
1382 if (hdev_is_powered(hdev)) {
1383 err = cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1384 MGMT_STATUS_REJECTED);
1385 goto unlock;
1386 }
1387
Marcel Holtmannee392692013-10-01 22:59:23 -07001388 changed = test_and_clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001389 }
Marcel Holtmannee392692013-10-01 22:59:23 -07001390
1391 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
1392 if (err < 0)
1393 goto unlock;
1394
1395 if (changed)
1396 err = new_settings(hdev, sk);
1397
1398unlock:
1399 hci_dev_unlock(hdev);
1400 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001401}
1402
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07001403static void enable_advertising(struct hci_request *req)
1404{
Marcel Holtmannb4faf3002013-10-06 03:17:56 -07001405 struct hci_dev *hdev = req->hdev;
1406 struct hci_cp_le_set_adv_param cp;
1407 u8 enable = 0x01;
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07001408
Marcel Holtmannb4faf3002013-10-06 03:17:56 -07001409 memset(&cp, 0, sizeof(cp));
1410 cp.min_interval = __constant_cpu_to_le16(0x0800);
1411 cp.max_interval = __constant_cpu_to_le16(0x0800);
1412 cp.type = LE_ADV_IND;
1413 if (bacmp(&hdev->bdaddr, BDADDR_ANY))
1414 cp.own_address_type = ADDR_LE_DEV_PUBLIC;
1415 else
1416 cp.own_address_type = ADDR_LE_DEV_RANDOM;
1417 cp.channel_map = 0x07;
1418
1419 hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);
1420
1421 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07001422}
1423
1424static void disable_advertising(struct hci_request *req)
1425{
Marcel Holtmannb4faf3002013-10-06 03:17:56 -07001426 u8 enable = 0x00;
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07001427
Marcel Holtmannb4faf3002013-10-06 03:17:56 -07001428 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07001429}
1430
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001431static void le_enable_complete(struct hci_dev *hdev, u8 status)
1432{
1433 struct cmd_lookup match = { NULL, hdev };
1434
1435 if (status) {
1436 u8 mgmt_err = mgmt_status(status);
1437
1438 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
1439 &mgmt_err);
1440 return;
1441 }
1442
1443 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
1444
1445 new_settings(hdev, match.sk);
1446
1447 if (match.sk)
1448 sock_put(match.sk);
1449}
1450
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001451static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001452{
1453 struct mgmt_mode *cp = data;
1454 struct hci_cp_write_le_host_supported hci_cp;
1455 struct pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001456 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001457 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001458 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001459
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001460 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001461
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001462 if (!lmp_le_capable(hdev))
1463 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1464 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001465
Johan Hedberga7e80f22013-01-09 16:05:19 +02001466 if (cp->val != 0x00 && cp->val != 0x01)
1467 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1468 MGMT_STATUS_INVALID_PARAMS);
1469
Johan Hedbergc73eee92013-04-19 18:35:21 +03001470 /* LE-only devices do not allow toggling LE on/off */
Johan Hedberg56f87902013-10-02 13:43:13 +03001471 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedbergc73eee92013-04-19 18:35:21 +03001472 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1473 MGMT_STATUS_REJECTED);
1474
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001475 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001476
1477 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001478 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001479
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001480 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02001481 bool changed = false;
1482
1483 if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
1484 change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
1485 changed = true;
1486 }
1487
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02001488 if (!val && test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
1489 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03001490 changed = true;
1491 }
1492
Johan Hedberg06199cf2012-02-22 16:37:11 +02001493 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
1494 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08001495 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001496
1497 if (changed)
1498 err = new_settings(hdev, sk);
1499
Johan Hedberg1de028c2012-02-29 19:55:35 -08001500 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001501 }
1502
Johan Hedberg4375f102013-09-25 13:26:10 +03001503 if (mgmt_pending_find(MGMT_OP_SET_LE, hdev) ||
1504 mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001505 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001506 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001507 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001508 }
1509
1510 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
1511 if (!cmd) {
1512 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08001513 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001514 }
1515
1516 memset(&hci_cp, 0, sizeof(hci_cp));
1517
1518 if (val) {
1519 hci_cp.le = val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001520 hci_cp.simul = lmp_le_br_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001521 }
1522
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001523 hci_req_init(&req, hdev);
1524
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07001525 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags) && !val)
1526 disable_advertising(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03001527
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001528 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
1529 &hci_cp);
1530
1531 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301532 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001533 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001534
Johan Hedberg1de028c2012-02-29 19:55:35 -08001535unlock:
1536 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001537 return err;
1538}
1539
Johan Hedberg0cab9c82013-03-15 17:06:54 -05001540/* This is a helper function to test for pending mgmt commands that can
1541 * cause CoD or EIR HCI commands. We can only allow one such pending
1542 * mgmt command at a time since otherwise we cannot easily track what
1543 * the current values are, will be, and based on that calculate if a new
1544 * HCI command needs to be sent and if yes with what value.
1545 */
1546static bool pending_eir_or_class(struct hci_dev *hdev)
1547{
1548 struct pending_cmd *cmd;
1549
1550 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
1551 switch (cmd->opcode) {
1552 case MGMT_OP_ADD_UUID:
1553 case MGMT_OP_REMOVE_UUID:
1554 case MGMT_OP_SET_DEV_CLASS:
1555 case MGMT_OP_SET_POWERED:
1556 return true;
1557 }
1558 }
1559
1560 return false;
1561}
1562
Johan Hedberg83be8ec2013-01-27 00:31:29 +02001563static const u8 bluetooth_base_uuid[] = {
1564 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
1565 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1566};
1567
1568static u8 get_uuid_size(const u8 *uuid)
1569{
1570 u32 val;
1571
1572 if (memcmp(uuid, bluetooth_base_uuid, 12))
1573 return 128;
1574
1575 val = get_unaligned_le32(&uuid[12]);
1576 if (val > 0xffff)
1577 return 32;
1578
1579 return 16;
1580}
1581
Johan Hedberg92da6092013-03-15 17:06:55 -05001582static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
1583{
1584 struct pending_cmd *cmd;
1585
1586 hci_dev_lock(hdev);
1587
1588 cmd = mgmt_pending_find(mgmt_op, hdev);
1589 if (!cmd)
1590 goto unlock;
1591
1592 cmd_complete(cmd->sk, cmd->index, cmd->opcode, mgmt_status(status),
1593 hdev->dev_class, 3);
1594
1595 mgmt_pending_remove(cmd);
1596
1597unlock:
1598 hci_dev_unlock(hdev);
1599}
1600
1601static void add_uuid_complete(struct hci_dev *hdev, u8 status)
1602{
1603 BT_DBG("status 0x%02x", status);
1604
1605 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
1606}
1607
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001608static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001609{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001610 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001611 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05001612 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001613 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001614 int err;
1615
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001616 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001617
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001618 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001619
Johan Hedberg0cab9c82013-03-15 17:06:54 -05001620 if (pending_eir_or_class(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001621 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001622 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001623 goto failed;
1624 }
1625
Andre Guedes92c4c202012-06-07 19:05:44 -03001626 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001627 if (!uuid) {
1628 err = -ENOMEM;
1629 goto failed;
1630 }
1631
1632 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001633 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02001634 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001635
Johan Hedbergde66aa62013-01-27 00:31:27 +02001636 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001637
Johan Hedberg890ea892013-03-15 17:06:52 -05001638 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001639
Johan Hedberg890ea892013-03-15 17:06:52 -05001640 update_class(&req);
1641 update_eir(&req);
1642
Johan Hedberg92da6092013-03-15 17:06:55 -05001643 err = hci_req_run(&req, add_uuid_complete);
1644 if (err < 0) {
1645 if (err != -ENODATA)
1646 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001647
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001648 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001649 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001650 goto failed;
1651 }
1652
1653 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05001654 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02001655 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05001656 goto failed;
1657 }
1658
1659 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001660
1661failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001662 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001663 return err;
1664}
1665
Johan Hedberg24b78d02012-02-23 23:24:30 +02001666static bool enable_service_cache(struct hci_dev *hdev)
1667{
1668 if (!hdev_is_powered(hdev))
1669 return false;
1670
1671 if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02001672 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
1673 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02001674 return true;
1675 }
1676
1677 return false;
1678}
1679
Johan Hedberg92da6092013-03-15 17:06:55 -05001680static void remove_uuid_complete(struct hci_dev *hdev, u8 status)
1681{
1682 BT_DBG("status 0x%02x", status);
1683
1684 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
1685}
1686
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001687static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001688 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001689{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001690 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001691 struct pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02001692 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001693 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 -05001694 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001695 int err, found;
1696
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001697 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001698
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001699 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001700
Johan Hedberg0cab9c82013-03-15 17:06:54 -05001701 if (pending_eir_or_class(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001702 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001703 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001704 goto unlock;
1705 }
1706
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001707 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
1708 err = hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02001709
Johan Hedberg24b78d02012-02-23 23:24:30 +02001710 if (enable_service_cache(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001711 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001712 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02001713 goto unlock;
1714 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02001715
Johan Hedberg9246a862012-02-23 21:33:16 +02001716 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001717 }
1718
1719 found = 0;
1720
Johan Hedberg056341c2013-01-27 00:31:30 +02001721 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001722 if (memcmp(match->uuid, cp->uuid, 16) != 0)
1723 continue;
1724
1725 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01001726 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001727 found++;
1728 }
1729
1730 if (found == 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001731 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001732 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001733 goto unlock;
1734 }
1735
Johan Hedberg9246a862012-02-23 21:33:16 +02001736update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05001737 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001738
Johan Hedberg890ea892013-03-15 17:06:52 -05001739 update_class(&req);
1740 update_eir(&req);
1741
Johan Hedberg92da6092013-03-15 17:06:55 -05001742 err = hci_req_run(&req, remove_uuid_complete);
1743 if (err < 0) {
1744 if (err != -ENODATA)
1745 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001746
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001747 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001748 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001749 goto unlock;
1750 }
1751
1752 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05001753 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02001754 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05001755 goto unlock;
1756 }
1757
1758 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001759
1760unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001761 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001762 return err;
1763}
1764
Johan Hedberg92da6092013-03-15 17:06:55 -05001765static void set_class_complete(struct hci_dev *hdev, u8 status)
1766{
1767 BT_DBG("status 0x%02x", status);
1768
1769 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
1770}
1771
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001772static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001773 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001774{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001775 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001776 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05001777 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001778 int err;
1779
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001780 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001781
Marcel Holtmann6203fc92013-10-02 23:37:29 -07001782 if (!lmp_bredr_capable(hdev))
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001783 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1784 MGMT_STATUS_NOT_SUPPORTED);
1785
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001786 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001787
Johan Hedberg0cab9c82013-03-15 17:06:54 -05001788 if (pending_eir_or_class(hdev)) {
1789 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1790 MGMT_STATUS_BUSY);
1791 goto unlock;
1792 }
1793
1794 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
1795 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1796 MGMT_STATUS_INVALID_PARAMS);
1797 goto unlock;
1798 }
1799
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001800 hdev->major_class = cp->major;
1801 hdev->minor_class = cp->minor;
1802
Johan Hedberg932f5ff2012-02-22 22:11:32 +02001803 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001804 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001805 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02001806 goto unlock;
1807 }
1808
Johan Hedberg890ea892013-03-15 17:06:52 -05001809 hci_req_init(&req, hdev);
1810
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001811 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02001812 hci_dev_unlock(hdev);
1813 cancel_delayed_work_sync(&hdev->service_cache);
1814 hci_dev_lock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05001815 update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02001816 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02001817
Johan Hedberg890ea892013-03-15 17:06:52 -05001818 update_class(&req);
1819
Johan Hedberg92da6092013-03-15 17:06:55 -05001820 err = hci_req_run(&req, set_class_complete);
1821 if (err < 0) {
1822 if (err != -ENODATA)
1823 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001824
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001825 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001826 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001827 goto unlock;
1828 }
1829
1830 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05001831 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02001832 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05001833 goto unlock;
1834 }
1835
1836 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001837
Johan Hedbergb5235a62012-02-21 14:32:24 +02001838unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001839 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001840 return err;
1841}
1842
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001843static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001844 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001845{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001846 struct mgmt_cp_load_link_keys *cp = data;
Szymon Janc4e51eae2011-02-25 19:05:48 +01001847 u16 key_count, expected_len;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001848 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001849
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07001850 BT_DBG("request for %s", hdev->name);
1851
1852 if (!lmp_bredr_capable(hdev))
1853 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
1854 MGMT_STATUS_NOT_SUPPORTED);
1855
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001856 key_count = __le16_to_cpu(cp->key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001857
Johan Hedberg86742e12011-11-07 23:13:38 +02001858 expected_len = sizeof(*cp) + key_count *
1859 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001860 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02001861 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001862 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001863 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001864 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001865 }
1866
Johan Hedberg4ae14302013-01-20 14:27:13 +02001867 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
1868 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
1869 MGMT_STATUS_INVALID_PARAMS);
1870
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001871 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001872 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001873
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001874 for (i = 0; i < key_count; i++) {
1875 struct mgmt_link_key_info *key = &cp->keys[i];
1876
1877 if (key->addr.type != BDADDR_BREDR)
1878 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
1879 MGMT_STATUS_INVALID_PARAMS);
1880 }
1881
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001882 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001883
1884 hci_link_keys_clear(hdev);
1885
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001886 if (cp->debug_keys)
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001887 set_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001888 else
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001889 clear_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001890
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001891 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02001892 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001893
Johan Hedbergd753fdc2012-02-17 14:06:34 +02001894 hci_add_link_key(hdev, NULL, 0, &key->addr.bdaddr, key->val,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001895 key->type, key->pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001896 }
1897
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001898 cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02001899
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001900 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001901
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001902 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001903}
1904
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001905static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001906 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001907{
1908 struct mgmt_ev_device_unpaired ev;
1909
1910 bacpy(&ev.addr.bdaddr, bdaddr);
1911 ev.addr.type = addr_type;
1912
1913 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001914 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001915}
1916
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001917static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001918 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001919{
Johan Hedberg124f6e32012-02-09 13:50:12 +02001920 struct mgmt_cp_unpair_device *cp = data;
1921 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02001922 struct hci_cp_disconnect dc;
1923 struct pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001924 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001925 int err;
1926
Johan Hedberga8a1d192011-11-10 15:54:38 +02001927 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02001928 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
1929 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02001930
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001931 if (!bdaddr_type_is_valid(cp->addr.type))
1932 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
1933 MGMT_STATUS_INVALID_PARAMS,
1934 &rp, sizeof(rp));
1935
Johan Hedberg118da702013-01-20 14:27:20 +02001936 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
1937 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
1938 MGMT_STATUS_INVALID_PARAMS,
1939 &rp, sizeof(rp));
1940
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001941 hci_dev_lock(hdev);
1942
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001943 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001944 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001945 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001946 goto unlock;
1947 }
1948
Andre Guedes591f47f2012-04-24 21:02:49 -03001949 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg124f6e32012-02-09 13:50:12 +02001950 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
1951 else
1952 err = hci_remove_ltk(hdev, &cp->addr.bdaddr);
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03001953
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001954 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001955 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001956 MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001957 goto unlock;
1958 }
1959
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001960 if (cp->disconnect) {
Andre Guedes591f47f2012-04-24 21:02:49 -03001961 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001962 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001963 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001964 else
1965 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001966 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001967 } else {
1968 conn = NULL;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001969 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001970
Johan Hedberga8a1d192011-11-10 15:54:38 +02001971 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001972 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001973 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001974 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02001975 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001976 }
1977
Johan Hedberg124f6e32012-02-09 13:50:12 +02001978 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001979 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02001980 if (!cmd) {
1981 err = -ENOMEM;
1982 goto unlock;
1983 }
1984
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001985 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02001986 dc.reason = 0x13; /* Remote User Terminated Connection */
1987 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1988 if (err < 0)
1989 mgmt_pending_remove(cmd);
1990
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001991unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001992 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001993 return err;
1994}
1995
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001996static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001997 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02001998{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001999 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02002000 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002001 struct hci_cp_disconnect dc;
Johan Hedberg366a0332011-02-19 12:05:55 -03002002 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002003 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002004 int err;
2005
2006 BT_DBG("");
2007
Johan Hedberg06a63b12013-01-20 14:27:21 +02002008 memset(&rp, 0, sizeof(rp));
2009 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2010 rp.addr.type = cp->addr.type;
2011
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002012 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg06a63b12013-01-20 14:27:21 +02002013 return cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2014 MGMT_STATUS_INVALID_PARAMS,
2015 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002016
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002017 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002018
2019 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002020 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2021 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002022 goto failed;
2023 }
2024
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002025 if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002026 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2027 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002028 goto failed;
2029 }
2030
Andre Guedes591f47f2012-04-24 21:02:49 -03002031 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002032 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2033 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02002034 else
2035 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03002036
Vishal Agarwalf9607272012-06-13 05:32:43 +05302037 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002038 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2039 MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002040 goto failed;
2041 }
2042
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002043 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002044 if (!cmd) {
2045 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002046 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002047 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02002048
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002049 dc.handle = cpu_to_le16(conn->handle);
Andre Guedes3701f942012-06-11 18:41:12 -03002050 dc.reason = HCI_ERROR_REMOTE_USER_TERM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002051
2052 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
2053 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002054 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002055
2056failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002057 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002058 return err;
2059}
2060
Andre Guedes57c14772012-04-24 21:02:50 -03002061static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002062{
2063 switch (link_type) {
2064 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02002065 switch (addr_type) {
2066 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03002067 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03002068
Johan Hedberg48264f02011-11-09 13:58:58 +02002069 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002070 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002071 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02002072 }
Andre Guedes0ed09142012-04-03 08:46:54 -03002073
Johan Hedberg4c659c32011-11-07 23:13:39 +02002074 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002075 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002076 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002077 }
2078}
2079
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002080static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
2081 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02002082{
Johan Hedberg2784eb42011-01-21 13:56:35 +02002083 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002084 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02002085 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002086 int err;
2087 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002088
2089 BT_DBG("");
2090
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002091 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002092
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002093 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002094 err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002095 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002096 goto unlock;
2097 }
2098
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002099 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02002100 list_for_each_entry(c, &hdev->conn_hash.list, list) {
2101 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002102 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002103 }
2104
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002105 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03002106 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02002107 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02002108 err = -ENOMEM;
2109 goto unlock;
2110 }
2111
Johan Hedberg2784eb42011-01-21 13:56:35 +02002112 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002113 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02002114 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
2115 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002116 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03002117 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03002118 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002119 continue;
2120 i++;
2121 }
2122
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002123 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002124
Johan Hedberg4c659c32011-11-07 23:13:39 +02002125 /* Recalculate length in case of filtered SCO connections, etc */
2126 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02002127
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002128 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002129 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002130
Johan Hedberga38528f2011-01-22 06:46:43 +02002131 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002132
2133unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002134 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002135 return err;
2136}
2137
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002138static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002139 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002140{
2141 struct pending_cmd *cmd;
2142 int err;
2143
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002144 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002145 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002146 if (!cmd)
2147 return -ENOMEM;
2148
Johan Hedbergd8457692012-02-17 14:24:57 +02002149 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002150 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002151 if (err < 0)
2152 mgmt_pending_remove(cmd);
2153
2154 return err;
2155}
2156
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002157static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002158 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02002159{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002160 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002161 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002162 struct hci_cp_pin_code_reply reply;
Johan Hedberg366a0332011-02-19 12:05:55 -03002163 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002164 int err;
2165
2166 BT_DBG("");
2167
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002168 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002169
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002170 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002171 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002172 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002173 goto failed;
2174 }
2175
Johan Hedbergd8457692012-02-17 14:24:57 +02002176 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002177 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002178 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002179 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002180 goto failed;
2181 }
2182
2183 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02002184 struct mgmt_cp_pin_code_neg_reply ncp;
2185
2186 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002187
2188 BT_ERR("PIN code is not 16 bytes long");
2189
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002190 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002191 if (err >= 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002192 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002193 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002194
2195 goto failed;
2196 }
2197
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03002198 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002199 if (!cmd) {
2200 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002201 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002202 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002203
Johan Hedbergd8457692012-02-17 14:24:57 +02002204 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002205 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02002206 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02002207
2208 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
2209 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002210 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002211
2212failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002213 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002214 return err;
2215}
2216
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002217static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
2218 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002219{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002220 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002221
2222 BT_DBG("");
2223
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002224 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002225
2226 hdev->io_capability = cp->io_capability;
2227
2228 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002229 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002230
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002231 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002232
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002233 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL,
2234 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002235}
2236
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002237static struct pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002238{
2239 struct hci_dev *hdev = conn->hdev;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002240 struct pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002241
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002242 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03002243 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
2244 continue;
2245
Johan Hedberge9a416b2011-02-19 12:05:56 -03002246 if (cmd->user_data != conn)
2247 continue;
2248
2249 return cmd;
2250 }
2251
2252 return NULL;
2253}
2254
2255static void pairing_complete(struct pending_cmd *cmd, u8 status)
2256{
2257 struct mgmt_rp_pair_device rp;
2258 struct hci_conn *conn = cmd->user_data;
2259
Johan Hedbergba4e5642011-11-11 00:07:34 +02002260 bacpy(&rp.addr.bdaddr, &conn->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03002261 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002262
Johan Hedbergaee9b2182012-02-18 15:07:59 +02002263 cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002264 &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002265
2266 /* So we don't get further callbacks for this connection */
2267 conn->connect_cfm_cb = NULL;
2268 conn->security_cfm_cb = NULL;
2269 conn->disconn_cfm_cb = NULL;
2270
David Herrmann76a68ba2013-04-06 20:28:37 +02002271 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002272
Johan Hedberga664b5b2011-02-19 12:06:02 -03002273 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002274}
2275
2276static void pairing_complete_cb(struct hci_conn *conn, u8 status)
2277{
2278 struct pending_cmd *cmd;
2279
2280 BT_DBG("status %u", status);
2281
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002282 cmd = find_pairing(conn);
2283 if (!cmd)
2284 BT_DBG("Unable to find a pending command");
2285 else
Johan Hedberge2113262012-02-18 15:20:03 +02002286 pairing_complete(cmd, mgmt_status(status));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002287}
2288
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302289static void le_connect_complete_cb(struct hci_conn *conn, u8 status)
2290{
2291 struct pending_cmd *cmd;
2292
2293 BT_DBG("status %u", status);
2294
2295 if (!status)
2296 return;
2297
2298 cmd = find_pairing(conn);
2299 if (!cmd)
2300 BT_DBG("Unable to find a pending command");
2301 else
2302 pairing_complete(cmd, mgmt_status(status));
2303}
2304
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002305static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002306 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002307{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002308 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02002309 struct mgmt_rp_pair_device rp;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002310 struct pending_cmd *cmd;
2311 u8 sec_level, auth_type;
2312 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002313 int err;
2314
2315 BT_DBG("");
2316
Szymon Jancf950a30e2013-01-18 12:48:07 +01002317 memset(&rp, 0, sizeof(rp));
2318 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2319 rp.addr.type = cp->addr.type;
2320
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002321 if (!bdaddr_type_is_valid(cp->addr.type))
2322 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2323 MGMT_STATUS_INVALID_PARAMS,
2324 &rp, sizeof(rp));
2325
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002326 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002327
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002328 if (!hdev_is_powered(hdev)) {
Szymon Jancf950a30e2013-01-18 12:48:07 +01002329 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2330 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002331 goto unlock;
2332 }
2333
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03002334 sec_level = BT_SECURITY_MEDIUM;
2335 if (cp->io_cap == 0x03)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002336 auth_type = HCI_AT_DEDICATED_BONDING;
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03002337 else
Johan Hedberge9a416b2011-02-19 12:05:56 -03002338 auth_type = HCI_AT_DEDICATED_BONDING_MITM;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002339
Andre Guedes591f47f2012-04-24 21:02:49 -03002340 if (cp->addr.type == BDADDR_BREDR)
Andre Guedesb12f62c2012-04-24 21:02:54 -03002341 conn = hci_connect(hdev, ACL_LINK, &cp->addr.bdaddr,
2342 cp->addr.type, sec_level, auth_type);
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002343 else
Andre Guedesb12f62c2012-04-24 21:02:54 -03002344 conn = hci_connect(hdev, LE_LINK, &cp->addr.bdaddr,
2345 cp->addr.type, sec_level, auth_type);
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002346
Ville Tervo30e76272011-02-22 16:10:53 -03002347 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002348 int status;
2349
2350 if (PTR_ERR(conn) == -EBUSY)
2351 status = MGMT_STATUS_BUSY;
2352 else
2353 status = MGMT_STATUS_CONNECT_FAILED;
2354
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002355 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002356 status, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002357 sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002358 goto unlock;
2359 }
2360
2361 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02002362 hci_conn_drop(conn);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002363 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002364 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002365 goto unlock;
2366 }
2367
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002368 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002369 if (!cmd) {
2370 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02002371 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002372 goto unlock;
2373 }
2374
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002375 /* For LE, just connecting isn't a proof that the pairing finished */
Andre Guedes591f47f2012-04-24 21:02:49 -03002376 if (cp->addr.type == BDADDR_BREDR)
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002377 conn->connect_cfm_cb = pairing_complete_cb;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302378 else
2379 conn->connect_cfm_cb = le_connect_complete_cb;
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002380
Johan Hedberge9a416b2011-02-19 12:05:56 -03002381 conn->security_cfm_cb = pairing_complete_cb;
2382 conn->disconn_cfm_cb = pairing_complete_cb;
2383 conn->io_capability = cp->io_cap;
2384 cmd->user_data = conn;
2385
2386 if (conn->state == BT_CONNECTED &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002387 hci_conn_security(conn, sec_level, auth_type))
Johan Hedberge9a416b2011-02-19 12:05:56 -03002388 pairing_complete(cmd, 0);
2389
2390 err = 0;
2391
2392unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002393 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002394 return err;
2395}
2396
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002397static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2398 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02002399{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002400 struct mgmt_addr_info *addr = data;
Johan Hedberg28424702012-02-02 04:02:29 +02002401 struct pending_cmd *cmd;
2402 struct hci_conn *conn;
2403 int err;
2404
2405 BT_DBG("");
2406
Johan Hedberg28424702012-02-02 04:02:29 +02002407 hci_dev_lock(hdev);
2408
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002409 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002410 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002411 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002412 goto unlock;
2413 }
2414
Johan Hedberg28424702012-02-02 04:02:29 +02002415 cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
2416 if (!cmd) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002417 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002418 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002419 goto unlock;
2420 }
2421
2422 conn = cmd->user_data;
2423
2424 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002425 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002426 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002427 goto unlock;
2428 }
2429
2430 pairing_complete(cmd, MGMT_STATUS_CANCELLED);
2431
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002432 err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002433 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02002434unlock:
2435 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02002436 return err;
2437}
2438
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002439static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05002440 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002441 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03002442{
Johan Hedberga5c29682011-02-19 12:05:57 -03002443 struct pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08002444 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03002445 int err;
2446
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002447 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02002448
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002449 if (!hdev_is_powered(hdev)) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05002450 err = cmd_complete(sk, hdev->id, mgmt_op,
2451 MGMT_STATUS_NOT_POWERED, addr,
2452 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08002453 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002454 }
2455
Johan Hedberg1707c602013-03-15 17:07:15 -05002456 if (addr->type == BDADDR_BREDR)
2457 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02002458 else
Johan Hedberg1707c602013-03-15 17:07:15 -05002459 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08002460
Johan Hedberg272d90d2012-02-09 15:26:12 +02002461 if (!conn) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05002462 err = cmd_complete(sk, hdev->id, mgmt_op,
2463 MGMT_STATUS_NOT_CONNECTED, addr,
2464 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02002465 goto done;
2466 }
2467
Johan Hedberg1707c602013-03-15 17:07:15 -05002468 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix47c15e22011-11-16 13:53:14 -08002469 /* Continue with pairing via SMP */
Brian Gix5fe57d92011-12-21 16:12:13 -08002470 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix47c15e22011-11-16 13:53:14 -08002471
Brian Gix5fe57d92011-12-21 16:12:13 -08002472 if (!err)
Johan Hedbergfeb94d32013-03-15 17:07:16 -05002473 err = cmd_complete(sk, hdev->id, mgmt_op,
2474 MGMT_STATUS_SUCCESS, addr,
2475 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08002476 else
Johan Hedbergfeb94d32013-03-15 17:07:16 -05002477 err = cmd_complete(sk, hdev->id, mgmt_op,
2478 MGMT_STATUS_FAILED, addr,
2479 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08002480
Brian Gix47c15e22011-11-16 13:53:14 -08002481 goto done;
2482 }
2483
Johan Hedberg1707c602013-03-15 17:07:15 -05002484 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03002485 if (!cmd) {
2486 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08002487 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002488 }
2489
Brian Gix0df4c182011-11-16 13:53:13 -08002490 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08002491 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
2492 struct hci_cp_user_passkey_reply cp;
2493
Johan Hedberg1707c602013-03-15 17:07:15 -05002494 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08002495 cp.passkey = passkey;
2496 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
2497 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05002498 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
2499 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08002500
Johan Hedberga664b5b2011-02-19 12:06:02 -03002501 if (err < 0)
2502 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03002503
Brian Gix0df4c182011-11-16 13:53:13 -08002504done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002505 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03002506 return err;
2507}
2508
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05302509static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
2510 void *data, u16 len)
2511{
2512 struct mgmt_cp_pin_code_neg_reply *cp = data;
2513
2514 BT_DBG("");
2515
Johan Hedberg1707c602013-03-15 17:07:15 -05002516 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05302517 MGMT_OP_PIN_CODE_NEG_REPLY,
2518 HCI_OP_PIN_CODE_NEG_REPLY, 0);
2519}
2520
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002521static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2522 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08002523{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002524 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08002525
2526 BT_DBG("");
2527
2528 if (len != sizeof(*cp))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002529 return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002530 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08002531
Johan Hedberg1707c602013-03-15 17:07:15 -05002532 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002533 MGMT_OP_USER_CONFIRM_REPLY,
2534 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08002535}
2536
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002537static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002538 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08002539{
Johan Hedbergc9c26592011-12-15 00:47:41 +02002540 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08002541
2542 BT_DBG("");
2543
Johan Hedberg1707c602013-03-15 17:07:15 -05002544 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002545 MGMT_OP_USER_CONFIRM_NEG_REPLY,
2546 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08002547}
2548
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002549static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2550 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08002551{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002552 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08002553
2554 BT_DBG("");
2555
Johan Hedberg1707c602013-03-15 17:07:15 -05002556 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002557 MGMT_OP_USER_PASSKEY_REPLY,
2558 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08002559}
2560
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002561static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002562 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08002563{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002564 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08002565
2566 BT_DBG("");
2567
Johan Hedberg1707c602013-03-15 17:07:15 -05002568 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002569 MGMT_OP_USER_PASSKEY_NEG_REPLY,
2570 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08002571}
2572
Johan Hedberg13928972013-03-15 17:07:00 -05002573static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002574{
Johan Hedberg13928972013-03-15 17:07:00 -05002575 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002576 struct hci_cp_write_local_name cp;
2577
Johan Hedberg13928972013-03-15 17:07:00 -05002578 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002579
Johan Hedberg890ea892013-03-15 17:06:52 -05002580 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002581}
2582
Johan Hedberg13928972013-03-15 17:07:00 -05002583static void set_name_complete(struct hci_dev *hdev, u8 status)
2584{
2585 struct mgmt_cp_set_local_name *cp;
2586 struct pending_cmd *cmd;
2587
2588 BT_DBG("status 0x%02x", status);
2589
2590 hci_dev_lock(hdev);
2591
2592 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
2593 if (!cmd)
2594 goto unlock;
2595
2596 cp = cmd->param;
2597
2598 if (status)
2599 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
2600 mgmt_status(status));
2601 else
2602 cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
2603 cp, sizeof(*cp));
2604
2605 mgmt_pending_remove(cmd);
2606
2607unlock:
2608 hci_dev_unlock(hdev);
2609}
2610
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002611static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002612 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02002613{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002614 struct mgmt_cp_set_local_name *cp = data;
Johan Hedbergb312b1612011-03-16 14:29:37 +02002615 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002616 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02002617 int err;
2618
2619 BT_DBG("");
2620
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002621 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002622
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05002623 /* If the old values are the same as the new ones just return a
2624 * direct command complete event.
2625 */
2626 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
2627 !memcmp(hdev->short_name, cp->short_name,
2628 sizeof(hdev->short_name))) {
2629 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
2630 data, len);
2631 goto failed;
2632 }
2633
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002634 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002635
Johan Hedbergb5235a62012-02-21 14:32:24 +02002636 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002637 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002638
2639 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002640 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002641 if (err < 0)
2642 goto failed;
2643
2644 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002645 sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002646
Johan Hedbergb5235a62012-02-21 14:32:24 +02002647 goto failed;
2648 }
2649
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002650 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002651 if (!cmd) {
2652 err = -ENOMEM;
2653 goto failed;
2654 }
2655
Johan Hedberg13928972013-03-15 17:07:00 -05002656 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
2657
Johan Hedberg890ea892013-03-15 17:06:52 -05002658 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05002659
2660 if (lmp_bredr_capable(hdev)) {
2661 update_name(&req);
2662 update_eir(&req);
2663 }
2664
2665 if (lmp_le_capable(hdev))
2666 hci_update_ad(&req);
2667
Johan Hedberg13928972013-03-15 17:07:00 -05002668 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002669 if (err < 0)
2670 mgmt_pending_remove(cmd);
2671
2672failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002673 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002674 return err;
2675}
2676
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002677static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002678 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01002679{
Szymon Jancc35938b2011-03-22 13:12:21 +01002680 struct pending_cmd *cmd;
2681 int err;
2682
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002683 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01002684
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002685 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01002686
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002687 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002688 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002689 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01002690 goto unlock;
2691 }
2692
Andre Guedes9a1a1992012-07-24 15:03:48 -03002693 if (!lmp_ssp_capable(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002694 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002695 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01002696 goto unlock;
2697 }
2698
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002699 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002700 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002701 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01002702 goto unlock;
2703 }
2704
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002705 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01002706 if (!cmd) {
2707 err = -ENOMEM;
2708 goto unlock;
2709 }
2710
2711 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
2712 if (err < 0)
2713 mgmt_pending_remove(cmd);
2714
2715unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002716 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01002717 return err;
2718}
2719
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002720static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002721 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01002722{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002723 struct mgmt_cp_add_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002724 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01002725 int err;
2726
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002727 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01002728
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002729 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002730
Johan Hedberg664ce4c2012-02-09 15:44:09 +02002731 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr, cp->hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002732 cp->randomizer);
Szymon Janc2763eda2011-03-22 13:12:22 +01002733 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002734 status = MGMT_STATUS_FAILED;
Szymon Janc2763eda2011-03-22 13:12:22 +01002735 else
Szymon Janca6785be2012-12-13 15:11:21 +01002736 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002737
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002738 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002739 &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01002740
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002741 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002742 return err;
2743}
2744
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002745static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002746 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01002747{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002748 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002749 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01002750 int err;
2751
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002752 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01002753
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002754 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002755
Johan Hedberg664ce4c2012-02-09 15:44:09 +02002756 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01002757 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002758 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01002759 else
Szymon Janca6785be2012-12-13 15:11:21 +01002760 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002761
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002762 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002763 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01002764
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002765 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002766 return err;
2767}
2768
Andre Guedes41dc2bd2013-04-30 15:29:30 -03002769static int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status)
2770{
2771 struct pending_cmd *cmd;
2772 u8 type;
2773 int err;
2774
2775 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2776
2777 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
2778 if (!cmd)
2779 return -ENOENT;
2780
2781 type = hdev->discovery.type;
2782
2783 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
2784 &type, sizeof(type));
2785 mgmt_pending_remove(cmd);
2786
2787 return err;
2788}
2789
Andre Guedes7c307722013-04-30 15:29:28 -03002790static void start_discovery_complete(struct hci_dev *hdev, u8 status)
2791{
2792 BT_DBG("status %d", status);
2793
2794 if (status) {
2795 hci_dev_lock(hdev);
2796 mgmt_start_discovery_failed(hdev, status);
2797 hci_dev_unlock(hdev);
2798 return;
2799 }
2800
2801 hci_dev_lock(hdev);
2802 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
2803 hci_dev_unlock(hdev);
2804
2805 switch (hdev->discovery.type) {
2806 case DISCOV_TYPE_LE:
2807 queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable,
Andre Guedes0d8cc932013-04-30 15:29:31 -03002808 DISCOV_LE_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03002809 break;
2810
2811 case DISCOV_TYPE_INTERLEAVED:
2812 queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable,
Andre Guedes0d8cc932013-04-30 15:29:31 -03002813 DISCOV_INTERLEAVED_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03002814 break;
2815
2816 case DISCOV_TYPE_BREDR:
2817 break;
2818
2819 default:
2820 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
2821 }
2822}
2823
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002824static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002825 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04002826{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002827 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04002828 struct pending_cmd *cmd;
Andre Guedes7c307722013-04-30 15:29:28 -03002829 struct hci_cp_le_set_scan_param param_cp;
2830 struct hci_cp_le_set_scan_enable enable_cp;
2831 struct hci_cp_inquiry inq_cp;
2832 struct hci_request req;
2833 /* General inquiry access code (GIAC) */
2834 u8 lap[3] = { 0x33, 0x8b, 0x9e };
Johan Hedberge6fe7982013-10-02 15:45:22 +03002835 u8 status;
Johan Hedberg14a53662011-04-27 10:29:56 -04002836 int err;
2837
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002838 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04002839
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002840 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002841
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002842 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002843 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002844 MGMT_STATUS_NOT_POWERED);
Johan Hedbergbd2d1332011-11-07 23:13:37 +02002845 goto failed;
2846 }
2847
Andre Guedes642be6c2012-03-21 00:03:37 -03002848 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
2849 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2850 MGMT_STATUS_BUSY);
2851 goto failed;
2852 }
2853
Johan Hedbergff9ef572012-01-04 14:23:45 +02002854 if (hdev->discovery.state != DISCOVERY_STOPPED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002855 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002856 MGMT_STATUS_BUSY);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002857 goto failed;
2858 }
2859
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002860 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04002861 if (!cmd) {
2862 err = -ENOMEM;
2863 goto failed;
2864 }
2865
Andre Guedes4aab14e2012-02-17 20:39:36 -03002866 hdev->discovery.type = cp->type;
2867
Andre Guedes7c307722013-04-30 15:29:28 -03002868 hci_req_init(&req, hdev);
2869
Andre Guedes4aab14e2012-02-17 20:39:36 -03002870 switch (hdev->discovery.type) {
Andre Guedesf39799f2012-02-17 20:39:35 -03002871 case DISCOV_TYPE_BREDR:
Johan Hedberge6fe7982013-10-02 15:45:22 +03002872 status = mgmt_bredr_support(hdev);
2873 if (status) {
Johan Hedberg04106752013-01-10 14:54:09 +02002874 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03002875 status);
Johan Hedberg04106752013-01-10 14:54:09 +02002876 mgmt_pending_remove(cmd);
2877 goto failed;
2878 }
2879
Andre Guedes7c307722013-04-30 15:29:28 -03002880 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
2881 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2882 MGMT_STATUS_BUSY);
2883 mgmt_pending_remove(cmd);
2884 goto failed;
2885 }
2886
2887 hci_inquiry_cache_flush(hdev);
2888
2889 memset(&inq_cp, 0, sizeof(inq_cp));
2890 memcpy(&inq_cp.lap, lap, sizeof(inq_cp.lap));
Andre Guedes0d8cc932013-04-30 15:29:31 -03002891 inq_cp.length = DISCOV_BREDR_INQUIRY_LEN;
Andre Guedes7c307722013-04-30 15:29:28 -03002892 hci_req_add(&req, HCI_OP_INQUIRY, sizeof(inq_cp), &inq_cp);
Andre Guedesf39799f2012-02-17 20:39:35 -03002893 break;
2894
2895 case DISCOV_TYPE_LE:
Andre Guedes7c307722013-04-30 15:29:28 -03002896 case DISCOV_TYPE_INTERLEAVED:
Johan Hedberge6fe7982013-10-02 15:45:22 +03002897 status = mgmt_le_support(hdev);
2898 if (status) {
Johan Hedberg04106752013-01-10 14:54:09 +02002899 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03002900 status);
Johan Hedberg04106752013-01-10 14:54:09 +02002901 mgmt_pending_remove(cmd);
2902 goto failed;
2903 }
2904
Andre Guedes7c307722013-04-30 15:29:28 -03002905 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
Johan Hedberg56f87902013-10-02 13:43:13 +03002906 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
Johan Hedberg04106752013-01-10 14:54:09 +02002907 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2908 MGMT_STATUS_NOT_SUPPORTED);
2909 mgmt_pending_remove(cmd);
2910 goto failed;
2911 }
2912
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02002913 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
Andre Guedes7c307722013-04-30 15:29:28 -03002914 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2915 MGMT_STATUS_REJECTED);
2916 mgmt_pending_remove(cmd);
2917 goto failed;
2918 }
2919
2920 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags)) {
2921 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2922 MGMT_STATUS_BUSY);
2923 mgmt_pending_remove(cmd);
2924 goto failed;
2925 }
2926
2927 memset(&param_cp, 0, sizeof(param_cp));
2928 param_cp.type = LE_SCAN_ACTIVE;
Andre Guedes0d8cc932013-04-30 15:29:31 -03002929 param_cp.interval = cpu_to_le16(DISCOV_LE_SCAN_INT);
2930 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
Marcel Holtmannc25dfc62013-10-06 02:08:36 -07002931 if (bacmp(&hdev->bdaddr, BDADDR_ANY))
2932 param_cp.own_address_type = ADDR_LE_DEV_PUBLIC;
2933 else
2934 param_cp.own_address_type = ADDR_LE_DEV_RANDOM;
Andre Guedes7c307722013-04-30 15:29:28 -03002935 hci_req_add(&req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
2936 &param_cp);
2937
2938 memset(&enable_cp, 0, sizeof(enable_cp));
2939 enable_cp.enable = LE_SCAN_ENABLE;
2940 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
2941 hci_req_add(&req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
2942 &enable_cp);
Andre Guedes5e0452c2012-02-17 20:39:38 -03002943 break;
2944
Andre Guedesf39799f2012-02-17 20:39:35 -03002945 default:
Johan Hedberg04106752013-01-10 14:54:09 +02002946 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2947 MGMT_STATUS_INVALID_PARAMS);
2948 mgmt_pending_remove(cmd);
2949 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03002950 }
Andre Guedes3fd24152012-02-03 17:48:01 -03002951
Andre Guedes7c307722013-04-30 15:29:28 -03002952 err = hci_req_run(&req, start_discovery_complete);
Johan Hedberg14a53662011-04-27 10:29:56 -04002953 if (err < 0)
2954 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002955 else
2956 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04002957
2958failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002959 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002960 return err;
2961}
2962
Andre Guedes1183fdc2013-04-30 15:29:35 -03002963static int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status)
2964{
2965 struct pending_cmd *cmd;
2966 int err;
2967
2968 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
2969 if (!cmd)
2970 return -ENOENT;
2971
2972 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
2973 &hdev->discovery.type, sizeof(hdev->discovery.type));
2974 mgmt_pending_remove(cmd);
2975
2976 return err;
2977}
2978
Andre Guedes0e05bba2013-04-30 15:29:33 -03002979static void stop_discovery_complete(struct hci_dev *hdev, u8 status)
2980{
2981 BT_DBG("status %d", status);
2982
2983 hci_dev_lock(hdev);
2984
2985 if (status) {
2986 mgmt_stop_discovery_failed(hdev, status);
2987 goto unlock;
2988 }
2989
2990 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2991
2992unlock:
2993 hci_dev_unlock(hdev);
2994}
2995
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002996static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002997 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04002998{
Johan Hedbergd9306502012-02-20 23:25:18 +02002999 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04003000 struct pending_cmd *cmd;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003001 struct hci_cp_remote_name_req_cancel cp;
3002 struct inquiry_entry *e;
Andre Guedes0e05bba2013-04-30 15:29:33 -03003003 struct hci_request req;
3004 struct hci_cp_le_set_scan_enable enable_cp;
Johan Hedberg14a53662011-04-27 10:29:56 -04003005 int err;
3006
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003007 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04003008
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003009 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003010
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003011 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003012 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003013 MGMT_STATUS_REJECTED, &mgmt_cp->type,
3014 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02003015 goto unlock;
3016 }
3017
3018 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003019 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003020 MGMT_STATUS_INVALID_PARAMS, &mgmt_cp->type,
3021 sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003022 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02003023 }
3024
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003025 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04003026 if (!cmd) {
3027 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003028 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04003029 }
3030
Andre Guedes0e05bba2013-04-30 15:29:33 -03003031 hci_req_init(&req, hdev);
3032
Andre Guedese0d9727e2012-03-20 15:15:36 -03003033 switch (hdev->discovery.state) {
3034 case DISCOVERY_FINDING:
Andre Guedes0e05bba2013-04-30 15:29:33 -03003035 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
3036 hci_req_add(&req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
3037 } else {
3038 cancel_delayed_work(&hdev->le_scan_disable);
3039
3040 memset(&enable_cp, 0, sizeof(enable_cp));
3041 enable_cp.enable = LE_SCAN_DISABLE;
3042 hci_req_add(&req, HCI_OP_LE_SET_SCAN_ENABLE,
3043 sizeof(enable_cp), &enable_cp);
3044 }
Andre Guedesc9ecc482012-03-15 16:52:08 -03003045
Andre Guedese0d9727e2012-03-20 15:15:36 -03003046 break;
3047
3048 case DISCOVERY_RESOLVING:
3049 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003050 NAME_PENDING);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003051 if (!e) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003052 mgmt_pending_remove(cmd);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003053 err = cmd_complete(sk, hdev->id,
3054 MGMT_OP_STOP_DISCOVERY, 0,
3055 &mgmt_cp->type,
3056 sizeof(mgmt_cp->type));
3057 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3058 goto unlock;
3059 }
3060
3061 bacpy(&cp.bdaddr, &e->data.bdaddr);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003062 hci_req_add(&req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
3063 &cp);
Andre Guedese0d9727e2012-03-20 15:15:36 -03003064
3065 break;
3066
3067 default:
3068 BT_DBG("unknown discovery state %u", hdev->discovery.state);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003069
3070 mgmt_pending_remove(cmd);
3071 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
3072 MGMT_STATUS_FAILED, &mgmt_cp->type,
3073 sizeof(mgmt_cp->type));
3074 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003075 }
3076
Andre Guedes0e05bba2013-04-30 15:29:33 -03003077 err = hci_req_run(&req, stop_discovery_complete);
Johan Hedberg14a53662011-04-27 10:29:56 -04003078 if (err < 0)
3079 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003080 else
3081 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Johan Hedberg14a53662011-04-27 10:29:56 -04003082
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003083unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003084 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003085 return err;
3086}
3087
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003088static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003089 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02003090{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003091 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003092 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003093 int err;
3094
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003095 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003096
Johan Hedberg561aafb2012-01-04 13:31:59 +02003097 hci_dev_lock(hdev);
3098
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003099 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003100 err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003101 MGMT_STATUS_FAILED);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003102 goto failed;
3103 }
3104
Johan Hedberga198e7b2012-02-17 14:27:06 +02003105 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003106 if (!e) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003107 err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003108 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003109 goto failed;
3110 }
3111
3112 if (cp->name_known) {
3113 e->name_state = NAME_KNOWN;
3114 list_del(&e->list);
3115 } else {
3116 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02003117 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003118 }
3119
Johan Hedberge3846622013-01-09 15:29:33 +02003120 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr,
3121 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02003122
3123failed:
3124 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003125 return err;
3126}
3127
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003128static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003129 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03003130{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003131 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003132 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03003133 int err;
3134
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003135 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03003136
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003137 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02003138 return cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
3139 MGMT_STATUS_INVALID_PARAMS,
3140 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003141
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003142 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003143
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003144 err = hci_blacklist_add(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03003145 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003146 status = MGMT_STATUS_FAILED;
Antti Julku7fbec222011-06-15 12:01:15 +03003147 else
Szymon Janca6785be2012-12-13 15:11:21 +01003148 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003149
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003150 err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003151 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03003152
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003153 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03003154
3155 return err;
3156}
3157
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003158static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003159 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03003160{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003161 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003162 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03003163 int err;
3164
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003165 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03003166
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003167 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02003168 return cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
3169 MGMT_STATUS_INVALID_PARAMS,
3170 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003171
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003172 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003173
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003174 err = hci_blacklist_del(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03003175 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003176 status = MGMT_STATUS_INVALID_PARAMS;
Antti Julku7fbec222011-06-15 12:01:15 +03003177 else
Szymon Janca6785be2012-12-13 15:11:21 +01003178 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003179
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003180 err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003181 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03003182
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003183 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03003184
3185 return err;
3186}
3187
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003188static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
3189 u16 len)
3190{
3191 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05003192 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003193 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01003194 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003195
3196 BT_DBG("%s", hdev->name);
3197
Szymon Jancc72d4b82012-03-16 16:02:57 +01003198 source = __le16_to_cpu(cp->source);
3199
3200 if (source > 0x0002)
3201 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
3202 MGMT_STATUS_INVALID_PARAMS);
3203
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003204 hci_dev_lock(hdev);
3205
Szymon Jancc72d4b82012-03-16 16:02:57 +01003206 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003207 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
3208 hdev->devid_product = __le16_to_cpu(cp->product);
3209 hdev->devid_version = __le16_to_cpu(cp->version);
3210
3211 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);
3212
Johan Hedberg890ea892013-03-15 17:06:52 -05003213 hci_req_init(&req, hdev);
3214 update_eir(&req);
3215 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003216
3217 hci_dev_unlock(hdev);
3218
3219 return err;
3220}
3221
Johan Hedberg4375f102013-09-25 13:26:10 +03003222static void set_advertising_complete(struct hci_dev *hdev, u8 status)
3223{
3224 struct cmd_lookup match = { NULL, hdev };
3225
3226 if (status) {
3227 u8 mgmt_err = mgmt_status(status);
3228
3229 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
3230 cmd_status_rsp, &mgmt_err);
3231 return;
3232 }
3233
3234 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
3235 &match);
3236
3237 new_settings(hdev, match.sk);
3238
3239 if (match.sk)
3240 sock_put(match.sk);
3241}
3242
3243static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
3244{
3245 struct mgmt_mode *cp = data;
3246 struct pending_cmd *cmd;
3247 struct hci_request req;
Johan Hedberge6fe7982013-10-02 15:45:22 +03003248 u8 val, enabled, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03003249 int err;
3250
3251 BT_DBG("request for %s", hdev->name);
3252
Johan Hedberge6fe7982013-10-02 15:45:22 +03003253 status = mgmt_le_support(hdev);
3254 if (status)
Johan Hedberg4375f102013-09-25 13:26:10 +03003255 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003256 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03003257
3258 if (cp->val != 0x00 && cp->val != 0x01)
3259 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3260 MGMT_STATUS_INVALID_PARAMS);
3261
3262 hci_dev_lock(hdev);
3263
3264 val = !!cp->val;
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003265 enabled = test_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003266
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02003267 /* The following conditions are ones which mean that we should
3268 * not do any HCI communication but directly send a mgmt
3269 * response to user space (after toggling the flag if
3270 * necessary).
3271 */
3272 if (!hdev_is_powered(hdev) || val == enabled ||
3273 hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECTED)) {
Johan Hedberg4375f102013-09-25 13:26:10 +03003274 bool changed = false;
3275
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003276 if (val != test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
3277 change_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003278 changed = true;
3279 }
3280
3281 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
3282 if (err < 0)
3283 goto unlock;
3284
3285 if (changed)
3286 err = new_settings(hdev, sk);
3287
3288 goto unlock;
3289 }
3290
3291 if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
3292 mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
3293 err = cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3294 MGMT_STATUS_BUSY);
3295 goto unlock;
3296 }
3297
3298 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
3299 if (!cmd) {
3300 err = -ENOMEM;
3301 goto unlock;
3302 }
3303
3304 hci_req_init(&req, hdev);
3305
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07003306 if (val)
3307 enable_advertising(&req);
3308 else
3309 disable_advertising(&req);
Johan Hedberg4375f102013-09-25 13:26:10 +03003310
3311 err = hci_req_run(&req, set_advertising_complete);
3312 if (err < 0)
3313 mgmt_pending_remove(cmd);
3314
3315unlock:
3316 hci_dev_unlock(hdev);
3317 return err;
3318}
3319
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003320static int set_static_address(struct sock *sk, struct hci_dev *hdev,
3321 void *data, u16 len)
3322{
3323 struct mgmt_cp_set_static_address *cp = data;
3324 int err;
3325
3326 BT_DBG("%s", hdev->name);
3327
Marcel Holtmann62af4442013-10-02 22:10:32 -07003328 if (!lmp_le_capable(hdev))
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003329 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann62af4442013-10-02 22:10:32 -07003330 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003331
3332 if (hdev_is_powered(hdev))
3333 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
3334 MGMT_STATUS_REJECTED);
3335
3336 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
3337 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
3338 return cmd_status(sk, hdev->id,
3339 MGMT_OP_SET_STATIC_ADDRESS,
3340 MGMT_STATUS_INVALID_PARAMS);
3341
3342 /* Two most significant bits shall be set */
3343 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
3344 return cmd_status(sk, hdev->id,
3345 MGMT_OP_SET_STATIC_ADDRESS,
3346 MGMT_STATUS_INVALID_PARAMS);
3347 }
3348
3349 hci_dev_lock(hdev);
3350
3351 bacpy(&hdev->static_addr, &cp->bdaddr);
3352
3353 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, 0, NULL, 0);
3354
3355 hci_dev_unlock(hdev);
3356
3357 return err;
3358}
3359
Johan Hedberg33e38b32013-03-15 17:07:05 -05003360static void fast_connectable_complete(struct hci_dev *hdev, u8 status)
3361{
3362 struct pending_cmd *cmd;
3363
3364 BT_DBG("status 0x%02x", status);
3365
3366 hci_dev_lock(hdev);
3367
3368 cmd = mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
3369 if (!cmd)
3370 goto unlock;
3371
3372 if (status) {
3373 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
3374 mgmt_status(status));
3375 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05003376 struct mgmt_mode *cp = cmd->param;
3377
3378 if (cp->val)
3379 set_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
3380 else
3381 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
3382
Johan Hedberg33e38b32013-03-15 17:07:05 -05003383 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
3384 new_settings(hdev, cmd->sk);
3385 }
3386
3387 mgmt_pending_remove(cmd);
3388
3389unlock:
3390 hci_dev_unlock(hdev);
3391}
3392
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003393static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003394 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03003395{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003396 struct mgmt_mode *cp = data;
Johan Hedberg33e38b32013-03-15 17:07:05 -05003397 struct pending_cmd *cmd;
3398 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03003399 int err;
3400
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003401 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03003402
Johan Hedberg56f87902013-10-02 13:43:13 +03003403 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) ||
3404 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberg33c525c2012-10-24 21:11:58 +03003405 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
3406 MGMT_STATUS_NOT_SUPPORTED);
3407
Johan Hedberga7e80f22013-01-09 16:05:19 +02003408 if (cp->val != 0x00 && cp->val != 0x01)
3409 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
3410 MGMT_STATUS_INVALID_PARAMS);
3411
Johan Hedberg5400c042012-02-21 16:40:33 +02003412 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003413 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003414 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02003415
3416 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003417 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003418 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03003419
3420 hci_dev_lock(hdev);
3421
Johan Hedberg05cbf292013-03-15 17:07:07 -05003422 if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
3423 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
3424 MGMT_STATUS_BUSY);
3425 goto unlock;
3426 }
3427
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05003428 if (!!cp->val == test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) {
3429 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
3430 hdev);
3431 goto unlock;
3432 }
3433
Johan Hedberg33e38b32013-03-15 17:07:05 -05003434 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
3435 data, len);
3436 if (!cmd) {
3437 err = -ENOMEM;
3438 goto unlock;
3439 }
3440
3441 hci_req_init(&req, hdev);
3442
Johan Hedberg406d7802013-03-15 17:07:09 -05003443 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05003444
3445 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03003446 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003447 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003448 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05003449 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03003450 }
3451
Johan Hedberg33e38b32013-03-15 17:07:05 -05003452unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03003453 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05003454
Antti Julkuf6422ec2011-06-22 13:11:56 +03003455 return err;
3456}
3457
Johan Hedberg0663ca22013-10-02 13:43:14 +03003458static void set_bredr_complete(struct hci_dev *hdev, u8 status)
3459{
3460 struct pending_cmd *cmd;
3461
3462 BT_DBG("status 0x%02x", status);
3463
3464 hci_dev_lock(hdev);
3465
3466 cmd = mgmt_pending_find(MGMT_OP_SET_BREDR, hdev);
3467 if (!cmd)
3468 goto unlock;
3469
3470 if (status) {
3471 u8 mgmt_err = mgmt_status(status);
3472
3473 /* We need to restore the flag if related HCI commands
3474 * failed.
3475 */
3476 clear_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
3477
3478 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
3479 } else {
3480 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
3481 new_settings(hdev, cmd->sk);
3482 }
3483
3484 mgmt_pending_remove(cmd);
3485
3486unlock:
3487 hci_dev_unlock(hdev);
3488}
3489
3490static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
3491{
3492 struct mgmt_mode *cp = data;
3493 struct pending_cmd *cmd;
3494 struct hci_request req;
3495 int err;
3496
3497 BT_DBG("request for %s", hdev->name);
3498
3499 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
3500 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3501 MGMT_STATUS_NOT_SUPPORTED);
3502
3503 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
3504 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3505 MGMT_STATUS_REJECTED);
3506
3507 if (cp->val != 0x00 && cp->val != 0x01)
3508 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3509 MGMT_STATUS_INVALID_PARAMS);
3510
3511 hci_dev_lock(hdev);
3512
3513 if (cp->val == test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
3514 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
3515 goto unlock;
3516 }
3517
3518 if (!hdev_is_powered(hdev)) {
3519 if (!cp->val) {
3520 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
3521 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
3522 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
3523 clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
3524 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
3525 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
3526 }
3527
3528 change_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
3529
3530 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
3531 if (err < 0)
3532 goto unlock;
3533
3534 err = new_settings(hdev, sk);
3535 goto unlock;
3536 }
3537
3538 /* Reject disabling when powered on */
3539 if (!cp->val) {
3540 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3541 MGMT_STATUS_REJECTED);
3542 goto unlock;
3543 }
3544
3545 if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) {
3546 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3547 MGMT_STATUS_BUSY);
3548 goto unlock;
3549 }
3550
3551 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
3552 if (!cmd) {
3553 err = -ENOMEM;
3554 goto unlock;
3555 }
3556
3557 /* We need to flip the bit already here so that hci_update_ad
3558 * generates the correct flags.
3559 */
3560 set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
3561
3562 hci_req_init(&req, hdev);
3563 hci_update_ad(&req);
3564 err = hci_req_run(&req, set_bredr_complete);
3565 if (err < 0)
3566 mgmt_pending_remove(cmd);
3567
3568unlock:
3569 hci_dev_unlock(hdev);
3570 return err;
3571}
3572
Johan Hedberg3f706b72013-01-20 14:27:16 +02003573static bool ltk_is_valid(struct mgmt_ltk_info *key)
3574{
Johan Hedberg44b20d32013-01-20 14:27:17 +02003575 if (key->authenticated != 0x00 && key->authenticated != 0x01)
3576 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02003577 if (key->master != 0x00 && key->master != 0x01)
3578 return false;
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003579 if (!bdaddr_type_is_le(key->addr.type))
3580 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02003581 return true;
3582}
3583
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003584static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003585 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003586{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003587 struct mgmt_cp_load_long_term_keys *cp = cp_data;
3588 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02003589 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003590
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07003591 BT_DBG("request for %s", hdev->name);
3592
3593 if (!lmp_le_capable(hdev))
3594 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
3595 MGMT_STATUS_NOT_SUPPORTED);
3596
Marcel Holtmann1f350c82012-03-12 20:31:08 -07003597 key_count = __le16_to_cpu(cp->key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003598
3599 expected_len = sizeof(*cp) + key_count *
3600 sizeof(struct mgmt_ltk_info);
3601 if (expected_len != len) {
3602 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003603 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003604 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Johan Hedberge57e6192013-01-20 14:27:14 +02003605 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003606 }
3607
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003608 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003609
Johan Hedberg54ad6d82013-01-20 14:27:15 +02003610 for (i = 0; i < key_count; i++) {
3611 struct mgmt_ltk_info *key = &cp->keys[i];
3612
Johan Hedberg3f706b72013-01-20 14:27:16 +02003613 if (!ltk_is_valid(key))
Johan Hedberg54ad6d82013-01-20 14:27:15 +02003614 return cmd_status(sk, hdev->id,
3615 MGMT_OP_LOAD_LONG_TERM_KEYS,
3616 MGMT_STATUS_INVALID_PARAMS);
3617 }
3618
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003619 hci_dev_lock(hdev);
3620
3621 hci_smp_ltks_clear(hdev);
3622
3623 for (i = 0; i < key_count; i++) {
3624 struct mgmt_ltk_info *key = &cp->keys[i];
3625 u8 type;
3626
3627 if (key->master)
3628 type = HCI_SMP_LTK;
3629 else
3630 type = HCI_SMP_LTK_SLAVE;
3631
Hemant Gupta4596fde2012-04-16 14:57:40 +05303632 hci_add_ltk(hdev, &key->addr.bdaddr,
Andre Guedes378b5b72012-04-24 21:02:51 -03003633 bdaddr_to_le(key->addr.type),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003634 type, 0, key->authenticated, key->val,
3635 key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003636 }
3637
Johan Hedberg715a5bf2013-01-09 15:29:34 +02003638 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
3639 NULL, 0);
3640
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003641 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003642
Johan Hedberg715a5bf2013-01-09 15:29:34 +02003643 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003644}
3645
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02003646static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003647 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
3648 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02003649 bool var_len;
3650 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003651} mgmt_handlers[] = {
3652 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02003653 { read_version, false, MGMT_READ_VERSION_SIZE },
3654 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
3655 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
3656 { read_controller_info, false, MGMT_READ_INFO_SIZE },
3657 { set_powered, false, MGMT_SETTING_SIZE },
3658 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
3659 { set_connectable, false, MGMT_SETTING_SIZE },
3660 { set_fast_connectable, false, MGMT_SETTING_SIZE },
3661 { set_pairable, false, MGMT_SETTING_SIZE },
3662 { set_link_security, false, MGMT_SETTING_SIZE },
3663 { set_ssp, false, MGMT_SETTING_SIZE },
3664 { set_hs, false, MGMT_SETTING_SIZE },
3665 { set_le, false, MGMT_SETTING_SIZE },
3666 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
3667 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
3668 { add_uuid, false, MGMT_ADD_UUID_SIZE },
3669 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
3670 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
3671 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
3672 { disconnect, false, MGMT_DISCONNECT_SIZE },
3673 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
3674 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
3675 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
3676 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
3677 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
3678 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
3679 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
3680 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
3681 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
3682 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
3683 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
3684 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
3685 { add_remote_oob_data, false, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
3686 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
3687 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
3688 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
3689 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
3690 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
3691 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003692 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg4375f102013-09-25 13:26:10 +03003693 { set_advertising, false, MGMT_SETTING_SIZE },
Johan Hedberg0663ca22013-10-02 13:43:14 +03003694 { set_bredr, false, MGMT_SETTING_SIZE },
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003695 { set_static_address, false, MGMT_SET_STATIC_ADDRESS_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003696};
3697
3698
Johan Hedberg03811012010-12-08 00:21:06 +02003699int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
3700{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003701 void *buf;
3702 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02003703 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01003704 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003705 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02003706 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02003707 int err;
3708
3709 BT_DBG("got %zu bytes", msglen);
3710
3711 if (msglen < sizeof(*hdr))
3712 return -EINVAL;
3713
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03003714 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02003715 if (!buf)
3716 return -ENOMEM;
3717
3718 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
3719 err = -EFAULT;
3720 goto done;
3721 }
3722
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003723 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07003724 opcode = __le16_to_cpu(hdr->opcode);
3725 index = __le16_to_cpu(hdr->index);
3726 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02003727
3728 if (len != msglen - sizeof(*hdr)) {
3729 err = -EINVAL;
3730 goto done;
3731 }
3732
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003733 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003734 hdev = hci_dev_get(index);
3735 if (!hdev) {
3736 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003737 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003738 goto done;
3739 }
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07003740
3741 if (test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
3742 err = cmd_status(sk, index, opcode,
3743 MGMT_STATUS_INVALID_INDEX);
3744 goto done;
3745 }
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003746 }
3747
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003748 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003749 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02003750 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02003751 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003752 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003753 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02003754 }
3755
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003756 if ((hdev && opcode < MGMT_OP_READ_INFO) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003757 (!hdev && opcode >= MGMT_OP_READ_INFO)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003758 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003759 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003760 goto done;
3761 }
3762
Johan Hedbergbe22b542012-03-01 22:24:41 +02003763 handler = &mgmt_handlers[opcode];
3764
3765 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003766 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02003767 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003768 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02003769 goto done;
3770 }
3771
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003772 if (hdev)
3773 mgmt_init_hdev(sk, hdev);
3774
3775 cp = buf + sizeof(*hdr);
3776
Johan Hedbergbe22b542012-03-01 22:24:41 +02003777 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02003778 if (err < 0)
3779 goto done;
3780
Johan Hedberg03811012010-12-08 00:21:06 +02003781 err = msglen;
3782
3783done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003784 if (hdev)
3785 hci_dev_put(hdev);
3786
Johan Hedberg03811012010-12-08 00:21:06 +02003787 kfree(buf);
3788 return err;
3789}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02003790
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003791void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02003792{
Marcel Holtmann1514b892013-10-06 08:25:01 -07003793 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003794 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03003795
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003796 mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02003797}
3798
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003799void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02003800{
Johan Hedberg5f159032012-03-02 03:13:19 +02003801 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02003802
Marcel Holtmann1514b892013-10-06 08:25:01 -07003803 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003804 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03003805
Johan Hedberg744cf192011-11-08 20:40:14 +02003806 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02003807
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003808 mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02003809}
3810
Johan Hedberg890ea892013-03-15 17:06:52 -05003811static void set_bredr_scan(struct hci_request *req)
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003812{
Johan Hedberg890ea892013-03-15 17:06:52 -05003813 struct hci_dev *hdev = req->hdev;
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003814 u8 scan = 0;
3815
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05003816 /* Ensure that fast connectable is disabled. This function will
3817 * not do anything if the page scan parameters are already what
3818 * they should be.
3819 */
3820 write_fast_connectable(req, false);
3821
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003822 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3823 scan |= SCAN_PAGE;
3824 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3825 scan |= SCAN_INQUIRY;
3826
Johan Hedberg890ea892013-03-15 17:06:52 -05003827 if (scan)
3828 hci_req_add(req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003829}
3830
Johan Hedberg229ab392013-03-15 17:06:53 -05003831static void powered_complete(struct hci_dev *hdev, u8 status)
3832{
3833 struct cmd_lookup match = { NULL, hdev };
3834
3835 BT_DBG("status 0x%02x", status);
3836
3837 hci_dev_lock(hdev);
3838
3839 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
3840
3841 new_settings(hdev, match.sk);
3842
3843 hci_dev_unlock(hdev);
3844
3845 if (match.sk)
3846 sock_put(match.sk);
3847}
3848
Johan Hedberg70da6242013-03-15 17:06:51 -05003849static int powered_update_hci(struct hci_dev *hdev)
3850{
Johan Hedberg890ea892013-03-15 17:06:52 -05003851 struct hci_request req;
Johan Hedberg70da6242013-03-15 17:06:51 -05003852 u8 link_sec;
3853
Johan Hedberg890ea892013-03-15 17:06:52 -05003854 hci_req_init(&req, hdev);
3855
Johan Hedberg70da6242013-03-15 17:06:51 -05003856 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
3857 !lmp_host_ssp_capable(hdev)) {
3858 u8 ssp = 1;
3859
Johan Hedberg890ea892013-03-15 17:06:52 -05003860 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, 1, &ssp);
Johan Hedberg70da6242013-03-15 17:06:51 -05003861 }
3862
Johan Hedbergc73eee92013-04-19 18:35:21 +03003863 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
3864 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05003865 struct hci_cp_write_le_host_supported cp;
3866
3867 cp.le = 1;
3868 cp.simul = lmp_le_br_capable(hdev);
3869
3870 /* Check first if we already have the right
3871 * host state (host features set)
3872 */
3873 if (cp.le != lmp_host_le_capable(hdev) ||
3874 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05003875 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
3876 sizeof(cp), &cp);
Johan Hedberg0663ca22013-10-02 13:43:14 +03003877
3878 /* In case BR/EDR was toggled during the AUTO_OFF phase */
3879 hci_update_ad(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05003880 }
3881
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003882 if (lmp_le_capable(hdev)) {
3883 /* Set random address to static address if configured */
3884 if (bacmp(&hdev->static_addr, BDADDR_ANY))
3885 hci_req_add(&req, HCI_OP_LE_SET_RANDOM_ADDR, 6,
3886 &hdev->static_addr);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003887
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07003888 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
3889 enable_advertising(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03003890 }
3891
Johan Hedberg70da6242013-03-15 17:06:51 -05003892 link_sec = test_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
3893 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05003894 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
3895 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05003896
3897 if (lmp_bredr_capable(hdev)) {
Johan Hedberg56f87902013-10-02 13:43:13 +03003898 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
3899 set_bredr_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05003900 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05003901 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05003902 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05003903 }
3904
Johan Hedberg229ab392013-03-15 17:06:53 -05003905 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05003906}
3907
Johan Hedberg744cf192011-11-08 20:40:14 +02003908int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02003909{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003910 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg229ab392013-03-15 17:06:53 -05003911 u8 status_not_powered = MGMT_STATUS_NOT_POWERED;
3912 u8 zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003913 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02003914
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003915 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
3916 return 0;
3917
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003918 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05003919 if (powered_update_hci(hdev) == 0)
3920 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02003921
Johan Hedberg229ab392013-03-15 17:06:53 -05003922 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
3923 &match);
3924 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02003925 }
3926
Johan Hedberg229ab392013-03-15 17:06:53 -05003927 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
3928 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status_not_powered);
3929
3930 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
3931 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
3932 zero_cod, sizeof(zero_cod), NULL);
3933
3934new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003935 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02003936
3937 if (match.sk)
3938 sock_put(match.sk);
3939
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003940 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02003941}
Johan Hedberg73f22f62010-12-29 16:00:25 +02003942
Marcel Holtmann3eec7052013-10-06 23:55:46 -07003943void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03003944{
3945 struct pending_cmd *cmd;
3946 u8 status;
3947
3948 cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
3949 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07003950 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03003951
3952 if (err == -ERFKILL)
3953 status = MGMT_STATUS_RFKILLED;
3954 else
3955 status = MGMT_STATUS_FAILED;
3956
Marcel Holtmann3eec7052013-10-06 23:55:46 -07003957 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03003958
3959 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03003960}
3961
Johan Hedberg744cf192011-11-08 20:40:14 +02003962int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
Johan Hedberg73f22f62010-12-29 16:00:25 +02003963{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003964 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003965 bool changed = false;
3966 int err = 0;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003967
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003968 if (discoverable) {
3969 if (!test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3970 changed = true;
3971 } else {
3972 if (test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3973 changed = true;
3974 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02003975
Johan Hedberged9b5f22012-02-21 20:47:06 +02003976 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003977 &match);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003978
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003979 if (changed)
3980 err = new_settings(hdev, match.sk);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003981
Johan Hedberg73f22f62010-12-29 16:00:25 +02003982 if (match.sk)
3983 sock_put(match.sk);
3984
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003985 return err;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003986}
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003987
Johan Hedberg744cf192011-11-08 20:40:14 +02003988int mgmt_connectable(struct hci_dev *hdev, u8 connectable)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003989{
Johan Hedberg2b76f452013-03-15 17:07:04 -05003990 struct pending_cmd *cmd;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003991 bool changed = false;
3992 int err = 0;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003993
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003994 if (connectable) {
3995 if (!test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3996 changed = true;
3997 } else {
3998 if (test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3999 changed = true;
4000 }
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004001
Johan Hedberg2b76f452013-03-15 17:07:04 -05004002 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberged9b5f22012-02-21 20:47:06 +02004003
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02004004 if (changed)
Johan Hedberg2b76f452013-03-15 17:07:04 -05004005 err = new_settings(hdev, cmd ? cmd->sk : NULL);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004006
Johan Hedberg7bb895d2012-02-17 01:20:00 +02004007 return err;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004008}
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004009
Johan Hedberg744cf192011-11-08 20:40:14 +02004010int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004011{
Johan Hedbergca69b792011-11-11 18:10:00 +02004012 u8 mgmt_err = mgmt_status(status);
4013
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004014 if (scan & SCAN_PAGE)
Johan Hedberg744cf192011-11-08 20:40:14 +02004015 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004016 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004017
4018 if (scan & SCAN_INQUIRY)
Johan Hedberg744cf192011-11-08 20:40:14 +02004019 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004020 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004021
4022 return 0;
4023}
4024
Cristian Chilipirea53168e52012-05-09 08:44:52 +03004025int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
4026 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004027{
Johan Hedberg86742e12011-11-07 23:13:38 +02004028 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004029
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03004030 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004031
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03004032 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02004033 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03004034 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03004035 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03004036 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03004037 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004038
Johan Hedberg744cf192011-11-08 20:40:14 +02004039 return mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004040}
Johan Hedbergf7520542011-01-20 12:34:39 +02004041
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004042int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent)
4043{
4044 struct mgmt_ev_new_long_term_key ev;
4045
4046 memset(&ev, 0, sizeof(ev));
4047
4048 ev.store_hint = persistent;
4049 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004050 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004051 ev.key.authenticated = key->authenticated;
4052 ev.key.enc_size = key->enc_size;
4053 ev.key.ediv = key->ediv;
4054
4055 if (key->type == HCI_SMP_LTK)
4056 ev.key.master = 1;
4057
4058 memcpy(ev.key.rand, key->rand, sizeof(key->rand));
4059 memcpy(ev.key.val, key->val, sizeof(key->val));
4060
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004061 return mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev),
4062 NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004063}
4064
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07004065void mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
4066 u8 addr_type, u32 flags, u8 *name, u8 name_len,
4067 u8 *dev_class)
Johan Hedbergf7520542011-01-20 12:34:39 +02004068{
Johan Hedbergb644ba32012-01-17 21:48:47 +02004069 char buf[512];
4070 struct mgmt_ev_device_connected *ev = (void *) buf;
4071 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02004072
Johan Hedbergb644ba32012-01-17 21:48:47 +02004073 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004074 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02004075
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02004076 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02004077
Johan Hedbergb644ba32012-01-17 21:48:47 +02004078 if (name_len > 0)
4079 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004080 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004081
4082 if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
Brian Gix53156382012-03-09 14:07:03 -08004083 eir_len = eir_append_data(ev->eir, eir_len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004084 EIR_CLASS_OF_DEV, dev_class, 3);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004085
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02004086 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004087
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07004088 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
4089 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02004090}
4091
Johan Hedberg8962ee72011-01-20 12:40:27 +02004092static void disconnect_rsp(struct pending_cmd *cmd, void *data)
4093{
Szymon Jancc68fb7f2011-03-22 13:12:19 +01004094 struct mgmt_cp_disconnect *cp = cmd->param;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004095 struct sock **sk = data;
Johan Hedberga38528f2011-01-22 06:46:43 +02004096 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004097
Johan Hedberg88c3df12012-02-09 14:27:38 +02004098 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
4099 rp.addr.type = cp->addr.type;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004100
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004101 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004102 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02004103
4104 *sk = cmd->sk;
4105 sock_hold(*sk);
4106
Johan Hedberga664b5b2011-02-19 12:06:02 -03004107 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004108}
4109
Johan Hedberg124f6e32012-02-09 13:50:12 +02004110static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02004111{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02004112 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02004113 struct mgmt_cp_unpair_device *cp = cmd->param;
4114 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02004115
4116 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02004117 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
4118 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02004119
Johan Hedbergb1078ad2012-02-09 17:21:16 +02004120 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
4121
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004122 cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02004123
4124 mgmt_pending_remove(cmd);
4125}
4126
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07004127void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
4128 u8 link_type, u8 addr_type, u8 reason)
Johan Hedbergf7520542011-01-20 12:34:39 +02004129{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02004130 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004131 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004132
Johan Hedberg744cf192011-11-08 20:40:14 +02004133 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02004134
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02004135 bacpy(&ev.addr.bdaddr, bdaddr);
4136 ev.addr.type = link_to_bdaddr(link_type, addr_type);
4137 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02004138
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07004139 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004140
4141 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01004142 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004143
Johan Hedberg124f6e32012-02-09 13:50:12 +02004144 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004145 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004146}
4147
Marcel Holtmann78929242013-10-06 23:55:47 -07004148void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
4149 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02004150{
Johan Hedberg88c3df12012-02-09 14:27:38 +02004151 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004152 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004153
Jefferson Delfes36a75f12012-09-18 13:36:54 -04004154 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
4155 hdev);
4156
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004157 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004158 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07004159 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004160
Johan Hedberg88c3df12012-02-09 14:27:38 +02004161 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004162 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02004163
Marcel Holtmann78929242013-10-06 23:55:47 -07004164 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
4165 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02004166
Johan Hedberga664b5b2011-02-19 12:06:02 -03004167 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02004168}
Johan Hedberg17d5c042011-01-22 06:09:08 +02004169
Marcel Holtmann445608d2013-10-06 23:55:48 -07004170void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
4171 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02004172{
4173 struct mgmt_ev_connect_failed ev;
4174
Johan Hedberg4c659c32011-11-07 23:13:39 +02004175 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004176 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02004177 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02004178
Marcel Holtmann445608d2013-10-06 23:55:48 -07004179 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02004180}
Johan Hedberg980e1a52011-01-22 06:10:07 +02004181
Johan Hedberg744cf192011-11-08 20:40:14 +02004182int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02004183{
4184 struct mgmt_ev_pin_code_request ev;
4185
Johan Hedbergd8457692012-02-17 14:24:57 +02004186 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03004187 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02004188 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02004189
Johan Hedberg744cf192011-11-08 20:40:14 +02004190 return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004191 NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004192}
4193
Johan Hedberg744cf192011-11-08 20:40:14 +02004194int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004195 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02004196{
4197 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03004198 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02004199 int err;
4200
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004201 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004202 if (!cmd)
4203 return -ENOENT;
4204
Johan Hedbergd8457692012-02-17 14:24:57 +02004205 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03004206 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03004207
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004208 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004209 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02004210
Johan Hedberga664b5b2011-02-19 12:06:02 -03004211 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004212
4213 return err;
4214}
4215
Johan Hedberg744cf192011-11-08 20:40:14 +02004216int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004217 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02004218{
4219 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03004220 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02004221 int err;
4222
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004223 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004224 if (!cmd)
4225 return -ENOENT;
4226
Johan Hedbergd8457692012-02-17 14:24:57 +02004227 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03004228 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03004229
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004230 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004231 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02004232
Johan Hedberga664b5b2011-02-19 12:06:02 -03004233 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004234
4235 return err;
4236}
Johan Hedberga5c29682011-02-19 12:05:57 -03004237
Johan Hedberg744cf192011-11-08 20:40:14 +02004238int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004239 u8 link_type, u8 addr_type, __le32 value,
4240 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03004241{
4242 struct mgmt_ev_user_confirm_request ev;
4243
Johan Hedberg744cf192011-11-08 20:40:14 +02004244 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03004245
Johan Hedberg272d90d2012-02-09 15:26:12 +02004246 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004247 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07004248 ev.confirm_hint = confirm_hint;
Andrei Emeltchenko78e8098e2012-03-09 13:00:50 +02004249 ev.value = value;
Johan Hedberga5c29682011-02-19 12:05:57 -03004250
Johan Hedberg744cf192011-11-08 20:40:14 +02004251 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004252 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03004253}
4254
Johan Hedberg272d90d2012-02-09 15:26:12 +02004255int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004256 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08004257{
4258 struct mgmt_ev_user_passkey_request ev;
4259
4260 BT_DBG("%s", hdev->name);
4261
Johan Hedberg272d90d2012-02-09 15:26:12 +02004262 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004263 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08004264
4265 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004266 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08004267}
4268
Brian Gix0df4c182011-11-16 13:53:13 -08004269static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004270 u8 link_type, u8 addr_type, u8 status,
4271 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03004272{
4273 struct pending_cmd *cmd;
4274 struct mgmt_rp_user_confirm_reply rp;
4275 int err;
4276
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004277 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03004278 if (!cmd)
4279 return -ENOENT;
4280
Johan Hedberg272d90d2012-02-09 15:26:12 +02004281 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004282 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004283 err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004284 &rp, sizeof(rp));
Johan Hedberga5c29682011-02-19 12:05:57 -03004285
Johan Hedberga664b5b2011-02-19 12:06:02 -03004286 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03004287
4288 return err;
4289}
4290
Johan Hedberg744cf192011-11-08 20:40:14 +02004291int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004292 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03004293{
Johan Hedberg272d90d2012-02-09 15:26:12 +02004294 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004295 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03004296}
4297
Johan Hedberg272d90d2012-02-09 15:26:12 +02004298int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004299 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03004300{
Johan Hedberg272d90d2012-02-09 15:26:12 +02004301 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03004302 status,
4303 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03004304}
Johan Hedberg2a611692011-02-19 12:06:00 -03004305
Brian Gix604086b2011-11-23 08:28:33 -08004306int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004307 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08004308{
Johan Hedberg272d90d2012-02-09 15:26:12 +02004309 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004310 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08004311}
4312
Johan Hedberg272d90d2012-02-09 15:26:12 +02004313int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004314 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08004315{
Johan Hedberg272d90d2012-02-09 15:26:12 +02004316 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03004317 status,
4318 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08004319}
4320
Johan Hedberg92a25252012-09-06 18:39:26 +03004321int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
4322 u8 link_type, u8 addr_type, u32 passkey,
4323 u8 entered)
4324{
4325 struct mgmt_ev_passkey_notify ev;
4326
4327 BT_DBG("%s", hdev->name);
4328
4329 bacpy(&ev.addr.bdaddr, bdaddr);
4330 ev.addr.type = link_to_bdaddr(link_type, addr_type);
4331 ev.passkey = __cpu_to_le32(passkey);
4332 ev.entered = entered;
4333
4334 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
4335}
4336
Johan Hedbergbab73cb2012-02-09 16:07:29 +02004337int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004338 u8 addr_type, u8 status)
Johan Hedberg2a611692011-02-19 12:06:00 -03004339{
4340 struct mgmt_ev_auth_failed ev;
4341
Johan Hedbergbab73cb2012-02-09 16:07:29 +02004342 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004343 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02004344 ev.status = mgmt_status(status);
Johan Hedberg2a611692011-02-19 12:06:00 -03004345
Johan Hedberg744cf192011-11-08 20:40:14 +02004346 return mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg2a611692011-02-19 12:06:00 -03004347}
Johan Hedbergb312b1612011-03-16 14:29:37 +02004348
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004349int mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
4350{
4351 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg47990ea2012-02-22 11:58:37 +02004352 bool changed = false;
4353 int err = 0;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004354
4355 if (status) {
4356 u8 mgmt_err = mgmt_status(status);
4357 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004358 cmd_status_rsp, &mgmt_err);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004359 return 0;
4360 }
4361
Johan Hedberg47990ea2012-02-22 11:58:37 +02004362 if (test_bit(HCI_AUTH, &hdev->flags)) {
4363 if (!test_and_set_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
4364 changed = true;
4365 } else {
4366 if (test_and_clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
4367 changed = true;
4368 }
4369
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004370 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004371 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004372
Johan Hedberg47990ea2012-02-22 11:58:37 +02004373 if (changed)
4374 err = new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004375
4376 if (match.sk)
4377 sock_put(match.sk);
4378
4379 return err;
4380}
4381
Johan Hedberg890ea892013-03-15 17:06:52 -05004382static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02004383{
Johan Hedberg890ea892013-03-15 17:06:52 -05004384 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02004385 struct hci_cp_write_eir cp;
4386
Johan Hedberg976eb202012-10-24 21:12:01 +03004387 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05004388 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02004389
Johan Hedbergc80da272012-02-22 15:38:48 +02004390 memset(hdev->eir, 0, sizeof(hdev->eir));
4391
Johan Hedbergcacaf522012-02-21 00:52:42 +02004392 memset(&cp, 0, sizeof(cp));
4393
Johan Hedberg890ea892013-03-15 17:06:52 -05004394 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02004395}
4396
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004397int mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004398{
4399 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05004400 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004401 bool changed = false;
4402 int err = 0;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004403
4404 if (status) {
4405 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004406
4407 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004408 &hdev->dev_flags))
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004409 err = new_settings(hdev, NULL);
4410
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004411 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
4412 &mgmt_err);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004413
4414 return err;
4415 }
4416
4417 if (enable) {
4418 if (!test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
4419 changed = true;
4420 } else {
4421 if (test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
4422 changed = true;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004423 }
4424
4425 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
4426
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004427 if (changed)
4428 err = new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004429
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02004430 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004431 sock_put(match.sk);
4432
Johan Hedberg890ea892013-03-15 17:06:52 -05004433 hci_req_init(&req, hdev);
4434
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02004435 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05004436 update_eir(&req);
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02004437 else
Johan Hedberg890ea892013-03-15 17:06:52 -05004438 clear_eir(&req);
4439
4440 hci_req_run(&req, NULL);
Johan Hedbergcacaf522012-02-21 00:52:42 +02004441
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004442 return err;
4443}
4444
Johan Hedberg92da6092013-03-15 17:06:55 -05004445static void sk_lookup(struct pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02004446{
4447 struct cmd_lookup *match = data;
4448
Johan Hedberg90e70452012-02-23 23:09:40 +02004449 if (match->sk == NULL) {
4450 match->sk = cmd->sk;
4451 sock_hold(match->sk);
4452 }
Johan Hedberg90e70452012-02-23 23:09:40 +02004453}
4454
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01004455int mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004456 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01004457{
Johan Hedberg90e70452012-02-23 23:09:40 +02004458 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
4459 int err = 0;
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01004460
Johan Hedberg92da6092013-03-15 17:06:55 -05004461 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
4462 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
4463 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02004464
4465 if (!status)
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004466 err = mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
4467 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02004468
4469 if (match.sk)
4470 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01004471
4472 return err;
4473}
4474
Johan Hedberg744cf192011-11-08 20:40:14 +02004475int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02004476{
Johan Hedbergb312b1612011-03-16 14:29:37 +02004477 struct mgmt_cp_set_local_name ev;
Johan Hedberg13928972013-03-15 17:07:00 -05004478 struct pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02004479
Johan Hedberg13928972013-03-15 17:07:00 -05004480 if (status)
4481 return 0;
Johan Hedbergb312b1612011-03-16 14:29:37 +02004482
4483 memset(&ev, 0, sizeof(ev));
4484 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02004485 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02004486
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004487 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05004488 if (!cmd) {
4489 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02004490
Johan Hedberg13928972013-03-15 17:07:00 -05004491 /* If this is a HCI command related to powering on the
4492 * HCI dev don't send any mgmt signals.
4493 */
4494 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
4495 return 0;
Johan Hedbergb312b1612011-03-16 14:29:37 +02004496 }
4497
Johan Hedberg13928972013-03-15 17:07:00 -05004498 return mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
4499 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02004500}
Szymon Jancc35938b2011-03-22 13:12:21 +01004501
Johan Hedberg744cf192011-11-08 20:40:14 +02004502int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004503 u8 *randomizer, u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01004504{
4505 struct pending_cmd *cmd;
4506 int err;
4507
Johan Hedberg744cf192011-11-08 20:40:14 +02004508 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01004509
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004510 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004511 if (!cmd)
4512 return -ENOENT;
4513
4514 if (status) {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004515 err = cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4516 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01004517 } else {
4518 struct mgmt_rp_read_local_oob_data rp;
4519
4520 memcpy(rp.hash, hash, sizeof(rp.hash));
4521 memcpy(rp.randomizer, randomizer, sizeof(rp.randomizer));
4522
Johan Hedberg744cf192011-11-08 20:40:14 +02004523 err = cmd_complete(cmd->sk, hdev->id,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004524 MGMT_OP_READ_LOCAL_OOB_DATA, 0, &rp,
4525 sizeof(rp));
Szymon Jancc35938b2011-03-22 13:12:21 +01004526 }
4527
4528 mgmt_pending_remove(cmd);
4529
4530 return err;
4531}
Johan Hedberge17acd42011-03-30 23:57:16 +03004532
Marcel Holtmann901801b2013-10-06 23:55:51 -07004533void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
4534 u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name, u8
4535 ssp, u8 *eir, u16 eir_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03004536{
Johan Hedberge319d2e2012-01-15 19:51:59 +02004537 char buf[512];
4538 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02004539 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03004540
Andre Guedes12602d02013-04-30 15:29:40 -03004541 if (!hci_discovery_active(hdev))
Marcel Holtmann901801b2013-10-06 23:55:51 -07004542 return;
Andre Guedes12602d02013-04-30 15:29:40 -03004543
Johan Hedberg1dc06092012-01-15 21:01:23 +02004544 /* Leave 5 bytes for a potential CoD field */
4545 if (sizeof(*ev) + eir_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07004546 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03004547
Johan Hedberg1dc06092012-01-15 21:01:23 +02004548 memset(buf, 0, sizeof(buf));
4549
Johan Hedberge319d2e2012-01-15 19:51:59 +02004550 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004551 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02004552 ev->rssi = rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +02004553 if (cfm_name)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05304554 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_CONFIRM_NAME);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02004555 if (!ssp)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05304556 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_LEGACY_PAIRING);
Johan Hedberge17acd42011-03-30 23:57:16 +03004557
Johan Hedberg1dc06092012-01-15 21:01:23 +02004558 if (eir_len > 0)
Johan Hedberge319d2e2012-01-15 19:51:59 +02004559 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03004560
Johan Hedberg1dc06092012-01-15 21:01:23 +02004561 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
4562 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004563 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02004564
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02004565 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedberg1dc06092012-01-15 21:01:23 +02004566 ev_size = sizeof(*ev) + eir_len;
Andre Guedesf8523592011-09-09 18:56:26 -03004567
Marcel Holtmann901801b2013-10-06 23:55:51 -07004568 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03004569}
Johan Hedberga88a9652011-03-30 13:18:12 +03004570
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07004571void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
4572 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03004573{
Johan Hedbergb644ba32012-01-17 21:48:47 +02004574 struct mgmt_ev_device_found *ev;
4575 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
4576 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03004577
Johan Hedbergb644ba32012-01-17 21:48:47 +02004578 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03004579
Johan Hedbergb644ba32012-01-17 21:48:47 +02004580 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03004581
Johan Hedbergb644ba32012-01-17 21:48:47 +02004582 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004583 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004584 ev->rssi = rssi;
4585
4586 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004587 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004588
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02004589 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004590
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07004591 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03004592}
Johan Hedberg314b2382011-04-27 10:29:57 -04004593
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07004594void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04004595{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02004596 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02004597 struct pending_cmd *cmd;
4598
Andre Guedes343fb142011-11-22 17:14:19 -03004599 BT_DBG("%s discovering %u", hdev->name, discovering);
4600
Johan Hedberg164a6e72011-11-01 17:06:44 +02004601 if (discovering)
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004602 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02004603 else
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004604 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02004605
4606 if (cmd != NULL) {
Johan Hedbergf808e162012-02-19 12:52:07 +02004607 u8 type = hdev->discovery.type;
4608
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004609 cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
4610 sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02004611 mgmt_pending_remove(cmd);
4612 }
4613
Johan Hedbergf963e8e2012-02-20 23:30:44 +02004614 memset(&ev, 0, sizeof(ev));
4615 ev.type = hdev->discovery.type;
4616 ev.discovering = discovering;
4617
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07004618 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04004619}
Antti Julku5e762442011-08-25 16:48:02 +03004620
Johan Hedberg88c1fe42012-02-09 15:56:11 +02004621int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03004622{
4623 struct pending_cmd *cmd;
4624 struct mgmt_ev_device_blocked ev;
4625
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004626 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004627
Johan Hedberg88c1fe42012-02-09 15:56:11 +02004628 bacpy(&ev.addr.bdaddr, bdaddr);
4629 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03004630
Johan Hedberg744cf192011-11-08 20:40:14 +02004631 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004632 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03004633}
4634
Johan Hedberg88c1fe42012-02-09 15:56:11 +02004635int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03004636{
4637 struct pending_cmd *cmd;
4638 struct mgmt_ev_device_unblocked ev;
4639
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004640 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004641
Johan Hedberg88c1fe42012-02-09 15:56:11 +02004642 bacpy(&ev.addr.bdaddr, bdaddr);
4643 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03004644
Johan Hedberg744cf192011-11-08 20:40:14 +02004645 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004646 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03004647}
Marcel Holtmann5976e602013-10-06 04:08:14 -07004648
4649static void adv_enable_complete(struct hci_dev *hdev, u8 status)
4650{
4651 BT_DBG("%s status %u", hdev->name, status);
4652
4653 /* Clear the advertising mgmt setting if we failed to re-enable it */
4654 if (status) {
4655 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07004656 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07004657 }
4658}
4659
4660void mgmt_reenable_advertising(struct hci_dev *hdev)
4661{
4662 struct hci_request req;
4663
4664 if (hdev->conn_hash.le_num)
4665 return;
4666
4667 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags))
4668 return;
4669
4670 hci_req_init(&req, hdev);
4671 enable_advertising(&req);
4672
4673 /* If this fails we have no option but to let user space know
4674 * that we've disabled advertising.
4675 */
4676 if (hci_req_run(&req, adv_enable_complete) < 0) {
4677 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07004678 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07004679 }
4680}