blob: 9029e67b334121948131d4dce5f540571d26b7bf [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
3267 if (!hdev_is_powered(hdev) || val == enabled) {
3268 bool changed = false;
3269
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003270 if (val != test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
3271 change_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003272 changed = true;
3273 }
3274
3275 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
3276 if (err < 0)
3277 goto unlock;
3278
3279 if (changed)
3280 err = new_settings(hdev, sk);
3281
3282 goto unlock;
3283 }
3284
3285 if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
3286 mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
3287 err = cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3288 MGMT_STATUS_BUSY);
3289 goto unlock;
3290 }
3291
3292 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
3293 if (!cmd) {
3294 err = -ENOMEM;
3295 goto unlock;
3296 }
3297
3298 hci_req_init(&req, hdev);
3299
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07003300 if (val)
3301 enable_advertising(&req);
3302 else
3303 disable_advertising(&req);
Johan Hedberg4375f102013-09-25 13:26:10 +03003304
3305 err = hci_req_run(&req, set_advertising_complete);
3306 if (err < 0)
3307 mgmt_pending_remove(cmd);
3308
3309unlock:
3310 hci_dev_unlock(hdev);
3311 return err;
3312}
3313
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003314static int set_static_address(struct sock *sk, struct hci_dev *hdev,
3315 void *data, u16 len)
3316{
3317 struct mgmt_cp_set_static_address *cp = data;
3318 int err;
3319
3320 BT_DBG("%s", hdev->name);
3321
Marcel Holtmann62af4442013-10-02 22:10:32 -07003322 if (!lmp_le_capable(hdev))
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003323 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann62af4442013-10-02 22:10:32 -07003324 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003325
3326 if (hdev_is_powered(hdev))
3327 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
3328 MGMT_STATUS_REJECTED);
3329
3330 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
3331 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
3332 return cmd_status(sk, hdev->id,
3333 MGMT_OP_SET_STATIC_ADDRESS,
3334 MGMT_STATUS_INVALID_PARAMS);
3335
3336 /* Two most significant bits shall be set */
3337 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
3338 return cmd_status(sk, hdev->id,
3339 MGMT_OP_SET_STATIC_ADDRESS,
3340 MGMT_STATUS_INVALID_PARAMS);
3341 }
3342
3343 hci_dev_lock(hdev);
3344
3345 bacpy(&hdev->static_addr, &cp->bdaddr);
3346
3347 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, 0, NULL, 0);
3348
3349 hci_dev_unlock(hdev);
3350
3351 return err;
3352}
3353
Johan Hedberg33e38b32013-03-15 17:07:05 -05003354static void fast_connectable_complete(struct hci_dev *hdev, u8 status)
3355{
3356 struct pending_cmd *cmd;
3357
3358 BT_DBG("status 0x%02x", status);
3359
3360 hci_dev_lock(hdev);
3361
3362 cmd = mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
3363 if (!cmd)
3364 goto unlock;
3365
3366 if (status) {
3367 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
3368 mgmt_status(status));
3369 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05003370 struct mgmt_mode *cp = cmd->param;
3371
3372 if (cp->val)
3373 set_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
3374 else
3375 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
3376
Johan Hedberg33e38b32013-03-15 17:07:05 -05003377 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
3378 new_settings(hdev, cmd->sk);
3379 }
3380
3381 mgmt_pending_remove(cmd);
3382
3383unlock:
3384 hci_dev_unlock(hdev);
3385}
3386
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003387static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003388 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03003389{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003390 struct mgmt_mode *cp = data;
Johan Hedberg33e38b32013-03-15 17:07:05 -05003391 struct pending_cmd *cmd;
3392 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03003393 int err;
3394
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003395 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03003396
Johan Hedberg56f87902013-10-02 13:43:13 +03003397 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) ||
3398 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberg33c525c2012-10-24 21:11:58 +03003399 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
3400 MGMT_STATUS_NOT_SUPPORTED);
3401
Johan Hedberga7e80f22013-01-09 16:05:19 +02003402 if (cp->val != 0x00 && cp->val != 0x01)
3403 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
3404 MGMT_STATUS_INVALID_PARAMS);
3405
Johan Hedberg5400c042012-02-21 16:40:33 +02003406 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003407 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003408 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02003409
3410 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003411 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003412 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03003413
3414 hci_dev_lock(hdev);
3415
Johan Hedberg05cbf292013-03-15 17:07:07 -05003416 if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
3417 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
3418 MGMT_STATUS_BUSY);
3419 goto unlock;
3420 }
3421
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05003422 if (!!cp->val == test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) {
3423 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
3424 hdev);
3425 goto unlock;
3426 }
3427
Johan Hedberg33e38b32013-03-15 17:07:05 -05003428 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
3429 data, len);
3430 if (!cmd) {
3431 err = -ENOMEM;
3432 goto unlock;
3433 }
3434
3435 hci_req_init(&req, hdev);
3436
Johan Hedberg406d7802013-03-15 17:07:09 -05003437 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05003438
3439 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03003440 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003441 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003442 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05003443 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03003444 }
3445
Johan Hedberg33e38b32013-03-15 17:07:05 -05003446unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03003447 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05003448
Antti Julkuf6422ec2011-06-22 13:11:56 +03003449 return err;
3450}
3451
Johan Hedberg0663ca22013-10-02 13:43:14 +03003452static void set_bredr_complete(struct hci_dev *hdev, u8 status)
3453{
3454 struct pending_cmd *cmd;
3455
3456 BT_DBG("status 0x%02x", status);
3457
3458 hci_dev_lock(hdev);
3459
3460 cmd = mgmt_pending_find(MGMT_OP_SET_BREDR, hdev);
3461 if (!cmd)
3462 goto unlock;
3463
3464 if (status) {
3465 u8 mgmt_err = mgmt_status(status);
3466
3467 /* We need to restore the flag if related HCI commands
3468 * failed.
3469 */
3470 clear_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
3471
3472 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
3473 } else {
3474 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
3475 new_settings(hdev, cmd->sk);
3476 }
3477
3478 mgmt_pending_remove(cmd);
3479
3480unlock:
3481 hci_dev_unlock(hdev);
3482}
3483
3484static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
3485{
3486 struct mgmt_mode *cp = data;
3487 struct pending_cmd *cmd;
3488 struct hci_request req;
3489 int err;
3490
3491 BT_DBG("request for %s", hdev->name);
3492
3493 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
3494 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3495 MGMT_STATUS_NOT_SUPPORTED);
3496
3497 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
3498 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3499 MGMT_STATUS_REJECTED);
3500
3501 if (cp->val != 0x00 && cp->val != 0x01)
3502 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3503 MGMT_STATUS_INVALID_PARAMS);
3504
3505 hci_dev_lock(hdev);
3506
3507 if (cp->val == test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
3508 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
3509 goto unlock;
3510 }
3511
3512 if (!hdev_is_powered(hdev)) {
3513 if (!cp->val) {
3514 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
3515 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
3516 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
3517 clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
3518 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
3519 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
3520 }
3521
3522 change_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
3523
3524 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
3525 if (err < 0)
3526 goto unlock;
3527
3528 err = new_settings(hdev, sk);
3529 goto unlock;
3530 }
3531
3532 /* Reject disabling when powered on */
3533 if (!cp->val) {
3534 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3535 MGMT_STATUS_REJECTED);
3536 goto unlock;
3537 }
3538
3539 if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) {
3540 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
3541 MGMT_STATUS_BUSY);
3542 goto unlock;
3543 }
3544
3545 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
3546 if (!cmd) {
3547 err = -ENOMEM;
3548 goto unlock;
3549 }
3550
3551 /* We need to flip the bit already here so that hci_update_ad
3552 * generates the correct flags.
3553 */
3554 set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
3555
3556 hci_req_init(&req, hdev);
3557 hci_update_ad(&req);
3558 err = hci_req_run(&req, set_bredr_complete);
3559 if (err < 0)
3560 mgmt_pending_remove(cmd);
3561
3562unlock:
3563 hci_dev_unlock(hdev);
3564 return err;
3565}
3566
Johan Hedberg3f706b72013-01-20 14:27:16 +02003567static bool ltk_is_valid(struct mgmt_ltk_info *key)
3568{
Johan Hedberg44b20d32013-01-20 14:27:17 +02003569 if (key->authenticated != 0x00 && key->authenticated != 0x01)
3570 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02003571 if (key->master != 0x00 && key->master != 0x01)
3572 return false;
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003573 if (!bdaddr_type_is_le(key->addr.type))
3574 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02003575 return true;
3576}
3577
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003578static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003579 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003580{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003581 struct mgmt_cp_load_long_term_keys *cp = cp_data;
3582 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02003583 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003584
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07003585 BT_DBG("request for %s", hdev->name);
3586
3587 if (!lmp_le_capable(hdev))
3588 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
3589 MGMT_STATUS_NOT_SUPPORTED);
3590
Marcel Holtmann1f350c82012-03-12 20:31:08 -07003591 key_count = __le16_to_cpu(cp->key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003592
3593 expected_len = sizeof(*cp) + key_count *
3594 sizeof(struct mgmt_ltk_info);
3595 if (expected_len != len) {
3596 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003597 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003598 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Johan Hedberge57e6192013-01-20 14:27:14 +02003599 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003600 }
3601
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003602 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003603
Johan Hedberg54ad6d82013-01-20 14:27:15 +02003604 for (i = 0; i < key_count; i++) {
3605 struct mgmt_ltk_info *key = &cp->keys[i];
3606
Johan Hedberg3f706b72013-01-20 14:27:16 +02003607 if (!ltk_is_valid(key))
Johan Hedberg54ad6d82013-01-20 14:27:15 +02003608 return cmd_status(sk, hdev->id,
3609 MGMT_OP_LOAD_LONG_TERM_KEYS,
3610 MGMT_STATUS_INVALID_PARAMS);
3611 }
3612
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003613 hci_dev_lock(hdev);
3614
3615 hci_smp_ltks_clear(hdev);
3616
3617 for (i = 0; i < key_count; i++) {
3618 struct mgmt_ltk_info *key = &cp->keys[i];
3619 u8 type;
3620
3621 if (key->master)
3622 type = HCI_SMP_LTK;
3623 else
3624 type = HCI_SMP_LTK_SLAVE;
3625
Hemant Gupta4596fde2012-04-16 14:57:40 +05303626 hci_add_ltk(hdev, &key->addr.bdaddr,
Andre Guedes378b5b72012-04-24 21:02:51 -03003627 bdaddr_to_le(key->addr.type),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003628 type, 0, key->authenticated, key->val,
3629 key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003630 }
3631
Johan Hedberg715a5bf2013-01-09 15:29:34 +02003632 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
3633 NULL, 0);
3634
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003635 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003636
Johan Hedberg715a5bf2013-01-09 15:29:34 +02003637 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003638}
3639
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02003640static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003641 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
3642 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02003643 bool var_len;
3644 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003645} mgmt_handlers[] = {
3646 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02003647 { read_version, false, MGMT_READ_VERSION_SIZE },
3648 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
3649 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
3650 { read_controller_info, false, MGMT_READ_INFO_SIZE },
3651 { set_powered, false, MGMT_SETTING_SIZE },
3652 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
3653 { set_connectable, false, MGMT_SETTING_SIZE },
3654 { set_fast_connectable, false, MGMT_SETTING_SIZE },
3655 { set_pairable, false, MGMT_SETTING_SIZE },
3656 { set_link_security, false, MGMT_SETTING_SIZE },
3657 { set_ssp, false, MGMT_SETTING_SIZE },
3658 { set_hs, false, MGMT_SETTING_SIZE },
3659 { set_le, false, MGMT_SETTING_SIZE },
3660 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
3661 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
3662 { add_uuid, false, MGMT_ADD_UUID_SIZE },
3663 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
3664 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
3665 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
3666 { disconnect, false, MGMT_DISCONNECT_SIZE },
3667 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
3668 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
3669 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
3670 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
3671 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
3672 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
3673 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
3674 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
3675 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
3676 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
3677 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
3678 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
3679 { add_remote_oob_data, false, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
3680 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
3681 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
3682 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
3683 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
3684 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
3685 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003686 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg4375f102013-09-25 13:26:10 +03003687 { set_advertising, false, MGMT_SETTING_SIZE },
Johan Hedberg0663ca22013-10-02 13:43:14 +03003688 { set_bredr, false, MGMT_SETTING_SIZE },
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003689 { set_static_address, false, MGMT_SET_STATIC_ADDRESS_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003690};
3691
3692
Johan Hedberg03811012010-12-08 00:21:06 +02003693int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
3694{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003695 void *buf;
3696 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02003697 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01003698 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003699 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02003700 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02003701 int err;
3702
3703 BT_DBG("got %zu bytes", msglen);
3704
3705 if (msglen < sizeof(*hdr))
3706 return -EINVAL;
3707
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03003708 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02003709 if (!buf)
3710 return -ENOMEM;
3711
3712 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
3713 err = -EFAULT;
3714 goto done;
3715 }
3716
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003717 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07003718 opcode = __le16_to_cpu(hdr->opcode);
3719 index = __le16_to_cpu(hdr->index);
3720 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02003721
3722 if (len != msglen - sizeof(*hdr)) {
3723 err = -EINVAL;
3724 goto done;
3725 }
3726
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003727 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003728 hdev = hci_dev_get(index);
3729 if (!hdev) {
3730 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003731 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003732 goto done;
3733 }
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07003734
3735 if (test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
3736 err = cmd_status(sk, index, opcode,
3737 MGMT_STATUS_INVALID_INDEX);
3738 goto done;
3739 }
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003740 }
3741
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003742 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003743 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02003744 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02003745 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003746 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003747 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02003748 }
3749
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003750 if ((hdev && opcode < MGMT_OP_READ_INFO) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003751 (!hdev && opcode >= MGMT_OP_READ_INFO)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003752 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003753 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003754 goto done;
3755 }
3756
Johan Hedbergbe22b542012-03-01 22:24:41 +02003757 handler = &mgmt_handlers[opcode];
3758
3759 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003760 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02003761 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003762 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02003763 goto done;
3764 }
3765
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003766 if (hdev)
3767 mgmt_init_hdev(sk, hdev);
3768
3769 cp = buf + sizeof(*hdr);
3770
Johan Hedbergbe22b542012-03-01 22:24:41 +02003771 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02003772 if (err < 0)
3773 goto done;
3774
Johan Hedberg03811012010-12-08 00:21:06 +02003775 err = msglen;
3776
3777done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003778 if (hdev)
3779 hci_dev_put(hdev);
3780
Johan Hedberg03811012010-12-08 00:21:06 +02003781 kfree(buf);
3782 return err;
3783}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02003784
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003785void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02003786{
Marcel Holtmann1514b892013-10-06 08:25:01 -07003787 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003788 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03003789
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003790 mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02003791}
3792
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003793void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02003794{
Johan Hedberg5f159032012-03-02 03:13:19 +02003795 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02003796
Marcel Holtmann1514b892013-10-06 08:25:01 -07003797 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003798 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03003799
Johan Hedberg744cf192011-11-08 20:40:14 +02003800 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02003801
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07003802 mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02003803}
3804
Johan Hedberg890ea892013-03-15 17:06:52 -05003805static void set_bredr_scan(struct hci_request *req)
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003806{
Johan Hedberg890ea892013-03-15 17:06:52 -05003807 struct hci_dev *hdev = req->hdev;
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003808 u8 scan = 0;
3809
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05003810 /* Ensure that fast connectable is disabled. This function will
3811 * not do anything if the page scan parameters are already what
3812 * they should be.
3813 */
3814 write_fast_connectable(req, false);
3815
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003816 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3817 scan |= SCAN_PAGE;
3818 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3819 scan |= SCAN_INQUIRY;
3820
Johan Hedberg890ea892013-03-15 17:06:52 -05003821 if (scan)
3822 hci_req_add(req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003823}
3824
Johan Hedberg229ab392013-03-15 17:06:53 -05003825static void powered_complete(struct hci_dev *hdev, u8 status)
3826{
3827 struct cmd_lookup match = { NULL, hdev };
3828
3829 BT_DBG("status 0x%02x", status);
3830
3831 hci_dev_lock(hdev);
3832
3833 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
3834
3835 new_settings(hdev, match.sk);
3836
3837 hci_dev_unlock(hdev);
3838
3839 if (match.sk)
3840 sock_put(match.sk);
3841}
3842
Johan Hedberg70da6242013-03-15 17:06:51 -05003843static int powered_update_hci(struct hci_dev *hdev)
3844{
Johan Hedberg890ea892013-03-15 17:06:52 -05003845 struct hci_request req;
Johan Hedberg70da6242013-03-15 17:06:51 -05003846 u8 link_sec;
3847
Johan Hedberg890ea892013-03-15 17:06:52 -05003848 hci_req_init(&req, hdev);
3849
Johan Hedberg70da6242013-03-15 17:06:51 -05003850 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
3851 !lmp_host_ssp_capable(hdev)) {
3852 u8 ssp = 1;
3853
Johan Hedberg890ea892013-03-15 17:06:52 -05003854 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, 1, &ssp);
Johan Hedberg70da6242013-03-15 17:06:51 -05003855 }
3856
Johan Hedbergc73eee92013-04-19 18:35:21 +03003857 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
3858 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05003859 struct hci_cp_write_le_host_supported cp;
3860
3861 cp.le = 1;
3862 cp.simul = lmp_le_br_capable(hdev);
3863
3864 /* Check first if we already have the right
3865 * host state (host features set)
3866 */
3867 if (cp.le != lmp_host_le_capable(hdev) ||
3868 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05003869 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
3870 sizeof(cp), &cp);
Johan Hedberg0663ca22013-10-02 13:43:14 +03003871
3872 /* In case BR/EDR was toggled during the AUTO_OFF phase */
3873 hci_update_ad(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05003874 }
3875
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003876 if (lmp_le_capable(hdev)) {
3877 /* Set random address to static address if configured */
3878 if (bacmp(&hdev->static_addr, BDADDR_ANY))
3879 hci_req_add(&req, HCI_OP_LE_SET_RANDOM_ADDR, 6,
3880 &hdev->static_addr);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003881
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07003882 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
3883 enable_advertising(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03003884 }
3885
Johan Hedberg70da6242013-03-15 17:06:51 -05003886 link_sec = test_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
3887 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05003888 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
3889 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05003890
3891 if (lmp_bredr_capable(hdev)) {
Johan Hedberg56f87902013-10-02 13:43:13 +03003892 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
3893 set_bredr_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05003894 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05003895 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05003896 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05003897 }
3898
Johan Hedberg229ab392013-03-15 17:06:53 -05003899 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05003900}
3901
Johan Hedberg744cf192011-11-08 20:40:14 +02003902int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02003903{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003904 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg229ab392013-03-15 17:06:53 -05003905 u8 status_not_powered = MGMT_STATUS_NOT_POWERED;
3906 u8 zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003907 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02003908
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003909 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
3910 return 0;
3911
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003912 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05003913 if (powered_update_hci(hdev) == 0)
3914 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02003915
Johan Hedberg229ab392013-03-15 17:06:53 -05003916 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
3917 &match);
3918 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02003919 }
3920
Johan Hedberg229ab392013-03-15 17:06:53 -05003921 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
3922 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status_not_powered);
3923
3924 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
3925 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
3926 zero_cod, sizeof(zero_cod), NULL);
3927
3928new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003929 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02003930
3931 if (match.sk)
3932 sock_put(match.sk);
3933
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003934 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02003935}
Johan Hedberg73f22f62010-12-29 16:00:25 +02003936
Marcel Holtmann3eec7052013-10-06 23:55:46 -07003937void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03003938{
3939 struct pending_cmd *cmd;
3940 u8 status;
3941
3942 cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
3943 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07003944 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03003945
3946 if (err == -ERFKILL)
3947 status = MGMT_STATUS_RFKILLED;
3948 else
3949 status = MGMT_STATUS_FAILED;
3950
Marcel Holtmann3eec7052013-10-06 23:55:46 -07003951 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03003952
3953 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03003954}
3955
Johan Hedberg744cf192011-11-08 20:40:14 +02003956int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
Johan Hedberg73f22f62010-12-29 16:00:25 +02003957{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003958 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003959 bool changed = false;
3960 int err = 0;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003961
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003962 if (discoverable) {
3963 if (!test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3964 changed = true;
3965 } else {
3966 if (test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3967 changed = true;
3968 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02003969
Johan Hedberged9b5f22012-02-21 20:47:06 +02003970 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003971 &match);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003972
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003973 if (changed)
3974 err = new_settings(hdev, match.sk);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003975
Johan Hedberg73f22f62010-12-29 16:00:25 +02003976 if (match.sk)
3977 sock_put(match.sk);
3978
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003979 return err;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003980}
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003981
Johan Hedberg744cf192011-11-08 20:40:14 +02003982int mgmt_connectable(struct hci_dev *hdev, u8 connectable)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003983{
Johan Hedberg2b76f452013-03-15 17:07:04 -05003984 struct pending_cmd *cmd;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003985 bool changed = false;
3986 int err = 0;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003987
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003988 if (connectable) {
3989 if (!test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3990 changed = true;
3991 } else {
3992 if (test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3993 changed = true;
3994 }
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003995
Johan Hedberg2b76f452013-03-15 17:07:04 -05003996 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003997
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003998 if (changed)
Johan Hedberg2b76f452013-03-15 17:07:04 -05003999 err = new_settings(hdev, cmd ? cmd->sk : NULL);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004000
Johan Hedberg7bb895d2012-02-17 01:20:00 +02004001 return err;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02004002}
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004003
Johan Hedberg744cf192011-11-08 20:40:14 +02004004int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004005{
Johan Hedbergca69b792011-11-11 18:10:00 +02004006 u8 mgmt_err = mgmt_status(status);
4007
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004008 if (scan & SCAN_PAGE)
Johan Hedberg744cf192011-11-08 20:40:14 +02004009 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004010 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004011
4012 if (scan & SCAN_INQUIRY)
Johan Hedberg744cf192011-11-08 20:40:14 +02004013 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004014 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02004015
4016 return 0;
4017}
4018
Cristian Chilipirea53168e52012-05-09 08:44:52 +03004019int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
4020 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004021{
Johan Hedberg86742e12011-11-07 23:13:38 +02004022 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004023
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03004024 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004025
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03004026 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02004027 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03004028 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03004029 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03004030 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03004031 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004032
Johan Hedberg744cf192011-11-08 20:40:14 +02004033 return mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02004034}
Johan Hedbergf7520542011-01-20 12:34:39 +02004035
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004036int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent)
4037{
4038 struct mgmt_ev_new_long_term_key ev;
4039
4040 memset(&ev, 0, sizeof(ev));
4041
4042 ev.store_hint = persistent;
4043 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004044 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004045 ev.key.authenticated = key->authenticated;
4046 ev.key.enc_size = key->enc_size;
4047 ev.key.ediv = key->ediv;
4048
4049 if (key->type == HCI_SMP_LTK)
4050 ev.key.master = 1;
4051
4052 memcpy(ev.key.rand, key->rand, sizeof(key->rand));
4053 memcpy(ev.key.val, key->val, sizeof(key->val));
4054
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004055 return mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev),
4056 NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004057}
4058
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07004059void mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
4060 u8 addr_type, u32 flags, u8 *name, u8 name_len,
4061 u8 *dev_class)
Johan Hedbergf7520542011-01-20 12:34:39 +02004062{
Johan Hedbergb644ba32012-01-17 21:48:47 +02004063 char buf[512];
4064 struct mgmt_ev_device_connected *ev = (void *) buf;
4065 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02004066
Johan Hedbergb644ba32012-01-17 21:48:47 +02004067 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004068 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02004069
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02004070 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02004071
Johan Hedbergb644ba32012-01-17 21:48:47 +02004072 if (name_len > 0)
4073 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004074 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004075
4076 if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
Brian Gix53156382012-03-09 14:07:03 -08004077 eir_len = eir_append_data(ev->eir, eir_len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004078 EIR_CLASS_OF_DEV, dev_class, 3);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004079
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02004080 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004081
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07004082 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
4083 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02004084}
4085
Johan Hedberg8962ee72011-01-20 12:40:27 +02004086static void disconnect_rsp(struct pending_cmd *cmd, void *data)
4087{
Szymon Jancc68fb7f2011-03-22 13:12:19 +01004088 struct mgmt_cp_disconnect *cp = cmd->param;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004089 struct sock **sk = data;
Johan Hedberga38528f2011-01-22 06:46:43 +02004090 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004091
Johan Hedberg88c3df12012-02-09 14:27:38 +02004092 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
4093 rp.addr.type = cp->addr.type;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004094
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004095 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004096 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02004097
4098 *sk = cmd->sk;
4099 sock_hold(*sk);
4100
Johan Hedberga664b5b2011-02-19 12:06:02 -03004101 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004102}
4103
Johan Hedberg124f6e32012-02-09 13:50:12 +02004104static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02004105{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02004106 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02004107 struct mgmt_cp_unpair_device *cp = cmd->param;
4108 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02004109
4110 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02004111 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
4112 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02004113
Johan Hedbergb1078ad2012-02-09 17:21:16 +02004114 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
4115
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004116 cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02004117
4118 mgmt_pending_remove(cmd);
4119}
4120
Johan Hedbergafc747a2012-01-15 18:11:07 +02004121int mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02004122 u8 link_type, u8 addr_type, u8 reason)
Johan Hedbergf7520542011-01-20 12:34:39 +02004123{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02004124 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004125 struct sock *sk = NULL;
4126 int err;
4127
Johan Hedberg744cf192011-11-08 20:40:14 +02004128 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02004129
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02004130 bacpy(&ev.addr.bdaddr, bdaddr);
4131 ev.addr.type = link_to_bdaddr(link_type, addr_type);
4132 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02004133
Johan Hedbergafc747a2012-01-15 18:11:07 +02004134 err = mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004135 sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004136
4137 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01004138 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004139
Johan Hedberg124f6e32012-02-09 13:50:12 +02004140 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004141 hdev);
Johan Hedberga8a1d192011-11-10 15:54:38 +02004142
Johan Hedberg8962ee72011-01-20 12:40:27 +02004143 return err;
4144}
4145
Marcel Holtmann78929242013-10-06 23:55:47 -07004146void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
4147 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02004148{
Johan Hedberg88c3df12012-02-09 14:27:38 +02004149 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004150 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004151
Jefferson Delfes36a75f12012-09-18 13:36:54 -04004152 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
4153 hdev);
4154
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004155 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02004156 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07004157 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02004158
Johan Hedberg88c3df12012-02-09 14:27:38 +02004159 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004160 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02004161
Marcel Holtmann78929242013-10-06 23:55:47 -07004162 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
4163 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02004164
Johan Hedberga664b5b2011-02-19 12:06:02 -03004165 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02004166}
Johan Hedberg17d5c042011-01-22 06:09:08 +02004167
Marcel Holtmann445608d2013-10-06 23:55:48 -07004168void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
4169 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02004170{
4171 struct mgmt_ev_connect_failed ev;
4172
Johan Hedberg4c659c32011-11-07 23:13:39 +02004173 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004174 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02004175 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02004176
Marcel Holtmann445608d2013-10-06 23:55:48 -07004177 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02004178}
Johan Hedberg980e1a52011-01-22 06:10:07 +02004179
Johan Hedberg744cf192011-11-08 20:40:14 +02004180int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02004181{
4182 struct mgmt_ev_pin_code_request ev;
4183
Johan Hedbergd8457692012-02-17 14:24:57 +02004184 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03004185 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02004186 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02004187
Johan Hedberg744cf192011-11-08 20:40:14 +02004188 return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004189 NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004190}
4191
Johan Hedberg744cf192011-11-08 20:40:14 +02004192int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004193 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02004194{
4195 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03004196 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02004197 int err;
4198
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004199 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004200 if (!cmd)
4201 return -ENOENT;
4202
Johan Hedbergd8457692012-02-17 14:24:57 +02004203 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03004204 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03004205
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004206 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004207 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02004208
Johan Hedberga664b5b2011-02-19 12:06:02 -03004209 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004210
4211 return err;
4212}
4213
Johan Hedberg744cf192011-11-08 20:40:14 +02004214int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004215 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02004216{
4217 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03004218 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02004219 int err;
4220
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004221 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004222 if (!cmd)
4223 return -ENOENT;
4224
Johan Hedbergd8457692012-02-17 14:24:57 +02004225 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03004226 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03004227
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004228 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004229 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02004230
Johan Hedberga664b5b2011-02-19 12:06:02 -03004231 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02004232
4233 return err;
4234}
Johan Hedberga5c29682011-02-19 12:05:57 -03004235
Johan Hedberg744cf192011-11-08 20:40:14 +02004236int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004237 u8 link_type, u8 addr_type, __le32 value,
4238 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03004239{
4240 struct mgmt_ev_user_confirm_request ev;
4241
Johan Hedberg744cf192011-11-08 20:40:14 +02004242 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03004243
Johan Hedberg272d90d2012-02-09 15:26:12 +02004244 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004245 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07004246 ev.confirm_hint = confirm_hint;
Andrei Emeltchenko78e8098e2012-03-09 13:00:50 +02004247 ev.value = value;
Johan Hedberga5c29682011-02-19 12:05:57 -03004248
Johan Hedberg744cf192011-11-08 20:40:14 +02004249 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004250 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03004251}
4252
Johan Hedberg272d90d2012-02-09 15:26:12 +02004253int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004254 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08004255{
4256 struct mgmt_ev_user_passkey_request ev;
4257
4258 BT_DBG("%s", hdev->name);
4259
Johan Hedberg272d90d2012-02-09 15:26:12 +02004260 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004261 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08004262
4263 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004264 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08004265}
4266
Brian Gix0df4c182011-11-16 13:53:13 -08004267static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004268 u8 link_type, u8 addr_type, u8 status,
4269 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03004270{
4271 struct pending_cmd *cmd;
4272 struct mgmt_rp_user_confirm_reply rp;
4273 int err;
4274
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004275 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03004276 if (!cmd)
4277 return -ENOENT;
4278
Johan Hedberg272d90d2012-02-09 15:26:12 +02004279 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004280 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergaee9b2182012-02-18 15:07:59 +02004281 err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004282 &rp, sizeof(rp));
Johan Hedberga5c29682011-02-19 12:05:57 -03004283
Johan Hedberga664b5b2011-02-19 12:06:02 -03004284 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03004285
4286 return err;
4287}
4288
Johan Hedberg744cf192011-11-08 20:40:14 +02004289int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004290 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03004291{
Johan Hedberg272d90d2012-02-09 15:26:12 +02004292 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004293 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03004294}
4295
Johan Hedberg272d90d2012-02-09 15:26:12 +02004296int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004297 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03004298{
Johan Hedberg272d90d2012-02-09 15:26:12 +02004299 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03004300 status,
4301 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03004302}
Johan Hedberg2a611692011-02-19 12:06:00 -03004303
Brian Gix604086b2011-11-23 08:28:33 -08004304int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004305 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08004306{
Johan Hedberg272d90d2012-02-09 15:26:12 +02004307 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004308 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08004309}
4310
Johan Hedberg272d90d2012-02-09 15:26:12 +02004311int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004312 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08004313{
Johan Hedberg272d90d2012-02-09 15:26:12 +02004314 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03004315 status,
4316 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08004317}
4318
Johan Hedberg92a25252012-09-06 18:39:26 +03004319int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
4320 u8 link_type, u8 addr_type, u32 passkey,
4321 u8 entered)
4322{
4323 struct mgmt_ev_passkey_notify ev;
4324
4325 BT_DBG("%s", hdev->name);
4326
4327 bacpy(&ev.addr.bdaddr, bdaddr);
4328 ev.addr.type = link_to_bdaddr(link_type, addr_type);
4329 ev.passkey = __cpu_to_le32(passkey);
4330 ev.entered = entered;
4331
4332 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
4333}
4334
Johan Hedbergbab73cb2012-02-09 16:07:29 +02004335int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004336 u8 addr_type, u8 status)
Johan Hedberg2a611692011-02-19 12:06:00 -03004337{
4338 struct mgmt_ev_auth_failed ev;
4339
Johan Hedbergbab73cb2012-02-09 16:07:29 +02004340 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004341 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02004342 ev.status = mgmt_status(status);
Johan Hedberg2a611692011-02-19 12:06:00 -03004343
Johan Hedberg744cf192011-11-08 20:40:14 +02004344 return mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg2a611692011-02-19 12:06:00 -03004345}
Johan Hedbergb312b1612011-03-16 14:29:37 +02004346
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004347int mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
4348{
4349 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg47990ea2012-02-22 11:58:37 +02004350 bool changed = false;
4351 int err = 0;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004352
4353 if (status) {
4354 u8 mgmt_err = mgmt_status(status);
4355 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004356 cmd_status_rsp, &mgmt_err);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004357 return 0;
4358 }
4359
Johan Hedberg47990ea2012-02-22 11:58:37 +02004360 if (test_bit(HCI_AUTH, &hdev->flags)) {
4361 if (!test_and_set_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
4362 changed = true;
4363 } else {
4364 if (test_and_clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
4365 changed = true;
4366 }
4367
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004368 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004369 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004370
Johan Hedberg47990ea2012-02-22 11:58:37 +02004371 if (changed)
4372 err = new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02004373
4374 if (match.sk)
4375 sock_put(match.sk);
4376
4377 return err;
4378}
4379
Johan Hedberg890ea892013-03-15 17:06:52 -05004380static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02004381{
Johan Hedberg890ea892013-03-15 17:06:52 -05004382 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02004383 struct hci_cp_write_eir cp;
4384
Johan Hedberg976eb202012-10-24 21:12:01 +03004385 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05004386 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02004387
Johan Hedbergc80da272012-02-22 15:38:48 +02004388 memset(hdev->eir, 0, sizeof(hdev->eir));
4389
Johan Hedbergcacaf522012-02-21 00:52:42 +02004390 memset(&cp, 0, sizeof(cp));
4391
Johan Hedberg890ea892013-03-15 17:06:52 -05004392 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02004393}
4394
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004395int mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004396{
4397 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05004398 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004399 bool changed = false;
4400 int err = 0;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004401
4402 if (status) {
4403 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004404
4405 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004406 &hdev->dev_flags))
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004407 err = new_settings(hdev, NULL);
4408
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004409 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
4410 &mgmt_err);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004411
4412 return err;
4413 }
4414
4415 if (enable) {
4416 if (!test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
4417 changed = true;
4418 } else {
4419 if (test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
4420 changed = true;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004421 }
4422
4423 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
4424
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02004425 if (changed)
4426 err = new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004427
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02004428 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004429 sock_put(match.sk);
4430
Johan Hedberg890ea892013-03-15 17:06:52 -05004431 hci_req_init(&req, hdev);
4432
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02004433 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05004434 update_eir(&req);
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02004435 else
Johan Hedberg890ea892013-03-15 17:06:52 -05004436 clear_eir(&req);
4437
4438 hci_req_run(&req, NULL);
Johan Hedbergcacaf522012-02-21 00:52:42 +02004439
Johan Hedberged2c4ee2012-02-17 00:56:28 +02004440 return err;
4441}
4442
Johan Hedberg92da6092013-03-15 17:06:55 -05004443static void sk_lookup(struct pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02004444{
4445 struct cmd_lookup *match = data;
4446
Johan Hedberg90e70452012-02-23 23:09:40 +02004447 if (match->sk == NULL) {
4448 match->sk = cmd->sk;
4449 sock_hold(match->sk);
4450 }
Johan Hedberg90e70452012-02-23 23:09:40 +02004451}
4452
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01004453int mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004454 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01004455{
Johan Hedberg90e70452012-02-23 23:09:40 +02004456 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
4457 int err = 0;
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01004458
Johan Hedberg92da6092013-03-15 17:06:55 -05004459 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
4460 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
4461 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02004462
4463 if (!status)
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004464 err = mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
4465 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02004466
4467 if (match.sk)
4468 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01004469
4470 return err;
4471}
4472
Johan Hedberg744cf192011-11-08 20:40:14 +02004473int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02004474{
Johan Hedbergb312b1612011-03-16 14:29:37 +02004475 struct mgmt_cp_set_local_name ev;
Johan Hedberg13928972013-03-15 17:07:00 -05004476 struct pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02004477
Johan Hedberg13928972013-03-15 17:07:00 -05004478 if (status)
4479 return 0;
Johan Hedbergb312b1612011-03-16 14:29:37 +02004480
4481 memset(&ev, 0, sizeof(ev));
4482 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02004483 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02004484
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004485 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05004486 if (!cmd) {
4487 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02004488
Johan Hedberg13928972013-03-15 17:07:00 -05004489 /* If this is a HCI command related to powering on the
4490 * HCI dev don't send any mgmt signals.
4491 */
4492 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
4493 return 0;
Johan Hedbergb312b1612011-03-16 14:29:37 +02004494 }
4495
Johan Hedberg13928972013-03-15 17:07:00 -05004496 return mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
4497 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02004498}
Szymon Jancc35938b2011-03-22 13:12:21 +01004499
Johan Hedberg744cf192011-11-08 20:40:14 +02004500int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004501 u8 *randomizer, u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01004502{
4503 struct pending_cmd *cmd;
4504 int err;
4505
Johan Hedberg744cf192011-11-08 20:40:14 +02004506 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01004507
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004508 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004509 if (!cmd)
4510 return -ENOENT;
4511
4512 if (status) {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004513 err = cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4514 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01004515 } else {
4516 struct mgmt_rp_read_local_oob_data rp;
4517
4518 memcpy(rp.hash, hash, sizeof(rp.hash));
4519 memcpy(rp.randomizer, randomizer, sizeof(rp.randomizer));
4520
Johan Hedberg744cf192011-11-08 20:40:14 +02004521 err = cmd_complete(cmd->sk, hdev->id,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004522 MGMT_OP_READ_LOCAL_OOB_DATA, 0, &rp,
4523 sizeof(rp));
Szymon Jancc35938b2011-03-22 13:12:21 +01004524 }
4525
4526 mgmt_pending_remove(cmd);
4527
4528 return err;
4529}
Johan Hedberge17acd42011-03-30 23:57:16 +03004530
Johan Hedberg48264f02011-11-09 13:58:58 +02004531int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004532 u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name, u8
4533 ssp, u8 *eir, u16 eir_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03004534{
Johan Hedberge319d2e2012-01-15 19:51:59 +02004535 char buf[512];
4536 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02004537 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03004538
Andre Guedes12602d02013-04-30 15:29:40 -03004539 if (!hci_discovery_active(hdev))
4540 return -EPERM;
4541
Johan Hedberg1dc06092012-01-15 21:01:23 +02004542 /* Leave 5 bytes for a potential CoD field */
4543 if (sizeof(*ev) + eir_len + 5 > sizeof(buf))
Andre Guedes7d262f82012-01-10 18:20:49 -03004544 return -EINVAL;
4545
Johan Hedberg1dc06092012-01-15 21:01:23 +02004546 memset(buf, 0, sizeof(buf));
4547
Johan Hedberge319d2e2012-01-15 19:51:59 +02004548 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004549 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02004550 ev->rssi = rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +02004551 if (cfm_name)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05304552 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_CONFIRM_NAME);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02004553 if (!ssp)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05304554 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_LEGACY_PAIRING);
Johan Hedberge17acd42011-03-30 23:57:16 +03004555
Johan Hedberg1dc06092012-01-15 21:01:23 +02004556 if (eir_len > 0)
Johan Hedberge319d2e2012-01-15 19:51:59 +02004557 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03004558
Johan Hedberg1dc06092012-01-15 21:01:23 +02004559 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
4560 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004561 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02004562
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02004563 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedberg1dc06092012-01-15 21:01:23 +02004564 ev_size = sizeof(*ev) + eir_len;
Andre Guedesf8523592011-09-09 18:56:26 -03004565
Johan Hedberge319d2e2012-01-15 19:51:59 +02004566 return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03004567}
Johan Hedberga88a9652011-03-30 13:18:12 +03004568
Johan Hedbergb644ba32012-01-17 21:48:47 +02004569int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004570 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03004571{
Johan Hedbergb644ba32012-01-17 21:48:47 +02004572 struct mgmt_ev_device_found *ev;
4573 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
4574 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03004575
Johan Hedbergb644ba32012-01-17 21:48:47 +02004576 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03004577
Johan Hedbergb644ba32012-01-17 21:48:47 +02004578 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03004579
Johan Hedbergb644ba32012-01-17 21:48:47 +02004580 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03004581 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004582 ev->rssi = rssi;
4583
4584 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004585 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004586
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02004587 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02004588
Johan Hedberg053c7e02012-02-04 00:06:00 +02004589 return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004590 sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03004591}
Johan Hedberg314b2382011-04-27 10:29:57 -04004592
Johan Hedberg744cf192011-11-08 20:40:14 +02004593int mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04004594{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02004595 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02004596 struct pending_cmd *cmd;
4597
Andre Guedes343fb142011-11-22 17:14:19 -03004598 BT_DBG("%s discovering %u", hdev->name, discovering);
4599
Johan Hedberg164a6e72011-11-01 17:06:44 +02004600 if (discovering)
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004601 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02004602 else
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004603 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02004604
4605 if (cmd != NULL) {
Johan Hedbergf808e162012-02-19 12:52:07 +02004606 u8 type = hdev->discovery.type;
4607
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004608 cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
4609 sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02004610 mgmt_pending_remove(cmd);
4611 }
4612
Johan Hedbergf963e8e2012-02-20 23:30:44 +02004613 memset(&ev, 0, sizeof(ev));
4614 ev.type = hdev->discovery.type;
4615 ev.discovering = discovering;
4616
4617 return mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04004618}
Antti Julku5e762442011-08-25 16:48:02 +03004619
Johan Hedberg88c1fe42012-02-09 15:56:11 +02004620int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03004621{
4622 struct pending_cmd *cmd;
4623 struct mgmt_ev_device_blocked ev;
4624
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004625 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004626
Johan Hedberg88c1fe42012-02-09 15:56:11 +02004627 bacpy(&ev.addr.bdaddr, bdaddr);
4628 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03004629
Johan Hedberg744cf192011-11-08 20:40:14 +02004630 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004631 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03004632}
4633
Johan Hedberg88c1fe42012-02-09 15:56:11 +02004634int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03004635{
4636 struct pending_cmd *cmd;
4637 struct mgmt_ev_device_unblocked ev;
4638
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004639 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004640
Johan Hedberg88c1fe42012-02-09 15:56:11 +02004641 bacpy(&ev.addr.bdaddr, bdaddr);
4642 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03004643
Johan Hedberg744cf192011-11-08 20:40:14 +02004644 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004645 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03004646}
Marcel Holtmann5976e602013-10-06 04:08:14 -07004647
4648static void adv_enable_complete(struct hci_dev *hdev, u8 status)
4649{
4650 BT_DBG("%s status %u", hdev->name, status);
4651
4652 /* Clear the advertising mgmt setting if we failed to re-enable it */
4653 if (status) {
4654 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07004655 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07004656 }
4657}
4658
4659void mgmt_reenable_advertising(struct hci_dev *hdev)
4660{
4661 struct hci_request req;
4662
4663 if (hdev->conn_hash.le_num)
4664 return;
4665
4666 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags))
4667 return;
4668
4669 hci_req_init(&req, hdev);
4670 enable_advertising(&req);
4671
4672 /* If this fails we have no option but to let user space know
4673 * that we've disabled advertising.
4674 */
4675 if (hci_req_run(&req, adv_enable_complete) < 0) {
4676 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07004677 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07004678 }
4679}