blob: 7dd2de1c2152e426f8aa608b67a5c5999ba06a3d [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
Marcel Holtmannd7b7e792012-02-20 21:47:49 +010035bool enable_hs;
Marcel Holtmannd7b7e792012-02-20 21:47:49 +010036
Johan Hedberg2da9c552012-02-17 14:39:28 +020037#define MGMT_VERSION 1
Johan Hedberg23b3b132012-09-06 18:39:27 +030038#define MGMT_REVISION 2
Johan Hedberg02d98122010-12-13 21:07:04 +020039
Johan Hedberge70bb2e2012-02-13 16:59:33 +020040static const u16 mgmt_commands[] = {
41 MGMT_OP_READ_INDEX_LIST,
42 MGMT_OP_READ_INFO,
43 MGMT_OP_SET_POWERED,
44 MGMT_OP_SET_DISCOVERABLE,
45 MGMT_OP_SET_CONNECTABLE,
46 MGMT_OP_SET_FAST_CONNECTABLE,
47 MGMT_OP_SET_PAIRABLE,
48 MGMT_OP_SET_LINK_SECURITY,
49 MGMT_OP_SET_SSP,
50 MGMT_OP_SET_HS,
51 MGMT_OP_SET_LE,
52 MGMT_OP_SET_DEV_CLASS,
53 MGMT_OP_SET_LOCAL_NAME,
54 MGMT_OP_ADD_UUID,
55 MGMT_OP_REMOVE_UUID,
56 MGMT_OP_LOAD_LINK_KEYS,
57 MGMT_OP_LOAD_LONG_TERM_KEYS,
58 MGMT_OP_DISCONNECT,
59 MGMT_OP_GET_CONNECTIONS,
60 MGMT_OP_PIN_CODE_REPLY,
61 MGMT_OP_PIN_CODE_NEG_REPLY,
62 MGMT_OP_SET_IO_CAPABILITY,
63 MGMT_OP_PAIR_DEVICE,
64 MGMT_OP_CANCEL_PAIR_DEVICE,
65 MGMT_OP_UNPAIR_DEVICE,
66 MGMT_OP_USER_CONFIRM_REPLY,
67 MGMT_OP_USER_CONFIRM_NEG_REPLY,
68 MGMT_OP_USER_PASSKEY_REPLY,
69 MGMT_OP_USER_PASSKEY_NEG_REPLY,
70 MGMT_OP_READ_LOCAL_OOB_DATA,
71 MGMT_OP_ADD_REMOTE_OOB_DATA,
72 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
73 MGMT_OP_START_DISCOVERY,
74 MGMT_OP_STOP_DISCOVERY,
75 MGMT_OP_CONFIRM_NAME,
76 MGMT_OP_BLOCK_DEVICE,
77 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070078 MGMT_OP_SET_DEVICE_ID,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020079};
80
81static const u16 mgmt_events[] = {
82 MGMT_EV_CONTROLLER_ERROR,
83 MGMT_EV_INDEX_ADDED,
84 MGMT_EV_INDEX_REMOVED,
85 MGMT_EV_NEW_SETTINGS,
86 MGMT_EV_CLASS_OF_DEV_CHANGED,
87 MGMT_EV_LOCAL_NAME_CHANGED,
88 MGMT_EV_NEW_LINK_KEY,
89 MGMT_EV_NEW_LONG_TERM_KEY,
90 MGMT_EV_DEVICE_CONNECTED,
91 MGMT_EV_DEVICE_DISCONNECTED,
92 MGMT_EV_CONNECT_FAILED,
93 MGMT_EV_PIN_CODE_REQUEST,
94 MGMT_EV_USER_CONFIRM_REQUEST,
95 MGMT_EV_USER_PASSKEY_REQUEST,
96 MGMT_EV_AUTH_FAILED,
97 MGMT_EV_DEVICE_FOUND,
98 MGMT_EV_DISCOVERING,
99 MGMT_EV_DEVICE_BLOCKED,
100 MGMT_EV_DEVICE_UNBLOCKED,
101 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300102 MGMT_EV_PASSKEY_NOTIFY,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200103};
104
Andre Guedes3fd24152012-02-03 17:48:01 -0300105/*
106 * These LE scan and inquiry parameters were chosen according to LE General
107 * Discovery Procedure specification.
108 */
109#define LE_SCAN_TYPE 0x01
110#define LE_SCAN_WIN 0x12
111#define LE_SCAN_INT 0x12
112#define LE_SCAN_TIMEOUT_LE_ONLY 10240 /* TGAP(gen_disc_scan_min) */
Andre Guedes5e0452c2012-02-17 20:39:38 -0300113#define LE_SCAN_TIMEOUT_BREDR_LE 5120 /* TGAP(100)/2 */
Andre Guedes3fd24152012-02-03 17:48:01 -0300114
Andre Guedese8777522012-02-03 17:48:02 -0300115#define INQUIRY_LEN_BREDR 0x08 /* TGAP(100) */
Andre Guedes5e0452c2012-02-17 20:39:38 -0300116#define INQUIRY_LEN_BREDR_LE 0x04 /* TGAP(100)/2 */
Andre Guedes2519a1f2011-11-07 11:45:24 -0300117
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800118#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200119
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200120#define hdev_is_powered(hdev) (test_bit(HCI_UP, &hdev->flags) && \
121 !test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
122
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200123struct pending_cmd {
124 struct list_head list;
Johan Hedbergfc2f4b12011-11-09 13:58:56 +0200125 u16 opcode;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200126 int index;
Szymon Jancc68fb7f2011-03-22 13:12:19 +0100127 void *param;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200128 struct sock *sk;
Johan Hedberge9a416b2011-02-19 12:05:56 -0300129 void *user_data;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200130};
131
Johan Hedbergca69b792011-11-11 18:10:00 +0200132/* HCI to MGMT error code conversion table */
133static u8 mgmt_status_table[] = {
134 MGMT_STATUS_SUCCESS,
135 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
136 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
137 MGMT_STATUS_FAILED, /* Hardware Failure */
138 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
139 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
140 MGMT_STATUS_NOT_PAIRED, /* PIN or Key Missing */
141 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
142 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
143 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
144 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
145 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
146 MGMT_STATUS_BUSY, /* Command Disallowed */
147 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
148 MGMT_STATUS_REJECTED, /* Rejected Security */
149 MGMT_STATUS_REJECTED, /* Rejected Personal */
150 MGMT_STATUS_TIMEOUT, /* Host Timeout */
151 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
152 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
153 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
154 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
155 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
156 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
157 MGMT_STATUS_BUSY, /* Repeated Attempts */
158 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
159 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
160 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
161 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
162 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
163 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
164 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
165 MGMT_STATUS_FAILED, /* Unspecified Error */
166 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
167 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
168 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
169 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
170 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
171 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
172 MGMT_STATUS_FAILED, /* Unit Link Key Used */
173 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
174 MGMT_STATUS_TIMEOUT, /* Instant Passed */
175 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
176 MGMT_STATUS_FAILED, /* Transaction Collision */
177 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
178 MGMT_STATUS_REJECTED, /* QoS Rejected */
179 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
180 MGMT_STATUS_REJECTED, /* Insufficient Security */
181 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
182 MGMT_STATUS_BUSY, /* Role Switch Pending */
183 MGMT_STATUS_FAILED, /* Slot Violation */
184 MGMT_STATUS_FAILED, /* Role Switch Failed */
185 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
186 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
187 MGMT_STATUS_BUSY, /* Host Busy Pairing */
188 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
189 MGMT_STATUS_BUSY, /* Controller Busy */
190 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
191 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
192 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
193 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
194 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
195};
196
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300197bool mgmt_valid_hdev(struct hci_dev *hdev)
198{
199 return hdev->dev_type == HCI_BREDR;
200}
201
Johan Hedbergca69b792011-11-11 18:10:00 +0200202static u8 mgmt_status(u8 hci_status)
203{
204 if (hci_status < ARRAY_SIZE(mgmt_status_table))
205 return mgmt_status_table[hci_status];
206
207 return MGMT_STATUS_FAILED;
208}
209
Szymon Janc4e51eae2011-02-25 19:05:48 +0100210static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200211{
212 struct sk_buff *skb;
213 struct mgmt_hdr *hdr;
214 struct mgmt_ev_cmd_status *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300215 int err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200216
Szymon Janc34eb5252011-02-28 14:10:08 +0100217 BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200218
Andre Guedes790eff42012-06-07 19:05:46 -0300219 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200220 if (!skb)
221 return -ENOMEM;
222
223 hdr = (void *) skb_put(skb, sizeof(*hdr));
224
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530225 hdr->opcode = __constant_cpu_to_le16(MGMT_EV_CMD_STATUS);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100226 hdr->index = cpu_to_le16(index);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200227 hdr->len = cpu_to_le16(sizeof(*ev));
228
229 ev = (void *) skb_put(skb, sizeof(*ev));
230 ev->status = status;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200231 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200232
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300233 err = sock_queue_rcv_skb(sk, skb);
234 if (err < 0)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200235 kfree_skb(skb);
236
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300237 return err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200238}
239
Johan Hedbergaee9b212012-02-18 15:07:59 +0200240static int cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300241 void *rp, size_t rp_len)
Johan Hedberg02d98122010-12-13 21:07:04 +0200242{
243 struct sk_buff *skb;
244 struct mgmt_hdr *hdr;
245 struct mgmt_ev_cmd_complete *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300246 int err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200247
248 BT_DBG("sock %p", sk);
249
Andre Guedes790eff42012-06-07 19:05:46 -0300250 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_KERNEL);
Johan Hedberg02d98122010-12-13 21:07:04 +0200251 if (!skb)
252 return -ENOMEM;
253
254 hdr = (void *) skb_put(skb, sizeof(*hdr));
Johan Hedberga38528f2011-01-22 06:46:43 +0200255
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530256 hdr->opcode = __constant_cpu_to_le16(MGMT_EV_CMD_COMPLETE);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100257 hdr->index = cpu_to_le16(index);
Johan Hedberga38528f2011-01-22 06:46:43 +0200258 hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200259
Johan Hedberga38528f2011-01-22 06:46:43 +0200260 ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200261 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergaee9b212012-02-18 15:07:59 +0200262 ev->status = status;
Szymon Janc8020c162011-02-28 14:09:50 +0100263
264 if (rp)
265 memcpy(ev->data, rp, rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200266
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300267 err = sock_queue_rcv_skb(sk, skb);
268 if (err < 0)
Johan Hedberg02d98122010-12-13 21:07:04 +0200269 kfree_skb(skb);
270
Marcel Holtmanne5f0e152012-02-22 11:59:01 +0100271 return err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200272}
273
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300274static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
275 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200276{
277 struct mgmt_rp_read_version rp;
278
279 BT_DBG("sock %p", sk);
280
281 rp.version = MGMT_VERSION;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200282 rp.revision = __constant_cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200283
Johan Hedbergaee9b212012-02-18 15:07:59 +0200284 return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300285 sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200286}
287
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300288static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
289 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200290{
291 struct mgmt_rp_read_commands *rp;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200292 const u16 num_commands = ARRAY_SIZE(mgmt_commands);
293 const u16 num_events = ARRAY_SIZE(mgmt_events);
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +0200294 __le16 *opcode;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200295 size_t rp_size;
296 int i, err;
297
298 BT_DBG("sock %p", sk);
299
300 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
301
302 rp = kmalloc(rp_size, GFP_KERNEL);
303 if (!rp)
304 return -ENOMEM;
305
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200306 rp->num_commands = __constant_cpu_to_le16(num_commands);
307 rp->num_events = __constant_cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200308
309 for (i = 0, opcode = rp->opcodes; i < num_commands; i++, opcode++)
310 put_unaligned_le16(mgmt_commands[i], opcode);
311
312 for (i = 0; i < num_events; i++, opcode++)
313 put_unaligned_le16(mgmt_events[i], opcode);
314
Johan Hedbergaee9b212012-02-18 15:07:59 +0200315 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300316 rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200317 kfree(rp);
318
319 return err;
320}
321
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300322static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
323 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200324{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200325 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200326 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200327 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200328 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300329 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200330
331 BT_DBG("sock %p", sk);
332
333 read_lock(&hci_dev_list_lock);
334
335 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300336 list_for_each_entry(d, &hci_dev_list, list) {
337 if (!mgmt_valid_hdev(d))
338 continue;
339
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200340 count++;
341 }
342
Johan Hedberga38528f2011-01-22 06:46:43 +0200343 rp_len = sizeof(*rp) + (2 * count);
344 rp = kmalloc(rp_len, GFP_ATOMIC);
345 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100346 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200347 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100348 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200349
Johan Hedberg476e44c2012-10-19 20:10:46 +0300350 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200351 list_for_each_entry(d, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200352 if (test_bit(HCI_SETUP, &d->dev_flags))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200353 continue;
354
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300355 if (!mgmt_valid_hdev(d))
356 continue;
357
Johan Hedberg476e44c2012-10-19 20:10:46 +0300358 rp->index[count++] = cpu_to_le16(d->id);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200359 BT_DBG("Added hci%u", d->id);
360 }
361
Johan Hedberg476e44c2012-10-19 20:10:46 +0300362 rp->num_controllers = cpu_to_le16(count);
363 rp_len = sizeof(*rp) + (2 * count);
364
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200365 read_unlock(&hci_dev_list_lock);
366
Johan Hedbergaee9b212012-02-18 15:07:59 +0200367 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300368 rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200369
Johan Hedberga38528f2011-01-22 06:46:43 +0200370 kfree(rp);
371
372 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200373}
374
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200375static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200376{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200377 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200378
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200379 settings |= MGMT_SETTING_POWERED;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200380 settings |= MGMT_SETTING_PAIRABLE;
Johan Hedberg03811012010-12-08 00:21:06 +0200381
Andre Guedes9a1a1992012-07-24 15:03:48 -0300382 if (lmp_ssp_capable(hdev))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200383 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200384
Andre Guedesed3fa312012-07-24 15:03:46 -0300385 if (lmp_bredr_capable(hdev)) {
Johan Hedberg33c525c2012-10-24 21:11:58 +0300386 settings |= MGMT_SETTING_CONNECTABLE;
387 settings |= MGMT_SETTING_FAST_CONNECTABLE;
388 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200389 settings |= MGMT_SETTING_BREDR;
390 settings |= MGMT_SETTING_LINK_SECURITY;
391 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200392
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100393 if (enable_hs)
394 settings |= MGMT_SETTING_HS;
395
Andre Guedesc383ddc2012-07-24 15:03:47 -0300396 if (lmp_le_capable(hdev))
Marcel Holtmann9d428202012-05-03 07:12:31 +0200397 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200398
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200399 return settings;
400}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200401
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200402static u32 get_current_settings(struct hci_dev *hdev)
403{
404 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200405
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200406 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100407 settings |= MGMT_SETTING_POWERED;
408
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200409 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200410 settings |= MGMT_SETTING_CONNECTABLE;
411
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200412 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200413 settings |= MGMT_SETTING_DISCOVERABLE;
414
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200415 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200416 settings |= MGMT_SETTING_PAIRABLE;
417
Andre Guedesed3fa312012-07-24 15:03:46 -0300418 if (lmp_bredr_capable(hdev))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200419 settings |= MGMT_SETTING_BREDR;
420
Johan Hedberg06199cf2012-02-22 16:37:11 +0200421 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200422 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200423
Johan Hedberg47990ea2012-02-22 11:58:37 +0200424 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200425 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200426
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200427 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200428 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200429
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200430 if (test_bit(HCI_HS_ENABLED, &hdev->dev_flags))
431 settings |= MGMT_SETTING_HS;
432
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200433 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200434}
435
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300436#define PNP_INFO_SVCLASS_ID 0x1200
437
438static u8 bluetooth_base_uuid[] = {
439 0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
440 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
441};
442
443static u16 get_uuid16(u8 *uuid128)
444{
445 u32 val;
446 int i;
447
448 for (i = 0; i < 12; i++) {
449 if (bluetooth_base_uuid[i] != uuid128[i])
450 return 0;
451 }
452
Andrei Emeltchenko3e9fb6d2012-03-20 10:32:25 +0200453 val = get_unaligned_le32(&uuid128[12]);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300454 if (val > 0xffff)
455 return 0;
456
457 return (u16) val;
458}
459
460static void create_eir(struct hci_dev *hdev, u8 *data)
461{
462 u8 *ptr = data;
463 u16 eir_len = 0;
464 u16 uuid16_list[HCI_MAX_EIR_LENGTH / sizeof(u16)];
465 int i, truncated = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200466 struct bt_uuid *uuid;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300467 size_t name_len;
468
469 name_len = strlen(hdev->dev_name);
470
471 if (name_len > 0) {
472 /* EIR Data type */
473 if (name_len > 48) {
474 name_len = 48;
475 ptr[1] = EIR_NAME_SHORT;
476 } else
477 ptr[1] = EIR_NAME_COMPLETE;
478
479 /* EIR Data length */
480 ptr[0] = name_len + 1;
481
482 memcpy(ptr + 2, hdev->dev_name, name_len);
483
484 eir_len += (name_len + 2);
485 ptr += (name_len + 2);
486 }
487
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100488 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700489 ptr[0] = 2;
490 ptr[1] = EIR_TX_POWER;
491 ptr[2] = (u8) hdev->inq_tx_power;
492
493 eir_len += 3;
494 ptr += 3;
495 }
496
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700497 if (hdev->devid_source > 0) {
498 ptr[0] = 9;
499 ptr[1] = EIR_DEVICE_ID;
500
501 put_unaligned_le16(hdev->devid_source, ptr + 2);
502 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
503 put_unaligned_le16(hdev->devid_product, ptr + 6);
504 put_unaligned_le16(hdev->devid_version, ptr + 8);
505
506 eir_len += 10;
507 ptr += 10;
508 }
509
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300510 memset(uuid16_list, 0, sizeof(uuid16_list));
511
512 /* Group all UUID16 types */
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200513 list_for_each_entry(uuid, &hdev->uuids, list) {
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300514 u16 uuid16;
515
516 uuid16 = get_uuid16(uuid->uuid);
517 if (uuid16 == 0)
518 return;
519
520 if (uuid16 < 0x1100)
521 continue;
522
523 if (uuid16 == PNP_INFO_SVCLASS_ID)
524 continue;
525
526 /* Stop if not enough space to put next UUID */
527 if (eir_len + 2 + sizeof(u16) > HCI_MAX_EIR_LENGTH) {
528 truncated = 1;
529 break;
530 }
531
532 /* Check for duplicates */
533 for (i = 0; uuid16_list[i] != 0; i++)
534 if (uuid16_list[i] == uuid16)
535 break;
536
537 if (uuid16_list[i] == 0) {
538 uuid16_list[i] = uuid16;
539 eir_len += sizeof(u16);
540 }
541 }
542
543 if (uuid16_list[0] != 0) {
544 u8 *length = ptr;
545
546 /* EIR Data type */
547 ptr[1] = truncated ? EIR_UUID16_SOME : EIR_UUID16_ALL;
548
549 ptr += 2;
550 eir_len += 2;
551
552 for (i = 0; uuid16_list[i] != 0; i++) {
553 *ptr++ = (uuid16_list[i] & 0x00ff);
554 *ptr++ = (uuid16_list[i] & 0xff00) >> 8;
555 }
556
557 /* EIR Data length */
558 *length = (i * sizeof(u16)) + 1;
559 }
560}
561
562static int update_eir(struct hci_dev *hdev)
563{
564 struct hci_cp_write_eir cp;
565
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200566 if (!hdev_is_powered(hdev))
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200567 return 0;
568
Johan Hedberg976eb202012-10-24 21:12:01 +0300569 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300570 return 0;
571
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200572 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300573 return 0;
574
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200575 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300576 return 0;
577
578 memset(&cp, 0, sizeof(cp));
579
580 create_eir(hdev, cp.data);
581
582 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
583 return 0;
584
585 memcpy(hdev->eir, cp.data, sizeof(cp.data));
586
587 return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
588}
589
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200590static u8 get_service_classes(struct hci_dev *hdev)
591{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300592 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200593 u8 val = 0;
594
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300595 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200596 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200597
598 return val;
599}
600
601static int update_class(struct hci_dev *hdev)
602{
603 u8 cod[3];
Johan Hedbergc95f0ba2012-02-23 22:54:38 +0200604 int err;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200605
606 BT_DBG("%s", hdev->name);
607
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200608 if (!hdev_is_powered(hdev))
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200609 return 0;
610
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200611 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200612 return 0;
613
614 cod[0] = hdev->minor_class;
615 cod[1] = hdev->major_class;
616 cod[2] = get_service_classes(hdev);
617
618 if (memcmp(cod, hdev->dev_class, 3) == 0)
619 return 0;
620
Johan Hedbergc95f0ba2012-02-23 22:54:38 +0200621 err = hci_send_cmd(hdev, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
622 if (err == 0)
623 set_bit(HCI_PENDING_CLASS, &hdev->dev_flags);
624
625 return err;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200626}
627
Johan Hedberg7d785252011-12-15 00:47:39 +0200628static void service_cache_off(struct work_struct *work)
629{
630 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300631 service_cache.work);
Johan Hedberg7d785252011-12-15 00:47:39 +0200632
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200633 if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +0200634 return;
635
636 hci_dev_lock(hdev);
637
638 update_eir(hdev);
639 update_class(hdev);
640
641 hci_dev_unlock(hdev);
642}
643
Johan Hedberg6a919082012-02-28 06:17:26 +0200644static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +0200645{
Johan Hedberg4f87da82012-03-02 19:55:56 +0200646 if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg6a919082012-02-28 06:17:26 +0200647 return;
648
Johan Hedberg4f87da82012-03-02 19:55:56 +0200649 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedberg7d785252011-12-15 00:47:39 +0200650
Johan Hedberg4f87da82012-03-02 19:55:56 +0200651 /* Non-mgmt controlled devices get this bit set
652 * implicitly so that pairing works for them, however
653 * for mgmt we require user-space to explicitly enable
654 * it
655 */
656 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedberg7d785252011-12-15 00:47:39 +0200657}
658
Johan Hedberg0f4e68c2012-02-28 17:18:30 +0200659static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300660 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +0200661{
662 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +0200663
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200664 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200665
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300666 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200667
Johan Hedberg03811012010-12-08 00:21:06 +0200668 memset(&rp, 0, sizeof(rp));
669
Johan Hedberg03811012010-12-08 00:21:06 +0200670 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200671
672 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200673 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200674
675 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
676 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
677
678 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +0200679
680 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +0200681 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +0200682
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300683 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200684
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200685 return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300686 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +0200687}
688
689static void mgmt_pending_free(struct pending_cmd *cmd)
690{
691 sock_put(cmd->sk);
692 kfree(cmd->param);
693 kfree(cmd);
694}
695
696static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300697 struct hci_dev *hdev, void *data,
698 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200699{
700 struct pending_cmd *cmd;
701
Andre Guedes12b94562012-06-07 19:05:45 -0300702 cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200703 if (!cmd)
704 return NULL;
705
706 cmd->opcode = opcode;
707 cmd->index = hdev->id;
708
Andre Guedes12b94562012-06-07 19:05:45 -0300709 cmd->param = kmalloc(len, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200710 if (!cmd->param) {
711 kfree(cmd);
712 return NULL;
713 }
714
715 if (data)
716 memcpy(cmd->param, data, len);
717
718 cmd->sk = sk;
719 sock_hold(sk);
720
721 list_add(&cmd->list, &hdev->mgmt_pending);
722
723 return cmd;
724}
725
726static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300727 void (*cb)(struct pending_cmd *cmd,
728 void *data),
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300729 void *data)
Johan Hedberg03811012010-12-08 00:21:06 +0200730{
731 struct list_head *p, *n;
732
733 list_for_each_safe(p, n, &hdev->mgmt_pending) {
734 struct pending_cmd *cmd;
735
736 cmd = list_entry(p, struct pending_cmd, list);
737
738 if (opcode > 0 && cmd->opcode != opcode)
739 continue;
740
741 cb(cmd, data);
742 }
743}
744
745static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
746{
747 struct pending_cmd *cmd;
748
749 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
750 if (cmd->opcode == opcode)
751 return cmd;
752 }
753
754 return NULL;
755}
756
757static void mgmt_pending_remove(struct pending_cmd *cmd)
758{
759 list_del(&cmd->list);
760 mgmt_pending_free(cmd);
761}
762
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200763static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +0200764{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200765 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +0200766
Johan Hedbergaee9b212012-02-18 15:07:59 +0200767 return cmd_complete(sk, hdev->id, opcode, 0, &settings,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300768 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +0200769}
770
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200771static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300772 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200773{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300774 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200775 struct pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200776 int err;
Johan Hedberg03811012010-12-08 00:21:06 +0200777
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200778 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200779
Johan Hedberga7e80f22013-01-09 16:05:19 +0200780 if (cp->val != 0x00 && cp->val != 0x01)
781 return cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
782 MGMT_STATUS_INVALID_PARAMS);
783
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300784 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200785
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100786 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
787 cancel_delayed_work(&hdev->power_off);
788
789 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +0200790 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
791 data, len);
792 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100793 goto failed;
794 }
795 }
796
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200797 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200798 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200799 goto failed;
800 }
801
802 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200803 err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300804 MGMT_STATUS_BUSY);
Johan Hedberg03811012010-12-08 00:21:06 +0200805 goto failed;
806 }
807
808 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
809 if (!cmd) {
810 err = -ENOMEM;
811 goto failed;
812 }
813
814 if (cp->val)
Johan Hedberg19202572013-01-14 22:33:51 +0200815 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg03811012010-12-08 00:21:06 +0200816 else
Johan Hedberg19202572013-01-14 22:33:51 +0200817 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg03811012010-12-08 00:21:06 +0200818
819 err = 0;
820
821failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300822 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200823 return err;
824}
825
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300826static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len,
827 struct sock *skip_sk)
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200828{
829 struct sk_buff *skb;
830 struct mgmt_hdr *hdr;
831
Andre Guedes790eff42012-06-07 19:05:46 -0300832 skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200833 if (!skb)
834 return -ENOMEM;
835
836 hdr = (void *) skb_put(skb, sizeof(*hdr));
837 hdr->opcode = cpu_to_le16(event);
838 if (hdev)
839 hdr->index = cpu_to_le16(hdev->id);
840 else
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530841 hdr->index = __constant_cpu_to_le16(MGMT_INDEX_NONE);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200842 hdr->len = cpu_to_le16(data_len);
843
844 if (data)
845 memcpy(skb_put(skb, data_len), data, data_len);
846
Marcel Holtmann97e0bde2012-02-22 13:49:28 +0100847 /* Time stamp */
848 __net_timestamp(skb);
849
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200850 hci_send_to_control(skb, skip_sk);
851 kfree_skb(skb);
852
853 return 0;
854}
855
856static int new_settings(struct hci_dev *hdev, struct sock *skip)
857{
858 __le32 ev;
859
860 ev = cpu_to_le32(get_current_settings(hdev));
861
862 return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
863}
864
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200865static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300866 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200867{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300868 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200869 struct pending_cmd *cmd;
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200870 u16 timeout;
Johan Hedberg03811012010-12-08 00:21:06 +0200871 u8 scan;
872 int err;
873
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200874 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200875
Johan Hedberg33c525c2012-10-24 21:11:58 +0300876 if (!lmp_bredr_capable(hdev))
877 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
878 MGMT_STATUS_NOT_SUPPORTED);
879
Johan Hedberga7e80f22013-01-09 16:05:19 +0200880 if (cp->val != 0x00 && cp->val != 0x01)
881 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
882 MGMT_STATUS_INVALID_PARAMS);
883
Marcel Holtmann1f350c82012-03-12 20:31:08 -0700884 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann24c54a92012-02-22 18:06:34 +0100885 if (!cp->val && timeout > 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200886 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300887 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200888
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300889 hci_dev_lock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200890
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200891 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200892 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300893 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200894 goto failed;
895 }
896
897 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -0300898 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200899 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300900 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200901 goto failed;
902 }
903
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200904 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200905 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300906 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200907 goto failed;
908 }
909
910 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200911 bool changed = false;
912
913 if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
914 change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
915 changed = true;
916 }
917
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200918 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200919 if (err < 0)
920 goto failed;
921
922 if (changed)
923 err = new_settings(hdev, sk);
924
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200925 goto failed;
926 }
927
928 if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
Marcel Holtmann955638e2012-02-22 18:21:00 +0100929 if (hdev->discov_timeout > 0) {
930 cancel_delayed_work(&hdev->discov_off);
931 hdev->discov_timeout = 0;
932 }
933
934 if (cp->val && timeout > 0) {
935 hdev->discov_timeout = timeout;
936 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
937 msecs_to_jiffies(hdev->discov_timeout * 1000));
938 }
939
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200940 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200941 goto failed;
942 }
943
944 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
945 if (!cmd) {
946 err = -ENOMEM;
947 goto failed;
948 }
949
950 scan = SCAN_PAGE;
951
952 if (cp->val)
953 scan |= SCAN_INQUIRY;
954 else
955 cancel_delayed_work(&hdev->discov_off);
956
957 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
958 if (err < 0)
959 mgmt_pending_remove(cmd);
960
Johan Hedberg03811012010-12-08 00:21:06 +0200961 if (cp->val)
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200962 hdev->discov_timeout = timeout;
Johan Hedberg03811012010-12-08 00:21:06 +0200963
964failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300965 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200966 return err;
967}
968
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200969static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300970 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200971{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300972 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200973 struct pending_cmd *cmd;
974 u8 scan;
975 int err;
976
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200977 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +0200978
Johan Hedberg33c525c2012-10-24 21:11:58 +0300979 if (!lmp_bredr_capable(hdev))
980 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
981 MGMT_STATUS_NOT_SUPPORTED);
982
Johan Hedberga7e80f22013-01-09 16:05:19 +0200983 if (cp->val != 0x00 && cp->val != 0x01)
984 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
985 MGMT_STATUS_INVALID_PARAMS);
986
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300987 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200988
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200989 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200990 bool changed = false;
991
992 if (!!cp->val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
993 changed = true;
994
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +0200995 if (cp->val) {
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200996 set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +0200997 } else {
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200998 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
999 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1000 }
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001001
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001002 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001003 if (err < 0)
1004 goto failed;
1005
1006 if (changed)
1007 err = new_settings(hdev, sk);
1008
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001009 goto failed;
1010 }
1011
1012 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001013 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001014 err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001015 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001016 goto failed;
1017 }
1018
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001019 if (!!cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001020 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001021 goto failed;
1022 }
1023
1024 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1025 if (!cmd) {
1026 err = -ENOMEM;
1027 goto failed;
1028 }
1029
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +02001030 if (cp->val) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001031 scan = SCAN_PAGE;
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +02001032 } else {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001033 scan = 0;
1034
Johan Hedbergdf2c6c52012-02-21 19:15:49 +02001035 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001036 hdev->discov_timeout > 0)
Johan Hedbergdf2c6c52012-02-21 19:15:49 +02001037 cancel_delayed_work(&hdev->discov_off);
1038 }
1039
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001040 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1041 if (err < 0)
1042 mgmt_pending_remove(cmd);
1043
1044failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001045 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001046 return err;
1047}
1048
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001049static int set_pairable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001050 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001051{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001052 struct mgmt_mode *cp = data;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001053 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001054
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001055 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001056
Johan Hedberga7e80f22013-01-09 16:05:19 +02001057 if (cp->val != 0x00 && cp->val != 0x01)
1058 return cmd_status(sk, hdev->id, MGMT_OP_SET_PAIRABLE,
1059 MGMT_STATUS_INVALID_PARAMS);
1060
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001061 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001062
1063 if (cp->val)
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001064 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001065 else
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001066 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001067
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001068 err = send_settings_rsp(sk, MGMT_OP_SET_PAIRABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001069 if (err < 0)
1070 goto failed;
1071
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001072 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001073
1074failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001075 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001076 return err;
1077}
Johan Hedberg72a734e2010-12-30 00:38:22 +02001078
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001079static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
1080 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001081{
1082 struct mgmt_mode *cp = data;
1083 struct pending_cmd *cmd;
Johan Hedberg816a11d2012-02-26 13:04:52 +02001084 u8 val;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001085 int err;
1086
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001087 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001088
Johan Hedberg33c525c2012-10-24 21:11:58 +03001089 if (!lmp_bredr_capable(hdev))
1090 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1091 MGMT_STATUS_NOT_SUPPORTED);
1092
Johan Hedberga7e80f22013-01-09 16:05:19 +02001093 if (cp->val != 0x00 && cp->val != 0x01)
1094 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1095 MGMT_STATUS_INVALID_PARAMS);
1096
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001097 hci_dev_lock(hdev);
1098
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001099 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001100 bool changed = false;
1101
1102 if (!!cp->val != test_bit(HCI_LINK_SECURITY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001103 &hdev->dev_flags)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001104 change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
1105 changed = true;
1106 }
1107
1108 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1109 if (err < 0)
1110 goto failed;
1111
1112 if (changed)
1113 err = new_settings(hdev, sk);
1114
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001115 goto failed;
1116 }
1117
1118 if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001119 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001120 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001121 goto failed;
1122 }
1123
1124 val = !!cp->val;
1125
1126 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
1127 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1128 goto failed;
1129 }
1130
1131 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
1132 if (!cmd) {
1133 err = -ENOMEM;
1134 goto failed;
1135 }
1136
1137 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
1138 if (err < 0) {
1139 mgmt_pending_remove(cmd);
1140 goto failed;
1141 }
1142
1143failed:
1144 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001145 return err;
1146}
1147
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001148static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001149{
1150 struct mgmt_mode *cp = data;
1151 struct pending_cmd *cmd;
Johan Hedberg816a11d2012-02-26 13:04:52 +02001152 u8 val;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001153 int err;
1154
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001155 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001156
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001157 if (!lmp_ssp_capable(hdev))
1158 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1159 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001160
Johan Hedberga7e80f22013-01-09 16:05:19 +02001161 if (cp->val != 0x00 && cp->val != 0x01)
1162 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1163 MGMT_STATUS_INVALID_PARAMS);
1164
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001165 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02001166
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001167 val = !!cp->val;
1168
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001169 if (!hdev_is_powered(hdev)) {
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001170 bool changed = false;
1171
1172 if (val != test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
1173 change_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
1174 changed = true;
1175 }
1176
1177 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1178 if (err < 0)
1179 goto failed;
1180
1181 if (changed)
1182 err = new_settings(hdev, sk);
1183
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001184 goto failed;
1185 }
1186
1187 if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev)) {
Szymon Jancd97dcb62012-03-16 16:02:56 +01001188 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1189 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001190 goto failed;
1191 }
1192
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001193 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) == val) {
1194 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1195 goto failed;
1196 }
1197
1198 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
1199 if (!cmd) {
1200 err = -ENOMEM;
1201 goto failed;
1202 }
1203
1204 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(val), &val);
1205 if (err < 0) {
1206 mgmt_pending_remove(cmd);
1207 goto failed;
1208 }
1209
1210failed:
1211 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001212 return err;
1213}
1214
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001215static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001216{
1217 struct mgmt_mode *cp = data;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001218
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001219 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001220
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001221 if (!enable_hs)
1222 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001223 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001224
Johan Hedberga7e80f22013-01-09 16:05:19 +02001225 if (cp->val != 0x00 && cp->val != 0x01)
1226 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1227 MGMT_STATUS_INVALID_PARAMS);
1228
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001229 if (cp->val)
1230 set_bit(HCI_HS_ENABLED, &hdev->dev_flags);
1231 else
1232 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
1233
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001234 return send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001235}
1236
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001237static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001238{
1239 struct mgmt_mode *cp = data;
1240 struct hci_cp_write_le_host_supported hci_cp;
1241 struct pending_cmd *cmd;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001242 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001243 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001244
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001245 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001246
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001247 if (!lmp_le_capable(hdev))
1248 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1249 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001250
Johan Hedberga7e80f22013-01-09 16:05:19 +02001251 if (cp->val != 0x00 && cp->val != 0x01)
1252 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1253 MGMT_STATUS_INVALID_PARAMS);
1254
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001255 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001256
1257 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001258 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001259
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001260 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02001261 bool changed = false;
1262
1263 if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
1264 change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
1265 changed = true;
1266 }
1267
1268 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
1269 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08001270 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001271
1272 if (changed)
1273 err = new_settings(hdev, sk);
1274
Johan Hedberg1de028c2012-02-29 19:55:35 -08001275 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001276 }
1277
1278 if (mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001279 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001280 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001281 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001282 }
1283
1284 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
1285 if (!cmd) {
1286 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08001287 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001288 }
1289
1290 memset(&hci_cp, 0, sizeof(hci_cp));
1291
1292 if (val) {
1293 hci_cp.le = val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001294 hci_cp.simul = lmp_le_br_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001295 }
1296
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001297 err = hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
1298 &hci_cp);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301299 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001300 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001301
Johan Hedberg1de028c2012-02-29 19:55:35 -08001302unlock:
1303 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001304 return err;
1305}
1306
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001307static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001308{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001309 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001310 struct pending_cmd *cmd;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001311 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001312 int err;
1313
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001314 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001315
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001316 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001317
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001318 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001319 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001320 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001321 goto failed;
1322 }
1323
Andre Guedes92c4c202012-06-07 19:05:44 -03001324 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001325 if (!uuid) {
1326 err = -ENOMEM;
1327 goto failed;
1328 }
1329
1330 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001331 uuid->svc_hint = cp->svc_hint;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001332
1333 list_add(&uuid->list, &hdev->uuids);
1334
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001335 err = update_class(hdev);
1336 if (err < 0)
1337 goto failed;
1338
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001339 err = update_eir(hdev);
1340 if (err < 0)
1341 goto failed;
1342
Johan Hedberg90e70452012-02-23 23:09:40 +02001343 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001344 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001345 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001346 goto failed;
1347 }
1348
1349 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301350 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001351 err = -ENOMEM;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001352
1353failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001354 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001355 return err;
1356}
1357
Johan Hedberg24b78d02012-02-23 23:24:30 +02001358static bool enable_service_cache(struct hci_dev *hdev)
1359{
1360 if (!hdev_is_powered(hdev))
1361 return false;
1362
1363 if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02001364 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
1365 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02001366 return true;
1367 }
1368
1369 return false;
1370}
1371
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001372static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001373 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001374{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001375 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001376 struct pending_cmd *cmd;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001377 struct list_head *p, *n;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001378 u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001379 int err, found;
1380
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001381 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001382
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001383 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001384
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001385 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001386 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001387 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001388 goto unlock;
1389 }
1390
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001391 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
1392 err = hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02001393
Johan Hedberg24b78d02012-02-23 23:24:30 +02001394 if (enable_service_cache(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001395 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001396 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02001397 goto unlock;
1398 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02001399
Johan Hedberg9246a862012-02-23 21:33:16 +02001400 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001401 }
1402
1403 found = 0;
1404
1405 list_for_each_safe(p, n, &hdev->uuids) {
1406 struct bt_uuid *match = list_entry(p, struct bt_uuid, list);
1407
1408 if (memcmp(match->uuid, cp->uuid, 16) != 0)
1409 continue;
1410
1411 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01001412 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001413 found++;
1414 }
1415
1416 if (found == 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001417 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001418 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001419 goto unlock;
1420 }
1421
Johan Hedberg9246a862012-02-23 21:33:16 +02001422update_class:
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001423 err = update_class(hdev);
1424 if (err < 0)
1425 goto unlock;
1426
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001427 err = update_eir(hdev);
1428 if (err < 0)
1429 goto unlock;
1430
Johan Hedberg90e70452012-02-23 23:09:40 +02001431 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001432 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001433 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001434 goto unlock;
1435 }
1436
1437 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301438 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001439 err = -ENOMEM;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001440
1441unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001442 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001443 return err;
1444}
1445
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001446static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001447 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001448{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001449 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001450 struct pending_cmd *cmd;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001451 int err;
1452
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001453 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001454
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001455 if (!lmp_bredr_capable(hdev))
1456 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1457 MGMT_STATUS_NOT_SUPPORTED);
1458
1459 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags))
1460 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1461 MGMT_STATUS_BUSY);
1462
1463 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0)
1464 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1465 MGMT_STATUS_INVALID_PARAMS);
1466
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001467 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001468
1469 hdev->major_class = cp->major;
1470 hdev->minor_class = cp->minor;
1471
Johan Hedberg932f5ff2012-02-22 22:11:32 +02001472 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001473 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001474 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02001475 goto unlock;
1476 }
1477
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001478 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02001479 hci_dev_unlock(hdev);
1480 cancel_delayed_work_sync(&hdev->service_cache);
1481 hci_dev_lock(hdev);
Johan Hedberg14c0b602011-12-15 00:47:37 +02001482 update_eir(hdev);
Johan Hedberg7d785252011-12-15 00:47:39 +02001483 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02001484
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001485 err = update_class(hdev);
Johan Hedberg90e70452012-02-23 23:09:40 +02001486 if (err < 0)
1487 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001488
Johan Hedberg90e70452012-02-23 23:09:40 +02001489 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001490 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001491 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001492 goto unlock;
1493 }
1494
1495 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301496 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001497 err = -ENOMEM;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001498
Johan Hedbergb5235a62012-02-21 14:32:24 +02001499unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001500 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001501 return err;
1502}
1503
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001504static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001505 u16 len)
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001506{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001507 struct mgmt_cp_load_link_keys *cp = data;
Szymon Janc4e51eae2011-02-25 19:05:48 +01001508 u16 key_count, expected_len;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001509 int i;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001510
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001511 key_count = __le16_to_cpu(cp->key_count);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001512
Johan Hedberg86742e12011-11-07 23:13:38 +02001513 expected_len = sizeof(*cp) + key_count *
1514 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001515 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02001516 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001517 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001518 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001519 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001520 }
1521
Johan Hedberg4ae14302013-01-20 14:27:13 +02001522 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
1523 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
1524 MGMT_STATUS_INVALID_PARAMS);
1525
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001526 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001527 key_count);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001528
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001529 for (i = 0; i < key_count; i++) {
1530 struct mgmt_link_key_info *key = &cp->keys[i];
1531
1532 if (key->addr.type != BDADDR_BREDR)
1533 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
1534 MGMT_STATUS_INVALID_PARAMS);
1535 }
1536
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001537 hci_dev_lock(hdev);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001538
1539 hci_link_keys_clear(hdev);
1540
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001541 set_bit(HCI_LINK_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001542
1543 if (cp->debug_keys)
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001544 set_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001545 else
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001546 clear_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001547
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001548 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02001549 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001550
Johan Hedbergd753fdc2012-02-17 14:06:34 +02001551 hci_add_link_key(hdev, NULL, 0, &key->addr.bdaddr, key->val,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001552 key->type, key->pin_len);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001553 }
1554
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001555 cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02001556
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001557 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001558
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001559 return 0;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001560}
1561
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001562static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001563 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001564{
1565 struct mgmt_ev_device_unpaired ev;
1566
1567 bacpy(&ev.addr.bdaddr, bdaddr);
1568 ev.addr.type = addr_type;
1569
1570 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001571 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001572}
1573
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001574static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001575 u16 len)
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001576{
Johan Hedberg124f6e32012-02-09 13:50:12 +02001577 struct mgmt_cp_unpair_device *cp = data;
1578 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02001579 struct hci_cp_disconnect dc;
1580 struct pending_cmd *cmd;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001581 struct hci_conn *conn;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001582 int err;
1583
Johan Hedberga8a1d192011-11-10 15:54:38 +02001584 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02001585 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
1586 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02001587
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001588 if (!bdaddr_type_is_valid(cp->addr.type))
1589 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
1590 MGMT_STATUS_INVALID_PARAMS,
1591 &rp, sizeof(rp));
1592
1593 hci_dev_lock(hdev);
1594
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001595 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001596 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001597 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001598 goto unlock;
1599 }
1600
Andre Guedes591f47f2012-04-24 21:02:49 -03001601 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg124f6e32012-02-09 13:50:12 +02001602 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
1603 else
1604 err = hci_remove_ltk(hdev, &cp->addr.bdaddr);
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03001605
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001606 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001607 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001608 MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp));
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001609 goto unlock;
1610 }
1611
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001612 if (cp->disconnect) {
Andre Guedes591f47f2012-04-24 21:02:49 -03001613 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001614 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001615 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001616 else
1617 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001618 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001619 } else {
1620 conn = NULL;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001621 }
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001622
Johan Hedberga8a1d192011-11-10 15:54:38 +02001623 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001624 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001625 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001626 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02001627 goto unlock;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001628 }
1629
Johan Hedberg124f6e32012-02-09 13:50:12 +02001630 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001631 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02001632 if (!cmd) {
1633 err = -ENOMEM;
1634 goto unlock;
1635 }
1636
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001637 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02001638 dc.reason = 0x13; /* Remote User Terminated Connection */
1639 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1640 if (err < 0)
1641 mgmt_pending_remove(cmd);
1642
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001643unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001644 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001645 return err;
1646}
1647
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001648static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001649 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02001650{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001651 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001652 struct hci_cp_disconnect dc;
Johan Hedberg366a0332011-02-19 12:05:55 -03001653 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001654 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001655 int err;
1656
1657 BT_DBG("");
1658
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001659 if (!bdaddr_type_is_valid(cp->addr.type))
1660 return cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
1661 MGMT_STATUS_INVALID_PARAMS);
1662
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001663 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001664
1665 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001666 err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001667 MGMT_STATUS_NOT_POWERED);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001668 goto failed;
1669 }
1670
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001671 if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001672 err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001673 MGMT_STATUS_BUSY);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001674 goto failed;
1675 }
1676
Andre Guedes591f47f2012-04-24 21:02:49 -03001677 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001678 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
1679 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001680 else
1681 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03001682
Vishal Agarwalf9607272012-06-13 05:32:43 +05301683 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001684 err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001685 MGMT_STATUS_NOT_CONNECTED);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001686 goto failed;
1687 }
1688
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001689 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03001690 if (!cmd) {
1691 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001692 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03001693 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02001694
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001695 dc.handle = cpu_to_le16(conn->handle);
Andre Guedes3701f942012-06-11 18:41:12 -03001696 dc.reason = HCI_ERROR_REMOTE_USER_TERM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001697
1698 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1699 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03001700 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001701
1702failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001703 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001704 return err;
1705}
1706
Andre Guedes57c14772012-04-24 21:02:50 -03001707static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02001708{
1709 switch (link_type) {
1710 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02001711 switch (addr_type) {
1712 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03001713 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03001714
Johan Hedberg48264f02011-11-09 13:58:58 +02001715 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03001716 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03001717 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02001718 }
Andre Guedes0ed09142012-04-03 08:46:54 -03001719
Johan Hedberg4c659c32011-11-07 23:13:39 +02001720 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03001721 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03001722 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001723 }
1724}
1725
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001726static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
1727 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02001728{
Johan Hedberg2784eb42011-01-21 13:56:35 +02001729 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001730 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02001731 size_t rp_len;
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001732 int err;
1733 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02001734
1735 BT_DBG("");
1736
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001737 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001738
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001739 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001740 err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001741 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001742 goto unlock;
1743 }
1744
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001745 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02001746 list_for_each_entry(c, &hdev->conn_hash.list, list) {
1747 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001748 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02001749 }
1750
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001751 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03001752 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02001753 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02001754 err = -ENOMEM;
1755 goto unlock;
1756 }
1757
Johan Hedberg2784eb42011-01-21 13:56:35 +02001758 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001759 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02001760 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
1761 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001762 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03001763 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03001764 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02001765 continue;
1766 i++;
1767 }
1768
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001769 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001770
Johan Hedberg4c659c32011-11-07 23:13:39 +02001771 /* Recalculate length in case of filtered SCO connections, etc */
1772 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02001773
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001774 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001775 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001776
Johan Hedberga38528f2011-01-22 06:46:43 +02001777 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001778
1779unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001780 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001781 return err;
1782}
1783
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001784static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001785 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001786{
1787 struct pending_cmd *cmd;
1788 int err;
1789
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001790 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001791 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001792 if (!cmd)
1793 return -ENOMEM;
1794
Johan Hedbergd8457692012-02-17 14:24:57 +02001795 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001796 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001797 if (err < 0)
1798 mgmt_pending_remove(cmd);
1799
1800 return err;
1801}
1802
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001803static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001804 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02001805{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001806 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001807 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001808 struct hci_cp_pin_code_reply reply;
Johan Hedberg366a0332011-02-19 12:05:55 -03001809 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001810 int err;
1811
1812 BT_DBG("");
1813
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001814 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001815
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001816 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001817 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001818 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001819 goto failed;
1820 }
1821
Johan Hedbergd8457692012-02-17 14:24:57 +02001822 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001823 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001824 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001825 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001826 goto failed;
1827 }
1828
1829 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02001830 struct mgmt_cp_pin_code_neg_reply ncp;
1831
1832 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001833
1834 BT_ERR("PIN code is not 16 bytes long");
1835
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001836 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001837 if (err >= 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001838 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001839 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001840
1841 goto failed;
1842 }
1843
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03001844 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03001845 if (!cmd) {
1846 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001847 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03001848 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02001849
Johan Hedbergd8457692012-02-17 14:24:57 +02001850 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001851 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02001852 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02001853
1854 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
1855 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03001856 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001857
1858failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001859 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001860 return err;
1861}
1862
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001863static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
1864 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001865{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001866 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001867
1868 BT_DBG("");
1869
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001870 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001871
1872 hdev->io_capability = cp->io_capability;
1873
1874 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001875 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001876
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001877 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001878
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001879 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL,
1880 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001881}
1882
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001883static struct pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001884{
1885 struct hci_dev *hdev = conn->hdev;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001886 struct pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001887
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001888 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03001889 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
1890 continue;
1891
Johan Hedberge9a416b2011-02-19 12:05:56 -03001892 if (cmd->user_data != conn)
1893 continue;
1894
1895 return cmd;
1896 }
1897
1898 return NULL;
1899}
1900
1901static void pairing_complete(struct pending_cmd *cmd, u8 status)
1902{
1903 struct mgmt_rp_pair_device rp;
1904 struct hci_conn *conn = cmd->user_data;
1905
Johan Hedbergba4e5642011-11-11 00:07:34 +02001906 bacpy(&rp.addr.bdaddr, &conn->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03001907 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001908
Johan Hedbergaee9b212012-02-18 15:07:59 +02001909 cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001910 &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001911
1912 /* So we don't get further callbacks for this connection */
1913 conn->connect_cfm_cb = NULL;
1914 conn->security_cfm_cb = NULL;
1915 conn->disconn_cfm_cb = NULL;
1916
1917 hci_conn_put(conn);
1918
Johan Hedberga664b5b2011-02-19 12:06:02 -03001919 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001920}
1921
1922static void pairing_complete_cb(struct hci_conn *conn, u8 status)
1923{
1924 struct pending_cmd *cmd;
1925
1926 BT_DBG("status %u", status);
1927
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001928 cmd = find_pairing(conn);
1929 if (!cmd)
1930 BT_DBG("Unable to find a pending command");
1931 else
Johan Hedberge2113262012-02-18 15:20:03 +02001932 pairing_complete(cmd, mgmt_status(status));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001933}
1934
Vishal Agarwal4c47d732012-06-07 20:27:35 +05301935static void le_connect_complete_cb(struct hci_conn *conn, u8 status)
1936{
1937 struct pending_cmd *cmd;
1938
1939 BT_DBG("status %u", status);
1940
1941 if (!status)
1942 return;
1943
1944 cmd = find_pairing(conn);
1945 if (!cmd)
1946 BT_DBG("Unable to find a pending command");
1947 else
1948 pairing_complete(cmd, mgmt_status(status));
1949}
1950
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001951static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001952 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001953{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001954 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02001955 struct mgmt_rp_pair_device rp;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001956 struct pending_cmd *cmd;
1957 u8 sec_level, auth_type;
1958 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001959 int err;
1960
1961 BT_DBG("");
1962
Szymon Jancf950a302013-01-18 12:48:07 +01001963 memset(&rp, 0, sizeof(rp));
1964 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
1965 rp.addr.type = cp->addr.type;
1966
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001967 if (!bdaddr_type_is_valid(cp->addr.type))
1968 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
1969 MGMT_STATUS_INVALID_PARAMS,
1970 &rp, sizeof(rp));
1971
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001972 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001973
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001974 if (!hdev_is_powered(hdev)) {
Szymon Jancf950a302013-01-18 12:48:07 +01001975 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
1976 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001977 goto unlock;
1978 }
1979
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03001980 sec_level = BT_SECURITY_MEDIUM;
1981 if (cp->io_cap == 0x03)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001982 auth_type = HCI_AT_DEDICATED_BONDING;
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03001983 else
Johan Hedberge9a416b2011-02-19 12:05:56 -03001984 auth_type = HCI_AT_DEDICATED_BONDING_MITM;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001985
Andre Guedes591f47f2012-04-24 21:02:49 -03001986 if (cp->addr.type == BDADDR_BREDR)
Andre Guedesb12f62c2012-04-24 21:02:54 -03001987 conn = hci_connect(hdev, ACL_LINK, &cp->addr.bdaddr,
1988 cp->addr.type, sec_level, auth_type);
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001989 else
Andre Guedesb12f62c2012-04-24 21:02:54 -03001990 conn = hci_connect(hdev, LE_LINK, &cp->addr.bdaddr,
1991 cp->addr.type, sec_level, auth_type);
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001992
Ville Tervo30e76272011-02-22 16:10:53 -03001993 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02001994 int status;
1995
1996 if (PTR_ERR(conn) == -EBUSY)
1997 status = MGMT_STATUS_BUSY;
1998 else
1999 status = MGMT_STATUS_CONNECT_FAILED;
2000
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002001 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002002 status, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002003 sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002004 goto unlock;
2005 }
2006
2007 if (conn->connect_cfm_cb) {
2008 hci_conn_put(conn);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002009 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002010 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002011 goto unlock;
2012 }
2013
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002014 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002015 if (!cmd) {
2016 err = -ENOMEM;
2017 hci_conn_put(conn);
2018 goto unlock;
2019 }
2020
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002021 /* For LE, just connecting isn't a proof that the pairing finished */
Andre Guedes591f47f2012-04-24 21:02:49 -03002022 if (cp->addr.type == BDADDR_BREDR)
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002023 conn->connect_cfm_cb = pairing_complete_cb;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302024 else
2025 conn->connect_cfm_cb = le_connect_complete_cb;
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002026
Johan Hedberge9a416b2011-02-19 12:05:56 -03002027 conn->security_cfm_cb = pairing_complete_cb;
2028 conn->disconn_cfm_cb = pairing_complete_cb;
2029 conn->io_capability = cp->io_cap;
2030 cmd->user_data = conn;
2031
2032 if (conn->state == BT_CONNECTED &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002033 hci_conn_security(conn, sec_level, auth_type))
Johan Hedberge9a416b2011-02-19 12:05:56 -03002034 pairing_complete(cmd, 0);
2035
2036 err = 0;
2037
2038unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002039 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002040 return err;
2041}
2042
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002043static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2044 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02002045{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002046 struct mgmt_addr_info *addr = data;
Johan Hedberg28424702012-02-02 04:02:29 +02002047 struct pending_cmd *cmd;
2048 struct hci_conn *conn;
2049 int err;
2050
2051 BT_DBG("");
2052
Johan Hedberg28424702012-02-02 04:02:29 +02002053 hci_dev_lock(hdev);
2054
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002055 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002056 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002057 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002058 goto unlock;
2059 }
2060
Johan Hedberg28424702012-02-02 04:02:29 +02002061 cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
2062 if (!cmd) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002063 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002064 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002065 goto unlock;
2066 }
2067
2068 conn = cmd->user_data;
2069
2070 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002071 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002072 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002073 goto unlock;
2074 }
2075
2076 pairing_complete(cmd, MGMT_STATUS_CANCELLED);
2077
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002078 err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002079 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02002080unlock:
2081 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02002082 return err;
2083}
2084
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002085static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002086 bdaddr_t *bdaddr, u8 type, u16 mgmt_op,
2087 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03002088{
Johan Hedberga5c29682011-02-19 12:05:57 -03002089 struct pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08002090 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03002091 int err;
2092
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002093 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02002094
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002095 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002096 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002097 MGMT_STATUS_NOT_POWERED);
Brian Gix0df4c182011-11-16 13:53:13 -08002098 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002099 }
2100
Andre Guedes591f47f2012-04-24 21:02:49 -03002101 if (type == BDADDR_BREDR)
Johan Hedberg272d90d2012-02-09 15:26:12 +02002102 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, bdaddr);
2103 else
Brian Gix47c15e22011-11-16 13:53:14 -08002104 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08002105
Johan Hedberg272d90d2012-02-09 15:26:12 +02002106 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002107 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002108 MGMT_STATUS_NOT_CONNECTED);
Johan Hedberg272d90d2012-02-09 15:26:12 +02002109 goto done;
2110 }
2111
Andre Guedes591f47f2012-04-24 21:02:49 -03002112 if (type == BDADDR_LE_PUBLIC || type == BDADDR_LE_RANDOM) {
Brian Gix47c15e22011-11-16 13:53:14 -08002113 /* Continue with pairing via SMP */
Brian Gix5fe57d92011-12-21 16:12:13 -08002114 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix47c15e22011-11-16 13:53:14 -08002115
Brian Gix5fe57d92011-12-21 16:12:13 -08002116 if (!err)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002117 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002118 MGMT_STATUS_SUCCESS);
Brian Gix5fe57d92011-12-21 16:12:13 -08002119 else
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002120 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002121 MGMT_STATUS_FAILED);
Brian Gix5fe57d92011-12-21 16:12:13 -08002122
Brian Gix47c15e22011-11-16 13:53:14 -08002123 goto done;
2124 }
2125
Brian Gix0df4c182011-11-16 13:53:13 -08002126 cmd = mgmt_pending_add(sk, mgmt_op, hdev, bdaddr, sizeof(*bdaddr));
Johan Hedberga5c29682011-02-19 12:05:57 -03002127 if (!cmd) {
2128 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08002129 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002130 }
2131
Brian Gix0df4c182011-11-16 13:53:13 -08002132 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08002133 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
2134 struct hci_cp_user_passkey_reply cp;
2135
2136 bacpy(&cp.bdaddr, bdaddr);
2137 cp.passkey = passkey;
2138 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
2139 } else
2140 err = hci_send_cmd(hdev, hci_op, sizeof(*bdaddr), bdaddr);
2141
Johan Hedberga664b5b2011-02-19 12:06:02 -03002142 if (err < 0)
2143 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03002144
Brian Gix0df4c182011-11-16 13:53:13 -08002145done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002146 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03002147 return err;
2148}
2149
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05302150static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
2151 void *data, u16 len)
2152{
2153 struct mgmt_cp_pin_code_neg_reply *cp = data;
2154
2155 BT_DBG("");
2156
2157 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
2158 MGMT_OP_PIN_CODE_NEG_REPLY,
2159 HCI_OP_PIN_CODE_NEG_REPLY, 0);
2160}
2161
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002162static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2163 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08002164{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002165 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08002166
2167 BT_DBG("");
2168
2169 if (len != sizeof(*cp))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002170 return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002171 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08002172
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002173 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002174 MGMT_OP_USER_CONFIRM_REPLY,
2175 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08002176}
2177
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002178static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002179 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08002180{
Johan Hedbergc9c26592011-12-15 00:47:41 +02002181 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08002182
2183 BT_DBG("");
2184
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002185 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002186 MGMT_OP_USER_CONFIRM_NEG_REPLY,
2187 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08002188}
2189
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002190static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2191 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08002192{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002193 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08002194
2195 BT_DBG("");
2196
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002197 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002198 MGMT_OP_USER_PASSKEY_REPLY,
2199 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08002200}
2201
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002202static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002203 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08002204{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002205 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08002206
2207 BT_DBG("");
2208
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002209 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002210 MGMT_OP_USER_PASSKEY_NEG_REPLY,
2211 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08002212}
2213
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002214static int update_name(struct hci_dev *hdev, const char *name)
2215{
2216 struct hci_cp_write_local_name cp;
2217
2218 memcpy(cp.name, name, sizeof(cp.name));
2219
2220 return hci_send_cmd(hdev, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
2221}
2222
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002223static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002224 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02002225{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002226 struct mgmt_cp_set_local_name *cp = data;
Johan Hedbergb312b1612011-03-16 14:29:37 +02002227 struct pending_cmd *cmd;
2228 int err;
2229
2230 BT_DBG("");
2231
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002232 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002233
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002234 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002235
Johan Hedbergb5235a62012-02-21 14:32:24 +02002236 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002237 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002238
2239 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002240 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002241 if (err < 0)
2242 goto failed;
2243
2244 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002245 sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002246
Johan Hedbergb5235a62012-02-21 14:32:24 +02002247 goto failed;
2248 }
2249
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002250 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002251 if (!cmd) {
2252 err = -ENOMEM;
2253 goto failed;
2254 }
2255
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002256 err = update_name(hdev, cp->name);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002257 if (err < 0)
2258 mgmt_pending_remove(cmd);
2259
2260failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002261 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002262 return err;
2263}
2264
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002265static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002266 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01002267{
Szymon Jancc35938b2011-03-22 13:12:21 +01002268 struct pending_cmd *cmd;
2269 int err;
2270
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002271 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01002272
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002273 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01002274
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002275 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002276 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002277 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01002278 goto unlock;
2279 }
2280
Andre Guedes9a1a1992012-07-24 15:03:48 -03002281 if (!lmp_ssp_capable(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002282 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002283 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01002284 goto unlock;
2285 }
2286
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002287 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002288 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002289 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01002290 goto unlock;
2291 }
2292
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002293 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01002294 if (!cmd) {
2295 err = -ENOMEM;
2296 goto unlock;
2297 }
2298
2299 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
2300 if (err < 0)
2301 mgmt_pending_remove(cmd);
2302
2303unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002304 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01002305 return err;
2306}
2307
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002308static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002309 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01002310{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002311 struct mgmt_cp_add_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002312 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01002313 int err;
2314
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002315 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01002316
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002317 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002318
Johan Hedberg664ce4c2012-02-09 15:44:09 +02002319 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr, cp->hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002320 cp->randomizer);
Szymon Janc2763eda2011-03-22 13:12:22 +01002321 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002322 status = MGMT_STATUS_FAILED;
Szymon Janc2763eda2011-03-22 13:12:22 +01002323 else
Szymon Janca6785be2012-12-13 15:11:21 +01002324 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002325
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002326 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002327 &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01002328
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002329 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002330 return err;
2331}
2332
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002333static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002334 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01002335{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002336 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002337 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01002338 int err;
2339
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002340 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01002341
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002342 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002343
Johan Hedberg664ce4c2012-02-09 15:44:09 +02002344 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01002345 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002346 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01002347 else
Szymon Janca6785be2012-12-13 15:11:21 +01002348 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002349
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002350 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002351 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01002352
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002353 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002354 return err;
2355}
2356
Andre Guedes5e0452c2012-02-17 20:39:38 -03002357int mgmt_interleaved_discovery(struct hci_dev *hdev)
2358{
2359 int err;
2360
2361 BT_DBG("%s", hdev->name);
2362
2363 hci_dev_lock(hdev);
2364
2365 err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR_LE);
2366 if (err < 0)
2367 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2368
2369 hci_dev_unlock(hdev);
2370
2371 return err;
2372}
2373
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002374static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002375 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04002376{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002377 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04002378 struct pending_cmd *cmd;
Johan Hedberg14a53662011-04-27 10:29:56 -04002379 int err;
2380
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002381 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04002382
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002383 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002384
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002385 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002386 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002387 MGMT_STATUS_NOT_POWERED);
Johan Hedbergbd2d1332011-11-07 23:13:37 +02002388 goto failed;
2389 }
2390
Andre Guedes642be6c2012-03-21 00:03:37 -03002391 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
2392 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2393 MGMT_STATUS_BUSY);
2394 goto failed;
2395 }
2396
Johan Hedbergff9ef572012-01-04 14:23:45 +02002397 if (hdev->discovery.state != DISCOVERY_STOPPED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002398 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002399 MGMT_STATUS_BUSY);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002400 goto failed;
2401 }
2402
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002403 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04002404 if (!cmd) {
2405 err = -ENOMEM;
2406 goto failed;
2407 }
2408
Andre Guedes4aab14e2012-02-17 20:39:36 -03002409 hdev->discovery.type = cp->type;
2410
2411 switch (hdev->discovery.type) {
Andre Guedesf39799f2012-02-17 20:39:35 -03002412 case DISCOV_TYPE_BREDR:
Johan Hedberg04106752013-01-10 14:54:09 +02002413 if (!lmp_bredr_capable(hdev)) {
2414 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2415 MGMT_STATUS_NOT_SUPPORTED);
2416 mgmt_pending_remove(cmd);
2417 goto failed;
2418 }
2419
2420 err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR);
Andre Guedesf39799f2012-02-17 20:39:35 -03002421 break;
2422
2423 case DISCOV_TYPE_LE:
Johan Hedberg04106752013-01-10 14:54:09 +02002424 if (!lmp_host_le_capable(hdev)) {
2425 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2426 MGMT_STATUS_NOT_SUPPORTED);
2427 mgmt_pending_remove(cmd);
2428 goto failed;
2429 }
2430
2431 err = hci_le_scan(hdev, LE_SCAN_TYPE, LE_SCAN_INT,
2432 LE_SCAN_WIN, LE_SCAN_TIMEOUT_LE_ONLY);
Andre Guedesf39799f2012-02-17 20:39:35 -03002433 break;
2434
Andre Guedes5e0452c2012-02-17 20:39:38 -03002435 case DISCOV_TYPE_INTERLEAVED:
Johan Hedberg04106752013-01-10 14:54:09 +02002436 if (!lmp_host_le_capable(hdev) || !lmp_bredr_capable(hdev)) {
2437 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2438 MGMT_STATUS_NOT_SUPPORTED);
2439 mgmt_pending_remove(cmd);
2440 goto failed;
2441 }
2442
2443 err = hci_le_scan(hdev, LE_SCAN_TYPE, LE_SCAN_INT, LE_SCAN_WIN,
2444 LE_SCAN_TIMEOUT_BREDR_LE);
Andre Guedes5e0452c2012-02-17 20:39:38 -03002445 break;
2446
Andre Guedesf39799f2012-02-17 20:39:35 -03002447 default:
Johan Hedberg04106752013-01-10 14:54:09 +02002448 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2449 MGMT_STATUS_INVALID_PARAMS);
2450 mgmt_pending_remove(cmd);
2451 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03002452 }
Andre Guedes3fd24152012-02-03 17:48:01 -03002453
Johan Hedberg14a53662011-04-27 10:29:56 -04002454 if (err < 0)
2455 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002456 else
2457 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04002458
2459failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002460 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002461 return err;
2462}
2463
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002464static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002465 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04002466{
Johan Hedbergd9306502012-02-20 23:25:18 +02002467 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04002468 struct pending_cmd *cmd;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002469 struct hci_cp_remote_name_req_cancel cp;
2470 struct inquiry_entry *e;
Johan Hedberg14a53662011-04-27 10:29:56 -04002471 int err;
2472
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002473 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04002474
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002475 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002476
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002477 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002478 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002479 MGMT_STATUS_REJECTED, &mgmt_cp->type,
2480 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02002481 goto unlock;
2482 }
2483
2484 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002485 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002486 MGMT_STATUS_INVALID_PARAMS, &mgmt_cp->type,
2487 sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002488 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02002489 }
2490
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002491 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04002492 if (!cmd) {
2493 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002494 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04002495 }
2496
Andre Guedese0d97272012-03-20 15:15:36 -03002497 switch (hdev->discovery.state) {
2498 case DISCOVERY_FINDING:
Andre Guedesc9ecc482012-03-15 16:52:08 -03002499 if (test_bit(HCI_INQUIRY, &hdev->flags))
2500 err = hci_cancel_inquiry(hdev);
2501 else
2502 err = hci_cancel_le_scan(hdev);
2503
Andre Guedese0d97272012-03-20 15:15:36 -03002504 break;
2505
2506 case DISCOVERY_RESOLVING:
2507 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002508 NAME_PENDING);
Andre Guedese0d97272012-03-20 15:15:36 -03002509 if (!e) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002510 mgmt_pending_remove(cmd);
Andre Guedese0d97272012-03-20 15:15:36 -03002511 err = cmd_complete(sk, hdev->id,
2512 MGMT_OP_STOP_DISCOVERY, 0,
2513 &mgmt_cp->type,
2514 sizeof(mgmt_cp->type));
2515 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2516 goto unlock;
2517 }
2518
2519 bacpy(&cp.bdaddr, &e->data.bdaddr);
2520 err = hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ_CANCEL,
2521 sizeof(cp), &cp);
2522
2523 break;
2524
2525 default:
2526 BT_DBG("unknown discovery state %u", hdev->discovery.state);
2527 err = -EFAULT;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002528 }
2529
Johan Hedberg14a53662011-04-27 10:29:56 -04002530 if (err < 0)
2531 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002532 else
2533 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Johan Hedberg14a53662011-04-27 10:29:56 -04002534
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002535unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002536 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002537 return err;
2538}
2539
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002540static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002541 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02002542{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002543 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002544 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002545 int err;
2546
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002547 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002548
Johan Hedberg561aafb2012-01-04 13:31:59 +02002549 hci_dev_lock(hdev);
2550
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002551 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002552 err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002553 MGMT_STATUS_FAILED);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002554 goto failed;
2555 }
2556
Johan Hedberga198e7b2012-02-17 14:27:06 +02002557 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002558 if (!e) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002559 err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002560 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002561 goto failed;
2562 }
2563
2564 if (cp->name_known) {
2565 e->name_state = NAME_KNOWN;
2566 list_del(&e->list);
2567 } else {
2568 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02002569 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002570 }
2571
Johan Hedberge3846622013-01-09 15:29:33 +02002572 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr,
2573 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02002574
2575failed:
2576 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002577 return err;
2578}
2579
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002580static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002581 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03002582{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002583 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002584 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03002585 int err;
2586
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002587 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03002588
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002589 if (!bdaddr_type_is_valid(cp->addr.type))
2590 return cmd_status(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
2591 MGMT_STATUS_INVALID_PARAMS);
2592
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002593 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03002594
Johan Hedberg88c1fe42012-02-09 15:56:11 +02002595 err = hci_blacklist_add(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03002596 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002597 status = MGMT_STATUS_FAILED;
Antti Julku7fbec222011-06-15 12:01:15 +03002598 else
Szymon Janca6785be2012-12-13 15:11:21 +01002599 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002600
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002601 err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002602 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03002603
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002604 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03002605
2606 return err;
2607}
2608
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002609static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002610 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03002611{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002612 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002613 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03002614 int err;
2615
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002616 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03002617
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002618 if (!bdaddr_type_is_valid(cp->addr.type))
2619 return cmd_status(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
2620 MGMT_STATUS_INVALID_PARAMS);
2621
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002622 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03002623
Johan Hedberg88c1fe42012-02-09 15:56:11 +02002624 err = hci_blacklist_del(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03002625 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002626 status = MGMT_STATUS_INVALID_PARAMS;
Antti Julku7fbec222011-06-15 12:01:15 +03002627 else
Szymon Janca6785be2012-12-13 15:11:21 +01002628 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002629
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002630 err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002631 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03002632
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002633 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03002634
2635 return err;
2636}
2637
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002638static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
2639 u16 len)
2640{
2641 struct mgmt_cp_set_device_id *cp = data;
2642 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01002643 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002644
2645 BT_DBG("%s", hdev->name);
2646
Szymon Jancc72d4b82012-03-16 16:02:57 +01002647 source = __le16_to_cpu(cp->source);
2648
2649 if (source > 0x0002)
2650 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
2651 MGMT_STATUS_INVALID_PARAMS);
2652
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002653 hci_dev_lock(hdev);
2654
Szymon Jancc72d4b82012-03-16 16:02:57 +01002655 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002656 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
2657 hdev->devid_product = __le16_to_cpu(cp->product);
2658 hdev->devid_version = __le16_to_cpu(cp->version);
2659
2660 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);
2661
2662 update_eir(hdev);
2663
2664 hci_dev_unlock(hdev);
2665
2666 return err;
2667}
2668
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002669static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002670 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03002671{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002672 struct mgmt_mode *cp = data;
Antti Julkuf6422ec2011-06-22 13:11:56 +03002673 struct hci_cp_write_page_scan_activity acp;
2674 u8 type;
2675 int err;
2676
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002677 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002678
Johan Hedberg33c525c2012-10-24 21:11:58 +03002679 if (!lmp_bredr_capable(hdev))
2680 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2681 MGMT_STATUS_NOT_SUPPORTED);
2682
Johan Hedberga7e80f22013-01-09 16:05:19 +02002683 if (cp->val != 0x00 && cp->val != 0x01)
2684 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2685 MGMT_STATUS_INVALID_PARAMS);
2686
Johan Hedberg5400c042012-02-21 16:40:33 +02002687 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002688 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002689 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02002690
2691 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002692 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002693 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002694
2695 hci_dev_lock(hdev);
2696
Johan Hedbergf7c68692011-12-15 00:47:36 +02002697 if (cp->val) {
Antti Julkuf6422ec2011-06-22 13:11:56 +03002698 type = PAGE_SCAN_TYPE_INTERLACED;
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002699
Johan Hedberg83ce9a062012-06-28 13:44:30 +03002700 /* 160 msec page scan interval */
2701 acp.interval = __constant_cpu_to_le16(0x0100);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002702 } else {
2703 type = PAGE_SCAN_TYPE_STANDARD; /* default */
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002704
2705 /* default 1.28 sec page scan */
2706 acp.interval = __constant_cpu_to_le16(0x0800);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002707 }
2708
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002709 /* default 11.25 msec page scan window */
2710 acp.window = __constant_cpu_to_le16(0x0012);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002711
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002712 err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY, sizeof(acp),
2713 &acp);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002714 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002715 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002716 MGMT_STATUS_FAILED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002717 goto done;
2718 }
2719
2720 err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
2721 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002722 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002723 MGMT_STATUS_FAILED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002724 goto done;
2725 }
2726
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002727 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002728 NULL, 0);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002729done:
2730 hci_dev_unlock(hdev);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002731 return err;
2732}
2733
Johan Hedberg3f706b72013-01-20 14:27:16 +02002734static bool ltk_is_valid(struct mgmt_ltk_info *key)
2735{
Johan Hedberg44b20d32013-01-20 14:27:17 +02002736 if (key->authenticated != 0x00 && key->authenticated != 0x01)
2737 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02002738 if (key->master != 0x00 && key->master != 0x01)
2739 return false;
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002740 if (!bdaddr_type_is_le(key->addr.type))
2741 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02002742 return true;
2743}
2744
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002745static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002746 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002747{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002748 struct mgmt_cp_load_long_term_keys *cp = cp_data;
2749 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002750 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002751
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002752 key_count = __le16_to_cpu(cp->key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002753
2754 expected_len = sizeof(*cp) + key_count *
2755 sizeof(struct mgmt_ltk_info);
2756 if (expected_len != len) {
2757 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002758 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002759 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Johan Hedberge57e6192013-01-20 14:27:14 +02002760 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002761 }
2762
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002763 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002764
Johan Hedberg54ad6d82013-01-20 14:27:15 +02002765 for (i = 0; i < key_count; i++) {
2766 struct mgmt_ltk_info *key = &cp->keys[i];
2767
Johan Hedberg3f706b72013-01-20 14:27:16 +02002768 if (!ltk_is_valid(key))
Johan Hedberg54ad6d82013-01-20 14:27:15 +02002769 return cmd_status(sk, hdev->id,
2770 MGMT_OP_LOAD_LONG_TERM_KEYS,
2771 MGMT_STATUS_INVALID_PARAMS);
2772 }
2773
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002774 hci_dev_lock(hdev);
2775
2776 hci_smp_ltks_clear(hdev);
2777
2778 for (i = 0; i < key_count; i++) {
2779 struct mgmt_ltk_info *key = &cp->keys[i];
2780 u8 type;
2781
2782 if (key->master)
2783 type = HCI_SMP_LTK;
2784 else
2785 type = HCI_SMP_LTK_SLAVE;
2786
Hemant Gupta4596fde2012-04-16 14:57:40 +05302787 hci_add_ltk(hdev, &key->addr.bdaddr,
Andre Guedes378b5b72012-04-24 21:02:51 -03002788 bdaddr_to_le(key->addr.type),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002789 type, 0, key->authenticated, key->val,
2790 key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002791 }
2792
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002793 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
2794 NULL, 0);
2795
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002796 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002797
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002798 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002799}
2800
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02002801static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002802 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
2803 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02002804 bool var_len;
2805 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002806} mgmt_handlers[] = {
2807 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02002808 { read_version, false, MGMT_READ_VERSION_SIZE },
2809 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
2810 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
2811 { read_controller_info, false, MGMT_READ_INFO_SIZE },
2812 { set_powered, false, MGMT_SETTING_SIZE },
2813 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
2814 { set_connectable, false, MGMT_SETTING_SIZE },
2815 { set_fast_connectable, false, MGMT_SETTING_SIZE },
2816 { set_pairable, false, MGMT_SETTING_SIZE },
2817 { set_link_security, false, MGMT_SETTING_SIZE },
2818 { set_ssp, false, MGMT_SETTING_SIZE },
2819 { set_hs, false, MGMT_SETTING_SIZE },
2820 { set_le, false, MGMT_SETTING_SIZE },
2821 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
2822 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
2823 { add_uuid, false, MGMT_ADD_UUID_SIZE },
2824 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
2825 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
2826 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
2827 { disconnect, false, MGMT_DISCONNECT_SIZE },
2828 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
2829 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
2830 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
2831 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
2832 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
2833 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
2834 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
2835 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
2836 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
2837 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
2838 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
2839 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
2840 { add_remote_oob_data, false, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
2841 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
2842 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
2843 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
2844 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
2845 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
2846 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002847 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002848};
2849
2850
Johan Hedberg03811012010-12-08 00:21:06 +02002851int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
2852{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002853 void *buf;
2854 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02002855 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01002856 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002857 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02002858 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02002859 int err;
2860
2861 BT_DBG("got %zu bytes", msglen);
2862
2863 if (msglen < sizeof(*hdr))
2864 return -EINVAL;
2865
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03002866 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02002867 if (!buf)
2868 return -ENOMEM;
2869
2870 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
2871 err = -EFAULT;
2872 goto done;
2873 }
2874
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002875 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002876 opcode = __le16_to_cpu(hdr->opcode);
2877 index = __le16_to_cpu(hdr->index);
2878 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02002879
2880 if (len != msglen - sizeof(*hdr)) {
2881 err = -EINVAL;
2882 goto done;
2883 }
2884
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002885 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002886 hdev = hci_dev_get(index);
2887 if (!hdev) {
2888 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002889 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002890 goto done;
2891 }
2892 }
2893
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002894 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002895 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02002896 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02002897 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002898 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002899 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02002900 }
2901
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002902 if ((hdev && opcode < MGMT_OP_READ_INFO) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002903 (!hdev && opcode >= MGMT_OP_READ_INFO)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002904 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002905 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002906 goto done;
2907 }
2908
Johan Hedbergbe22b542012-03-01 22:24:41 +02002909 handler = &mgmt_handlers[opcode];
2910
2911 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002912 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02002913 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002914 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02002915 goto done;
2916 }
2917
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002918 if (hdev)
2919 mgmt_init_hdev(sk, hdev);
2920
2921 cp = buf + sizeof(*hdr);
2922
Johan Hedbergbe22b542012-03-01 22:24:41 +02002923 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02002924 if (err < 0)
2925 goto done;
2926
Johan Hedberg03811012010-12-08 00:21:06 +02002927 err = msglen;
2928
2929done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002930 if (hdev)
2931 hci_dev_put(hdev);
2932
Johan Hedberg03811012010-12-08 00:21:06 +02002933 kfree(buf);
2934 return err;
2935}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002936
Johan Hedbergb24752f2011-11-03 14:40:33 +02002937static void cmd_status_rsp(struct pending_cmd *cmd, void *data)
2938{
2939 u8 *status = data;
2940
2941 cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
2942 mgmt_pending_remove(cmd);
2943}
2944
Johan Hedberg744cf192011-11-08 20:40:14 +02002945int mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002946{
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03002947 if (!mgmt_valid_hdev(hdev))
2948 return -ENOTSUPP;
2949
Johan Hedberg744cf192011-11-08 20:40:14 +02002950 return mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002951}
2952
Johan Hedberg744cf192011-11-08 20:40:14 +02002953int mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002954{
Johan Hedberg5f159032012-03-02 03:13:19 +02002955 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02002956
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03002957 if (!mgmt_valid_hdev(hdev))
2958 return -ENOTSUPP;
2959
Johan Hedberg744cf192011-11-08 20:40:14 +02002960 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02002961
Johan Hedberg744cf192011-11-08 20:40:14 +02002962 return mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002963}
2964
Johan Hedberg73f22f62010-12-29 16:00:25 +02002965struct cmd_lookup {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002966 struct sock *sk;
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002967 struct hci_dev *hdev;
Johan Hedberg90e70452012-02-23 23:09:40 +02002968 u8 mgmt_status;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002969};
2970
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002971static void settings_rsp(struct pending_cmd *cmd, void *data)
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002972{
Johan Hedberg73f22f62010-12-29 16:00:25 +02002973 struct cmd_lookup *match = data;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002974
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002975 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002976
2977 list_del(&cmd->list);
2978
2979 if (match->sk == NULL) {
2980 match->sk = cmd->sk;
2981 sock_hold(match->sk);
2982 }
2983
2984 mgmt_pending_free(cmd);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002985}
Johan Hedberg5add6af2010-12-16 10:00:37 +02002986
Johan Hedberg7f0ae642012-10-24 21:11:57 +03002987static int set_bredr_scan(struct hci_dev *hdev)
2988{
2989 u8 scan = 0;
2990
2991 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
2992 scan |= SCAN_PAGE;
2993 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
2994 scan |= SCAN_INQUIRY;
2995
2996 if (!scan)
2997 return 0;
2998
2999 return hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
3000}
3001
Johan Hedberg744cf192011-11-08 20:40:14 +02003002int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02003003{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003004 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003005 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02003006
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003007 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
3008 return 0;
3009
Johan Hedberg69ab39e2011-12-15 00:47:35 +02003010 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg5add6af2010-12-16 10:00:37 +02003011
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003012 if (powered) {
Johan Hedberg6b4b73e2012-10-25 00:09:52 +03003013 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
3014 !lmp_host_ssp_capable(hdev)) {
Andrzej Kaczmarek3d1cbdd2012-08-29 10:02:08 +02003015 u8 ssp = 1;
3016
3017 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &ssp);
3018 }
3019
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02003020 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
3021 struct hci_cp_write_le_host_supported cp;
3022
3023 cp.le = 1;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02003024 cp.simul = lmp_le_br_capable(hdev);
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02003025
Johan Hedberg430a61b2012-10-25 00:09:53 +03003026 /* Check first if we already have the right
3027 * host state (host features set)
3028 */
Gustavo Padovanffa88e02012-11-23 16:50:51 -02003029 if (cp.le != lmp_host_le_capable(hdev) ||
3030 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg430a61b2012-10-25 00:09:53 +03003031 hci_send_cmd(hdev,
3032 HCI_OP_WRITE_LE_HOST_SUPPORTED,
3033 sizeof(cp), &cp);
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02003034 }
3035
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003036 if (lmp_bredr_capable(hdev)) {
3037 set_bredr_scan(hdev);
3038 update_class(hdev);
3039 update_name(hdev, hdev->dev_name);
3040 update_eir(hdev);
3041 }
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003042 } else {
Johan Hedbergd4f68522012-03-02 03:07:07 +02003043 u8 status = MGMT_STATUS_NOT_POWERED;
Johan Hedbergfe038882013-01-16 16:15:34 +02003044 u8 zero_cod[] = { 0, 0, 0 };
3045
Johan Hedberg744cf192011-11-08 20:40:14 +02003046 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergfe038882013-01-16 16:15:34 +02003047
3048 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
3049 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
3050 zero_cod, sizeof(zero_cod), NULL);
Johan Hedbergb24752f2011-11-03 14:40:33 +02003051 }
3052
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003053 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02003054
3055 if (match.sk)
3056 sock_put(match.sk);
3057
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003058 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02003059}
Johan Hedberg73f22f62010-12-29 16:00:25 +02003060
Johan Hedberg744cf192011-11-08 20:40:14 +02003061int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
Johan Hedberg73f22f62010-12-29 16:00:25 +02003062{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003063 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003064 bool changed = false;
3065 int err = 0;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003066
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003067 if (discoverable) {
3068 if (!test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3069 changed = true;
3070 } else {
3071 if (test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3072 changed = true;
3073 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02003074
Johan Hedberged9b5f22012-02-21 20:47:06 +02003075 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003076 &match);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003077
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003078 if (changed)
3079 err = new_settings(hdev, match.sk);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003080
Johan Hedberg73f22f62010-12-29 16:00:25 +02003081 if (match.sk)
3082 sock_put(match.sk);
3083
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003084 return err;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003085}
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003086
Johan Hedberg744cf192011-11-08 20:40:14 +02003087int mgmt_connectable(struct hci_dev *hdev, u8 connectable)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003088{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003089 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003090 bool changed = false;
3091 int err = 0;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003092
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003093 if (connectable) {
3094 if (!test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3095 changed = true;
3096 } else {
3097 if (test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3098 changed = true;
3099 }
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003100
Johan Hedberged9b5f22012-02-21 20:47:06 +02003101 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003102 &match);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003103
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003104 if (changed)
3105 err = new_settings(hdev, match.sk);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003106
3107 if (match.sk)
3108 sock_put(match.sk);
3109
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003110 return err;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003111}
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003112
Johan Hedberg744cf192011-11-08 20:40:14 +02003113int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003114{
Johan Hedbergca69b792011-11-11 18:10:00 +02003115 u8 mgmt_err = mgmt_status(status);
3116
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003117 if (scan & SCAN_PAGE)
Johan Hedberg744cf192011-11-08 20:40:14 +02003118 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003119 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003120
3121 if (scan & SCAN_INQUIRY)
Johan Hedberg744cf192011-11-08 20:40:14 +02003122 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003123 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003124
3125 return 0;
3126}
3127
Cristian Chilipirea53168e52012-05-09 08:44:52 +03003128int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
3129 bool persistent)
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003130{
Johan Hedberg86742e12011-11-07 23:13:38 +02003131 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003132
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003133 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003134
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003135 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02003136 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003137 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003138 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03003139 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003140 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003141
Johan Hedberg744cf192011-11-08 20:40:14 +02003142 return mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003143}
Johan Hedbergf7520542011-01-20 12:34:39 +02003144
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003145int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent)
3146{
3147 struct mgmt_ev_new_long_term_key ev;
3148
3149 memset(&ev, 0, sizeof(ev));
3150
3151 ev.store_hint = persistent;
3152 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003153 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003154 ev.key.authenticated = key->authenticated;
3155 ev.key.enc_size = key->enc_size;
3156 ev.key.ediv = key->ediv;
3157
3158 if (key->type == HCI_SMP_LTK)
3159 ev.key.master = 1;
3160
3161 memcpy(ev.key.rand, key->rand, sizeof(key->rand));
3162 memcpy(ev.key.val, key->val, sizeof(key->val));
3163
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003164 return mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev),
3165 NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003166}
3167
Johan Hedbergafc747a2012-01-15 18:11:07 +02003168int mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003169 u8 addr_type, u32 flags, u8 *name, u8 name_len,
3170 u8 *dev_class)
Johan Hedbergf7520542011-01-20 12:34:39 +02003171{
Johan Hedbergb644ba32012-01-17 21:48:47 +02003172 char buf[512];
3173 struct mgmt_ev_device_connected *ev = (void *) buf;
3174 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02003175
Johan Hedbergb644ba32012-01-17 21:48:47 +02003176 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003177 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02003178
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02003179 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02003180
Johan Hedbergb644ba32012-01-17 21:48:47 +02003181 if (name_len > 0)
3182 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003183 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003184
3185 if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
Brian Gix53156382012-03-09 14:07:03 -08003186 eir_len = eir_append_data(ev->eir, eir_len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003187 EIR_CLASS_OF_DEV, dev_class, 3);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003188
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003189 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003190
3191 return mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003192 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02003193}
3194
Johan Hedberg8962ee72011-01-20 12:40:27 +02003195static void disconnect_rsp(struct pending_cmd *cmd, void *data)
3196{
Szymon Jancc68fb7f2011-03-22 13:12:19 +01003197 struct mgmt_cp_disconnect *cp = cmd->param;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003198 struct sock **sk = data;
Johan Hedberga38528f2011-01-22 06:46:43 +02003199 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003200
Johan Hedberg88c3df12012-02-09 14:27:38 +02003201 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3202 rp.addr.type = cp->addr.type;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003203
Johan Hedbergaee9b212012-02-18 15:07:59 +02003204 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003205 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003206
3207 *sk = cmd->sk;
3208 sock_hold(*sk);
3209
Johan Hedberga664b5b2011-02-19 12:06:02 -03003210 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003211}
3212
Johan Hedberg124f6e32012-02-09 13:50:12 +02003213static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02003214{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003215 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02003216 struct mgmt_cp_unpair_device *cp = cmd->param;
3217 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003218
3219 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02003220 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3221 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003222
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003223 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
3224
Johan Hedbergaee9b212012-02-18 15:07:59 +02003225 cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02003226
3227 mgmt_pending_remove(cmd);
3228}
3229
Johan Hedbergafc747a2012-01-15 18:11:07 +02003230int mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003231 u8 link_type, u8 addr_type, u8 reason)
Johan Hedbergf7520542011-01-20 12:34:39 +02003232{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003233 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003234 struct sock *sk = NULL;
3235 int err;
3236
Johan Hedberg744cf192011-11-08 20:40:14 +02003237 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02003238
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003239 bacpy(&ev.addr.bdaddr, bdaddr);
3240 ev.addr.type = link_to_bdaddr(link_type, addr_type);
3241 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02003242
Johan Hedbergafc747a2012-01-15 18:11:07 +02003243 err = mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003244 sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003245
3246 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01003247 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003248
Johan Hedberg124f6e32012-02-09 13:50:12 +02003249 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003250 hdev);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003251
Johan Hedberg8962ee72011-01-20 12:40:27 +02003252 return err;
3253}
3254
Johan Hedberg88c3df12012-02-09 14:27:38 +02003255int mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003256 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02003257{
Johan Hedberg88c3df12012-02-09 14:27:38 +02003258 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003259 struct pending_cmd *cmd;
3260 int err;
3261
Jefferson Delfes36a75f12012-09-18 13:36:54 -04003262 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
3263 hdev);
3264
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003265 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003266 if (!cmd)
3267 return -ENOENT;
3268
Johan Hedberg88c3df12012-02-09 14:27:38 +02003269 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003270 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02003271
Johan Hedberg88c3df12012-02-09 14:27:38 +02003272 err = cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003273 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003274
Johan Hedberga664b5b2011-02-19 12:06:02 -03003275 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003276
3277 return err;
Johan Hedbergf7520542011-01-20 12:34:39 +02003278}
Johan Hedberg17d5c042011-01-22 06:09:08 +02003279
Johan Hedberg48264f02011-11-09 13:58:58 +02003280int mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003281 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02003282{
3283 struct mgmt_ev_connect_failed ev;
3284
Johan Hedberg4c659c32011-11-07 23:13:39 +02003285 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003286 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02003287 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02003288
Johan Hedberg744cf192011-11-08 20:40:14 +02003289 return mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02003290}
Johan Hedberg980e1a52011-01-22 06:10:07 +02003291
Johan Hedberg744cf192011-11-08 20:40:14 +02003292int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003293{
3294 struct mgmt_ev_pin_code_request ev;
3295
Johan Hedbergd8457692012-02-17 14:24:57 +02003296 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003297 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02003298 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003299
Johan Hedberg744cf192011-11-08 20:40:14 +02003300 return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003301 NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003302}
3303
Johan Hedberg744cf192011-11-08 20:40:14 +02003304int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003305 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003306{
3307 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003308 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003309 int err;
3310
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003311 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003312 if (!cmd)
3313 return -ENOENT;
3314
Johan Hedbergd8457692012-02-17 14:24:57 +02003315 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003316 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003317
Johan Hedbergaee9b212012-02-18 15:07:59 +02003318 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003319 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003320
Johan Hedberga664b5b2011-02-19 12:06:02 -03003321 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003322
3323 return err;
3324}
3325
Johan Hedberg744cf192011-11-08 20:40:14 +02003326int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003327 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003328{
3329 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003330 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003331 int err;
3332
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003333 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003334 if (!cmd)
3335 return -ENOENT;
3336
Johan Hedbergd8457692012-02-17 14:24:57 +02003337 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003338 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003339
Johan Hedbergaee9b212012-02-18 15:07:59 +02003340 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003341 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003342
Johan Hedberga664b5b2011-02-19 12:06:02 -03003343 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003344
3345 return err;
3346}
Johan Hedberga5c29682011-02-19 12:05:57 -03003347
Johan Hedberg744cf192011-11-08 20:40:14 +02003348int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003349 u8 link_type, u8 addr_type, __le32 value,
3350 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03003351{
3352 struct mgmt_ev_user_confirm_request ev;
3353
Johan Hedberg744cf192011-11-08 20:40:14 +02003354 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03003355
Johan Hedberg272d90d2012-02-09 15:26:12 +02003356 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003357 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003358 ev.confirm_hint = confirm_hint;
Andrei Emeltchenko78e80982012-03-09 13:00:50 +02003359 ev.value = value;
Johan Hedberga5c29682011-02-19 12:05:57 -03003360
Johan Hedberg744cf192011-11-08 20:40:14 +02003361 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003362 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03003363}
3364
Johan Hedberg272d90d2012-02-09 15:26:12 +02003365int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003366 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08003367{
3368 struct mgmt_ev_user_passkey_request ev;
3369
3370 BT_DBG("%s", hdev->name);
3371
Johan Hedberg272d90d2012-02-09 15:26:12 +02003372 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003373 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08003374
3375 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003376 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08003377}
3378
Brian Gix0df4c182011-11-16 13:53:13 -08003379static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003380 u8 link_type, u8 addr_type, u8 status,
3381 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03003382{
3383 struct pending_cmd *cmd;
3384 struct mgmt_rp_user_confirm_reply rp;
3385 int err;
3386
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003387 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003388 if (!cmd)
3389 return -ENOENT;
3390
Johan Hedberg272d90d2012-02-09 15:26:12 +02003391 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003392 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergaee9b212012-02-18 15:07:59 +02003393 err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003394 &rp, sizeof(rp));
Johan Hedberga5c29682011-02-19 12:05:57 -03003395
Johan Hedberga664b5b2011-02-19 12:06:02 -03003396 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003397
3398 return err;
3399}
3400
Johan Hedberg744cf192011-11-08 20:40:14 +02003401int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003402 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03003403{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003404 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003405 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03003406}
3407
Johan Hedberg272d90d2012-02-09 15:26:12 +02003408int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003409 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03003410{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003411 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003412 status,
3413 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03003414}
Johan Hedberg2a611692011-02-19 12:06:00 -03003415
Brian Gix604086b2011-11-23 08:28:33 -08003416int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003417 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08003418{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003419 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003420 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08003421}
3422
Johan Hedberg272d90d2012-02-09 15:26:12 +02003423int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003424 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08003425{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003426 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003427 status,
3428 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08003429}
3430
Johan Hedberg92a25252012-09-06 18:39:26 +03003431int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
3432 u8 link_type, u8 addr_type, u32 passkey,
3433 u8 entered)
3434{
3435 struct mgmt_ev_passkey_notify ev;
3436
3437 BT_DBG("%s", hdev->name);
3438
3439 bacpy(&ev.addr.bdaddr, bdaddr);
3440 ev.addr.type = link_to_bdaddr(link_type, addr_type);
3441 ev.passkey = __cpu_to_le32(passkey);
3442 ev.entered = entered;
3443
3444 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
3445}
3446
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003447int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003448 u8 addr_type, u8 status)
Johan Hedberg2a611692011-02-19 12:06:00 -03003449{
3450 struct mgmt_ev_auth_failed ev;
3451
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003452 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003453 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02003454 ev.status = mgmt_status(status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003455
Johan Hedberg744cf192011-11-08 20:40:14 +02003456 return mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg2a611692011-02-19 12:06:00 -03003457}
Johan Hedbergb312b1612011-03-16 14:29:37 +02003458
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003459int mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
3460{
3461 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg47990ea2012-02-22 11:58:37 +02003462 bool changed = false;
3463 int err = 0;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003464
3465 if (status) {
3466 u8 mgmt_err = mgmt_status(status);
3467 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003468 cmd_status_rsp, &mgmt_err);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003469 return 0;
3470 }
3471
Johan Hedberg47990ea2012-02-22 11:58:37 +02003472 if (test_bit(HCI_AUTH, &hdev->flags)) {
3473 if (!test_and_set_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
3474 changed = true;
3475 } else {
3476 if (test_and_clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
3477 changed = true;
3478 }
3479
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003480 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003481 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003482
Johan Hedberg47990ea2012-02-22 11:58:37 +02003483 if (changed)
3484 err = new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003485
3486 if (match.sk)
3487 sock_put(match.sk);
3488
3489 return err;
3490}
3491
Johan Hedbergcacaf522012-02-21 00:52:42 +02003492static int clear_eir(struct hci_dev *hdev)
3493{
3494 struct hci_cp_write_eir cp;
3495
Johan Hedberg976eb202012-10-24 21:12:01 +03003496 if (!lmp_ext_inq_capable(hdev))
Johan Hedbergcacaf522012-02-21 00:52:42 +02003497 return 0;
3498
Johan Hedbergc80da272012-02-22 15:38:48 +02003499 memset(hdev->eir, 0, sizeof(hdev->eir));
3500
Johan Hedbergcacaf522012-02-21 00:52:42 +02003501 memset(&cp, 0, sizeof(cp));
3502
3503 return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
3504}
3505
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003506int mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003507{
3508 struct cmd_lookup match = { NULL, hdev };
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003509 bool changed = false;
3510 int err = 0;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003511
3512 if (status) {
3513 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003514
3515 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003516 &hdev->dev_flags))
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003517 err = new_settings(hdev, NULL);
3518
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003519 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
3520 &mgmt_err);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003521
3522 return err;
3523 }
3524
3525 if (enable) {
3526 if (!test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3527 changed = true;
3528 } else {
3529 if (test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3530 changed = true;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003531 }
3532
3533 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
3534
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003535 if (changed)
3536 err = new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003537
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02003538 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003539 sock_put(match.sk);
3540
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02003541 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3542 update_eir(hdev);
3543 else
3544 clear_eir(hdev);
Johan Hedbergcacaf522012-02-21 00:52:42 +02003545
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003546 return err;
3547}
3548
Johan Hedberg90e70452012-02-23 23:09:40 +02003549static void class_rsp(struct pending_cmd *cmd, void *data)
3550{
3551 struct cmd_lookup *match = data;
3552
3553 cmd_complete(cmd->sk, cmd->index, cmd->opcode, match->mgmt_status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003554 match->hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02003555
3556 list_del(&cmd->list);
3557
3558 if (match->sk == NULL) {
3559 match->sk = cmd->sk;
3560 sock_hold(match->sk);
3561 }
3562
3563 mgmt_pending_free(cmd);
3564}
3565
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003566int mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003567 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003568{
Johan Hedberg90e70452012-02-23 23:09:40 +02003569 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
3570 int err = 0;
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003571
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02003572 clear_bit(HCI_PENDING_CLASS, &hdev->dev_flags);
3573
Johan Hedberg90e70452012-02-23 23:09:40 +02003574 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, class_rsp, &match);
3575 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, class_rsp, &match);
3576 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, class_rsp, &match);
3577
3578 if (!status)
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003579 err = mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
3580 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02003581
3582 if (match.sk)
3583 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003584
3585 return err;
3586}
3587
Johan Hedberg744cf192011-11-08 20:40:14 +02003588int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003589{
3590 struct pending_cmd *cmd;
3591 struct mgmt_cp_set_local_name ev;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003592 bool changed = false;
3593 int err = 0;
3594
3595 if (memcmp(name, hdev->dev_name, sizeof(hdev->dev_name)) != 0) {
3596 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
3597 changed = true;
3598 }
Johan Hedbergb312b1612011-03-16 14:29:37 +02003599
3600 memset(&ev, 0, sizeof(ev));
3601 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003602 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003603
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003604 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003605 if (!cmd)
3606 goto send_event;
3607
Johan Hedberg7bdaae42012-02-22 21:39:58 +02003608 /* Always assume that either the short or the complete name has
3609 * changed if there was a pending mgmt command */
3610 changed = true;
3611
Johan Hedbergb312b1612011-03-16 14:29:37 +02003612 if (status) {
Johan Hedberg744cf192011-11-08 20:40:14 +02003613 err = cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003614 mgmt_status(status));
Johan Hedbergb312b1612011-03-16 14:29:37 +02003615 goto failed;
3616 }
3617
Johan Hedbergaee9b212012-02-18 15:07:59 +02003618 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0, &ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003619 sizeof(ev));
Johan Hedbergb312b1612011-03-16 14:29:37 +02003620 if (err < 0)
3621 goto failed;
3622
3623send_event:
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003624 if (changed)
3625 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003626 sizeof(ev), cmd ? cmd->sk : NULL);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003627
Johan Hedberg1225a6b2012-10-25 00:09:54 +03003628 /* EIR is taken care of separately when powering on the
3629 * adapter so only update them here if this is a name change
3630 * unrelated to power on.
3631 */
3632 if (!test_bit(HCI_INIT, &hdev->flags))
3633 update_eir(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003634
3635failed:
3636 if (cmd)
3637 mgmt_pending_remove(cmd);
3638 return err;
3639}
Szymon Jancc35938b2011-03-22 13:12:21 +01003640
Johan Hedberg744cf192011-11-08 20:40:14 +02003641int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003642 u8 *randomizer, u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01003643{
3644 struct pending_cmd *cmd;
3645 int err;
3646
Johan Hedberg744cf192011-11-08 20:40:14 +02003647 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01003648
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003649 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003650 if (!cmd)
3651 return -ENOENT;
3652
3653 if (status) {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003654 err = cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3655 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01003656 } else {
3657 struct mgmt_rp_read_local_oob_data rp;
3658
3659 memcpy(rp.hash, hash, sizeof(rp.hash));
3660 memcpy(rp.randomizer, randomizer, sizeof(rp.randomizer));
3661
Johan Hedberg744cf192011-11-08 20:40:14 +02003662 err = cmd_complete(cmd->sk, hdev->id,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003663 MGMT_OP_READ_LOCAL_OOB_DATA, 0, &rp,
3664 sizeof(rp));
Szymon Jancc35938b2011-03-22 13:12:21 +01003665 }
3666
3667 mgmt_pending_remove(cmd);
3668
3669 return err;
3670}
Johan Hedberge17acd42011-03-30 23:57:16 +03003671
Johan Hedberg06199cf2012-02-22 16:37:11 +02003672int mgmt_le_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
3673{
3674 struct cmd_lookup match = { NULL, hdev };
3675 bool changed = false;
3676 int err = 0;
3677
3678 if (status) {
3679 u8 mgmt_err = mgmt_status(status);
3680
3681 if (enable && test_and_clear_bit(HCI_LE_ENABLED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003682 &hdev->dev_flags))
Szymon Jancd97dcb62012-03-16 16:02:56 +01003683 err = new_settings(hdev, NULL);
Johan Hedberg06199cf2012-02-22 16:37:11 +02003684
Szymon Jancd97dcb62012-03-16 16:02:56 +01003685 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
3686 &mgmt_err);
Johan Hedberg06199cf2012-02-22 16:37:11 +02003687
3688 return err;
3689 }
3690
3691 if (enable) {
3692 if (!test_and_set_bit(HCI_LE_ENABLED, &hdev->dev_flags))
3693 changed = true;
3694 } else {
3695 if (test_and_clear_bit(HCI_LE_ENABLED, &hdev->dev_flags))
3696 changed = true;
3697 }
3698
3699 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
3700
3701 if (changed)
3702 err = new_settings(hdev, match.sk);
3703
3704 if (match.sk)
3705 sock_put(match.sk);
3706
3707 return err;
3708}
3709
Johan Hedberg48264f02011-11-09 13:58:58 +02003710int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003711 u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name, u8
3712 ssp, u8 *eir, u16 eir_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03003713{
Johan Hedberge319d2e2012-01-15 19:51:59 +02003714 char buf[512];
3715 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02003716 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03003717
Johan Hedberg1dc06092012-01-15 21:01:23 +02003718 /* Leave 5 bytes for a potential CoD field */
3719 if (sizeof(*ev) + eir_len + 5 > sizeof(buf))
Andre Guedes7d262f82012-01-10 18:20:49 -03003720 return -EINVAL;
3721
Johan Hedberg1dc06092012-01-15 21:01:23 +02003722 memset(buf, 0, sizeof(buf));
3723
Johan Hedberge319d2e2012-01-15 19:51:59 +02003724 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003725 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02003726 ev->rssi = rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +02003727 if (cfm_name)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05303728 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_CONFIRM_NAME);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003729 if (!ssp)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05303730 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_LEGACY_PAIRING);
Johan Hedberge17acd42011-03-30 23:57:16 +03003731
Johan Hedberg1dc06092012-01-15 21:01:23 +02003732 if (eir_len > 0)
Johan Hedberge319d2e2012-01-15 19:51:59 +02003733 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03003734
Johan Hedberg1dc06092012-01-15 21:01:23 +02003735 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
3736 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003737 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02003738
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003739 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedberg1dc06092012-01-15 21:01:23 +02003740 ev_size = sizeof(*ev) + eir_len;
Andre Guedesf8523592011-09-09 18:56:26 -03003741
Johan Hedberge319d2e2012-01-15 19:51:59 +02003742 return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03003743}
Johan Hedberga88a9652011-03-30 13:18:12 +03003744
Johan Hedbergb644ba32012-01-17 21:48:47 +02003745int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003746 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03003747{
Johan Hedbergb644ba32012-01-17 21:48:47 +02003748 struct mgmt_ev_device_found *ev;
3749 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
3750 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03003751
Johan Hedbergb644ba32012-01-17 21:48:47 +02003752 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03003753
Johan Hedbergb644ba32012-01-17 21:48:47 +02003754 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03003755
Johan Hedbergb644ba32012-01-17 21:48:47 +02003756 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003757 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003758 ev->rssi = rssi;
3759
3760 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003761 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003762
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003763 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003764
Johan Hedberg053c7e02012-02-04 00:06:00 +02003765 return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003766 sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03003767}
Johan Hedberg314b2382011-04-27 10:29:57 -04003768
Andre Guedes7a135102011-11-09 17:14:25 -03003769int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status)
Johan Hedberg164a6e72011-11-01 17:06:44 +02003770{
3771 struct pending_cmd *cmd;
Johan Hedbergf808e162012-02-19 12:52:07 +02003772 u8 type;
Johan Hedberg164a6e72011-11-01 17:06:44 +02003773 int err;
3774
Andre Guedes203159d2012-02-13 15:41:01 -03003775 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3776
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003777 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003778 if (!cmd)
3779 return -ENOENT;
3780
Johan Hedbergf808e162012-02-19 12:52:07 +02003781 type = hdev->discovery.type;
3782
3783 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003784 &type, sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02003785 mgmt_pending_remove(cmd);
3786
3787 return err;
3788}
3789
Andre Guedese6d465c2011-11-09 17:14:26 -03003790int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status)
3791{
3792 struct pending_cmd *cmd;
3793 int err;
3794
3795 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
3796 if (!cmd)
3797 return -ENOENT;
3798
Johan Hedbergd9306502012-02-20 23:25:18 +02003799 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003800 &hdev->discovery.type, sizeof(hdev->discovery.type));
Johan Hedberg03811012010-12-08 00:21:06 +02003801 mgmt_pending_remove(cmd);
3802
3803 return err;
3804}
Johan Hedberg314b2382011-04-27 10:29:57 -04003805
Johan Hedberg744cf192011-11-08 20:40:14 +02003806int mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04003807{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02003808 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02003809 struct pending_cmd *cmd;
3810
Andre Guedes343fb142011-11-22 17:14:19 -03003811 BT_DBG("%s discovering %u", hdev->name, discovering);
3812
Johan Hedberg164a6e72011-11-01 17:06:44 +02003813 if (discovering)
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003814 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003815 else
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003816 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003817
3818 if (cmd != NULL) {
Johan Hedbergf808e162012-02-19 12:52:07 +02003819 u8 type = hdev->discovery.type;
3820
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003821 cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
3822 sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02003823 mgmt_pending_remove(cmd);
3824 }
3825
Johan Hedbergf963e8e2012-02-20 23:30:44 +02003826 memset(&ev, 0, sizeof(ev));
3827 ev.type = hdev->discovery.type;
3828 ev.discovering = discovering;
3829
3830 return mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04003831}
Antti Julku5e762442011-08-25 16:48:02 +03003832
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003833int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03003834{
3835 struct pending_cmd *cmd;
3836 struct mgmt_ev_device_blocked ev;
3837
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003838 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003839
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003840 bacpy(&ev.addr.bdaddr, bdaddr);
3841 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03003842
Johan Hedberg744cf192011-11-08 20:40:14 +02003843 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003844 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03003845}
3846
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003847int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03003848{
3849 struct pending_cmd *cmd;
3850 struct mgmt_ev_device_unblocked ev;
3851
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003852 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003853
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003854 bacpy(&ev.addr.bdaddr, bdaddr);
3855 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03003856
Johan Hedberg744cf192011-11-08 20:40:14 +02003857 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003858 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03003859}
Marcel Holtmannd7b7e792012-02-20 21:47:49 +01003860
3861module_param(enable_hs, bool, 0644);
3862MODULE_PARM_DESC(enable_hs, "Enable High Speed support");