blob: 497928d2b25759fb64158abe5728c097a0e629d5 [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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-12-13 21:07:06 +0200218
Andre Guedes790eff42012-06-07 19:05:46 -0300219 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
Johan Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-12-13 21:07:06 +0200235 kfree_skb(skb);
236
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300237 return err;
Johan Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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 Hedbergf7b64e692010-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
Johan Hedberg213202e2013-01-27 00:31:33 +0200438static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
439{
440 u8 *ptr = data, *uuids_start = NULL;
441 struct bt_uuid *uuid;
442
443 if (len < 4)
444 return ptr;
445
446 list_for_each_entry(uuid, &hdev->uuids, list) {
447 u16 uuid16;
448
449 if (uuid->size != 16)
450 continue;
451
452 uuid16 = get_unaligned_le16(&uuid->uuid[12]);
453 if (uuid16 < 0x1100)
454 continue;
455
456 if (uuid16 == PNP_INFO_SVCLASS_ID)
457 continue;
458
459 if (!uuids_start) {
460 uuids_start = ptr;
461 uuids_start[0] = 1;
462 uuids_start[1] = EIR_UUID16_ALL;
463 ptr += 2;
464 }
465
466 /* Stop if not enough space to put next UUID */
467 if ((ptr - data) + sizeof(u16) > len) {
468 uuids_start[1] = EIR_UUID16_SOME;
469 break;
470 }
471
472 *ptr++ = (uuid16 & 0x00ff);
473 *ptr++ = (uuid16 & 0xff00) >> 8;
474 uuids_start[0] += sizeof(uuid16);
475 }
476
477 return ptr;
478}
479
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300480static void create_eir(struct hci_dev *hdev, u8 *data)
481{
482 u8 *ptr = data;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300483 size_t name_len;
484
485 name_len = strlen(hdev->dev_name);
486
487 if (name_len > 0) {
488 /* EIR Data type */
489 if (name_len > 48) {
490 name_len = 48;
491 ptr[1] = EIR_NAME_SHORT;
492 } else
493 ptr[1] = EIR_NAME_COMPLETE;
494
495 /* EIR Data length */
496 ptr[0] = name_len + 1;
497
498 memcpy(ptr + 2, hdev->dev_name, name_len);
499
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300500 ptr += (name_len + 2);
501 }
502
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100503 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700504 ptr[0] = 2;
505 ptr[1] = EIR_TX_POWER;
506 ptr[2] = (u8) hdev->inq_tx_power;
507
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700508 ptr += 3;
509 }
510
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700511 if (hdev->devid_source > 0) {
512 ptr[0] = 9;
513 ptr[1] = EIR_DEVICE_ID;
514
515 put_unaligned_le16(hdev->devid_source, ptr + 2);
516 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
517 put_unaligned_le16(hdev->devid_product, ptr + 6);
518 put_unaligned_le16(hdev->devid_version, ptr + 8);
519
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700520 ptr += 10;
521 }
522
Johan Hedberg213202e2013-01-27 00:31:33 +0200523 ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300524}
525
526static int update_eir(struct hci_dev *hdev)
527{
528 struct hci_cp_write_eir cp;
529
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200530 if (!hdev_is_powered(hdev))
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200531 return 0;
532
Johan Hedberg976eb202012-10-24 21:12:01 +0300533 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300534 return 0;
535
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200536 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300537 return 0;
538
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200539 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300540 return 0;
541
542 memset(&cp, 0, sizeof(cp));
543
544 create_eir(hdev, cp.data);
545
546 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
547 return 0;
548
549 memcpy(hdev->eir, cp.data, sizeof(cp.data));
550
551 return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
552}
553
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200554static u8 get_service_classes(struct hci_dev *hdev)
555{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300556 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200557 u8 val = 0;
558
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300559 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200560 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200561
562 return val;
563}
564
565static int update_class(struct hci_dev *hdev)
566{
567 u8 cod[3];
Johan Hedbergc95f0ba2012-02-23 22:54:38 +0200568 int err;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200569
570 BT_DBG("%s", hdev->name);
571
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200572 if (!hdev_is_powered(hdev))
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200573 return 0;
574
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200575 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200576 return 0;
577
578 cod[0] = hdev->minor_class;
579 cod[1] = hdev->major_class;
580 cod[2] = get_service_classes(hdev);
581
582 if (memcmp(cod, hdev->dev_class, 3) == 0)
583 return 0;
584
Johan Hedbergc95f0ba2012-02-23 22:54:38 +0200585 err = hci_send_cmd(hdev, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
586 if (err == 0)
587 set_bit(HCI_PENDING_CLASS, &hdev->dev_flags);
588
589 return err;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200590}
591
Johan Hedberg7d785252011-12-15 00:47:39 +0200592static void service_cache_off(struct work_struct *work)
593{
594 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300595 service_cache.work);
Johan Hedberg7d785252011-12-15 00:47:39 +0200596
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200597 if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +0200598 return;
599
600 hci_dev_lock(hdev);
601
602 update_eir(hdev);
603 update_class(hdev);
604
605 hci_dev_unlock(hdev);
606}
607
Johan Hedberg6a919082012-02-28 06:17:26 +0200608static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +0200609{
Johan Hedberg4f87da82012-03-02 19:55:56 +0200610 if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg6a919082012-02-28 06:17:26 +0200611 return;
612
Johan Hedberg4f87da82012-03-02 19:55:56 +0200613 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedberg7d785252011-12-15 00:47:39 +0200614
Johan Hedberg4f87da82012-03-02 19:55:56 +0200615 /* Non-mgmt controlled devices get this bit set
616 * implicitly so that pairing works for them, however
617 * for mgmt we require user-space to explicitly enable
618 * it
619 */
620 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedberg7d785252011-12-15 00:47:39 +0200621}
622
Johan Hedberg0f4e68c2012-02-28 17:18:30 +0200623static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300624 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +0200625{
626 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +0200627
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200628 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200629
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300630 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200631
Johan Hedberg03811012010-12-08 00:21:06 +0200632 memset(&rp, 0, sizeof(rp));
633
Johan Hedberg03811012010-12-08 00:21:06 +0200634 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200635
636 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200637 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200638
639 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
640 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
641
642 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +0200643
644 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +0200645 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +0200646
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300647 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200648
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200649 return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300650 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +0200651}
652
653static void mgmt_pending_free(struct pending_cmd *cmd)
654{
655 sock_put(cmd->sk);
656 kfree(cmd->param);
657 kfree(cmd);
658}
659
660static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300661 struct hci_dev *hdev, void *data,
662 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200663{
664 struct pending_cmd *cmd;
665
Andre Guedes12b94562012-06-07 19:05:45 -0300666 cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200667 if (!cmd)
668 return NULL;
669
670 cmd->opcode = opcode;
671 cmd->index = hdev->id;
672
Andre Guedes12b94562012-06-07 19:05:45 -0300673 cmd->param = kmalloc(len, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200674 if (!cmd->param) {
675 kfree(cmd);
676 return NULL;
677 }
678
679 if (data)
680 memcpy(cmd->param, data, len);
681
682 cmd->sk = sk;
683 sock_hold(sk);
684
685 list_add(&cmd->list, &hdev->mgmt_pending);
686
687 return cmd;
688}
689
690static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300691 void (*cb)(struct pending_cmd *cmd,
692 void *data),
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300693 void *data)
Johan Hedberg03811012010-12-08 00:21:06 +0200694{
695 struct list_head *p, *n;
696
697 list_for_each_safe(p, n, &hdev->mgmt_pending) {
698 struct pending_cmd *cmd;
699
700 cmd = list_entry(p, struct pending_cmd, list);
701
702 if (opcode > 0 && cmd->opcode != opcode)
703 continue;
704
705 cb(cmd, data);
706 }
707}
708
709static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
710{
711 struct pending_cmd *cmd;
712
713 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
714 if (cmd->opcode == opcode)
715 return cmd;
716 }
717
718 return NULL;
719}
720
721static void mgmt_pending_remove(struct pending_cmd *cmd)
722{
723 list_del(&cmd->list);
724 mgmt_pending_free(cmd);
725}
726
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200727static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +0200728{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200729 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +0200730
Johan Hedbergaee9b212012-02-18 15:07:59 +0200731 return cmd_complete(sk, hdev->id, opcode, 0, &settings,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300732 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +0200733}
734
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200735static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300736 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200737{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300738 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200739 struct pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200740 int err;
Johan Hedberg03811012010-12-08 00:21:06 +0200741
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200742 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200743
Johan Hedberga7e80f22013-01-09 16:05:19 +0200744 if (cp->val != 0x00 && cp->val != 0x01)
745 return cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
746 MGMT_STATUS_INVALID_PARAMS);
747
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300748 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200749
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100750 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
751 cancel_delayed_work(&hdev->power_off);
752
753 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +0200754 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
755 data, len);
756 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100757 goto failed;
758 }
759 }
760
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200761 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200762 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200763 goto failed;
764 }
765
766 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200767 err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300768 MGMT_STATUS_BUSY);
Johan Hedberg03811012010-12-08 00:21:06 +0200769 goto failed;
770 }
771
772 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
773 if (!cmd) {
774 err = -ENOMEM;
775 goto failed;
776 }
777
778 if (cp->val)
Johan Hedberg19202572013-01-14 22:33:51 +0200779 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg03811012010-12-08 00:21:06 +0200780 else
Johan Hedberg19202572013-01-14 22:33:51 +0200781 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg03811012010-12-08 00:21:06 +0200782
783 err = 0;
784
785failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300786 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200787 return err;
788}
789
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300790static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len,
791 struct sock *skip_sk)
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200792{
793 struct sk_buff *skb;
794 struct mgmt_hdr *hdr;
795
Andre Guedes790eff42012-06-07 19:05:46 -0300796 skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200797 if (!skb)
798 return -ENOMEM;
799
800 hdr = (void *) skb_put(skb, sizeof(*hdr));
801 hdr->opcode = cpu_to_le16(event);
802 if (hdev)
803 hdr->index = cpu_to_le16(hdev->id);
804 else
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530805 hdr->index = __constant_cpu_to_le16(MGMT_INDEX_NONE);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200806 hdr->len = cpu_to_le16(data_len);
807
808 if (data)
809 memcpy(skb_put(skb, data_len), data, data_len);
810
Marcel Holtmann97e0bde2012-02-22 13:49:28 +0100811 /* Time stamp */
812 __net_timestamp(skb);
813
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200814 hci_send_to_control(skb, skip_sk);
815 kfree_skb(skb);
816
817 return 0;
818}
819
820static int new_settings(struct hci_dev *hdev, struct sock *skip)
821{
822 __le32 ev;
823
824 ev = cpu_to_le32(get_current_settings(hdev));
825
826 return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
827}
828
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200829static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300830 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200831{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300832 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200833 struct pending_cmd *cmd;
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200834 u16 timeout;
Johan Hedberg03811012010-12-08 00:21:06 +0200835 u8 scan;
836 int err;
837
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200838 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200839
Johan Hedberg33c525c2012-10-24 21:11:58 +0300840 if (!lmp_bredr_capable(hdev))
841 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
842 MGMT_STATUS_NOT_SUPPORTED);
843
Johan Hedberga7e80f22013-01-09 16:05:19 +0200844 if (cp->val != 0x00 && cp->val != 0x01)
845 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
846 MGMT_STATUS_INVALID_PARAMS);
847
Marcel Holtmann1f350c82012-03-12 20:31:08 -0700848 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann24c54a92012-02-22 18:06:34 +0100849 if (!cp->val && timeout > 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200850 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300851 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200852
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300853 hci_dev_lock(hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200854
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200855 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200856 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300857 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200858 goto failed;
859 }
860
861 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -0300862 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200863 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300864 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200865 goto failed;
866 }
867
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200868 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200869 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300870 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200871 goto failed;
872 }
873
874 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200875 bool changed = false;
876
877 if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
878 change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
879 changed = true;
880 }
881
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200882 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200883 if (err < 0)
884 goto failed;
885
886 if (changed)
887 err = new_settings(hdev, sk);
888
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200889 goto failed;
890 }
891
892 if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
Marcel Holtmann955638e2012-02-22 18:21:00 +0100893 if (hdev->discov_timeout > 0) {
894 cancel_delayed_work(&hdev->discov_off);
895 hdev->discov_timeout = 0;
896 }
897
898 if (cp->val && timeout > 0) {
899 hdev->discov_timeout = timeout;
900 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
901 msecs_to_jiffies(hdev->discov_timeout * 1000));
902 }
903
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200904 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200905 goto failed;
906 }
907
908 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
909 if (!cmd) {
910 err = -ENOMEM;
911 goto failed;
912 }
913
914 scan = SCAN_PAGE;
915
916 if (cp->val)
917 scan |= SCAN_INQUIRY;
918 else
919 cancel_delayed_work(&hdev->discov_off);
920
921 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
922 if (err < 0)
923 mgmt_pending_remove(cmd);
924
Johan Hedberg03811012010-12-08 00:21:06 +0200925 if (cp->val)
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200926 hdev->discov_timeout = timeout;
Johan Hedberg03811012010-12-08 00:21:06 +0200927
928failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300929 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200930 return err;
931}
932
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200933static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300934 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200935{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300936 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200937 struct pending_cmd *cmd;
938 u8 scan;
939 int err;
940
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200941 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +0200942
Johan Hedberg33c525c2012-10-24 21:11:58 +0300943 if (!lmp_bredr_capable(hdev))
944 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
945 MGMT_STATUS_NOT_SUPPORTED);
946
Johan Hedberga7e80f22013-01-09 16:05:19 +0200947 if (cp->val != 0x00 && cp->val != 0x01)
948 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
949 MGMT_STATUS_INVALID_PARAMS);
950
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300951 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200952
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200953 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200954 bool changed = false;
955
956 if (!!cp->val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
957 changed = true;
958
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +0200959 if (cp->val) {
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200960 set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +0200961 } else {
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200962 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
963 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
964 }
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200965
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200966 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200967 if (err < 0)
968 goto failed;
969
970 if (changed)
971 err = new_settings(hdev, sk);
972
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200973 goto failed;
974 }
975
976 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -0300977 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200978 err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300979 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200980 goto failed;
981 }
982
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200983 if (!!cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200984 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200985 goto failed;
986 }
987
988 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
989 if (!cmd) {
990 err = -ENOMEM;
991 goto failed;
992 }
993
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +0200994 if (cp->val) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200995 scan = SCAN_PAGE;
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +0200996 } else {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200997 scan = 0;
998
Johan Hedbergdf2c6c52012-02-21 19:15:49 +0200999 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001000 hdev->discov_timeout > 0)
Johan Hedbergdf2c6c52012-02-21 19:15:49 +02001001 cancel_delayed_work(&hdev->discov_off);
1002 }
1003
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001004 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1005 if (err < 0)
1006 mgmt_pending_remove(cmd);
1007
1008failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001009 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001010 return err;
1011}
1012
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001013static int set_pairable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001014 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001015{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001016 struct mgmt_mode *cp = data;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001017 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001018
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001019 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001020
Johan Hedberga7e80f22013-01-09 16:05:19 +02001021 if (cp->val != 0x00 && cp->val != 0x01)
1022 return cmd_status(sk, hdev->id, MGMT_OP_SET_PAIRABLE,
1023 MGMT_STATUS_INVALID_PARAMS);
1024
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001025 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001026
1027 if (cp->val)
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001028 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001029 else
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001030 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001031
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001032 err = send_settings_rsp(sk, MGMT_OP_SET_PAIRABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001033 if (err < 0)
1034 goto failed;
1035
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001036 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001037
1038failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001039 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001040 return err;
1041}
Johan Hedberg72a734e2010-12-30 00:38:22 +02001042
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001043static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
1044 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001045{
1046 struct mgmt_mode *cp = data;
1047 struct pending_cmd *cmd;
Johan Hedberg816a11d2012-02-26 13:04:52 +02001048 u8 val;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001049 int err;
1050
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001051 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001052
Johan Hedberg33c525c2012-10-24 21:11:58 +03001053 if (!lmp_bredr_capable(hdev))
1054 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1055 MGMT_STATUS_NOT_SUPPORTED);
1056
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_LINK_SECURITY,
1059 MGMT_STATUS_INVALID_PARAMS);
1060
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001061 hci_dev_lock(hdev);
1062
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001063 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001064 bool changed = false;
1065
1066 if (!!cp->val != test_bit(HCI_LINK_SECURITY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001067 &hdev->dev_flags)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001068 change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
1069 changed = true;
1070 }
1071
1072 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1073 if (err < 0)
1074 goto failed;
1075
1076 if (changed)
1077 err = new_settings(hdev, sk);
1078
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001079 goto failed;
1080 }
1081
1082 if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001083 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001084 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001085 goto failed;
1086 }
1087
1088 val = !!cp->val;
1089
1090 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
1091 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1092 goto failed;
1093 }
1094
1095 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
1096 if (!cmd) {
1097 err = -ENOMEM;
1098 goto failed;
1099 }
1100
1101 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
1102 if (err < 0) {
1103 mgmt_pending_remove(cmd);
1104 goto failed;
1105 }
1106
1107failed:
1108 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001109 return err;
1110}
1111
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001112static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001113{
1114 struct mgmt_mode *cp = data;
1115 struct pending_cmd *cmd;
Johan Hedberg816a11d2012-02-26 13:04:52 +02001116 u8 val;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001117 int err;
1118
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001119 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001120
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001121 if (!lmp_ssp_capable(hdev))
1122 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1123 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001124
Johan Hedberga7e80f22013-01-09 16:05:19 +02001125 if (cp->val != 0x00 && cp->val != 0x01)
1126 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1127 MGMT_STATUS_INVALID_PARAMS);
1128
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001129 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02001130
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001131 val = !!cp->val;
1132
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001133 if (!hdev_is_powered(hdev)) {
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001134 bool changed = false;
1135
1136 if (val != test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
1137 change_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
1138 changed = true;
1139 }
1140
1141 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1142 if (err < 0)
1143 goto failed;
1144
1145 if (changed)
1146 err = new_settings(hdev, sk);
1147
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001148 goto failed;
1149 }
1150
1151 if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev)) {
Szymon Jancd97dcb62012-03-16 16:02:56 +01001152 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1153 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001154 goto failed;
1155 }
1156
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001157 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) == val) {
1158 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1159 goto failed;
1160 }
1161
1162 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
1163 if (!cmd) {
1164 err = -ENOMEM;
1165 goto failed;
1166 }
1167
1168 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(val), &val);
1169 if (err < 0) {
1170 mgmt_pending_remove(cmd);
1171 goto failed;
1172 }
1173
1174failed:
1175 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001176 return err;
1177}
1178
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001179static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001180{
1181 struct mgmt_mode *cp = data;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001182
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001183 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001184
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001185 if (!enable_hs)
1186 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001187 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001188
Johan Hedberga7e80f22013-01-09 16:05:19 +02001189 if (cp->val != 0x00 && cp->val != 0x01)
1190 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1191 MGMT_STATUS_INVALID_PARAMS);
1192
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001193 if (cp->val)
1194 set_bit(HCI_HS_ENABLED, &hdev->dev_flags);
1195 else
1196 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
1197
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001198 return send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001199}
1200
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001201static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001202{
1203 struct mgmt_mode *cp = data;
1204 struct hci_cp_write_le_host_supported hci_cp;
1205 struct pending_cmd *cmd;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001206 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001207 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001208
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001209 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001210
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001211 if (!lmp_le_capable(hdev))
1212 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1213 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001214
Johan Hedberga7e80f22013-01-09 16:05:19 +02001215 if (cp->val != 0x00 && cp->val != 0x01)
1216 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1217 MGMT_STATUS_INVALID_PARAMS);
1218
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001219 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001220
1221 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001222 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001223
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001224 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02001225 bool changed = false;
1226
1227 if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
1228 change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
1229 changed = true;
1230 }
1231
1232 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
1233 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08001234 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001235
1236 if (changed)
1237 err = new_settings(hdev, sk);
1238
Johan Hedberg1de028c2012-02-29 19:55:35 -08001239 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001240 }
1241
1242 if (mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001243 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001244 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001245 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001246 }
1247
1248 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
1249 if (!cmd) {
1250 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08001251 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001252 }
1253
1254 memset(&hci_cp, 0, sizeof(hci_cp));
1255
1256 if (val) {
1257 hci_cp.le = val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001258 hci_cp.simul = lmp_le_br_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001259 }
1260
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001261 err = hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
1262 &hci_cp);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301263 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001264 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001265
Johan Hedberg1de028c2012-02-29 19:55:35 -08001266unlock:
1267 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001268 return err;
1269}
1270
Johan Hedberg83be8ec2013-01-27 00:31:29 +02001271static const u8 bluetooth_base_uuid[] = {
1272 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
1273 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1274};
1275
1276static u8 get_uuid_size(const u8 *uuid)
1277{
1278 u32 val;
1279
1280 if (memcmp(uuid, bluetooth_base_uuid, 12))
1281 return 128;
1282
1283 val = get_unaligned_le32(&uuid[12]);
1284 if (val > 0xffff)
1285 return 32;
1286
1287 return 16;
1288}
1289
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001290static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001291{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001292 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001293 struct pending_cmd *cmd;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001294 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001295 int err;
1296
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001297 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001298
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001299 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001300
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001301 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001302 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001303 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001304 goto failed;
1305 }
1306
Andre Guedes92c4c202012-06-07 19:05:44 -03001307 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001308 if (!uuid) {
1309 err = -ENOMEM;
1310 goto failed;
1311 }
1312
1313 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001314 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02001315 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001316
Johan Hedbergde66aa62013-01-27 00:31:27 +02001317 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001318
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001319 err = update_class(hdev);
1320 if (err < 0)
1321 goto failed;
1322
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001323 err = update_eir(hdev);
1324 if (err < 0)
1325 goto failed;
1326
Johan Hedberg90e70452012-02-23 23:09:40 +02001327 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001328 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001329 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001330 goto failed;
1331 }
1332
1333 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301334 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001335 err = -ENOMEM;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001336
1337failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001338 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001339 return err;
1340}
1341
Johan Hedberg24b78d02012-02-23 23:24:30 +02001342static bool enable_service_cache(struct hci_dev *hdev)
1343{
1344 if (!hdev_is_powered(hdev))
1345 return false;
1346
1347 if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02001348 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
1349 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02001350 return true;
1351 }
1352
1353 return false;
1354}
1355
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001356static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001357 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001358{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001359 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001360 struct pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02001361 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001362 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 +02001363 int err, found;
1364
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001365 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001366
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001367 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001368
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001369 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001370 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001371 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001372 goto unlock;
1373 }
1374
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001375 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
1376 err = hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02001377
Johan Hedberg24b78d02012-02-23 23:24:30 +02001378 if (enable_service_cache(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001379 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001380 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02001381 goto unlock;
1382 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02001383
Johan Hedberg9246a862012-02-23 21:33:16 +02001384 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001385 }
1386
1387 found = 0;
1388
Johan Hedberg056341c2013-01-27 00:31:30 +02001389 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001390 if (memcmp(match->uuid, cp->uuid, 16) != 0)
1391 continue;
1392
1393 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01001394 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001395 found++;
1396 }
1397
1398 if (found == 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001399 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001400 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001401 goto unlock;
1402 }
1403
Johan Hedberg9246a862012-02-23 21:33:16 +02001404update_class:
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001405 err = update_class(hdev);
1406 if (err < 0)
1407 goto unlock;
1408
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001409 err = update_eir(hdev);
1410 if (err < 0)
1411 goto unlock;
1412
Johan Hedberg90e70452012-02-23 23:09:40 +02001413 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001414 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001415 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001416 goto unlock;
1417 }
1418
1419 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301420 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001421 err = -ENOMEM;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001422
1423unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001424 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001425 return err;
1426}
1427
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001428static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001429 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001430{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001431 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001432 struct pending_cmd *cmd;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001433 int err;
1434
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001435 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001436
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001437 if (!lmp_bredr_capable(hdev))
1438 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1439 MGMT_STATUS_NOT_SUPPORTED);
1440
1441 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags))
1442 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1443 MGMT_STATUS_BUSY);
1444
1445 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0)
1446 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1447 MGMT_STATUS_INVALID_PARAMS);
1448
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001449 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001450
1451 hdev->major_class = cp->major;
1452 hdev->minor_class = cp->minor;
1453
Johan Hedberg932f5ff2012-02-22 22:11:32 +02001454 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001455 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001456 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02001457 goto unlock;
1458 }
1459
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001460 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02001461 hci_dev_unlock(hdev);
1462 cancel_delayed_work_sync(&hdev->service_cache);
1463 hci_dev_lock(hdev);
Johan Hedberg14c0b602011-12-15 00:47:37 +02001464 update_eir(hdev);
Johan Hedberg7d785252011-12-15 00:47:39 +02001465 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02001466
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001467 err = update_class(hdev);
Johan Hedberg90e70452012-02-23 23:09:40 +02001468 if (err < 0)
1469 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001470
Johan Hedberg90e70452012-02-23 23:09:40 +02001471 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001472 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001473 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001474 goto unlock;
1475 }
1476
1477 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301478 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001479 err = -ENOMEM;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001480
Johan Hedbergb5235a62012-02-21 14:32:24 +02001481unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001482 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001483 return err;
1484}
1485
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001486static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001487 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001488{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001489 struct mgmt_cp_load_link_keys *cp = data;
Szymon Janc4e51eae2011-02-25 19:05:48 +01001490 u16 key_count, expected_len;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001491 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001492
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001493 key_count = __le16_to_cpu(cp->key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001494
Johan Hedberg86742e12011-11-07 23:13:38 +02001495 expected_len = sizeof(*cp) + key_count *
1496 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001497 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02001498 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001499 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001500 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001501 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001502 }
1503
Johan Hedberg4ae14302013-01-20 14:27:13 +02001504 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
1505 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
1506 MGMT_STATUS_INVALID_PARAMS);
1507
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001508 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001509 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001510
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001511 for (i = 0; i < key_count; i++) {
1512 struct mgmt_link_key_info *key = &cp->keys[i];
1513
1514 if (key->addr.type != BDADDR_BREDR)
1515 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
1516 MGMT_STATUS_INVALID_PARAMS);
1517 }
1518
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001519 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001520
1521 hci_link_keys_clear(hdev);
1522
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001523 set_bit(HCI_LINK_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001524
1525 if (cp->debug_keys)
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001526 set_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001527 else
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001528 clear_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001529
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001530 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02001531 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001532
Johan Hedbergd753fdc2012-02-17 14:06:34 +02001533 hci_add_link_key(hdev, NULL, 0, &key->addr.bdaddr, key->val,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001534 key->type, key->pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001535 }
1536
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001537 cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02001538
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001539 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001540
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001541 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001542}
1543
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001544static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001545 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001546{
1547 struct mgmt_ev_device_unpaired ev;
1548
1549 bacpy(&ev.addr.bdaddr, bdaddr);
1550 ev.addr.type = addr_type;
1551
1552 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001553 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001554}
1555
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001556static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001557 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001558{
Johan Hedberg124f6e32012-02-09 13:50:12 +02001559 struct mgmt_cp_unpair_device *cp = data;
1560 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02001561 struct hci_cp_disconnect dc;
1562 struct pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001563 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001564 int err;
1565
Johan Hedberga8a1d192011-11-10 15:54:38 +02001566 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02001567 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
1568 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02001569
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001570 if (!bdaddr_type_is_valid(cp->addr.type))
1571 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
1572 MGMT_STATUS_INVALID_PARAMS,
1573 &rp, sizeof(rp));
1574
Johan Hedberg118da702013-01-20 14:27:20 +02001575 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
1576 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
1577 MGMT_STATUS_INVALID_PARAMS,
1578 &rp, sizeof(rp));
1579
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001580 hci_dev_lock(hdev);
1581
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001582 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001583 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001584 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001585 goto unlock;
1586 }
1587
Andre Guedes591f47f2012-04-24 21:02:49 -03001588 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg124f6e32012-02-09 13:50:12 +02001589 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
1590 else
1591 err = hci_remove_ltk(hdev, &cp->addr.bdaddr);
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03001592
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001593 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001594 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001595 MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001596 goto unlock;
1597 }
1598
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001599 if (cp->disconnect) {
Andre Guedes591f47f2012-04-24 21:02:49 -03001600 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001601 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001602 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001603 else
1604 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001605 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001606 } else {
1607 conn = NULL;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001608 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001609
Johan Hedberga8a1d192011-11-10 15:54:38 +02001610 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001611 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001612 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001613 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02001614 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001615 }
1616
Johan Hedberg124f6e32012-02-09 13:50:12 +02001617 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001618 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02001619 if (!cmd) {
1620 err = -ENOMEM;
1621 goto unlock;
1622 }
1623
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001624 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02001625 dc.reason = 0x13; /* Remote User Terminated Connection */
1626 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1627 if (err < 0)
1628 mgmt_pending_remove(cmd);
1629
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001630unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001631 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001632 return err;
1633}
1634
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001635static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001636 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02001637{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001638 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02001639 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001640 struct hci_cp_disconnect dc;
Johan Hedberg366a0332011-02-19 12:05:55 -03001641 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001642 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001643 int err;
1644
1645 BT_DBG("");
1646
Johan Hedberg06a63b12013-01-20 14:27:21 +02001647 memset(&rp, 0, sizeof(rp));
1648 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
1649 rp.addr.type = cp->addr.type;
1650
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001651 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg06a63b12013-01-20 14:27:21 +02001652 return cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
1653 MGMT_STATUS_INVALID_PARAMS,
1654 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001655
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001656 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001657
1658 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02001659 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
1660 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02001661 goto failed;
1662 }
1663
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001664 if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02001665 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
1666 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02001667 goto failed;
1668 }
1669
Andre Guedes591f47f2012-04-24 21:02:49 -03001670 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001671 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
1672 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001673 else
1674 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03001675
Vishal Agarwalf9607272012-06-13 05:32:43 +05301676 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02001677 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
1678 MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02001679 goto failed;
1680 }
1681
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001682 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03001683 if (!cmd) {
1684 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001685 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03001686 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02001687
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001688 dc.handle = cpu_to_le16(conn->handle);
Andre Guedes3701f942012-06-11 18:41:12 -03001689 dc.reason = HCI_ERROR_REMOTE_USER_TERM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001690
1691 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1692 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03001693 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001694
1695failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001696 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001697 return err;
1698}
1699
Andre Guedes57c14772012-04-24 21:02:50 -03001700static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02001701{
1702 switch (link_type) {
1703 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02001704 switch (addr_type) {
1705 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03001706 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03001707
Johan Hedberg48264f02011-11-09 13:58:58 +02001708 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03001709 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03001710 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02001711 }
Andre Guedes0ed09142012-04-03 08:46:54 -03001712
Johan Hedberg4c659c32011-11-07 23:13:39 +02001713 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03001714 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03001715 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001716 }
1717}
1718
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001719static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
1720 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02001721{
Johan Hedberg2784eb42011-01-21 13:56:35 +02001722 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001723 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02001724 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02001725 int err;
1726 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02001727
1728 BT_DBG("");
1729
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001730 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001731
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001732 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001733 err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001734 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001735 goto unlock;
1736 }
1737
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02001738 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02001739 list_for_each_entry(c, &hdev->conn_hash.list, list) {
1740 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02001741 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02001742 }
1743
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02001744 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03001745 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02001746 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02001747 err = -ENOMEM;
1748 goto unlock;
1749 }
1750
Johan Hedberg2784eb42011-01-21 13:56:35 +02001751 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001752 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02001753 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
1754 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001755 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03001756 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03001757 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02001758 continue;
1759 i++;
1760 }
1761
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001762 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02001763
Johan Hedberg4c659c32011-11-07 23:13:39 +02001764 /* Recalculate length in case of filtered SCO connections, etc */
1765 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02001766
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001767 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001768 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001769
Johan Hedberga38528f2011-01-22 06:46:43 +02001770 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001771
1772unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001773 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001774 return err;
1775}
1776
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001777static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001778 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001779{
1780 struct pending_cmd *cmd;
1781 int err;
1782
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001783 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001784 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001785 if (!cmd)
1786 return -ENOMEM;
1787
Johan Hedbergd8457692012-02-17 14:24:57 +02001788 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001789 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001790 if (err < 0)
1791 mgmt_pending_remove(cmd);
1792
1793 return err;
1794}
1795
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001796static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001797 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02001798{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001799 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001800 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001801 struct hci_cp_pin_code_reply reply;
Johan Hedberg366a0332011-02-19 12:05:55 -03001802 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001803 int err;
1804
1805 BT_DBG("");
1806
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001807 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001808
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001809 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001810 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001811 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001812 goto failed;
1813 }
1814
Johan Hedbergd8457692012-02-17 14:24:57 +02001815 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001816 if (!conn) {
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_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001819 goto failed;
1820 }
1821
1822 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02001823 struct mgmt_cp_pin_code_neg_reply ncp;
1824
1825 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001826
1827 BT_ERR("PIN code is not 16 bytes long");
1828
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001829 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001830 if (err >= 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001831 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001832 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001833
1834 goto failed;
1835 }
1836
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03001837 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03001838 if (!cmd) {
1839 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001840 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03001841 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02001842
Johan Hedbergd8457692012-02-17 14:24:57 +02001843 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001844 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02001845 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02001846
1847 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
1848 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03001849 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001850
1851failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001852 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001853 return err;
1854}
1855
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001856static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
1857 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001858{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001859 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001860
1861 BT_DBG("");
1862
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001863 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001864
1865 hdev->io_capability = cp->io_capability;
1866
1867 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001868 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001869
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001870 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001871
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001872 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL,
1873 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001874}
1875
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001876static struct pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001877{
1878 struct hci_dev *hdev = conn->hdev;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001879 struct pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001880
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001881 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03001882 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
1883 continue;
1884
Johan Hedberge9a416b2011-02-19 12:05:56 -03001885 if (cmd->user_data != conn)
1886 continue;
1887
1888 return cmd;
1889 }
1890
1891 return NULL;
1892}
1893
1894static void pairing_complete(struct pending_cmd *cmd, u8 status)
1895{
1896 struct mgmt_rp_pair_device rp;
1897 struct hci_conn *conn = cmd->user_data;
1898
Johan Hedbergba4e5642011-11-11 00:07:34 +02001899 bacpy(&rp.addr.bdaddr, &conn->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03001900 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001901
Johan Hedbergaee9b212012-02-18 15:07:59 +02001902 cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001903 &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001904
1905 /* So we don't get further callbacks for this connection */
1906 conn->connect_cfm_cb = NULL;
1907 conn->security_cfm_cb = NULL;
1908 conn->disconn_cfm_cb = NULL;
1909
1910 hci_conn_put(conn);
1911
Johan Hedberga664b5b2011-02-19 12:06:02 -03001912 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001913}
1914
1915static void pairing_complete_cb(struct hci_conn *conn, u8 status)
1916{
1917 struct pending_cmd *cmd;
1918
1919 BT_DBG("status %u", status);
1920
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001921 cmd = find_pairing(conn);
1922 if (!cmd)
1923 BT_DBG("Unable to find a pending command");
1924 else
Johan Hedberge2113262012-02-18 15:20:03 +02001925 pairing_complete(cmd, mgmt_status(status));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001926}
1927
Vishal Agarwal4c47d732012-06-07 20:27:35 +05301928static void le_connect_complete_cb(struct hci_conn *conn, u8 status)
1929{
1930 struct pending_cmd *cmd;
1931
1932 BT_DBG("status %u", status);
1933
1934 if (!status)
1935 return;
1936
1937 cmd = find_pairing(conn);
1938 if (!cmd)
1939 BT_DBG("Unable to find a pending command");
1940 else
1941 pairing_complete(cmd, mgmt_status(status));
1942}
1943
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001944static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001945 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001946{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001947 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02001948 struct mgmt_rp_pair_device rp;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001949 struct pending_cmd *cmd;
1950 u8 sec_level, auth_type;
1951 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001952 int err;
1953
1954 BT_DBG("");
1955
Szymon Jancf950a30e2013-01-18 12:48:07 +01001956 memset(&rp, 0, sizeof(rp));
1957 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
1958 rp.addr.type = cp->addr.type;
1959
Johan Hedberg4ee71b22013-01-20 14:27:19 +02001960 if (!bdaddr_type_is_valid(cp->addr.type))
1961 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
1962 MGMT_STATUS_INVALID_PARAMS,
1963 &rp, sizeof(rp));
1964
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001965 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001966
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001967 if (!hdev_is_powered(hdev)) {
Szymon Jancf950a30e2013-01-18 12:48:07 +01001968 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
1969 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001970 goto unlock;
1971 }
1972
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03001973 sec_level = BT_SECURITY_MEDIUM;
1974 if (cp->io_cap == 0x03)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001975 auth_type = HCI_AT_DEDICATED_BONDING;
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03001976 else
Johan Hedberge9a416b2011-02-19 12:05:56 -03001977 auth_type = HCI_AT_DEDICATED_BONDING_MITM;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001978
Andre Guedes591f47f2012-04-24 21:02:49 -03001979 if (cp->addr.type == BDADDR_BREDR)
Andre Guedesb12f62c2012-04-24 21:02:54 -03001980 conn = hci_connect(hdev, ACL_LINK, &cp->addr.bdaddr,
1981 cp->addr.type, sec_level, auth_type);
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001982 else
Andre Guedesb12f62c2012-04-24 21:02:54 -03001983 conn = hci_connect(hdev, LE_LINK, &cp->addr.bdaddr,
1984 cp->addr.type, sec_level, auth_type);
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001985
Ville Tervo30e76272011-02-22 16:10:53 -03001986 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02001987 int status;
1988
1989 if (PTR_ERR(conn) == -EBUSY)
1990 status = MGMT_STATUS_BUSY;
1991 else
1992 status = MGMT_STATUS_CONNECT_FAILED;
1993
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001994 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02001995 status, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001996 sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001997 goto unlock;
1998 }
1999
2000 if (conn->connect_cfm_cb) {
2001 hci_conn_put(conn);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002002 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002003 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002004 goto unlock;
2005 }
2006
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002007 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002008 if (!cmd) {
2009 err = -ENOMEM;
2010 hci_conn_put(conn);
2011 goto unlock;
2012 }
2013
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002014 /* For LE, just connecting isn't a proof that the pairing finished */
Andre Guedes591f47f2012-04-24 21:02:49 -03002015 if (cp->addr.type == BDADDR_BREDR)
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002016 conn->connect_cfm_cb = pairing_complete_cb;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302017 else
2018 conn->connect_cfm_cb = le_connect_complete_cb;
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002019
Johan Hedberge9a416b2011-02-19 12:05:56 -03002020 conn->security_cfm_cb = pairing_complete_cb;
2021 conn->disconn_cfm_cb = pairing_complete_cb;
2022 conn->io_capability = cp->io_cap;
2023 cmd->user_data = conn;
2024
2025 if (conn->state == BT_CONNECTED &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002026 hci_conn_security(conn, sec_level, auth_type))
Johan Hedberge9a416b2011-02-19 12:05:56 -03002027 pairing_complete(cmd, 0);
2028
2029 err = 0;
2030
2031unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002032 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002033 return err;
2034}
2035
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002036static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2037 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02002038{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002039 struct mgmt_addr_info *addr = data;
Johan Hedberg28424702012-02-02 04:02:29 +02002040 struct pending_cmd *cmd;
2041 struct hci_conn *conn;
2042 int err;
2043
2044 BT_DBG("");
2045
Johan Hedberg28424702012-02-02 04:02:29 +02002046 hci_dev_lock(hdev);
2047
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002048 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002049 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002050 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002051 goto unlock;
2052 }
2053
Johan Hedberg28424702012-02-02 04:02:29 +02002054 cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
2055 if (!cmd) {
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_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002058 goto unlock;
2059 }
2060
2061 conn = cmd->user_data;
2062
2063 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002064 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002065 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002066 goto unlock;
2067 }
2068
2069 pairing_complete(cmd, MGMT_STATUS_CANCELLED);
2070
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002071 err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002072 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02002073unlock:
2074 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02002075 return err;
2076}
2077
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002078static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002079 bdaddr_t *bdaddr, u8 type, u16 mgmt_op,
2080 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03002081{
Johan Hedberga5c29682011-02-19 12:05:57 -03002082 struct pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08002083 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03002084 int err;
2085
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002086 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02002087
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002088 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002089 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002090 MGMT_STATUS_NOT_POWERED);
Brian Gix0df4c182011-11-16 13:53:13 -08002091 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002092 }
2093
Andre Guedes591f47f2012-04-24 21:02:49 -03002094 if (type == BDADDR_BREDR)
Johan Hedberg272d90d2012-02-09 15:26:12 +02002095 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, bdaddr);
2096 else
Brian Gix47c15e22011-11-16 13:53:14 -08002097 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08002098
Johan Hedberg272d90d2012-02-09 15:26:12 +02002099 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002100 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002101 MGMT_STATUS_NOT_CONNECTED);
Johan Hedberg272d90d2012-02-09 15:26:12 +02002102 goto done;
2103 }
2104
Andre Guedes591f47f2012-04-24 21:02:49 -03002105 if (type == BDADDR_LE_PUBLIC || type == BDADDR_LE_RANDOM) {
Brian Gix47c15e22011-11-16 13:53:14 -08002106 /* Continue with pairing via SMP */
Brian Gix5fe57d92011-12-21 16:12:13 -08002107 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix47c15e22011-11-16 13:53:14 -08002108
Brian Gix5fe57d92011-12-21 16:12:13 -08002109 if (!err)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002110 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002111 MGMT_STATUS_SUCCESS);
Brian Gix5fe57d92011-12-21 16:12:13 -08002112 else
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002113 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002114 MGMT_STATUS_FAILED);
Brian Gix5fe57d92011-12-21 16:12:13 -08002115
Brian Gix47c15e22011-11-16 13:53:14 -08002116 goto done;
2117 }
2118
Brian Gix0df4c182011-11-16 13:53:13 -08002119 cmd = mgmt_pending_add(sk, mgmt_op, hdev, bdaddr, sizeof(*bdaddr));
Johan Hedberga5c29682011-02-19 12:05:57 -03002120 if (!cmd) {
2121 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08002122 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002123 }
2124
Brian Gix0df4c182011-11-16 13:53:13 -08002125 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08002126 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
2127 struct hci_cp_user_passkey_reply cp;
2128
2129 bacpy(&cp.bdaddr, bdaddr);
2130 cp.passkey = passkey;
2131 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
2132 } else
2133 err = hci_send_cmd(hdev, hci_op, sizeof(*bdaddr), bdaddr);
2134
Johan Hedberga664b5b2011-02-19 12:06:02 -03002135 if (err < 0)
2136 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03002137
Brian Gix0df4c182011-11-16 13:53:13 -08002138done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002139 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03002140 return err;
2141}
2142
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05302143static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
2144 void *data, u16 len)
2145{
2146 struct mgmt_cp_pin_code_neg_reply *cp = data;
2147
2148 BT_DBG("");
2149
2150 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
2151 MGMT_OP_PIN_CODE_NEG_REPLY,
2152 HCI_OP_PIN_CODE_NEG_REPLY, 0);
2153}
2154
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002155static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2156 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08002157{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002158 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08002159
2160 BT_DBG("");
2161
2162 if (len != sizeof(*cp))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002163 return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002164 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08002165
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002166 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002167 MGMT_OP_USER_CONFIRM_REPLY,
2168 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08002169}
2170
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002171static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002172 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08002173{
Johan Hedbergc9c26592011-12-15 00:47:41 +02002174 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08002175
2176 BT_DBG("");
2177
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002178 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002179 MGMT_OP_USER_CONFIRM_NEG_REPLY,
2180 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08002181}
2182
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002183static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2184 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08002185{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002186 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08002187
2188 BT_DBG("");
2189
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002190 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002191 MGMT_OP_USER_PASSKEY_REPLY,
2192 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08002193}
2194
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002195static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002196 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08002197{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002198 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08002199
2200 BT_DBG("");
2201
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002202 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002203 MGMT_OP_USER_PASSKEY_NEG_REPLY,
2204 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08002205}
2206
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002207static int update_name(struct hci_dev *hdev, const char *name)
2208{
2209 struct hci_cp_write_local_name cp;
2210
2211 memcpy(cp.name, name, sizeof(cp.name));
2212
2213 return hci_send_cmd(hdev, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
2214}
2215
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002216static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002217 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02002218{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002219 struct mgmt_cp_set_local_name *cp = data;
Johan Hedbergb312b1612011-03-16 14:29:37 +02002220 struct pending_cmd *cmd;
2221 int err;
2222
2223 BT_DBG("");
2224
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002225 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002226
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002227 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002228
Johan Hedbergb5235a62012-02-21 14:32:24 +02002229 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002230 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002231
2232 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002233 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002234 if (err < 0)
2235 goto failed;
2236
2237 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002238 sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002239
Johan Hedbergb5235a62012-02-21 14:32:24 +02002240 goto failed;
2241 }
2242
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002243 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002244 if (!cmd) {
2245 err = -ENOMEM;
2246 goto failed;
2247 }
2248
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002249 err = update_name(hdev, cp->name);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002250 if (err < 0)
2251 mgmt_pending_remove(cmd);
2252
2253failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002254 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002255 return err;
2256}
2257
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002258static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002259 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01002260{
Szymon Jancc35938b2011-03-22 13:12:21 +01002261 struct pending_cmd *cmd;
2262 int err;
2263
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002264 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01002265
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002266 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01002267
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002268 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002269 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002270 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01002271 goto unlock;
2272 }
2273
Andre Guedes9a1a1992012-07-24 15:03:48 -03002274 if (!lmp_ssp_capable(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002275 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002276 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01002277 goto unlock;
2278 }
2279
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002280 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002281 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002282 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01002283 goto unlock;
2284 }
2285
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002286 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01002287 if (!cmd) {
2288 err = -ENOMEM;
2289 goto unlock;
2290 }
2291
2292 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
2293 if (err < 0)
2294 mgmt_pending_remove(cmd);
2295
2296unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002297 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01002298 return err;
2299}
2300
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002301static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002302 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01002303{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002304 struct mgmt_cp_add_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002305 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01002306 int err;
2307
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002308 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01002309
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002310 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002311
Johan Hedberg664ce4c2012-02-09 15:44:09 +02002312 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr, cp->hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002313 cp->randomizer);
Szymon Janc2763eda2011-03-22 13:12:22 +01002314 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002315 status = MGMT_STATUS_FAILED;
Szymon Janc2763eda2011-03-22 13:12:22 +01002316 else
Szymon Janca6785be2012-12-13 15:11:21 +01002317 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002318
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002319 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002320 &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01002321
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002322 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002323 return err;
2324}
2325
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002326static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002327 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01002328{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002329 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002330 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01002331 int err;
2332
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002333 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01002334
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002335 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002336
Johan Hedberg664ce4c2012-02-09 15:44:09 +02002337 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01002338 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002339 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01002340 else
Szymon Janca6785be2012-12-13 15:11:21 +01002341 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002342
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002343 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002344 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01002345
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002346 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002347 return err;
2348}
2349
Andre Guedes5e0452c2012-02-17 20:39:38 -03002350int mgmt_interleaved_discovery(struct hci_dev *hdev)
2351{
2352 int err;
2353
2354 BT_DBG("%s", hdev->name);
2355
2356 hci_dev_lock(hdev);
2357
2358 err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR_LE);
2359 if (err < 0)
2360 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2361
2362 hci_dev_unlock(hdev);
2363
2364 return err;
2365}
2366
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002367static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002368 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04002369{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002370 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04002371 struct pending_cmd *cmd;
Johan Hedberg14a53662011-04-27 10:29:56 -04002372 int err;
2373
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002374 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04002375
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002376 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002377
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002378 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002379 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002380 MGMT_STATUS_NOT_POWERED);
Johan Hedbergbd2d1332011-11-07 23:13:37 +02002381 goto failed;
2382 }
2383
Andre Guedes642be6c2012-03-21 00:03:37 -03002384 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
2385 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2386 MGMT_STATUS_BUSY);
2387 goto failed;
2388 }
2389
Johan Hedbergff9ef572012-01-04 14:23:45 +02002390 if (hdev->discovery.state != DISCOVERY_STOPPED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002391 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002392 MGMT_STATUS_BUSY);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002393 goto failed;
2394 }
2395
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002396 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04002397 if (!cmd) {
2398 err = -ENOMEM;
2399 goto failed;
2400 }
2401
Andre Guedes4aab14e2012-02-17 20:39:36 -03002402 hdev->discovery.type = cp->type;
2403
2404 switch (hdev->discovery.type) {
Andre Guedesf39799f2012-02-17 20:39:35 -03002405 case DISCOV_TYPE_BREDR:
Johan Hedberg04106752013-01-10 14:54:09 +02002406 if (!lmp_bredr_capable(hdev)) {
2407 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2408 MGMT_STATUS_NOT_SUPPORTED);
2409 mgmt_pending_remove(cmd);
2410 goto failed;
2411 }
2412
2413 err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR);
Andre Guedesf39799f2012-02-17 20:39:35 -03002414 break;
2415
2416 case DISCOV_TYPE_LE:
Johan Hedberg04106752013-01-10 14:54:09 +02002417 if (!lmp_host_le_capable(hdev)) {
2418 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2419 MGMT_STATUS_NOT_SUPPORTED);
2420 mgmt_pending_remove(cmd);
2421 goto failed;
2422 }
2423
2424 err = hci_le_scan(hdev, LE_SCAN_TYPE, LE_SCAN_INT,
2425 LE_SCAN_WIN, LE_SCAN_TIMEOUT_LE_ONLY);
Andre Guedesf39799f2012-02-17 20:39:35 -03002426 break;
2427
Andre Guedes5e0452c2012-02-17 20:39:38 -03002428 case DISCOV_TYPE_INTERLEAVED:
Johan Hedberg04106752013-01-10 14:54:09 +02002429 if (!lmp_host_le_capable(hdev) || !lmp_bredr_capable(hdev)) {
2430 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2431 MGMT_STATUS_NOT_SUPPORTED);
2432 mgmt_pending_remove(cmd);
2433 goto failed;
2434 }
2435
2436 err = hci_le_scan(hdev, LE_SCAN_TYPE, LE_SCAN_INT, LE_SCAN_WIN,
2437 LE_SCAN_TIMEOUT_BREDR_LE);
Andre Guedes5e0452c2012-02-17 20:39:38 -03002438 break;
2439
Andre Guedesf39799f2012-02-17 20:39:35 -03002440 default:
Johan Hedberg04106752013-01-10 14:54:09 +02002441 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2442 MGMT_STATUS_INVALID_PARAMS);
2443 mgmt_pending_remove(cmd);
2444 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03002445 }
Andre Guedes3fd24152012-02-03 17:48:01 -03002446
Johan Hedberg14a53662011-04-27 10:29:56 -04002447 if (err < 0)
2448 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002449 else
2450 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04002451
2452failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002453 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002454 return err;
2455}
2456
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002457static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002458 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04002459{
Johan Hedbergd9306502012-02-20 23:25:18 +02002460 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04002461 struct pending_cmd *cmd;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002462 struct hci_cp_remote_name_req_cancel cp;
2463 struct inquiry_entry *e;
Johan Hedberg14a53662011-04-27 10:29:56 -04002464 int err;
2465
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002466 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04002467
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002468 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002469
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002470 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002471 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002472 MGMT_STATUS_REJECTED, &mgmt_cp->type,
2473 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02002474 goto unlock;
2475 }
2476
2477 if (hdev->discovery.type != mgmt_cp->type) {
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_INVALID_PARAMS, &mgmt_cp->type,
2480 sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002481 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02002482 }
2483
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002484 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04002485 if (!cmd) {
2486 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002487 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04002488 }
2489
Andre Guedese0d9727e2012-03-20 15:15:36 -03002490 switch (hdev->discovery.state) {
2491 case DISCOVERY_FINDING:
Andre Guedesc9ecc482012-03-15 16:52:08 -03002492 if (test_bit(HCI_INQUIRY, &hdev->flags))
2493 err = hci_cancel_inquiry(hdev);
2494 else
2495 err = hci_cancel_le_scan(hdev);
2496
Andre Guedese0d9727e2012-03-20 15:15:36 -03002497 break;
2498
2499 case DISCOVERY_RESOLVING:
2500 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002501 NAME_PENDING);
Andre Guedese0d9727e2012-03-20 15:15:36 -03002502 if (!e) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002503 mgmt_pending_remove(cmd);
Andre Guedese0d9727e2012-03-20 15:15:36 -03002504 err = cmd_complete(sk, hdev->id,
2505 MGMT_OP_STOP_DISCOVERY, 0,
2506 &mgmt_cp->type,
2507 sizeof(mgmt_cp->type));
2508 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2509 goto unlock;
2510 }
2511
2512 bacpy(&cp.bdaddr, &e->data.bdaddr);
2513 err = hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ_CANCEL,
2514 sizeof(cp), &cp);
2515
2516 break;
2517
2518 default:
2519 BT_DBG("unknown discovery state %u", hdev->discovery.state);
2520 err = -EFAULT;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002521 }
2522
Johan Hedberg14a53662011-04-27 10:29:56 -04002523 if (err < 0)
2524 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002525 else
2526 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Johan Hedberg14a53662011-04-27 10:29:56 -04002527
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002528unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002529 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002530 return err;
2531}
2532
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002533static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002534 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02002535{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002536 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002537 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002538 int err;
2539
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002540 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002541
Johan Hedberg561aafb2012-01-04 13:31:59 +02002542 hci_dev_lock(hdev);
2543
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002544 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002545 err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002546 MGMT_STATUS_FAILED);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002547 goto failed;
2548 }
2549
Johan Hedberga198e7b2012-02-17 14:27:06 +02002550 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002551 if (!e) {
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_INVALID_PARAMS);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002554 goto failed;
2555 }
2556
2557 if (cp->name_known) {
2558 e->name_state = NAME_KNOWN;
2559 list_del(&e->list);
2560 } else {
2561 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02002562 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002563 }
2564
Johan Hedberge3846622013-01-09 15:29:33 +02002565 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr,
2566 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02002567
2568failed:
2569 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002570 return err;
2571}
2572
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002573static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002574 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03002575{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002576 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002577 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03002578 int err;
2579
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002580 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03002581
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002582 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02002583 return cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
2584 MGMT_STATUS_INVALID_PARAMS,
2585 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002586
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002587 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03002588
Johan Hedberg88c1fe42012-02-09 15:56:11 +02002589 err = hci_blacklist_add(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03002590 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002591 status = MGMT_STATUS_FAILED;
Antti Julku7fbec222011-06-15 12:01:15 +03002592 else
Szymon Janca6785be2012-12-13 15:11:21 +01002593 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002594
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002595 err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002596 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03002597
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002598 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03002599
2600 return err;
2601}
2602
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002603static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002604 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03002605{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002606 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002607 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03002608 int err;
2609
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002610 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03002611
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002612 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02002613 return cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
2614 MGMT_STATUS_INVALID_PARAMS,
2615 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002616
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002617 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03002618
Johan Hedberg88c1fe42012-02-09 15:56:11 +02002619 err = hci_blacklist_del(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03002620 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002621 status = MGMT_STATUS_INVALID_PARAMS;
Antti Julku7fbec222011-06-15 12:01:15 +03002622 else
Szymon Janca6785be2012-12-13 15:11:21 +01002623 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002624
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002625 err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002626 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03002627
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002628 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03002629
2630 return err;
2631}
2632
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002633static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
2634 u16 len)
2635{
2636 struct mgmt_cp_set_device_id *cp = data;
2637 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01002638 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002639
2640 BT_DBG("%s", hdev->name);
2641
Szymon Jancc72d4b82012-03-16 16:02:57 +01002642 source = __le16_to_cpu(cp->source);
2643
2644 if (source > 0x0002)
2645 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
2646 MGMT_STATUS_INVALID_PARAMS);
2647
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002648 hci_dev_lock(hdev);
2649
Szymon Jancc72d4b82012-03-16 16:02:57 +01002650 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002651 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
2652 hdev->devid_product = __le16_to_cpu(cp->product);
2653 hdev->devid_version = __le16_to_cpu(cp->version);
2654
2655 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);
2656
2657 update_eir(hdev);
2658
2659 hci_dev_unlock(hdev);
2660
2661 return err;
2662}
2663
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002664static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002665 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03002666{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002667 struct mgmt_mode *cp = data;
Antti Julkuf6422ec2011-06-22 13:11:56 +03002668 struct hci_cp_write_page_scan_activity acp;
2669 u8 type;
2670 int err;
2671
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002672 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002673
Johan Hedberg33c525c2012-10-24 21:11:58 +03002674 if (!lmp_bredr_capable(hdev))
2675 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2676 MGMT_STATUS_NOT_SUPPORTED);
2677
Johan Hedberga7e80f22013-01-09 16:05:19 +02002678 if (cp->val != 0x00 && cp->val != 0x01)
2679 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2680 MGMT_STATUS_INVALID_PARAMS);
2681
Johan Hedberg5400c042012-02-21 16:40:33 +02002682 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002683 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002684 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02002685
2686 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002687 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002688 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002689
2690 hci_dev_lock(hdev);
2691
Johan Hedbergf7c6869c2011-12-15 00:47:36 +02002692 if (cp->val) {
Antti Julkuf6422ec2011-06-22 13:11:56 +03002693 type = PAGE_SCAN_TYPE_INTERLACED;
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002694
Johan Hedberg83ce9a062012-06-28 13:44:30 +03002695 /* 160 msec page scan interval */
2696 acp.interval = __constant_cpu_to_le16(0x0100);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002697 } else {
2698 type = PAGE_SCAN_TYPE_STANDARD; /* default */
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002699
2700 /* default 1.28 sec page scan */
2701 acp.interval = __constant_cpu_to_le16(0x0800);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002702 }
2703
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002704 /* default 11.25 msec page scan window */
2705 acp.window = __constant_cpu_to_le16(0x0012);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002706
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002707 err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY, sizeof(acp),
2708 &acp);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002709 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002710 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002711 MGMT_STATUS_FAILED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002712 goto done;
2713 }
2714
2715 err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
2716 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002717 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002718 MGMT_STATUS_FAILED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002719 goto done;
2720 }
2721
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002722 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002723 NULL, 0);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002724done:
2725 hci_dev_unlock(hdev);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002726 return err;
2727}
2728
Johan Hedberg3f706b72013-01-20 14:27:16 +02002729static bool ltk_is_valid(struct mgmt_ltk_info *key)
2730{
Johan Hedberg44b20d32013-01-20 14:27:17 +02002731 if (key->authenticated != 0x00 && key->authenticated != 0x01)
2732 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02002733 if (key->master != 0x00 && key->master != 0x01)
2734 return false;
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002735 if (!bdaddr_type_is_le(key->addr.type))
2736 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02002737 return true;
2738}
2739
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002740static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002741 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002742{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002743 struct mgmt_cp_load_long_term_keys *cp = cp_data;
2744 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002745 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002746
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002747 key_count = __le16_to_cpu(cp->key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002748
2749 expected_len = sizeof(*cp) + key_count *
2750 sizeof(struct mgmt_ltk_info);
2751 if (expected_len != len) {
2752 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002753 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002754 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Johan Hedberge57e6192013-01-20 14:27:14 +02002755 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002756 }
2757
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002758 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002759
Johan Hedberg54ad6d82013-01-20 14:27:15 +02002760 for (i = 0; i < key_count; i++) {
2761 struct mgmt_ltk_info *key = &cp->keys[i];
2762
Johan Hedberg3f706b72013-01-20 14:27:16 +02002763 if (!ltk_is_valid(key))
Johan Hedberg54ad6d82013-01-20 14:27:15 +02002764 return cmd_status(sk, hdev->id,
2765 MGMT_OP_LOAD_LONG_TERM_KEYS,
2766 MGMT_STATUS_INVALID_PARAMS);
2767 }
2768
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002769 hci_dev_lock(hdev);
2770
2771 hci_smp_ltks_clear(hdev);
2772
2773 for (i = 0; i < key_count; i++) {
2774 struct mgmt_ltk_info *key = &cp->keys[i];
2775 u8 type;
2776
2777 if (key->master)
2778 type = HCI_SMP_LTK;
2779 else
2780 type = HCI_SMP_LTK_SLAVE;
2781
Hemant Gupta4596fde52012-04-16 14:57:40 +05302782 hci_add_ltk(hdev, &key->addr.bdaddr,
Andre Guedes378b5b72012-04-24 21:02:51 -03002783 bdaddr_to_le(key->addr.type),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002784 type, 0, key->authenticated, key->val,
2785 key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002786 }
2787
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002788 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
2789 NULL, 0);
2790
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002791 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002792
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002793 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002794}
2795
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02002796static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002797 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
2798 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02002799 bool var_len;
2800 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002801} mgmt_handlers[] = {
2802 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02002803 { read_version, false, MGMT_READ_VERSION_SIZE },
2804 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
2805 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
2806 { read_controller_info, false, MGMT_READ_INFO_SIZE },
2807 { set_powered, false, MGMT_SETTING_SIZE },
2808 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
2809 { set_connectable, false, MGMT_SETTING_SIZE },
2810 { set_fast_connectable, false, MGMT_SETTING_SIZE },
2811 { set_pairable, false, MGMT_SETTING_SIZE },
2812 { set_link_security, false, MGMT_SETTING_SIZE },
2813 { set_ssp, false, MGMT_SETTING_SIZE },
2814 { set_hs, false, MGMT_SETTING_SIZE },
2815 { set_le, false, MGMT_SETTING_SIZE },
2816 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
2817 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
2818 { add_uuid, false, MGMT_ADD_UUID_SIZE },
2819 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
2820 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
2821 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
2822 { disconnect, false, MGMT_DISCONNECT_SIZE },
2823 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
2824 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
2825 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
2826 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
2827 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
2828 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
2829 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
2830 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
2831 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
2832 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
2833 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
2834 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
2835 { add_remote_oob_data, false, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
2836 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
2837 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
2838 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
2839 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
2840 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
2841 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002842 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002843};
2844
2845
Johan Hedberg03811012010-12-08 00:21:06 +02002846int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
2847{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002848 void *buf;
2849 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02002850 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01002851 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002852 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02002853 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02002854 int err;
2855
2856 BT_DBG("got %zu bytes", msglen);
2857
2858 if (msglen < sizeof(*hdr))
2859 return -EINVAL;
2860
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03002861 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02002862 if (!buf)
2863 return -ENOMEM;
2864
2865 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
2866 err = -EFAULT;
2867 goto done;
2868 }
2869
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002870 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002871 opcode = __le16_to_cpu(hdr->opcode);
2872 index = __le16_to_cpu(hdr->index);
2873 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02002874
2875 if (len != msglen - sizeof(*hdr)) {
2876 err = -EINVAL;
2877 goto done;
2878 }
2879
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002880 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002881 hdev = hci_dev_get(index);
2882 if (!hdev) {
2883 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002884 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002885 goto done;
2886 }
2887 }
2888
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002889 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002890 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02002891 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02002892 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002893 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002894 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02002895 }
2896
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002897 if ((hdev && opcode < MGMT_OP_READ_INFO) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002898 (!hdev && opcode >= MGMT_OP_READ_INFO)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002899 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002900 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002901 goto done;
2902 }
2903
Johan Hedbergbe22b542012-03-01 22:24:41 +02002904 handler = &mgmt_handlers[opcode];
2905
2906 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002907 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02002908 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002909 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02002910 goto done;
2911 }
2912
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002913 if (hdev)
2914 mgmt_init_hdev(sk, hdev);
2915
2916 cp = buf + sizeof(*hdr);
2917
Johan Hedbergbe22b542012-03-01 22:24:41 +02002918 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02002919 if (err < 0)
2920 goto done;
2921
Johan Hedberg03811012010-12-08 00:21:06 +02002922 err = msglen;
2923
2924done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002925 if (hdev)
2926 hci_dev_put(hdev);
2927
Johan Hedberg03811012010-12-08 00:21:06 +02002928 kfree(buf);
2929 return err;
2930}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002931
Johan Hedbergb24752f2011-11-03 14:40:33 +02002932static void cmd_status_rsp(struct pending_cmd *cmd, void *data)
2933{
2934 u8 *status = data;
2935
2936 cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
2937 mgmt_pending_remove(cmd);
2938}
2939
Johan Hedberg744cf192011-11-08 20:40:14 +02002940int mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002941{
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03002942 if (!mgmt_valid_hdev(hdev))
2943 return -ENOTSUPP;
2944
Johan Hedberg744cf192011-11-08 20:40:14 +02002945 return mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002946}
2947
Johan Hedberg744cf192011-11-08 20:40:14 +02002948int mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002949{
Johan Hedberg5f159032012-03-02 03:13:19 +02002950 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02002951
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03002952 if (!mgmt_valid_hdev(hdev))
2953 return -ENOTSUPP;
2954
Johan Hedberg744cf192011-11-08 20:40:14 +02002955 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02002956
Johan Hedberg744cf192011-11-08 20:40:14 +02002957 return mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002958}
2959
Johan Hedberg73f22f62010-12-29 16:00:25 +02002960struct cmd_lookup {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002961 struct sock *sk;
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002962 struct hci_dev *hdev;
Johan Hedberg90e70452012-02-23 23:09:40 +02002963 u8 mgmt_status;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002964};
2965
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002966static void settings_rsp(struct pending_cmd *cmd, void *data)
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002967{
Johan Hedberg73f22f62010-12-29 16:00:25 +02002968 struct cmd_lookup *match = data;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002969
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002970 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002971
2972 list_del(&cmd->list);
2973
2974 if (match->sk == NULL) {
2975 match->sk = cmd->sk;
2976 sock_hold(match->sk);
2977 }
2978
2979 mgmt_pending_free(cmd);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002980}
Johan Hedberg5add6af2010-12-16 10:00:37 +02002981
Johan Hedberg7f0ae642012-10-24 21:11:57 +03002982static int set_bredr_scan(struct hci_dev *hdev)
2983{
2984 u8 scan = 0;
2985
2986 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
2987 scan |= SCAN_PAGE;
2988 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
2989 scan |= SCAN_INQUIRY;
2990
2991 if (!scan)
2992 return 0;
2993
2994 return hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
2995}
2996
Johan Hedberg744cf192011-11-08 20:40:14 +02002997int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02002998{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02002999 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003000 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02003001
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003002 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
3003 return 0;
3004
Johan Hedberg69ab39e2011-12-15 00:47:35 +02003005 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg5add6af2010-12-16 10:00:37 +02003006
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003007 if (powered) {
Johan Hedberg6b4b73e2012-10-25 00:09:52 +03003008 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
3009 !lmp_host_ssp_capable(hdev)) {
Andrzej Kaczmarek3d1cbdd2012-08-29 10:02:08 +02003010 u8 ssp = 1;
3011
3012 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &ssp);
3013 }
3014
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02003015 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
3016 struct hci_cp_write_le_host_supported cp;
3017
3018 cp.le = 1;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02003019 cp.simul = lmp_le_br_capable(hdev);
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02003020
Johan Hedberg430a61b2012-10-25 00:09:53 +03003021 /* Check first if we already have the right
3022 * host state (host features set)
3023 */
Gustavo Padovanffa88e02012-11-23 16:50:51 -02003024 if (cp.le != lmp_host_le_capable(hdev) ||
3025 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg430a61b2012-10-25 00:09:53 +03003026 hci_send_cmd(hdev,
3027 HCI_OP_WRITE_LE_HOST_SUPPORTED,
3028 sizeof(cp), &cp);
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02003029 }
3030
Johan Hedberg7f0ae642012-10-24 21:11:57 +03003031 if (lmp_bredr_capable(hdev)) {
3032 set_bredr_scan(hdev);
3033 update_class(hdev);
3034 update_name(hdev, hdev->dev_name);
3035 update_eir(hdev);
3036 }
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003037 } else {
Johan Hedbergd4f68522012-03-02 03:07:07 +02003038 u8 status = MGMT_STATUS_NOT_POWERED;
Johan Hedbergfe038882013-01-16 16:15:34 +02003039 u8 zero_cod[] = { 0, 0, 0 };
3040
Johan Hedberg744cf192011-11-08 20:40:14 +02003041 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergfe038882013-01-16 16:15:34 +02003042
3043 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
3044 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
3045 zero_cod, sizeof(zero_cod), NULL);
Johan Hedbergb24752f2011-11-03 14:40:33 +02003046 }
3047
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003048 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02003049
3050 if (match.sk)
3051 sock_put(match.sk);
3052
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003053 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02003054}
Johan Hedberg73f22f62010-12-29 16:00:25 +02003055
Johan Hedberg744cf192011-11-08 20:40:14 +02003056int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
Johan Hedberg73f22f62010-12-29 16:00:25 +02003057{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003058 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003059 bool changed = false;
3060 int err = 0;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003061
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003062 if (discoverable) {
3063 if (!test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3064 changed = true;
3065 } else {
3066 if (test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
3067 changed = true;
3068 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02003069
Johan Hedberged9b5f22012-02-21 20:47:06 +02003070 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003071 &match);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003072
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003073 if (changed)
3074 err = new_settings(hdev, match.sk);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003075
Johan Hedberg73f22f62010-12-29 16:00:25 +02003076 if (match.sk)
3077 sock_put(match.sk);
3078
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003079 return err;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003080}
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003081
Johan Hedberg744cf192011-11-08 20:40:14 +02003082int mgmt_connectable(struct hci_dev *hdev, u8 connectable)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003083{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003084 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003085 bool changed = false;
3086 int err = 0;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003087
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003088 if (connectable) {
3089 if (!test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3090 changed = true;
3091 } else {
3092 if (test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3093 changed = true;
3094 }
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003095
Johan Hedberged9b5f22012-02-21 20:47:06 +02003096 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003097 &match);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003098
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003099 if (changed)
3100 err = new_settings(hdev, match.sk);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003101
3102 if (match.sk)
3103 sock_put(match.sk);
3104
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003105 return err;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003106}
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003107
Johan Hedberg744cf192011-11-08 20:40:14 +02003108int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003109{
Johan Hedbergca69b792011-11-11 18:10:00 +02003110 u8 mgmt_err = mgmt_status(status);
3111
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003112 if (scan & SCAN_PAGE)
Johan Hedberg744cf192011-11-08 20:40:14 +02003113 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003114 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003115
3116 if (scan & SCAN_INQUIRY)
Johan Hedberg744cf192011-11-08 20:40:14 +02003117 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003118 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003119
3120 return 0;
3121}
3122
Cristian Chilipirea53168e52012-05-09 08:44:52 +03003123int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
3124 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003125{
Johan Hedberg86742e12011-11-07 23:13:38 +02003126 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003127
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003128 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003129
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003130 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02003131 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003132 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003133 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03003134 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003135 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003136
Johan Hedberg744cf192011-11-08 20:40:14 +02003137 return mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003138}
Johan Hedbergf7520542011-01-20 12:34:39 +02003139
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003140int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent)
3141{
3142 struct mgmt_ev_new_long_term_key ev;
3143
3144 memset(&ev, 0, sizeof(ev));
3145
3146 ev.store_hint = persistent;
3147 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003148 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003149 ev.key.authenticated = key->authenticated;
3150 ev.key.enc_size = key->enc_size;
3151 ev.key.ediv = key->ediv;
3152
3153 if (key->type == HCI_SMP_LTK)
3154 ev.key.master = 1;
3155
3156 memcpy(ev.key.rand, key->rand, sizeof(key->rand));
3157 memcpy(ev.key.val, key->val, sizeof(key->val));
3158
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003159 return mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev),
3160 NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003161}
3162
Johan Hedbergafc747a2012-01-15 18:11:07 +02003163int mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003164 u8 addr_type, u32 flags, u8 *name, u8 name_len,
3165 u8 *dev_class)
Johan Hedbergf7520542011-01-20 12:34:39 +02003166{
Johan Hedbergb644ba32012-01-17 21:48:47 +02003167 char buf[512];
3168 struct mgmt_ev_device_connected *ev = (void *) buf;
3169 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02003170
Johan Hedbergb644ba32012-01-17 21:48:47 +02003171 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003172 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02003173
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02003174 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02003175
Johan Hedbergb644ba32012-01-17 21:48:47 +02003176 if (name_len > 0)
3177 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003178 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003179
3180 if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
Brian Gix53156382012-03-09 14:07:03 -08003181 eir_len = eir_append_data(ev->eir, eir_len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003182 EIR_CLASS_OF_DEV, dev_class, 3);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003183
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003184 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003185
3186 return mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003187 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02003188}
3189
Johan Hedberg8962ee72011-01-20 12:40:27 +02003190static void disconnect_rsp(struct pending_cmd *cmd, void *data)
3191{
Szymon Jancc68fb7f2011-03-22 13:12:19 +01003192 struct mgmt_cp_disconnect *cp = cmd->param;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003193 struct sock **sk = data;
Johan Hedberga38528f2011-01-22 06:46:43 +02003194 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003195
Johan Hedberg88c3df12012-02-09 14:27:38 +02003196 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3197 rp.addr.type = cp->addr.type;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003198
Johan Hedbergaee9b212012-02-18 15:07:59 +02003199 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003200 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003201
3202 *sk = cmd->sk;
3203 sock_hold(*sk);
3204
Johan Hedberga664b5b2011-02-19 12:06:02 -03003205 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003206}
3207
Johan Hedberg124f6e32012-02-09 13:50:12 +02003208static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02003209{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003210 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02003211 struct mgmt_cp_unpair_device *cp = cmd->param;
3212 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003213
3214 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02003215 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3216 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003217
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003218 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
3219
Johan Hedbergaee9b212012-02-18 15:07:59 +02003220 cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02003221
3222 mgmt_pending_remove(cmd);
3223}
3224
Johan Hedbergafc747a2012-01-15 18:11:07 +02003225int mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003226 u8 link_type, u8 addr_type, u8 reason)
Johan Hedbergf7520542011-01-20 12:34:39 +02003227{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003228 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003229 struct sock *sk = NULL;
3230 int err;
3231
Johan Hedberg744cf192011-11-08 20:40:14 +02003232 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02003233
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003234 bacpy(&ev.addr.bdaddr, bdaddr);
3235 ev.addr.type = link_to_bdaddr(link_type, addr_type);
3236 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02003237
Johan Hedbergafc747a2012-01-15 18:11:07 +02003238 err = mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003239 sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003240
3241 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01003242 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003243
Johan Hedberg124f6e32012-02-09 13:50:12 +02003244 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003245 hdev);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003246
Johan Hedberg8962ee72011-01-20 12:40:27 +02003247 return err;
3248}
3249
Johan Hedberg88c3df12012-02-09 14:27:38 +02003250int mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003251 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02003252{
Johan Hedberg88c3df12012-02-09 14:27:38 +02003253 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003254 struct pending_cmd *cmd;
3255 int err;
3256
Jefferson Delfes36a75f12012-09-18 13:36:54 -04003257 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
3258 hdev);
3259
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003260 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003261 if (!cmd)
3262 return -ENOENT;
3263
Johan Hedberg88c3df12012-02-09 14:27:38 +02003264 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003265 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02003266
Johan Hedberg88c3df12012-02-09 14:27:38 +02003267 err = cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003268 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003269
Johan Hedberga664b5b2011-02-19 12:06:02 -03003270 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003271
3272 return err;
Johan Hedbergf7520542011-01-20 12:34:39 +02003273}
Johan Hedberg17d5c042011-01-22 06:09:08 +02003274
Johan Hedberg48264f02011-11-09 13:58:58 +02003275int mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003276 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02003277{
3278 struct mgmt_ev_connect_failed ev;
3279
Johan Hedberg4c659c32011-11-07 23:13:39 +02003280 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003281 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02003282 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02003283
Johan Hedberg744cf192011-11-08 20:40:14 +02003284 return mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02003285}
Johan Hedberg980e1a52011-01-22 06:10:07 +02003286
Johan Hedberg744cf192011-11-08 20:40:14 +02003287int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003288{
3289 struct mgmt_ev_pin_code_request ev;
3290
Johan Hedbergd8457692012-02-17 14:24:57 +02003291 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003292 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02003293 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003294
Johan Hedberg744cf192011-11-08 20:40:14 +02003295 return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003296 NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003297}
3298
Johan Hedberg744cf192011-11-08 20:40:14 +02003299int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003300 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003301{
3302 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003303 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003304 int err;
3305
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003306 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003307 if (!cmd)
3308 return -ENOENT;
3309
Johan Hedbergd8457692012-02-17 14:24:57 +02003310 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003311 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003312
Johan Hedbergaee9b212012-02-18 15:07:59 +02003313 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003314 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003315
Johan Hedberga664b5b2011-02-19 12:06:02 -03003316 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003317
3318 return err;
3319}
3320
Johan Hedberg744cf192011-11-08 20:40:14 +02003321int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003322 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003323{
3324 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003325 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003326 int err;
3327
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003328 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003329 if (!cmd)
3330 return -ENOENT;
3331
Johan Hedbergd8457692012-02-17 14:24:57 +02003332 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003333 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003334
Johan Hedbergaee9b212012-02-18 15:07:59 +02003335 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003336 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003337
Johan Hedberga664b5b2011-02-19 12:06:02 -03003338 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003339
3340 return err;
3341}
Johan Hedberga5c29682011-02-19 12:05:57 -03003342
Johan Hedberg744cf192011-11-08 20:40:14 +02003343int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003344 u8 link_type, u8 addr_type, __le32 value,
3345 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03003346{
3347 struct mgmt_ev_user_confirm_request ev;
3348
Johan Hedberg744cf192011-11-08 20:40:14 +02003349 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03003350
Johan Hedberg272d90d2012-02-09 15:26:12 +02003351 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003352 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003353 ev.confirm_hint = confirm_hint;
Andrei Emeltchenko78e80982012-03-09 13:00:50 +02003354 ev.value = value;
Johan Hedberga5c29682011-02-19 12:05:57 -03003355
Johan Hedberg744cf192011-11-08 20:40:14 +02003356 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003357 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03003358}
3359
Johan Hedberg272d90d2012-02-09 15:26:12 +02003360int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003361 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08003362{
3363 struct mgmt_ev_user_passkey_request ev;
3364
3365 BT_DBG("%s", hdev->name);
3366
Johan Hedberg272d90d2012-02-09 15:26:12 +02003367 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003368 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08003369
3370 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003371 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08003372}
3373
Brian Gix0df4c182011-11-16 13:53:13 -08003374static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003375 u8 link_type, u8 addr_type, u8 status,
3376 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03003377{
3378 struct pending_cmd *cmd;
3379 struct mgmt_rp_user_confirm_reply rp;
3380 int err;
3381
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003382 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003383 if (!cmd)
3384 return -ENOENT;
3385
Johan Hedberg272d90d2012-02-09 15:26:12 +02003386 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003387 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergaee9b212012-02-18 15:07:59 +02003388 err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003389 &rp, sizeof(rp));
Johan Hedberga5c29682011-02-19 12:05:57 -03003390
Johan Hedberga664b5b2011-02-19 12:06:02 -03003391 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003392
3393 return err;
3394}
3395
Johan Hedberg744cf192011-11-08 20:40:14 +02003396int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003397 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03003398{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003399 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003400 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03003401}
3402
Johan Hedberg272d90d2012-02-09 15:26:12 +02003403int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003404 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03003405{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003406 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003407 status,
3408 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03003409}
Johan Hedberg2a611692011-02-19 12:06:00 -03003410
Brian Gix604086b2011-11-23 08:28:33 -08003411int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003412 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08003413{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003414 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003415 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08003416}
3417
Johan Hedberg272d90d2012-02-09 15:26:12 +02003418int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003419 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08003420{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003421 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003422 status,
3423 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08003424}
3425
Johan Hedberg92a25252012-09-06 18:39:26 +03003426int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
3427 u8 link_type, u8 addr_type, u32 passkey,
3428 u8 entered)
3429{
3430 struct mgmt_ev_passkey_notify ev;
3431
3432 BT_DBG("%s", hdev->name);
3433
3434 bacpy(&ev.addr.bdaddr, bdaddr);
3435 ev.addr.type = link_to_bdaddr(link_type, addr_type);
3436 ev.passkey = __cpu_to_le32(passkey);
3437 ev.entered = entered;
3438
3439 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
3440}
3441
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003442int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003443 u8 addr_type, u8 status)
Johan Hedberg2a611692011-02-19 12:06:00 -03003444{
3445 struct mgmt_ev_auth_failed ev;
3446
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003447 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003448 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02003449 ev.status = mgmt_status(status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003450
Johan Hedberg744cf192011-11-08 20:40:14 +02003451 return mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg2a611692011-02-19 12:06:00 -03003452}
Johan Hedbergb312b1612011-03-16 14:29:37 +02003453
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003454int mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
3455{
3456 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg47990ea2012-02-22 11:58:37 +02003457 bool changed = false;
3458 int err = 0;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003459
3460 if (status) {
3461 u8 mgmt_err = mgmt_status(status);
3462 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003463 cmd_status_rsp, &mgmt_err);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003464 return 0;
3465 }
3466
Johan Hedberg47990ea2012-02-22 11:58:37 +02003467 if (test_bit(HCI_AUTH, &hdev->flags)) {
3468 if (!test_and_set_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
3469 changed = true;
3470 } else {
3471 if (test_and_clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
3472 changed = true;
3473 }
3474
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003475 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003476 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003477
Johan Hedberg47990ea2012-02-22 11:58:37 +02003478 if (changed)
3479 err = new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003480
3481 if (match.sk)
3482 sock_put(match.sk);
3483
3484 return err;
3485}
3486
Johan Hedbergcacaf522012-02-21 00:52:42 +02003487static int clear_eir(struct hci_dev *hdev)
3488{
3489 struct hci_cp_write_eir cp;
3490
Johan Hedberg976eb202012-10-24 21:12:01 +03003491 if (!lmp_ext_inq_capable(hdev))
Johan Hedbergcacaf522012-02-21 00:52:42 +02003492 return 0;
3493
Johan Hedbergc80da272012-02-22 15:38:48 +02003494 memset(hdev->eir, 0, sizeof(hdev->eir));
3495
Johan Hedbergcacaf522012-02-21 00:52:42 +02003496 memset(&cp, 0, sizeof(cp));
3497
3498 return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
3499}
3500
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003501int mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003502{
3503 struct cmd_lookup match = { NULL, hdev };
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003504 bool changed = false;
3505 int err = 0;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003506
3507 if (status) {
3508 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003509
3510 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003511 &hdev->dev_flags))
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003512 err = new_settings(hdev, NULL);
3513
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003514 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
3515 &mgmt_err);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003516
3517 return err;
3518 }
3519
3520 if (enable) {
3521 if (!test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3522 changed = true;
3523 } else {
3524 if (test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3525 changed = true;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003526 }
3527
3528 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
3529
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003530 if (changed)
3531 err = new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003532
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02003533 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003534 sock_put(match.sk);
3535
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02003536 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3537 update_eir(hdev);
3538 else
3539 clear_eir(hdev);
Johan Hedbergcacaf522012-02-21 00:52:42 +02003540
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003541 return err;
3542}
3543
Johan Hedberg90e70452012-02-23 23:09:40 +02003544static void class_rsp(struct pending_cmd *cmd, void *data)
3545{
3546 struct cmd_lookup *match = data;
3547
3548 cmd_complete(cmd->sk, cmd->index, cmd->opcode, match->mgmt_status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003549 match->hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02003550
3551 list_del(&cmd->list);
3552
3553 if (match->sk == NULL) {
3554 match->sk = cmd->sk;
3555 sock_hold(match->sk);
3556 }
3557
3558 mgmt_pending_free(cmd);
3559}
3560
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003561int mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003562 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003563{
Johan Hedberg90e70452012-02-23 23:09:40 +02003564 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
3565 int err = 0;
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003566
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02003567 clear_bit(HCI_PENDING_CLASS, &hdev->dev_flags);
3568
Johan Hedberg90e70452012-02-23 23:09:40 +02003569 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, class_rsp, &match);
3570 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, class_rsp, &match);
3571 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, class_rsp, &match);
3572
3573 if (!status)
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003574 err = mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
3575 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02003576
3577 if (match.sk)
3578 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003579
3580 return err;
3581}
3582
Johan Hedberg744cf192011-11-08 20:40:14 +02003583int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003584{
3585 struct pending_cmd *cmd;
3586 struct mgmt_cp_set_local_name ev;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003587 bool changed = false;
3588 int err = 0;
3589
3590 if (memcmp(name, hdev->dev_name, sizeof(hdev->dev_name)) != 0) {
3591 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
3592 changed = true;
3593 }
Johan Hedbergb312b1612011-03-16 14:29:37 +02003594
3595 memset(&ev, 0, sizeof(ev));
3596 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003597 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003598
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003599 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003600 if (!cmd)
3601 goto send_event;
3602
Johan Hedberg7bdaae42012-02-22 21:39:58 +02003603 /* Always assume that either the short or the complete name has
3604 * changed if there was a pending mgmt command */
3605 changed = true;
3606
Johan Hedbergb312b1612011-03-16 14:29:37 +02003607 if (status) {
Johan Hedberg744cf192011-11-08 20:40:14 +02003608 err = cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003609 mgmt_status(status));
Johan Hedbergb312b1612011-03-16 14:29:37 +02003610 goto failed;
3611 }
3612
Johan Hedbergaee9b212012-02-18 15:07:59 +02003613 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0, &ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003614 sizeof(ev));
Johan Hedbergb312b1612011-03-16 14:29:37 +02003615 if (err < 0)
3616 goto failed;
3617
3618send_event:
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003619 if (changed)
3620 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003621 sizeof(ev), cmd ? cmd->sk : NULL);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003622
Johan Hedberg1225a6b2012-10-25 00:09:54 +03003623 /* EIR is taken care of separately when powering on the
3624 * adapter so only update them here if this is a name change
3625 * unrelated to power on.
3626 */
3627 if (!test_bit(HCI_INIT, &hdev->flags))
3628 update_eir(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003629
3630failed:
3631 if (cmd)
3632 mgmt_pending_remove(cmd);
3633 return err;
3634}
Szymon Jancc35938b2011-03-22 13:12:21 +01003635
Johan Hedberg744cf192011-11-08 20:40:14 +02003636int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003637 u8 *randomizer, u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01003638{
3639 struct pending_cmd *cmd;
3640 int err;
3641
Johan Hedberg744cf192011-11-08 20:40:14 +02003642 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01003643
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003644 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003645 if (!cmd)
3646 return -ENOENT;
3647
3648 if (status) {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003649 err = cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3650 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01003651 } else {
3652 struct mgmt_rp_read_local_oob_data rp;
3653
3654 memcpy(rp.hash, hash, sizeof(rp.hash));
3655 memcpy(rp.randomizer, randomizer, sizeof(rp.randomizer));
3656
Johan Hedberg744cf192011-11-08 20:40:14 +02003657 err = cmd_complete(cmd->sk, hdev->id,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003658 MGMT_OP_READ_LOCAL_OOB_DATA, 0, &rp,
3659 sizeof(rp));
Szymon Jancc35938b2011-03-22 13:12:21 +01003660 }
3661
3662 mgmt_pending_remove(cmd);
3663
3664 return err;
3665}
Johan Hedberge17acd42011-03-30 23:57:16 +03003666
Johan Hedberg06199cf2012-02-22 16:37:11 +02003667int mgmt_le_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
3668{
3669 struct cmd_lookup match = { NULL, hdev };
3670 bool changed = false;
3671 int err = 0;
3672
3673 if (status) {
3674 u8 mgmt_err = mgmt_status(status);
3675
3676 if (enable && test_and_clear_bit(HCI_LE_ENABLED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003677 &hdev->dev_flags))
Szymon Jancd97dcb62012-03-16 16:02:56 +01003678 err = new_settings(hdev, NULL);
Johan Hedberg06199cf2012-02-22 16:37:11 +02003679
Szymon Jancd97dcb62012-03-16 16:02:56 +01003680 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
3681 &mgmt_err);
Johan Hedberg06199cf2012-02-22 16:37:11 +02003682
3683 return err;
3684 }
3685
3686 if (enable) {
3687 if (!test_and_set_bit(HCI_LE_ENABLED, &hdev->dev_flags))
3688 changed = true;
3689 } else {
3690 if (test_and_clear_bit(HCI_LE_ENABLED, &hdev->dev_flags))
3691 changed = true;
3692 }
3693
3694 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
3695
3696 if (changed)
3697 err = new_settings(hdev, match.sk);
3698
3699 if (match.sk)
3700 sock_put(match.sk);
3701
3702 return err;
3703}
3704
Johan Hedberg48264f02011-11-09 13:58:58 +02003705int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003706 u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name, u8
3707 ssp, u8 *eir, u16 eir_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03003708{
Johan Hedberge319d2e2012-01-15 19:51:59 +02003709 char buf[512];
3710 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02003711 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03003712
Johan Hedberg1dc06092012-01-15 21:01:23 +02003713 /* Leave 5 bytes for a potential CoD field */
3714 if (sizeof(*ev) + eir_len + 5 > sizeof(buf))
Andre Guedes7d262f82012-01-10 18:20:49 -03003715 return -EINVAL;
3716
Johan Hedberg1dc06092012-01-15 21:01:23 +02003717 memset(buf, 0, sizeof(buf));
3718
Johan Hedberge319d2e2012-01-15 19:51:59 +02003719 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003720 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02003721 ev->rssi = rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +02003722 if (cfm_name)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05303723 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_CONFIRM_NAME);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003724 if (!ssp)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05303725 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_LEGACY_PAIRING);
Johan Hedberge17acd42011-03-30 23:57:16 +03003726
Johan Hedberg1dc06092012-01-15 21:01:23 +02003727 if (eir_len > 0)
Johan Hedberge319d2e2012-01-15 19:51:59 +02003728 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03003729
Johan Hedberg1dc06092012-01-15 21:01:23 +02003730 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
3731 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003732 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02003733
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003734 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedberg1dc06092012-01-15 21:01:23 +02003735 ev_size = sizeof(*ev) + eir_len;
Andre Guedesf8523592011-09-09 18:56:26 -03003736
Johan Hedberge319d2e2012-01-15 19:51:59 +02003737 return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03003738}
Johan Hedberga88a9652011-03-30 13:18:12 +03003739
Johan Hedbergb644ba32012-01-17 21:48:47 +02003740int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003741 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03003742{
Johan Hedbergb644ba32012-01-17 21:48:47 +02003743 struct mgmt_ev_device_found *ev;
3744 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
3745 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03003746
Johan Hedbergb644ba32012-01-17 21:48:47 +02003747 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03003748
Johan Hedbergb644ba32012-01-17 21:48:47 +02003749 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03003750
Johan Hedbergb644ba32012-01-17 21:48:47 +02003751 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003752 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003753 ev->rssi = rssi;
3754
3755 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003756 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003757
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003758 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003759
Johan Hedberg053c7e02012-02-04 00:06:00 +02003760 return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003761 sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03003762}
Johan Hedberg314b2382011-04-27 10:29:57 -04003763
Andre Guedes7a135102011-11-09 17:14:25 -03003764int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status)
Johan Hedberg164a6e72011-11-01 17:06:44 +02003765{
3766 struct pending_cmd *cmd;
Johan Hedbergf808e162012-02-19 12:52:07 +02003767 u8 type;
Johan Hedberg164a6e72011-11-01 17:06:44 +02003768 int err;
3769
Andre Guedes203159d2012-02-13 15:41:01 -03003770 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3771
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003772 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003773 if (!cmd)
3774 return -ENOENT;
3775
Johan Hedbergf808e162012-02-19 12:52:07 +02003776 type = hdev->discovery.type;
3777
3778 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003779 &type, sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02003780 mgmt_pending_remove(cmd);
3781
3782 return err;
3783}
3784
Andre Guedese6d465c2011-11-09 17:14:26 -03003785int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status)
3786{
3787 struct pending_cmd *cmd;
3788 int err;
3789
3790 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
3791 if (!cmd)
3792 return -ENOENT;
3793
Johan Hedbergd9306502012-02-20 23:25:18 +02003794 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003795 &hdev->discovery.type, sizeof(hdev->discovery.type));
Johan Hedberg03811012010-12-08 00:21:06 +02003796 mgmt_pending_remove(cmd);
3797
3798 return err;
3799}
Johan Hedberg314b2382011-04-27 10:29:57 -04003800
Johan Hedberg744cf192011-11-08 20:40:14 +02003801int mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04003802{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02003803 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02003804 struct pending_cmd *cmd;
3805
Andre Guedes343fb142011-11-22 17:14:19 -03003806 BT_DBG("%s discovering %u", hdev->name, discovering);
3807
Johan Hedberg164a6e72011-11-01 17:06:44 +02003808 if (discovering)
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003809 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003810 else
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003811 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003812
3813 if (cmd != NULL) {
Johan Hedbergf808e162012-02-19 12:52:07 +02003814 u8 type = hdev->discovery.type;
3815
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003816 cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
3817 sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02003818 mgmt_pending_remove(cmd);
3819 }
3820
Johan Hedbergf963e8e2012-02-20 23:30:44 +02003821 memset(&ev, 0, sizeof(ev));
3822 ev.type = hdev->discovery.type;
3823 ev.discovering = discovering;
3824
3825 return mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04003826}
Antti Julku5e762442011-08-25 16:48:02 +03003827
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003828int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03003829{
3830 struct pending_cmd *cmd;
3831 struct mgmt_ev_device_blocked ev;
3832
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003833 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003834
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003835 bacpy(&ev.addr.bdaddr, bdaddr);
3836 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03003837
Johan Hedberg744cf192011-11-08 20:40:14 +02003838 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003839 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03003840}
3841
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003842int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03003843{
3844 struct pending_cmd *cmd;
3845 struct mgmt_ev_device_unblocked ev;
3846
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003847 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003848
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003849 bacpy(&ev.addr.bdaddr, bdaddr);
3850 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03003851
Johan Hedberg744cf192011-11-08 20:40:14 +02003852 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003853 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03003854}
Marcel Holtmannd7b7e792012-02-20 21:47:49 +01003855
3856module_param(enable_hs, bool, 0644);
3857MODULE_PARM_DESC(enable_hs, "Enable High Speed support");