blob: 3959c471b2b4c62357ec7f1e32742bee27de03dd [file] [log] [blame]
Johan Hedberg03811012010-12-08 00:21:06 +02001/*
2 BlueZ - Bluetooth protocol stack for Linux
Johan Hedbergea585ab2012-02-17 14:50:39 +02003
Johan Hedberg03811012010-12-08 00:21:06 +02004 Copyright (C) 2010 Nokia Corporation
Johan Hedbergea585ab2012-02-17 14:50:39 +02005 Copyright (C) 2011-2012 Intel Corporation
Johan Hedberg03811012010-12-08 00:21:06 +02006
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
10
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
15 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
22 SOFTWARE IS DISCLAIMED.
23*/
24
25/* Bluetooth HCI Management interface */
26
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040027#include <linux/module.h>
Johan Hedberg03811012010-12-08 00:21:06 +020028#include <asm/unaligned.h>
29
30#include <net/bluetooth/bluetooth.h>
31#include <net/bluetooth/hci_core.h>
32#include <net/bluetooth/mgmt.h>
Brian Gix5fe57d92011-12-21 16:12:13 -080033#include <net/bluetooth/smp.h>
Johan Hedberg03811012010-12-08 00:21:06 +020034
Marcel Holtmannd7b7e792012-02-20 21:47:49 +010035bool enable_hs;
Marcel Holtmannd7b7e792012-02-20 21:47:49 +010036
Johan Hedberg2da9c552012-02-17 14:39:28 +020037#define MGMT_VERSION 1
Johan Hedberg23b3b132012-09-06 18:39:27 +030038#define MGMT_REVISION 2
Johan Hedberg02d98122010-12-13 21:07:04 +020039
Johan Hedberge70bb2e2012-02-13 16:59:33 +020040static const u16 mgmt_commands[] = {
41 MGMT_OP_READ_INDEX_LIST,
42 MGMT_OP_READ_INFO,
43 MGMT_OP_SET_POWERED,
44 MGMT_OP_SET_DISCOVERABLE,
45 MGMT_OP_SET_CONNECTABLE,
46 MGMT_OP_SET_FAST_CONNECTABLE,
47 MGMT_OP_SET_PAIRABLE,
48 MGMT_OP_SET_LINK_SECURITY,
49 MGMT_OP_SET_SSP,
50 MGMT_OP_SET_HS,
51 MGMT_OP_SET_LE,
52 MGMT_OP_SET_DEV_CLASS,
53 MGMT_OP_SET_LOCAL_NAME,
54 MGMT_OP_ADD_UUID,
55 MGMT_OP_REMOVE_UUID,
56 MGMT_OP_LOAD_LINK_KEYS,
57 MGMT_OP_LOAD_LONG_TERM_KEYS,
58 MGMT_OP_DISCONNECT,
59 MGMT_OP_GET_CONNECTIONS,
60 MGMT_OP_PIN_CODE_REPLY,
61 MGMT_OP_PIN_CODE_NEG_REPLY,
62 MGMT_OP_SET_IO_CAPABILITY,
63 MGMT_OP_PAIR_DEVICE,
64 MGMT_OP_CANCEL_PAIR_DEVICE,
65 MGMT_OP_UNPAIR_DEVICE,
66 MGMT_OP_USER_CONFIRM_REPLY,
67 MGMT_OP_USER_CONFIRM_NEG_REPLY,
68 MGMT_OP_USER_PASSKEY_REPLY,
69 MGMT_OP_USER_PASSKEY_NEG_REPLY,
70 MGMT_OP_READ_LOCAL_OOB_DATA,
71 MGMT_OP_ADD_REMOTE_OOB_DATA,
72 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
73 MGMT_OP_START_DISCOVERY,
74 MGMT_OP_STOP_DISCOVERY,
75 MGMT_OP_CONFIRM_NAME,
76 MGMT_OP_BLOCK_DEVICE,
77 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070078 MGMT_OP_SET_DEVICE_ID,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020079};
80
81static const u16 mgmt_events[] = {
82 MGMT_EV_CONTROLLER_ERROR,
83 MGMT_EV_INDEX_ADDED,
84 MGMT_EV_INDEX_REMOVED,
85 MGMT_EV_NEW_SETTINGS,
86 MGMT_EV_CLASS_OF_DEV_CHANGED,
87 MGMT_EV_LOCAL_NAME_CHANGED,
88 MGMT_EV_NEW_LINK_KEY,
89 MGMT_EV_NEW_LONG_TERM_KEY,
90 MGMT_EV_DEVICE_CONNECTED,
91 MGMT_EV_DEVICE_DISCONNECTED,
92 MGMT_EV_CONNECT_FAILED,
93 MGMT_EV_PIN_CODE_REQUEST,
94 MGMT_EV_USER_CONFIRM_REQUEST,
95 MGMT_EV_USER_PASSKEY_REQUEST,
96 MGMT_EV_AUTH_FAILED,
97 MGMT_EV_DEVICE_FOUND,
98 MGMT_EV_DISCOVERING,
99 MGMT_EV_DEVICE_BLOCKED,
100 MGMT_EV_DEVICE_UNBLOCKED,
101 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300102 MGMT_EV_PASSKEY_NOTIFY,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200103};
104
Andre Guedes3fd24152012-02-03 17:48:01 -0300105/*
106 * These LE scan and inquiry parameters were chosen according to LE General
107 * Discovery Procedure specification.
108 */
109#define LE_SCAN_TYPE 0x01
110#define LE_SCAN_WIN 0x12
111#define LE_SCAN_INT 0x12
112#define LE_SCAN_TIMEOUT_LE_ONLY 10240 /* TGAP(gen_disc_scan_min) */
Andre Guedes5e0452c2012-02-17 20:39:38 -0300113#define LE_SCAN_TIMEOUT_BREDR_LE 5120 /* TGAP(100)/2 */
Andre Guedes3fd24152012-02-03 17:48:01 -0300114
Andre Guedese8777522012-02-03 17:48:02 -0300115#define INQUIRY_LEN_BREDR 0x08 /* TGAP(100) */
Andre Guedes5e0452c2012-02-17 20:39:38 -0300116#define INQUIRY_LEN_BREDR_LE 0x04 /* TGAP(100)/2 */
Andre Guedes2519a1f2011-11-07 11:45:24 -0300117
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800118#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200119
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200120#define hdev_is_powered(hdev) (test_bit(HCI_UP, &hdev->flags) && \
121 !test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
122
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200123struct pending_cmd {
124 struct list_head list;
Johan Hedbergfc2f4b12011-11-09 13:58:56 +0200125 u16 opcode;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200126 int index;
Szymon Jancc68fb7f2011-03-22 13:12:19 +0100127 void *param;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200128 struct sock *sk;
Johan Hedberge9a416b2011-02-19 12:05:56 -0300129 void *user_data;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200130};
131
Johan Hedbergca69b792011-11-11 18:10:00 +0200132/* HCI to MGMT error code conversion table */
133static u8 mgmt_status_table[] = {
134 MGMT_STATUS_SUCCESS,
135 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
136 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
137 MGMT_STATUS_FAILED, /* Hardware Failure */
138 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
139 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
140 MGMT_STATUS_NOT_PAIRED, /* PIN or Key Missing */
141 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
142 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
143 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
144 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
145 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
146 MGMT_STATUS_BUSY, /* Command Disallowed */
147 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
148 MGMT_STATUS_REJECTED, /* Rejected Security */
149 MGMT_STATUS_REJECTED, /* Rejected Personal */
150 MGMT_STATUS_TIMEOUT, /* Host Timeout */
151 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
152 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
153 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
154 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
155 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
156 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
157 MGMT_STATUS_BUSY, /* Repeated Attempts */
158 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
159 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
160 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
161 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
162 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
163 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
164 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
165 MGMT_STATUS_FAILED, /* Unspecified Error */
166 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
167 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
168 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
169 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
170 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
171 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
172 MGMT_STATUS_FAILED, /* Unit Link Key Used */
173 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
174 MGMT_STATUS_TIMEOUT, /* Instant Passed */
175 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
176 MGMT_STATUS_FAILED, /* Transaction Collision */
177 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
178 MGMT_STATUS_REJECTED, /* QoS Rejected */
179 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
180 MGMT_STATUS_REJECTED, /* Insufficient Security */
181 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
182 MGMT_STATUS_BUSY, /* Role Switch Pending */
183 MGMT_STATUS_FAILED, /* Slot Violation */
184 MGMT_STATUS_FAILED, /* Role Switch Failed */
185 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
186 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
187 MGMT_STATUS_BUSY, /* Host Busy Pairing */
188 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
189 MGMT_STATUS_BUSY, /* Controller Busy */
190 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
191 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
192 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
193 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
194 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
195};
196
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300197bool mgmt_valid_hdev(struct hci_dev *hdev)
198{
199 return hdev->dev_type == HCI_BREDR;
200}
201
Johan Hedbergca69b792011-11-11 18:10:00 +0200202static u8 mgmt_status(u8 hci_status)
203{
204 if (hci_status < ARRAY_SIZE(mgmt_status_table))
205 return mgmt_status_table[hci_status];
206
207 return MGMT_STATUS_FAILED;
208}
209
Szymon Janc4e51eae2011-02-25 19:05:48 +0100210static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200211{
212 struct sk_buff *skb;
213 struct mgmt_hdr *hdr;
214 struct mgmt_ev_cmd_status *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300215 int err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200216
Szymon Janc34eb5252011-02-28 14:10:08 +0100217 BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200218
Andre Guedes790eff42012-06-07 19:05:46 -0300219 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200220 if (!skb)
221 return -ENOMEM;
222
223 hdr = (void *) skb_put(skb, sizeof(*hdr));
224
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530225 hdr->opcode = __constant_cpu_to_le16(MGMT_EV_CMD_STATUS);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100226 hdr->index = cpu_to_le16(index);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200227 hdr->len = cpu_to_le16(sizeof(*ev));
228
229 ev = (void *) skb_put(skb, sizeof(*ev));
230 ev->status = status;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200231 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200232
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300233 err = sock_queue_rcv_skb(sk, skb);
234 if (err < 0)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200235 kfree_skb(skb);
236
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300237 return err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200238}
239
Johan Hedbergaee9b212012-02-18 15:07:59 +0200240static int cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300241 void *rp, size_t rp_len)
Johan Hedberg02d98122010-12-13 21:07:04 +0200242{
243 struct sk_buff *skb;
244 struct mgmt_hdr *hdr;
245 struct mgmt_ev_cmd_complete *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300246 int err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200247
248 BT_DBG("sock %p", sk);
249
Andre Guedes790eff42012-06-07 19:05:46 -0300250 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_KERNEL);
Johan Hedberg02d98122010-12-13 21:07:04 +0200251 if (!skb)
252 return -ENOMEM;
253
254 hdr = (void *) skb_put(skb, sizeof(*hdr));
Johan Hedberga38528f2011-01-22 06:46:43 +0200255
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530256 hdr->opcode = __constant_cpu_to_le16(MGMT_EV_CMD_COMPLETE);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100257 hdr->index = cpu_to_le16(index);
Johan Hedberga38528f2011-01-22 06:46:43 +0200258 hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200259
Johan Hedberga38528f2011-01-22 06:46:43 +0200260 ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200261 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergaee9b212012-02-18 15:07:59 +0200262 ev->status = status;
Szymon Janc8020c162011-02-28 14:09:50 +0100263
264 if (rp)
265 memcpy(ev->data, rp, rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200266
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300267 err = sock_queue_rcv_skb(sk, skb);
268 if (err < 0)
Johan Hedberg02d98122010-12-13 21:07:04 +0200269 kfree_skb(skb);
270
Marcel Holtmanne5f0e152012-02-22 11:59:01 +0100271 return err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200272}
273
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300274static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
275 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200276{
277 struct mgmt_rp_read_version rp;
278
279 BT_DBG("sock %p", sk);
280
281 rp.version = MGMT_VERSION;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200282 rp.revision = __constant_cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200283
Johan Hedbergaee9b212012-02-18 15:07:59 +0200284 return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300285 sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200286}
287
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300288static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
289 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200290{
291 struct mgmt_rp_read_commands *rp;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200292 const u16 num_commands = ARRAY_SIZE(mgmt_commands);
293 const u16 num_events = ARRAY_SIZE(mgmt_events);
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +0200294 __le16 *opcode;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200295 size_t rp_size;
296 int i, err;
297
298 BT_DBG("sock %p", sk);
299
300 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
301
302 rp = kmalloc(rp_size, GFP_KERNEL);
303 if (!rp)
304 return -ENOMEM;
305
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200306 rp->num_commands = __constant_cpu_to_le16(num_commands);
307 rp->num_events = __constant_cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200308
309 for (i = 0, opcode = rp->opcodes; i < num_commands; i++, opcode++)
310 put_unaligned_le16(mgmt_commands[i], opcode);
311
312 for (i = 0; i < num_events; i++, opcode++)
313 put_unaligned_le16(mgmt_events[i], opcode);
314
Johan Hedbergaee9b212012-02-18 15:07:59 +0200315 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300316 rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200317 kfree(rp);
318
319 return err;
320}
321
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300322static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
323 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200324{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200325 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200326 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200327 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200328 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300329 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200330
331 BT_DBG("sock %p", sk);
332
333 read_lock(&hci_dev_list_lock);
334
335 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300336 list_for_each_entry(d, &hci_dev_list, list) {
337 if (!mgmt_valid_hdev(d))
338 continue;
339
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200340 count++;
341 }
342
Johan Hedberga38528f2011-01-22 06:46:43 +0200343 rp_len = sizeof(*rp) + (2 * count);
344 rp = kmalloc(rp_len, GFP_ATOMIC);
345 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100346 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200347 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100348 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200349
Johan Hedberg476e44c2012-10-19 20:10:46 +0300350 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200351 list_for_each_entry(d, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200352 if (test_bit(HCI_SETUP, &d->dev_flags))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200353 continue;
354
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300355 if (!mgmt_valid_hdev(d))
356 continue;
357
Johan Hedberg476e44c2012-10-19 20:10:46 +0300358 rp->index[count++] = cpu_to_le16(d->id);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200359 BT_DBG("Added hci%u", d->id);
360 }
361
Johan Hedberg476e44c2012-10-19 20:10:46 +0300362 rp->num_controllers = cpu_to_le16(count);
363 rp_len = sizeof(*rp) + (2 * count);
364
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200365 read_unlock(&hci_dev_list_lock);
366
Johan Hedbergaee9b212012-02-18 15:07:59 +0200367 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300368 rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200369
Johan Hedberga38528f2011-01-22 06:46:43 +0200370 kfree(rp);
371
372 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200373}
374
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200375static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200376{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200377 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200378
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200379 settings |= MGMT_SETTING_POWERED;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200380 settings |= MGMT_SETTING_PAIRABLE;
Johan Hedberg03811012010-12-08 00:21:06 +0200381
Andre Guedes9a1a1992012-07-24 15:03:48 -0300382 if (lmp_ssp_capable(hdev))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200383 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200384
Andre Guedesed3fa312012-07-24 15:03:46 -0300385 if (lmp_bredr_capable(hdev)) {
Johan Hedberg33c525c2012-10-24 21:11:58 +0300386 settings |= MGMT_SETTING_CONNECTABLE;
387 settings |= MGMT_SETTING_FAST_CONNECTABLE;
388 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200389 settings |= MGMT_SETTING_BREDR;
390 settings |= MGMT_SETTING_LINK_SECURITY;
391 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200392
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100393 if (enable_hs)
394 settings |= MGMT_SETTING_HS;
395
Andre Guedesc383ddc2012-07-24 15:03:47 -0300396 if (lmp_le_capable(hdev))
Marcel Holtmann9d428202012-05-03 07:12:31 +0200397 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200398
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200399 return settings;
400}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200401
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200402static u32 get_current_settings(struct hci_dev *hdev)
403{
404 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200405
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200406 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100407 settings |= MGMT_SETTING_POWERED;
408
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200409 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200410 settings |= MGMT_SETTING_CONNECTABLE;
411
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200412 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200413 settings |= MGMT_SETTING_DISCOVERABLE;
414
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200415 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200416 settings |= MGMT_SETTING_PAIRABLE;
417
Andre Guedesed3fa312012-07-24 15:03:46 -0300418 if (lmp_bredr_capable(hdev))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200419 settings |= MGMT_SETTING_BREDR;
420
Johan Hedberg06199cf2012-02-22 16:37:11 +0200421 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200422 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200423
Johan Hedberg47990ea2012-02-22 11:58:37 +0200424 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200425 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200426
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200427 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200428 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200429
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200430 if (test_bit(HCI_HS_ENABLED, &hdev->dev_flags))
431 settings |= MGMT_SETTING_HS;
432
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200433 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200434}
435
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300436#define PNP_INFO_SVCLASS_ID 0x1200
437
438static u8 bluetooth_base_uuid[] = {
439 0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
440 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
441};
442
443static u16 get_uuid16(u8 *uuid128)
444{
445 u32 val;
446 int i;
447
448 for (i = 0; i < 12; i++) {
449 if (bluetooth_base_uuid[i] != uuid128[i])
450 return 0;
451 }
452
Andrei Emeltchenko3e9fb6d2012-03-20 10:32:25 +0200453 val = get_unaligned_le32(&uuid128[12]);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300454 if (val > 0xffff)
455 return 0;
456
457 return (u16) val;
458}
459
460static void create_eir(struct hci_dev *hdev, u8 *data)
461{
462 u8 *ptr = data;
463 u16 eir_len = 0;
464 u16 uuid16_list[HCI_MAX_EIR_LENGTH / sizeof(u16)];
465 int i, truncated = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200466 struct bt_uuid *uuid;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300467 size_t name_len;
468
469 name_len = strlen(hdev->dev_name);
470
471 if (name_len > 0) {
472 /* EIR Data type */
473 if (name_len > 48) {
474 name_len = 48;
475 ptr[1] = EIR_NAME_SHORT;
476 } else
477 ptr[1] = EIR_NAME_COMPLETE;
478
479 /* EIR Data length */
480 ptr[0] = name_len + 1;
481
482 memcpy(ptr + 2, hdev->dev_name, name_len);
483
484 eir_len += (name_len + 2);
485 ptr += (name_len + 2);
486 }
487
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100488 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700489 ptr[0] = 2;
490 ptr[1] = EIR_TX_POWER;
491 ptr[2] = (u8) hdev->inq_tx_power;
492
493 eir_len += 3;
494 ptr += 3;
495 }
496
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700497 if (hdev->devid_source > 0) {
498 ptr[0] = 9;
499 ptr[1] = EIR_DEVICE_ID;
500
501 put_unaligned_le16(hdev->devid_source, ptr + 2);
502 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
503 put_unaligned_le16(hdev->devid_product, ptr + 6);
504 put_unaligned_le16(hdev->devid_version, ptr + 8);
505
506 eir_len += 10;
507 ptr += 10;
508 }
509
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300510 memset(uuid16_list, 0, sizeof(uuid16_list));
511
512 /* Group all UUID16 types */
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200513 list_for_each_entry(uuid, &hdev->uuids, list) {
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300514 u16 uuid16;
515
516 uuid16 = get_uuid16(uuid->uuid);
517 if (uuid16 == 0)
518 return;
519
520 if (uuid16 < 0x1100)
521 continue;
522
523 if (uuid16 == PNP_INFO_SVCLASS_ID)
524 continue;
525
526 /* Stop if not enough space to put next UUID */
527 if (eir_len + 2 + sizeof(u16) > HCI_MAX_EIR_LENGTH) {
528 truncated = 1;
529 break;
530 }
531
532 /* Check for duplicates */
533 for (i = 0; uuid16_list[i] != 0; i++)
534 if (uuid16_list[i] == uuid16)
535 break;
536
537 if (uuid16_list[i] == 0) {
538 uuid16_list[i] = uuid16;
539 eir_len += sizeof(u16);
540 }
541 }
542
543 if (uuid16_list[0] != 0) {
544 u8 *length = ptr;
545
546 /* EIR Data type */
547 ptr[1] = truncated ? EIR_UUID16_SOME : EIR_UUID16_ALL;
548
549 ptr += 2;
550 eir_len += 2;
551
552 for (i = 0; uuid16_list[i] != 0; i++) {
553 *ptr++ = (uuid16_list[i] & 0x00ff);
554 *ptr++ = (uuid16_list[i] & 0xff00) >> 8;
555 }
556
557 /* EIR Data length */
558 *length = (i * sizeof(u16)) + 1;
559 }
560}
561
562static int update_eir(struct hci_dev *hdev)
563{
564 struct hci_cp_write_eir cp;
565
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200566 if (!hdev_is_powered(hdev))
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200567 return 0;
568
Johan Hedberg976eb202012-10-24 21:12:01 +0300569 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300570 return 0;
571
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200572 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300573 return 0;
574
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200575 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300576 return 0;
577
578 memset(&cp, 0, sizeof(cp));
579
580 create_eir(hdev, cp.data);
581
582 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
583 return 0;
584
585 memcpy(hdev->eir, cp.data, sizeof(cp.data));
586
587 return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
588}
589
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200590static u8 get_service_classes(struct hci_dev *hdev)
591{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300592 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200593 u8 val = 0;
594
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300595 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200596 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200597
598 return val;
599}
600
601static int update_class(struct hci_dev *hdev)
602{
603 u8 cod[3];
Johan Hedbergc95f0ba2012-02-23 22:54:38 +0200604 int err;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200605
606 BT_DBG("%s", hdev->name);
607
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200608 if (!hdev_is_powered(hdev))
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200609 return 0;
610
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200611 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200612 return 0;
613
614 cod[0] = hdev->minor_class;
615 cod[1] = hdev->major_class;
616 cod[2] = get_service_classes(hdev);
617
618 if (memcmp(cod, hdev->dev_class, 3) == 0)
619 return 0;
620
Johan Hedbergc95f0ba2012-02-23 22:54:38 +0200621 err = hci_send_cmd(hdev, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
622 if (err == 0)
623 set_bit(HCI_PENDING_CLASS, &hdev->dev_flags);
624
625 return err;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200626}
627
Johan Hedberg7d785252011-12-15 00:47:39 +0200628static void service_cache_off(struct work_struct *work)
629{
630 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300631 service_cache.work);
Johan Hedberg7d785252011-12-15 00:47:39 +0200632
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200633 if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +0200634 return;
635
636 hci_dev_lock(hdev);
637
638 update_eir(hdev);
639 update_class(hdev);
640
641 hci_dev_unlock(hdev);
642}
643
Johan Hedberg6a919082012-02-28 06:17:26 +0200644static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +0200645{
Johan Hedberg4f87da82012-03-02 19:55:56 +0200646 if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg6a919082012-02-28 06:17:26 +0200647 return;
648
Johan Hedberg4f87da82012-03-02 19:55:56 +0200649 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedberg7d785252011-12-15 00:47:39 +0200650
Johan Hedberg4f87da82012-03-02 19:55:56 +0200651 /* Non-mgmt controlled devices get this bit set
652 * implicitly so that pairing works for them, however
653 * for mgmt we require user-space to explicitly enable
654 * it
655 */
656 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedberg7d785252011-12-15 00:47:39 +0200657}
658
Johan Hedberg0f4e68c2012-02-28 17:18:30 +0200659static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300660 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +0200661{
662 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +0200663
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200664 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200665
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300666 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200667
Johan Hedberg03811012010-12-08 00:21:06 +0200668 memset(&rp, 0, sizeof(rp));
669
Johan Hedberg03811012010-12-08 00:21:06 +0200670 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200671
672 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200673 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200674
675 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
676 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
677
678 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +0200679
680 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +0200681 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +0200682
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300683 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200684
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200685 return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300686 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +0200687}
688
689static void mgmt_pending_free(struct pending_cmd *cmd)
690{
691 sock_put(cmd->sk);
692 kfree(cmd->param);
693 kfree(cmd);
694}
695
696static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300697 struct hci_dev *hdev, void *data,
698 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200699{
700 struct pending_cmd *cmd;
701
Andre Guedes12b94562012-06-07 19:05:45 -0300702 cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200703 if (!cmd)
704 return NULL;
705
706 cmd->opcode = opcode;
707 cmd->index = hdev->id;
708
Andre Guedes12b94562012-06-07 19:05:45 -0300709 cmd->param = kmalloc(len, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200710 if (!cmd->param) {
711 kfree(cmd);
712 return NULL;
713 }
714
715 if (data)
716 memcpy(cmd->param, data, len);
717
718 cmd->sk = sk;
719 sock_hold(sk);
720
721 list_add(&cmd->list, &hdev->mgmt_pending);
722
723 return cmd;
724}
725
726static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300727 void (*cb)(struct pending_cmd *cmd,
728 void *data),
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300729 void *data)
Johan Hedberg03811012010-12-08 00:21:06 +0200730{
731 struct list_head *p, *n;
732
733 list_for_each_safe(p, n, &hdev->mgmt_pending) {
734 struct pending_cmd *cmd;
735
736 cmd = list_entry(p, struct pending_cmd, list);
737
738 if (opcode > 0 && cmd->opcode != opcode)
739 continue;
740
741 cb(cmd, data);
742 }
743}
744
745static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
746{
747 struct pending_cmd *cmd;
748
749 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
750 if (cmd->opcode == opcode)
751 return cmd;
752 }
753
754 return NULL;
755}
756
757static void mgmt_pending_remove(struct pending_cmd *cmd)
758{
759 list_del(&cmd->list);
760 mgmt_pending_free(cmd);
761}
762
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200763static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +0200764{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200765 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +0200766
Johan Hedbergaee9b212012-02-18 15:07:59 +0200767 return cmd_complete(sk, hdev->id, opcode, 0, &settings,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300768 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +0200769}
770
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200771static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300772 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200773{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300774 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200775 struct pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200776 int err;
Johan Hedberg03811012010-12-08 00:21:06 +0200777
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200778 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200779
Johan Hedberga7e80f22013-01-09 16:05:19 +0200780 if (cp->val != 0x00 && cp->val != 0x01)
781 return cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
782 MGMT_STATUS_INVALID_PARAMS);
783
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300784 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200785
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100786 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
787 cancel_delayed_work(&hdev->power_off);
788
789 if (cp->val) {
790 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
791 mgmt_powered(hdev, 1);
792 goto failed;
793 }
794 }
795
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200796 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200797 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200798 goto failed;
799 }
800
801 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200802 err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300803 MGMT_STATUS_BUSY);
Johan Hedberg03811012010-12-08 00:21:06 +0200804 goto failed;
805 }
806
807 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
808 if (!cmd) {
809 err = -ENOMEM;
810 goto failed;
811 }
812
813 if (cp->val)
Gustavo F. Padovan7f971042011-12-18 12:40:32 -0200814 schedule_work(&hdev->power_on);
Johan Hedberg03811012010-12-08 00:21:06 +0200815 else
Gustavo F. Padovan80b7ab32011-12-17 14:52:27 -0200816 schedule_work(&hdev->power_off.work);
Johan Hedberg03811012010-12-08 00:21:06 +0200817
818 err = 0;
819
820failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300821 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200822 return err;
823}
824
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300825static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len,
826 struct sock *skip_sk)
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200827{
828 struct sk_buff *skb;
829 struct mgmt_hdr *hdr;
830
Andre Guedes790eff42012-06-07 19:05:46 -0300831 skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200832 if (!skb)
833 return -ENOMEM;
834
835 hdr = (void *) skb_put(skb, sizeof(*hdr));
836 hdr->opcode = cpu_to_le16(event);
837 if (hdev)
838 hdr->index = cpu_to_le16(hdev->id);
839 else
Syam Sidhardhan612dfce2012-10-29 22:37:36 +0530840 hdr->index = __constant_cpu_to_le16(MGMT_INDEX_NONE);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200841 hdr->len = cpu_to_le16(data_len);
842
843 if (data)
844 memcpy(skb_put(skb, data_len), data, data_len);
845
Marcel Holtmann97e0bde2012-02-22 13:49:28 +0100846 /* Time stamp */
847 __net_timestamp(skb);
848
Johan Hedbergbeadb2b2012-02-21 16:55:31 +0200849 hci_send_to_control(skb, skip_sk);
850 kfree_skb(skb);
851
852 return 0;
853}
854
855static int new_settings(struct hci_dev *hdev, struct sock *skip)
856{
857 __le32 ev;
858
859 ev = cpu_to_le32(get_current_settings(hdev));
860
861 return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
862}
863
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200864static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300865 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200866{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300867 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200868 struct pending_cmd *cmd;
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200869 u16 timeout;
Johan Hedberg03811012010-12-08 00:21:06 +0200870 u8 scan;
871 int err;
872
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200873 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200874
Johan Hedberg33c525c2012-10-24 21:11:58 +0300875 if (!lmp_bredr_capable(hdev))
876 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
877 MGMT_STATUS_NOT_SUPPORTED);
878
Johan Hedberga7e80f22013-01-09 16:05:19 +0200879 if (cp->val != 0x00 && cp->val != 0x01)
880 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
881 MGMT_STATUS_INVALID_PARAMS);
882
Marcel Holtmann1f350c82012-03-12 20:31:08 -0700883 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann24c54a92012-02-22 18:06:34 +0100884 if (!cp->val && timeout > 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200885 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300886 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200887
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300888 hci_dev_lock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200889
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200890 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200891 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300892 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200893 goto failed;
894 }
895
896 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -0300897 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200898 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300899 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200900 goto failed;
901 }
902
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200903 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200904 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300905 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200906 goto failed;
907 }
908
909 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200910 bool changed = false;
911
912 if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
913 change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
914 changed = true;
915 }
916
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200917 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200918 if (err < 0)
919 goto failed;
920
921 if (changed)
922 err = new_settings(hdev, sk);
923
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200924 goto failed;
925 }
926
927 if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
Marcel Holtmann955638e2012-02-22 18:21:00 +0100928 if (hdev->discov_timeout > 0) {
929 cancel_delayed_work(&hdev->discov_off);
930 hdev->discov_timeout = 0;
931 }
932
933 if (cp->val && timeout > 0) {
934 hdev->discov_timeout = timeout;
935 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
936 msecs_to_jiffies(hdev->discov_timeout * 1000));
937 }
938
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200939 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200940 goto failed;
941 }
942
943 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
944 if (!cmd) {
945 err = -ENOMEM;
946 goto failed;
947 }
948
949 scan = SCAN_PAGE;
950
951 if (cp->val)
952 scan |= SCAN_INQUIRY;
953 else
954 cancel_delayed_work(&hdev->discov_off);
955
956 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
957 if (err < 0)
958 mgmt_pending_remove(cmd);
959
Johan Hedberg03811012010-12-08 00:21:06 +0200960 if (cp->val)
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200961 hdev->discov_timeout = timeout;
Johan Hedberg03811012010-12-08 00:21:06 +0200962
963failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300964 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200965 return err;
966}
967
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200968static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300969 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200970{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -0300971 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +0200972 struct pending_cmd *cmd;
973 u8 scan;
974 int err;
975
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200976 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +0200977
Johan Hedberg33c525c2012-10-24 21:11:58 +0300978 if (!lmp_bredr_capable(hdev))
979 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
980 MGMT_STATUS_NOT_SUPPORTED);
981
Johan Hedberga7e80f22013-01-09 16:05:19 +0200982 if (cp->val != 0x00 && cp->val != 0x01)
983 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
984 MGMT_STATUS_INVALID_PARAMS);
985
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300986 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200987
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200988 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +0200989 bool changed = false;
990
991 if (!!cp->val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
992 changed = true;
993
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +0200994 if (cp->val) {
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200995 set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +0200996 } else {
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200997 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
998 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
999 }
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001000
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001001 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001002 if (err < 0)
1003 goto failed;
1004
1005 if (changed)
1006 err = new_settings(hdev, sk);
1007
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001008 goto failed;
1009 }
1010
1011 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001012 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001013 err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001014 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001015 goto failed;
1016 }
1017
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001018 if (!!cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001019 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001020 goto failed;
1021 }
1022
1023 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1024 if (!cmd) {
1025 err = -ENOMEM;
1026 goto failed;
1027 }
1028
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +02001029 if (cp->val) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001030 scan = SCAN_PAGE;
Andrei Emeltchenko6bf0e462012-02-22 13:21:16 +02001031 } else {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001032 scan = 0;
1033
Johan Hedbergdf2c6c52012-02-21 19:15:49 +02001034 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001035 hdev->discov_timeout > 0)
Johan Hedbergdf2c6c52012-02-21 19:15:49 +02001036 cancel_delayed_work(&hdev->discov_off);
1037 }
1038
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001039 err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1040 if (err < 0)
1041 mgmt_pending_remove(cmd);
1042
1043failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001044 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001045 return err;
1046}
1047
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001048static int set_pairable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001049 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001050{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001051 struct mgmt_mode *cp = data;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001052 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001053
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001054 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001055
Johan Hedberga7e80f22013-01-09 16:05:19 +02001056 if (cp->val != 0x00 && cp->val != 0x01)
1057 return cmd_status(sk, hdev->id, MGMT_OP_SET_PAIRABLE,
1058 MGMT_STATUS_INVALID_PARAMS);
1059
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001060 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001061
1062 if (cp->val)
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001063 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001064 else
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001065 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001066
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001067 err = send_settings_rsp(sk, MGMT_OP_SET_PAIRABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001068 if (err < 0)
1069 goto failed;
1070
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001071 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001072
1073failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001074 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001075 return err;
1076}
Johan Hedberg72a734e2010-12-30 00:38:22 +02001077
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001078static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
1079 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001080{
1081 struct mgmt_mode *cp = data;
1082 struct pending_cmd *cmd;
Johan Hedberg816a11d2012-02-26 13:04:52 +02001083 u8 val;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001084 int err;
1085
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001086 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001087
Johan Hedberg33c525c2012-10-24 21:11:58 +03001088 if (!lmp_bredr_capable(hdev))
1089 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1090 MGMT_STATUS_NOT_SUPPORTED);
1091
Johan Hedberga7e80f22013-01-09 16:05:19 +02001092 if (cp->val != 0x00 && cp->val != 0x01)
1093 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1094 MGMT_STATUS_INVALID_PARAMS);
1095
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001096 hci_dev_lock(hdev);
1097
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001098 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001099 bool changed = false;
1100
1101 if (!!cp->val != test_bit(HCI_LINK_SECURITY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001102 &hdev->dev_flags)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001103 change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
1104 changed = true;
1105 }
1106
1107 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1108 if (err < 0)
1109 goto failed;
1110
1111 if (changed)
1112 err = new_settings(hdev, sk);
1113
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001114 goto failed;
1115 }
1116
1117 if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001118 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001119 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001120 goto failed;
1121 }
1122
1123 val = !!cp->val;
1124
1125 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
1126 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1127 goto failed;
1128 }
1129
1130 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
1131 if (!cmd) {
1132 err = -ENOMEM;
1133 goto failed;
1134 }
1135
1136 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
1137 if (err < 0) {
1138 mgmt_pending_remove(cmd);
1139 goto failed;
1140 }
1141
1142failed:
1143 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001144 return err;
1145}
1146
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001147static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001148{
1149 struct mgmt_mode *cp = data;
1150 struct pending_cmd *cmd;
Johan Hedberg816a11d2012-02-26 13:04:52 +02001151 u8 val;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001152 int err;
1153
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001154 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001155
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001156 if (!lmp_ssp_capable(hdev))
1157 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1158 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001159
Johan Hedberga7e80f22013-01-09 16:05:19 +02001160 if (cp->val != 0x00 && cp->val != 0x01)
1161 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1162 MGMT_STATUS_INVALID_PARAMS);
1163
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001164 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02001165
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001166 val = !!cp->val;
1167
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001168 if (!hdev_is_powered(hdev)) {
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001169 bool changed = false;
1170
1171 if (val != test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
1172 change_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
1173 changed = true;
1174 }
1175
1176 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1177 if (err < 0)
1178 goto failed;
1179
1180 if (changed)
1181 err = new_settings(hdev, sk);
1182
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001183 goto failed;
1184 }
1185
1186 if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev)) {
Szymon Jancd97dcb62012-03-16 16:02:56 +01001187 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1188 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001189 goto failed;
1190 }
1191
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001192 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) == val) {
1193 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1194 goto failed;
1195 }
1196
1197 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
1198 if (!cmd) {
1199 err = -ENOMEM;
1200 goto failed;
1201 }
1202
1203 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(val), &val);
1204 if (err < 0) {
1205 mgmt_pending_remove(cmd);
1206 goto failed;
1207 }
1208
1209failed:
1210 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001211 return err;
1212}
1213
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001214static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001215{
1216 struct mgmt_mode *cp = data;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001217
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001218 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001219
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001220 if (!enable_hs)
1221 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001222 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001223
Johan Hedberga7e80f22013-01-09 16:05:19 +02001224 if (cp->val != 0x00 && cp->val != 0x01)
1225 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1226 MGMT_STATUS_INVALID_PARAMS);
1227
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001228 if (cp->val)
1229 set_bit(HCI_HS_ENABLED, &hdev->dev_flags);
1230 else
1231 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
1232
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001233 return send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001234}
1235
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001236static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001237{
1238 struct mgmt_mode *cp = data;
1239 struct hci_cp_write_le_host_supported hci_cp;
1240 struct pending_cmd *cmd;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001241 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001242 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001243
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001244 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001245
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001246 if (!lmp_le_capable(hdev))
1247 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1248 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001249
Johan Hedberga7e80f22013-01-09 16:05:19 +02001250 if (cp->val != 0x00 && cp->val != 0x01)
1251 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1252 MGMT_STATUS_INVALID_PARAMS);
1253
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001254 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001255
1256 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001257 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001258
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001259 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02001260 bool changed = false;
1261
1262 if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
1263 change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
1264 changed = true;
1265 }
1266
1267 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
1268 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08001269 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001270
1271 if (changed)
1272 err = new_settings(hdev, sk);
1273
Johan Hedberg1de028c2012-02-29 19:55:35 -08001274 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001275 }
1276
1277 if (mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001278 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001279 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001280 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001281 }
1282
1283 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
1284 if (!cmd) {
1285 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08001286 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001287 }
1288
1289 memset(&hci_cp, 0, sizeof(hci_cp));
1290
1291 if (val) {
1292 hci_cp.le = val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001293 hci_cp.simul = lmp_le_br_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001294 }
1295
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001296 err = hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
1297 &hci_cp);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301298 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001299 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001300
Johan Hedberg1de028c2012-02-29 19:55:35 -08001301unlock:
1302 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001303 return err;
1304}
1305
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001306static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001307{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001308 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001309 struct pending_cmd *cmd;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001310 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001311 int err;
1312
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001313 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001314
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001315 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001316
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001317 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001318 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001319 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001320 goto failed;
1321 }
1322
Andre Guedes92c4c202012-06-07 19:05:44 -03001323 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001324 if (!uuid) {
1325 err = -ENOMEM;
1326 goto failed;
1327 }
1328
1329 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001330 uuid->svc_hint = cp->svc_hint;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001331
1332 list_add(&uuid->list, &hdev->uuids);
1333
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001334 err = update_class(hdev);
1335 if (err < 0)
1336 goto failed;
1337
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001338 err = update_eir(hdev);
1339 if (err < 0)
1340 goto failed;
1341
Johan Hedberg90e70452012-02-23 23:09:40 +02001342 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001343 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001344 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001345 goto failed;
1346 }
1347
1348 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301349 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001350 err = -ENOMEM;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001351
1352failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001353 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001354 return err;
1355}
1356
Johan Hedberg24b78d02012-02-23 23:24:30 +02001357static bool enable_service_cache(struct hci_dev *hdev)
1358{
1359 if (!hdev_is_powered(hdev))
1360 return false;
1361
1362 if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Marcel Holtmann17b02e62012-03-01 14:32:37 -08001363 schedule_delayed_work(&hdev->service_cache, CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02001364 return true;
1365 }
1366
1367 return false;
1368}
1369
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001370static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001371 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001372{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001373 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001374 struct pending_cmd *cmd;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001375 struct list_head *p, *n;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001376 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 +02001377 int err, found;
1378
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001379 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001380
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001381 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001382
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001383 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001384 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001385 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02001386 goto unlock;
1387 }
1388
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001389 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
1390 err = hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02001391
Johan Hedberg24b78d02012-02-23 23:24:30 +02001392 if (enable_service_cache(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001393 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001394 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02001395 goto unlock;
1396 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02001397
Johan Hedberg9246a862012-02-23 21:33:16 +02001398 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001399 }
1400
1401 found = 0;
1402
1403 list_for_each_safe(p, n, &hdev->uuids) {
1404 struct bt_uuid *match = list_entry(p, struct bt_uuid, list);
1405
1406 if (memcmp(match->uuid, cp->uuid, 16) != 0)
1407 continue;
1408
1409 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01001410 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001411 found++;
1412 }
1413
1414 if (found == 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001415 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001416 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001417 goto unlock;
1418 }
1419
Johan Hedberg9246a862012-02-23 21:33:16 +02001420update_class:
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001421 err = update_class(hdev);
1422 if (err < 0)
1423 goto unlock;
1424
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001425 err = update_eir(hdev);
1426 if (err < 0)
1427 goto unlock;
1428
Johan Hedberg90e70452012-02-23 23:09:40 +02001429 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001430 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001431 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001432 goto unlock;
1433 }
1434
1435 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301436 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001437 err = -ENOMEM;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001438
1439unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001440 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001441 return err;
1442}
1443
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001444static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001445 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001446{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001447 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02001448 struct pending_cmd *cmd;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001449 int err;
1450
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001451 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001452
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001453 if (!lmp_bredr_capable(hdev))
1454 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1455 MGMT_STATUS_NOT_SUPPORTED);
1456
1457 if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags))
1458 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1459 MGMT_STATUS_BUSY);
1460
1461 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0)
1462 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1463 MGMT_STATUS_INVALID_PARAMS);
1464
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001465 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001466
1467 hdev->major_class = cp->major;
1468 hdev->minor_class = cp->minor;
1469
Johan Hedberg932f5ff2012-02-22 22:11:32 +02001470 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001471 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001472 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02001473 goto unlock;
1474 }
1475
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001476 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02001477 hci_dev_unlock(hdev);
1478 cancel_delayed_work_sync(&hdev->service_cache);
1479 hci_dev_lock(hdev);
Johan Hedberg14c0b602011-12-15 00:47:37 +02001480 update_eir(hdev);
Johan Hedberg7d785252011-12-15 00:47:39 +02001481 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02001482
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001483 err = update_class(hdev);
Johan Hedberg90e70452012-02-23 23:09:40 +02001484 if (err < 0)
1485 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001486
Johan Hedberg90e70452012-02-23 23:09:40 +02001487 if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001488 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001489 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02001490 goto unlock;
1491 }
1492
1493 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05301494 if (!cmd)
Johan Hedberg90e70452012-02-23 23:09:40 +02001495 err = -ENOMEM;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001496
Johan Hedbergb5235a62012-02-21 14:32:24 +02001497unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001498 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001499 return err;
1500}
1501
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001502static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001503 u16 len)
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001504{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001505 struct mgmt_cp_load_link_keys *cp = data;
Szymon Janc4e51eae2011-02-25 19:05:48 +01001506 u16 key_count, expected_len;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001507 int i;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001508
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001509 key_count = __le16_to_cpu(cp->key_count);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001510
Johan Hedberg86742e12011-11-07 23:13:38 +02001511 expected_len = sizeof(*cp) + key_count *
1512 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001513 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02001514 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001515 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001516 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001517 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001518 }
1519
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001520 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001521 key_count);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001522
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001523 hci_dev_lock(hdev);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001524
1525 hci_link_keys_clear(hdev);
1526
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001527 set_bit(HCI_LINK_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001528
1529 if (cp->debug_keys)
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001530 set_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001531 else
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001532 clear_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001533
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001534 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02001535 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001536
Johan Hedbergd753fdc2012-02-17 14:06:34 +02001537 hci_add_link_key(hdev, NULL, 0, &key->addr.bdaddr, key->val,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001538 key->type, key->pin_len);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001539 }
1540
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001541 cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02001542
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001543 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001544
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03001545 return 0;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001546}
1547
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001548static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001549 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001550{
1551 struct mgmt_ev_device_unpaired ev;
1552
1553 bacpy(&ev.addr.bdaddr, bdaddr);
1554 ev.addr.type = addr_type;
1555
1556 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001557 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001558}
1559
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001560static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001561 u16 len)
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001562{
Johan Hedberg124f6e32012-02-09 13:50:12 +02001563 struct mgmt_cp_unpair_device *cp = data;
1564 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02001565 struct hci_cp_disconnect dc;
1566 struct pending_cmd *cmd;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001567 struct hci_conn *conn;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001568 int err;
1569
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001570 hci_dev_lock(hdev);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001571
Johan Hedberga8a1d192011-11-10 15:54:38 +02001572 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02001573 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
1574 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02001575
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001576 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001577 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001578 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001579 goto unlock;
1580 }
1581
Andre Guedes591f47f2012-04-24 21:02:49 -03001582 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg124f6e32012-02-09 13:50:12 +02001583 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
1584 else
1585 err = hci_remove_ltk(hdev, &cp->addr.bdaddr);
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03001586
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001587 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001588 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001589 MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp));
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001590 goto unlock;
1591 }
1592
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001593 if (cp->disconnect) {
Andre Guedes591f47f2012-04-24 21:02:49 -03001594 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001595 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001596 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001597 else
1598 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001599 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02001600 } else {
1601 conn = NULL;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001602 }
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001603
Johan Hedberga8a1d192011-11-10 15:54:38 +02001604 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001605 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001606 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02001607 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02001608 goto unlock;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001609 }
1610
Johan Hedberg124f6e32012-02-09 13:50:12 +02001611 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001612 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02001613 if (!cmd) {
1614 err = -ENOMEM;
1615 goto unlock;
1616 }
1617
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001618 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02001619 dc.reason = 0x13; /* Remote User Terminated Connection */
1620 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1621 if (err < 0)
1622 mgmt_pending_remove(cmd);
1623
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001624unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001625 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02001626 return err;
1627}
1628
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001629static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001630 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02001631{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001632 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001633 struct hci_cp_disconnect dc;
Johan Hedberg366a0332011-02-19 12:05:55 -03001634 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001635 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001636 int err;
1637
1638 BT_DBG("");
1639
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001640 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001641
1642 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001643 err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001644 MGMT_STATUS_NOT_POWERED);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001645 goto failed;
1646 }
1647
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001648 if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001649 err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001650 MGMT_STATUS_BUSY);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001651 goto failed;
1652 }
1653
Andre Guedes591f47f2012-04-24 21:02:49 -03001654 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001655 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
1656 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001657 else
1658 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03001659
Vishal Agarwalf9607272012-06-13 05:32:43 +05301660 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001661 err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001662 MGMT_STATUS_NOT_CONNECTED);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001663 goto failed;
1664 }
1665
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001666 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03001667 if (!cmd) {
1668 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001669 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03001670 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02001671
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001672 dc.handle = cpu_to_le16(conn->handle);
Andre Guedes3701f942012-06-11 18:41:12 -03001673 dc.reason = HCI_ERROR_REMOTE_USER_TERM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001674
1675 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1676 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03001677 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001678
1679failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001680 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02001681 return err;
1682}
1683
Andre Guedes57c14772012-04-24 21:02:50 -03001684static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02001685{
1686 switch (link_type) {
1687 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02001688 switch (addr_type) {
1689 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03001690 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03001691
Johan Hedberg48264f02011-11-09 13:58:58 +02001692 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03001693 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03001694 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02001695 }
Andre Guedes0ed09142012-04-03 08:46:54 -03001696
Johan Hedberg4c659c32011-11-07 23:13:39 +02001697 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03001698 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03001699 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001700 }
1701}
1702
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001703static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
1704 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02001705{
Johan Hedberg2784eb42011-01-21 13:56:35 +02001706 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001707 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02001708 size_t rp_len;
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001709 int err;
1710 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02001711
1712 BT_DBG("");
1713
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001714 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001715
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001716 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001717 err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001718 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001719 goto unlock;
1720 }
1721
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001722 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02001723 list_for_each_entry(c, &hdev->conn_hash.list, list) {
1724 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001725 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02001726 }
1727
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001728 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03001729 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02001730 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02001731 err = -ENOMEM;
1732 goto unlock;
1733 }
1734
Johan Hedberg2784eb42011-01-21 13:56:35 +02001735 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001736 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02001737 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
1738 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02001739 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03001740 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03001741 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02001742 continue;
1743 i++;
1744 }
1745
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001746 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb2012-02-23 09:52:28 +02001747
Johan Hedberg4c659c32011-11-07 23:13:39 +02001748 /* Recalculate length in case of filtered SCO connections, etc */
1749 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02001750
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001751 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001752 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001753
Johan Hedberga38528f2011-01-22 06:46:43 +02001754 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001755
1756unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001757 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02001758 return err;
1759}
1760
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001761static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001762 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001763{
1764 struct pending_cmd *cmd;
1765 int err;
1766
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001767 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001768 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001769 if (!cmd)
1770 return -ENOMEM;
1771
Johan Hedbergd8457692012-02-17 14:24:57 +02001772 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001773 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001774 if (err < 0)
1775 mgmt_pending_remove(cmd);
1776
1777 return err;
1778}
1779
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001780static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001781 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02001782{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001783 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001784 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001785 struct hci_cp_pin_code_reply reply;
Johan Hedberg366a0332011-02-19 12:05:55 -03001786 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001787 int err;
1788
1789 BT_DBG("");
1790
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001791 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001792
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001793 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001794 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001795 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001796 goto failed;
1797 }
1798
Johan Hedbergd8457692012-02-17 14:24:57 +02001799 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001800 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001801 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001802 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001803 goto failed;
1804 }
1805
1806 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02001807 struct mgmt_cp_pin_code_neg_reply ncp;
1808
1809 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001810
1811 BT_ERR("PIN code is not 16 bytes long");
1812
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001813 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001814 if (err >= 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001815 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001816 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02001817
1818 goto failed;
1819 }
1820
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03001821 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03001822 if (!cmd) {
1823 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02001824 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03001825 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02001826
Johan Hedbergd8457692012-02-17 14:24:57 +02001827 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001828 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02001829 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02001830
1831 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
1832 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03001833 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001834
1835failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001836 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02001837 return err;
1838}
1839
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001840static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
1841 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001842{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001843 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001844
1845 BT_DBG("");
1846
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001847 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001848
1849 hdev->io_capability = cp->io_capability;
1850
1851 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001852 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001853
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001854 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001855
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001856 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL,
1857 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001858}
1859
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001860static struct pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001861{
1862 struct hci_dev *hdev = conn->hdev;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001863 struct pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001864
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001865 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03001866 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
1867 continue;
1868
Johan Hedberge9a416b2011-02-19 12:05:56 -03001869 if (cmd->user_data != conn)
1870 continue;
1871
1872 return cmd;
1873 }
1874
1875 return NULL;
1876}
1877
1878static void pairing_complete(struct pending_cmd *cmd, u8 status)
1879{
1880 struct mgmt_rp_pair_device rp;
1881 struct hci_conn *conn = cmd->user_data;
1882
Johan Hedbergba4e5642011-11-11 00:07:34 +02001883 bacpy(&rp.addr.bdaddr, &conn->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03001884 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001885
Johan Hedbergaee9b212012-02-18 15:07:59 +02001886 cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001887 &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001888
1889 /* So we don't get further callbacks for this connection */
1890 conn->connect_cfm_cb = NULL;
1891 conn->security_cfm_cb = NULL;
1892 conn->disconn_cfm_cb = NULL;
1893
1894 hci_conn_put(conn);
1895
Johan Hedberga664b5b2011-02-19 12:06:02 -03001896 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001897}
1898
1899static void pairing_complete_cb(struct hci_conn *conn, u8 status)
1900{
1901 struct pending_cmd *cmd;
1902
1903 BT_DBG("status %u", status);
1904
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001905 cmd = find_pairing(conn);
1906 if (!cmd)
1907 BT_DBG("Unable to find a pending command");
1908 else
Johan Hedberge2113262012-02-18 15:20:03 +02001909 pairing_complete(cmd, mgmt_status(status));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001910}
1911
Vishal Agarwal4c47d732012-06-07 20:27:35 +05301912static void le_connect_complete_cb(struct hci_conn *conn, u8 status)
1913{
1914 struct pending_cmd *cmd;
1915
1916 BT_DBG("status %u", status);
1917
1918 if (!status)
1919 return;
1920
1921 cmd = find_pairing(conn);
1922 if (!cmd)
1923 BT_DBG("Unable to find a pending command");
1924 else
1925 pairing_complete(cmd, mgmt_status(status));
1926}
1927
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001928static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001929 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001930{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001931 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02001932 struct mgmt_rp_pair_device rp;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001933 struct pending_cmd *cmd;
1934 u8 sec_level, auth_type;
1935 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001936 int err;
1937
1938 BT_DBG("");
1939
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001940 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001941
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001942 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001943 err = cmd_status(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001944 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02001945 goto unlock;
1946 }
1947
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03001948 sec_level = BT_SECURITY_MEDIUM;
1949 if (cp->io_cap == 0x03)
Johan Hedberge9a416b2011-02-19 12:05:56 -03001950 auth_type = HCI_AT_DEDICATED_BONDING;
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03001951 else
Johan Hedberge9a416b2011-02-19 12:05:56 -03001952 auth_type = HCI_AT_DEDICATED_BONDING_MITM;
Johan Hedberge9a416b2011-02-19 12:05:56 -03001953
Andre Guedes591f47f2012-04-24 21:02:49 -03001954 if (cp->addr.type == BDADDR_BREDR)
Andre Guedesb12f62c2012-04-24 21:02:54 -03001955 conn = hci_connect(hdev, ACL_LINK, &cp->addr.bdaddr,
1956 cp->addr.type, sec_level, auth_type);
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001957 else
Andre Guedesb12f62c2012-04-24 21:02:54 -03001958 conn = hci_connect(hdev, LE_LINK, &cp->addr.bdaddr,
1959 cp->addr.type, sec_level, auth_type);
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001960
Johan Hedberg1425acb2011-11-11 00:07:35 +02001961 memset(&rp, 0, sizeof(rp));
1962 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
1963 rp.addr.type = cp->addr.type;
1964
Ville Tervo30e76272011-02-22 16:10:53 -03001965 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02001966 int status;
1967
1968 if (PTR_ERR(conn) == -EBUSY)
1969 status = MGMT_STATUS_BUSY;
1970 else
1971 status = MGMT_STATUS_CONNECT_FAILED;
1972
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001973 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02001974 status, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001975 sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001976 goto unlock;
1977 }
1978
1979 if (conn->connect_cfm_cb) {
1980 hci_conn_put(conn);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001981 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001982 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03001983 goto unlock;
1984 }
1985
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001986 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03001987 if (!cmd) {
1988 err = -ENOMEM;
1989 hci_conn_put(conn);
1990 goto unlock;
1991 }
1992
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001993 /* For LE, just connecting isn't a proof that the pairing finished */
Andre Guedes591f47f2012-04-24 21:02:49 -03001994 if (cp->addr.type == BDADDR_BREDR)
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001995 conn->connect_cfm_cb = pairing_complete_cb;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05301996 else
1997 conn->connect_cfm_cb = le_connect_complete_cb;
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03001998
Johan Hedberge9a416b2011-02-19 12:05:56 -03001999 conn->security_cfm_cb = pairing_complete_cb;
2000 conn->disconn_cfm_cb = pairing_complete_cb;
2001 conn->io_capability = cp->io_cap;
2002 cmd->user_data = conn;
2003
2004 if (conn->state == BT_CONNECTED &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002005 hci_conn_security(conn, sec_level, auth_type))
Johan Hedberge9a416b2011-02-19 12:05:56 -03002006 pairing_complete(cmd, 0);
2007
2008 err = 0;
2009
2010unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002011 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002012 return err;
2013}
2014
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002015static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2016 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02002017{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002018 struct mgmt_addr_info *addr = data;
Johan Hedberg28424702012-02-02 04:02:29 +02002019 struct pending_cmd *cmd;
2020 struct hci_conn *conn;
2021 int err;
2022
2023 BT_DBG("");
2024
Johan Hedberg28424702012-02-02 04:02:29 +02002025 hci_dev_lock(hdev);
2026
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002027 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002028 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002029 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002030 goto unlock;
2031 }
2032
Johan Hedberg28424702012-02-02 04:02:29 +02002033 cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
2034 if (!cmd) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002035 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002036 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002037 goto unlock;
2038 }
2039
2040 conn = cmd->user_data;
2041
2042 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002043 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002044 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02002045 goto unlock;
2046 }
2047
2048 pairing_complete(cmd, MGMT_STATUS_CANCELLED);
2049
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002050 err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002051 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02002052unlock:
2053 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02002054 return err;
2055}
2056
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002057static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002058 bdaddr_t *bdaddr, u8 type, u16 mgmt_op,
2059 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03002060{
Johan Hedberga5c29682011-02-19 12:05:57 -03002061 struct pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08002062 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03002063 int err;
2064
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002065 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02002066
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002067 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002068 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002069 MGMT_STATUS_NOT_POWERED);
Brian Gix0df4c182011-11-16 13:53:13 -08002070 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002071 }
2072
Andre Guedes591f47f2012-04-24 21:02:49 -03002073 if (type == BDADDR_BREDR)
Johan Hedberg272d90d2012-02-09 15:26:12 +02002074 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, bdaddr);
2075 else
Brian Gix47c15e22011-11-16 13:53:14 -08002076 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08002077
Johan Hedberg272d90d2012-02-09 15:26:12 +02002078 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002079 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002080 MGMT_STATUS_NOT_CONNECTED);
Johan Hedberg272d90d2012-02-09 15:26:12 +02002081 goto done;
2082 }
2083
Andre Guedes591f47f2012-04-24 21:02:49 -03002084 if (type == BDADDR_LE_PUBLIC || type == BDADDR_LE_RANDOM) {
Brian Gix47c15e22011-11-16 13:53:14 -08002085 /* Continue with pairing via SMP */
Brian Gix5fe57d92011-12-21 16:12:13 -08002086 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix47c15e22011-11-16 13:53:14 -08002087
Brian Gix5fe57d92011-12-21 16:12:13 -08002088 if (!err)
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_SUCCESS);
Brian Gix5fe57d92011-12-21 16:12:13 -08002091 else
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002092 err = cmd_status(sk, hdev->id, mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002093 MGMT_STATUS_FAILED);
Brian Gix5fe57d92011-12-21 16:12:13 -08002094
Brian Gix47c15e22011-11-16 13:53:14 -08002095 goto done;
2096 }
2097
Brian Gix0df4c182011-11-16 13:53:13 -08002098 cmd = mgmt_pending_add(sk, mgmt_op, hdev, bdaddr, sizeof(*bdaddr));
Johan Hedberga5c29682011-02-19 12:05:57 -03002099 if (!cmd) {
2100 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08002101 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03002102 }
2103
Brian Gix0df4c182011-11-16 13:53:13 -08002104 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08002105 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
2106 struct hci_cp_user_passkey_reply cp;
2107
2108 bacpy(&cp.bdaddr, bdaddr);
2109 cp.passkey = passkey;
2110 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
2111 } else
2112 err = hci_send_cmd(hdev, hci_op, sizeof(*bdaddr), bdaddr);
2113
Johan Hedberga664b5b2011-02-19 12:06:02 -03002114 if (err < 0)
2115 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03002116
Brian Gix0df4c182011-11-16 13:53:13 -08002117done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002118 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03002119 return err;
2120}
2121
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05302122static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
2123 void *data, u16 len)
2124{
2125 struct mgmt_cp_pin_code_neg_reply *cp = data;
2126
2127 BT_DBG("");
2128
2129 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
2130 MGMT_OP_PIN_CODE_NEG_REPLY,
2131 HCI_OP_PIN_CODE_NEG_REPLY, 0);
2132}
2133
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002134static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2135 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08002136{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002137 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08002138
2139 BT_DBG("");
2140
2141 if (len != sizeof(*cp))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002142 return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002143 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08002144
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002145 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002146 MGMT_OP_USER_CONFIRM_REPLY,
2147 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08002148}
2149
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002150static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002151 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08002152{
Johan Hedbergc9c26592011-12-15 00:47:41 +02002153 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08002154
2155 BT_DBG("");
2156
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002157 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002158 MGMT_OP_USER_CONFIRM_NEG_REPLY,
2159 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08002160}
2161
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002162static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2163 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08002164{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002165 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08002166
2167 BT_DBG("");
2168
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002169 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002170 MGMT_OP_USER_PASSKEY_REPLY,
2171 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08002172}
2173
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002174static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002175 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08002176{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002177 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08002178
2179 BT_DBG("");
2180
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002181 return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002182 MGMT_OP_USER_PASSKEY_NEG_REPLY,
2183 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08002184}
2185
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002186static int update_name(struct hci_dev *hdev, const char *name)
2187{
2188 struct hci_cp_write_local_name cp;
2189
2190 memcpy(cp.name, name, sizeof(cp.name));
2191
2192 return hci_send_cmd(hdev, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
2193}
2194
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002195static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002196 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02002197{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002198 struct mgmt_cp_set_local_name *cp = data;
Johan Hedbergb312b1612011-03-16 14:29:37 +02002199 struct pending_cmd *cmd;
2200 int err;
2201
2202 BT_DBG("");
2203
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002204 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002205
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002206 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002207
Johan Hedbergb5235a62012-02-21 14:32:24 +02002208 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002209 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002210
2211 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002212 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002213 if (err < 0)
2214 goto failed;
2215
2216 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002217 sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002218
Johan Hedbergb5235a62012-02-21 14:32:24 +02002219 goto failed;
2220 }
2221
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02002222 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002223 if (!cmd) {
2224 err = -ENOMEM;
2225 goto failed;
2226 }
2227
Johan Hedberg2b4bf392012-03-03 00:19:06 +02002228 err = update_name(hdev, cp->name);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002229 if (err < 0)
2230 mgmt_pending_remove(cmd);
2231
2232failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002233 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02002234 return err;
2235}
2236
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002237static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002238 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01002239{
Szymon Jancc35938b2011-03-22 13:12:21 +01002240 struct pending_cmd *cmd;
2241 int err;
2242
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002243 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01002244
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002245 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01002246
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002247 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002248 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002249 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01002250 goto unlock;
2251 }
2252
Andre Guedes9a1a1992012-07-24 15:03:48 -03002253 if (!lmp_ssp_capable(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002254 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002255 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01002256 goto unlock;
2257 }
2258
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002259 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002260 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002261 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01002262 goto unlock;
2263 }
2264
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002265 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01002266 if (!cmd) {
2267 err = -ENOMEM;
2268 goto unlock;
2269 }
2270
2271 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
2272 if (err < 0)
2273 mgmt_pending_remove(cmd);
2274
2275unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002276 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01002277 return err;
2278}
2279
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002280static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002281 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01002282{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002283 struct mgmt_cp_add_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002284 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01002285 int err;
2286
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002287 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01002288
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002289 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002290
Johan Hedberg664ce4c2012-02-09 15:44:09 +02002291 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr, cp->hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002292 cp->randomizer);
Szymon Janc2763eda2011-03-22 13:12:22 +01002293 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002294 status = MGMT_STATUS_FAILED;
Szymon Janc2763eda2011-03-22 13:12:22 +01002295 else
Szymon Janca6785be2012-12-13 15:11:21 +01002296 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002297
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002298 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002299 &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01002300
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002301 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002302 return err;
2303}
2304
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002305static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002306 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01002307{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002308 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002309 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01002310 int err;
2311
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002312 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01002313
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002314 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002315
Johan Hedberg664ce4c2012-02-09 15:44:09 +02002316 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01002317 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002318 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01002319 else
Szymon Janca6785be2012-12-13 15:11:21 +01002320 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02002321
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002322 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002323 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01002324
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002325 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002326 return err;
2327}
2328
Andre Guedes5e0452c2012-02-17 20:39:38 -03002329int mgmt_interleaved_discovery(struct hci_dev *hdev)
2330{
2331 int err;
2332
2333 BT_DBG("%s", hdev->name);
2334
2335 hci_dev_lock(hdev);
2336
2337 err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR_LE);
2338 if (err < 0)
2339 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2340
2341 hci_dev_unlock(hdev);
2342
2343 return err;
2344}
2345
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002346static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002347 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04002348{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002349 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04002350 struct pending_cmd *cmd;
Johan Hedberg14a53662011-04-27 10:29:56 -04002351 int err;
2352
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002353 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04002354
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002355 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002356
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002357 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002358 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002359 MGMT_STATUS_NOT_POWERED);
Johan Hedbergbd2d1332011-11-07 23:13:37 +02002360 goto failed;
2361 }
2362
Andre Guedes642be6c2012-03-21 00:03:37 -03002363 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
2364 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2365 MGMT_STATUS_BUSY);
2366 goto failed;
2367 }
2368
Johan Hedbergff9ef572012-01-04 14:23:45 +02002369 if (hdev->discovery.state != DISCOVERY_STOPPED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002370 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002371 MGMT_STATUS_BUSY);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002372 goto failed;
2373 }
2374
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002375 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04002376 if (!cmd) {
2377 err = -ENOMEM;
2378 goto failed;
2379 }
2380
Andre Guedes4aab14e2012-02-17 20:39:36 -03002381 hdev->discovery.type = cp->type;
2382
2383 switch (hdev->discovery.type) {
Andre Guedesf39799f2012-02-17 20:39:35 -03002384 case DISCOV_TYPE_BREDR:
Andre Guedes8b901292012-02-23 18:09:27 -03002385 if (lmp_bredr_capable(hdev))
2386 err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR);
2387 else
2388 err = -ENOTSUPP;
Andre Guedesf39799f2012-02-17 20:39:35 -03002389 break;
2390
2391 case DISCOV_TYPE_LE:
Andre Guedes8b901292012-02-23 18:09:27 -03002392 if (lmp_host_le_capable(hdev))
2393 err = hci_le_scan(hdev, LE_SCAN_TYPE, LE_SCAN_INT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002394 LE_SCAN_WIN, LE_SCAN_TIMEOUT_LE_ONLY);
Andre Guedes8b901292012-02-23 18:09:27 -03002395 else
2396 err = -ENOTSUPP;
Andre Guedesf39799f2012-02-17 20:39:35 -03002397 break;
2398
Andre Guedes5e0452c2012-02-17 20:39:38 -03002399 case DISCOV_TYPE_INTERLEAVED:
Andre Guedes426c1892012-02-24 11:41:04 -03002400 if (lmp_host_le_capable(hdev) && lmp_bredr_capable(hdev))
2401 err = hci_le_scan(hdev, LE_SCAN_TYPE, LE_SCAN_INT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002402 LE_SCAN_WIN,
2403 LE_SCAN_TIMEOUT_BREDR_LE);
Andre Guedes426c1892012-02-24 11:41:04 -03002404 else
2405 err = -ENOTSUPP;
Andre Guedes5e0452c2012-02-17 20:39:38 -03002406 break;
2407
Andre Guedesf39799f2012-02-17 20:39:35 -03002408 default:
Andre Guedes3fd24152012-02-03 17:48:01 -03002409 err = -EINVAL;
Andre Guedesf39799f2012-02-17 20:39:35 -03002410 }
Andre Guedes3fd24152012-02-03 17:48:01 -03002411
Johan Hedberg14a53662011-04-27 10:29:56 -04002412 if (err < 0)
2413 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002414 else
2415 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04002416
2417failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002418 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002419 return err;
2420}
2421
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002422static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002423 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04002424{
Johan Hedbergd9306502012-02-20 23:25:18 +02002425 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04002426 struct pending_cmd *cmd;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002427 struct hci_cp_remote_name_req_cancel cp;
2428 struct inquiry_entry *e;
Johan Hedberg14a53662011-04-27 10:29:56 -04002429 int err;
2430
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002431 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04002432
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002433 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002434
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002435 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002436 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002437 MGMT_STATUS_REJECTED, &mgmt_cp->type,
2438 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02002439 goto unlock;
2440 }
2441
2442 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002443 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002444 MGMT_STATUS_INVALID_PARAMS, &mgmt_cp->type,
2445 sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002446 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02002447 }
2448
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002449 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04002450 if (!cmd) {
2451 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002452 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04002453 }
2454
Andre Guedese0d97272012-03-20 15:15:36 -03002455 switch (hdev->discovery.state) {
2456 case DISCOVERY_FINDING:
Andre Guedesc9ecc482012-03-15 16:52:08 -03002457 if (test_bit(HCI_INQUIRY, &hdev->flags))
2458 err = hci_cancel_inquiry(hdev);
2459 else
2460 err = hci_cancel_le_scan(hdev);
2461
Andre Guedese0d97272012-03-20 15:15:36 -03002462 break;
2463
2464 case DISCOVERY_RESOLVING:
2465 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002466 NAME_PENDING);
Andre Guedese0d97272012-03-20 15:15:36 -03002467 if (!e) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002468 mgmt_pending_remove(cmd);
Andre Guedese0d97272012-03-20 15:15:36 -03002469 err = cmd_complete(sk, hdev->id,
2470 MGMT_OP_STOP_DISCOVERY, 0,
2471 &mgmt_cp->type,
2472 sizeof(mgmt_cp->type));
2473 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2474 goto unlock;
2475 }
2476
2477 bacpy(&cp.bdaddr, &e->data.bdaddr);
2478 err = hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ_CANCEL,
2479 sizeof(cp), &cp);
2480
2481 break;
2482
2483 default:
2484 BT_DBG("unknown discovery state %u", hdev->discovery.state);
2485 err = -EFAULT;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002486 }
2487
Johan Hedberg14a53662011-04-27 10:29:56 -04002488 if (err < 0)
2489 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02002490 else
2491 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Johan Hedberg14a53662011-04-27 10:29:56 -04002492
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002493unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002494 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04002495 return err;
2496}
2497
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002498static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002499 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02002500{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002501 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002502 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002503 int err;
2504
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002505 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002506
Johan Hedberg561aafb2012-01-04 13:31:59 +02002507 hci_dev_lock(hdev);
2508
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002509 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002510 err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002511 MGMT_STATUS_FAILED);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02002512 goto failed;
2513 }
2514
Johan Hedberga198e7b2012-02-17 14:27:06 +02002515 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002516 if (!e) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002517 err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002518 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002519 goto failed;
2520 }
2521
2522 if (cp->name_known) {
2523 e->name_state = NAME_KNOWN;
2524 list_del(&e->list);
2525 } else {
2526 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02002527 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002528 }
2529
Johan Hedberge3846622013-01-09 15:29:33 +02002530 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr,
2531 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02002532
2533failed:
2534 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002535 return err;
2536}
2537
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002538static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002539 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03002540{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002541 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002542 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03002543 int err;
2544
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002545 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03002546
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002547 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03002548
Johan Hedberg88c1fe42012-02-09 15:56:11 +02002549 err = hci_blacklist_add(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03002550 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002551 status = MGMT_STATUS_FAILED;
Antti Julku7fbec222011-06-15 12:01:15 +03002552 else
Szymon Janca6785be2012-12-13 15:11:21 +01002553 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002554
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002555 err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002556 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03002557
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002558 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03002559
2560 return err;
2561}
2562
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002563static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002564 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03002565{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002566 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002567 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03002568 int err;
2569
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002570 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03002571
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002572 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03002573
Johan Hedberg88c1fe42012-02-09 15:56:11 +02002574 err = hci_blacklist_del(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03002575 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002576 status = MGMT_STATUS_INVALID_PARAMS;
Antti Julku7fbec222011-06-15 12:01:15 +03002577 else
Szymon Janca6785be2012-12-13 15:11:21 +01002578 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02002579
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002580 err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002581 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03002582
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002583 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03002584
2585 return err;
2586}
2587
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002588static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
2589 u16 len)
2590{
2591 struct mgmt_cp_set_device_id *cp = data;
2592 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01002593 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002594
2595 BT_DBG("%s", hdev->name);
2596
Szymon Jancc72d4b82012-03-16 16:02:57 +01002597 source = __le16_to_cpu(cp->source);
2598
2599 if (source > 0x0002)
2600 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
2601 MGMT_STATUS_INVALID_PARAMS);
2602
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002603 hci_dev_lock(hdev);
2604
Szymon Jancc72d4b82012-03-16 16:02:57 +01002605 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002606 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
2607 hdev->devid_product = __le16_to_cpu(cp->product);
2608 hdev->devid_version = __le16_to_cpu(cp->version);
2609
2610 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);
2611
2612 update_eir(hdev);
2613
2614 hci_dev_unlock(hdev);
2615
2616 return err;
2617}
2618
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002619static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002620 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03002621{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002622 struct mgmt_mode *cp = data;
Antti Julkuf6422ec2011-06-22 13:11:56 +03002623 struct hci_cp_write_page_scan_activity acp;
2624 u8 type;
2625 int err;
2626
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002627 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002628
Johan Hedberg33c525c2012-10-24 21:11:58 +03002629 if (!lmp_bredr_capable(hdev))
2630 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2631 MGMT_STATUS_NOT_SUPPORTED);
2632
Johan Hedberga7e80f22013-01-09 16:05:19 +02002633 if (cp->val != 0x00 && cp->val != 0x01)
2634 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2635 MGMT_STATUS_INVALID_PARAMS);
2636
Johan Hedberg5400c042012-02-21 16:40:33 +02002637 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002638 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002639 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02002640
2641 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002642 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002643 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002644
2645 hci_dev_lock(hdev);
2646
Johan Hedbergf7c68692011-12-15 00:47:36 +02002647 if (cp->val) {
Antti Julkuf6422ec2011-06-22 13:11:56 +03002648 type = PAGE_SCAN_TYPE_INTERLACED;
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002649
Johan Hedberg83ce9a062012-06-28 13:44:30 +03002650 /* 160 msec page scan interval */
2651 acp.interval = __constant_cpu_to_le16(0x0100);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002652 } else {
2653 type = PAGE_SCAN_TYPE_STANDARD; /* default */
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002654
2655 /* default 1.28 sec page scan */
2656 acp.interval = __constant_cpu_to_le16(0x0800);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002657 }
2658
Andrei Emeltchenko76ec9de2012-03-12 12:13:11 +02002659 /* default 11.25 msec page scan window */
2660 acp.window = __constant_cpu_to_le16(0x0012);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002661
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002662 err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY, sizeof(acp),
2663 &acp);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002664 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002665 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002666 MGMT_STATUS_FAILED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002667 goto done;
2668 }
2669
2670 err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
2671 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002672 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002673 MGMT_STATUS_FAILED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002674 goto done;
2675 }
2676
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002677 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002678 NULL, 0);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002679done:
2680 hci_dev_unlock(hdev);
Antti Julkuf6422ec2011-06-22 13:11:56 +03002681 return err;
2682}
2683
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002684static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002685 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002686{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002687 struct mgmt_cp_load_long_term_keys *cp = cp_data;
2688 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002689 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002690
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002691 key_count = __le16_to_cpu(cp->key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002692
2693 expected_len = sizeof(*cp) + key_count *
2694 sizeof(struct mgmt_ltk_info);
2695 if (expected_len != len) {
2696 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002697 len, expected_len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002698 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002699 EINVAL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002700 }
2701
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002702 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002703
2704 hci_dev_lock(hdev);
2705
2706 hci_smp_ltks_clear(hdev);
2707
2708 for (i = 0; i < key_count; i++) {
2709 struct mgmt_ltk_info *key = &cp->keys[i];
2710 u8 type;
2711
2712 if (key->master)
2713 type = HCI_SMP_LTK;
2714 else
2715 type = HCI_SMP_LTK_SLAVE;
2716
Hemant Gupta4596fde2012-04-16 14:57:40 +05302717 hci_add_ltk(hdev, &key->addr.bdaddr,
Andre Guedes378b5b72012-04-24 21:02:51 -03002718 bdaddr_to_le(key->addr.type),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002719 type, 0, key->authenticated, key->val,
2720 key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002721 }
2722
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002723 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
2724 NULL, 0);
2725
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002726 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002727
Johan Hedberg715a5bf2013-01-09 15:29:34 +02002728 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03002729}
2730
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02002731static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002732 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
2733 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02002734 bool var_len;
2735 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002736} mgmt_handlers[] = {
2737 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02002738 { read_version, false, MGMT_READ_VERSION_SIZE },
2739 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
2740 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
2741 { read_controller_info, false, MGMT_READ_INFO_SIZE },
2742 { set_powered, false, MGMT_SETTING_SIZE },
2743 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
2744 { set_connectable, false, MGMT_SETTING_SIZE },
2745 { set_fast_connectable, false, MGMT_SETTING_SIZE },
2746 { set_pairable, false, MGMT_SETTING_SIZE },
2747 { set_link_security, false, MGMT_SETTING_SIZE },
2748 { set_ssp, false, MGMT_SETTING_SIZE },
2749 { set_hs, false, MGMT_SETTING_SIZE },
2750 { set_le, false, MGMT_SETTING_SIZE },
2751 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
2752 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
2753 { add_uuid, false, MGMT_ADD_UUID_SIZE },
2754 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
2755 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
2756 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
2757 { disconnect, false, MGMT_DISCONNECT_SIZE },
2758 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
2759 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
2760 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
2761 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
2762 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
2763 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
2764 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
2765 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
2766 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
2767 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
2768 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
2769 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
2770 { add_remote_oob_data, false, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
2771 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
2772 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
2773 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
2774 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
2775 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
2776 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07002777 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002778};
2779
2780
Johan Hedberg03811012010-12-08 00:21:06 +02002781int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
2782{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002783 void *buf;
2784 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02002785 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01002786 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002787 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02002788 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02002789 int err;
2790
2791 BT_DBG("got %zu bytes", msglen);
2792
2793 if (msglen < sizeof(*hdr))
2794 return -EINVAL;
2795
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03002796 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02002797 if (!buf)
2798 return -ENOMEM;
2799
2800 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
2801 err = -EFAULT;
2802 goto done;
2803 }
2804
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002805 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002806 opcode = __le16_to_cpu(hdr->opcode);
2807 index = __le16_to_cpu(hdr->index);
2808 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02002809
2810 if (len != msglen - sizeof(*hdr)) {
2811 err = -EINVAL;
2812 goto done;
2813 }
2814
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002815 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002816 hdev = hci_dev_get(index);
2817 if (!hdev) {
2818 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002819 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002820 goto done;
2821 }
2822 }
2823
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002824 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002825 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02002826 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02002827 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002828 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002829 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02002830 }
2831
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002832 if ((hdev && opcode < MGMT_OP_READ_INFO) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002833 (!hdev && opcode >= MGMT_OP_READ_INFO)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002834 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002835 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002836 goto done;
2837 }
2838
Johan Hedbergbe22b542012-03-01 22:24:41 +02002839 handler = &mgmt_handlers[opcode];
2840
2841 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002842 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02002843 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002844 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02002845 goto done;
2846 }
2847
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002848 if (hdev)
2849 mgmt_init_hdev(sk, hdev);
2850
2851 cp = buf + sizeof(*hdr);
2852
Johan Hedbergbe22b542012-03-01 22:24:41 +02002853 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02002854 if (err < 0)
2855 goto done;
2856
Johan Hedberg03811012010-12-08 00:21:06 +02002857 err = msglen;
2858
2859done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002860 if (hdev)
2861 hci_dev_put(hdev);
2862
Johan Hedberg03811012010-12-08 00:21:06 +02002863 kfree(buf);
2864 return err;
2865}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002866
Johan Hedbergb24752f2011-11-03 14:40:33 +02002867static void cmd_status_rsp(struct pending_cmd *cmd, void *data)
2868{
2869 u8 *status = data;
2870
2871 cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
2872 mgmt_pending_remove(cmd);
2873}
2874
Johan Hedberg744cf192011-11-08 20:40:14 +02002875int mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002876{
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03002877 if (!mgmt_valid_hdev(hdev))
2878 return -ENOTSUPP;
2879
Johan Hedberg744cf192011-11-08 20:40:14 +02002880 return mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002881}
2882
Johan Hedberg744cf192011-11-08 20:40:14 +02002883int mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002884{
Johan Hedberg5f159032012-03-02 03:13:19 +02002885 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02002886
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03002887 if (!mgmt_valid_hdev(hdev))
2888 return -ENOTSUPP;
2889
Johan Hedberg744cf192011-11-08 20:40:14 +02002890 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02002891
Johan Hedberg744cf192011-11-08 20:40:14 +02002892 return mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002893}
2894
Johan Hedberg73f22f62010-12-29 16:00:25 +02002895struct cmd_lookup {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002896 struct sock *sk;
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002897 struct hci_dev *hdev;
Johan Hedberg90e70452012-02-23 23:09:40 +02002898 u8 mgmt_status;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002899};
2900
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002901static void settings_rsp(struct pending_cmd *cmd, void *data)
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002902{
Johan Hedberg73f22f62010-12-29 16:00:25 +02002903 struct cmd_lookup *match = data;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002904
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002905 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002906
2907 list_del(&cmd->list);
2908
2909 if (match->sk == NULL) {
2910 match->sk = cmd->sk;
2911 sock_hold(match->sk);
2912 }
2913
2914 mgmt_pending_free(cmd);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02002915}
Johan Hedberg5add6af2010-12-16 10:00:37 +02002916
Johan Hedberg7f0ae642012-10-24 21:11:57 +03002917static int set_bredr_scan(struct hci_dev *hdev)
2918{
2919 u8 scan = 0;
2920
2921 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
2922 scan |= SCAN_PAGE;
2923 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
2924 scan |= SCAN_INQUIRY;
2925
2926 if (!scan)
2927 return 0;
2928
2929 return hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
2930}
2931
Johan Hedberg744cf192011-11-08 20:40:14 +02002932int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02002933{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02002934 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02002935 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02002936
Johan Hedberg5e5282b2012-02-21 16:01:30 +02002937 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2938 return 0;
2939
Johan Hedberg69ab39e2011-12-15 00:47:35 +02002940 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg5add6af2010-12-16 10:00:37 +02002941
Johan Hedberg5e5282b2012-02-21 16:01:30 +02002942 if (powered) {
Johan Hedberg6b4b73e2012-10-25 00:09:52 +03002943 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
2944 !lmp_host_ssp_capable(hdev)) {
Andrzej Kaczmarek3d1cbdd2012-08-29 10:02:08 +02002945 u8 ssp = 1;
2946
2947 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &ssp);
2948 }
2949
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02002950 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
2951 struct hci_cp_write_le_host_supported cp;
2952
2953 cp.le = 1;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002954 cp.simul = lmp_le_br_capable(hdev);
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02002955
Johan Hedberg430a61b2012-10-25 00:09:53 +03002956 /* Check first if we already have the right
2957 * host state (host features set)
2958 */
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002959 if (cp.le != lmp_host_le_capable(hdev) ||
2960 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg430a61b2012-10-25 00:09:53 +03002961 hci_send_cmd(hdev,
2962 HCI_OP_WRITE_LE_HOST_SUPPORTED,
2963 sizeof(cp), &cp);
Andrzej Kaczmarek562fcc22012-08-29 10:02:09 +02002964 }
2965
Johan Hedberg7f0ae642012-10-24 21:11:57 +03002966 if (lmp_bredr_capable(hdev)) {
2967 set_bredr_scan(hdev);
2968 update_class(hdev);
2969 update_name(hdev, hdev->dev_name);
2970 update_eir(hdev);
2971 }
Johan Hedberg5e5282b2012-02-21 16:01:30 +02002972 } else {
Johan Hedbergd4f68522012-03-02 03:07:07 +02002973 u8 status = MGMT_STATUS_NOT_POWERED;
Johan Hedberg744cf192011-11-08 20:40:14 +02002974 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02002975 }
2976
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02002977 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002978
2979 if (match.sk)
2980 sock_put(match.sk);
2981
Johan Hedberg7bb895d2012-02-17 01:20:00 +02002982 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02002983}
Johan Hedberg73f22f62010-12-29 16:00:25 +02002984
Johan Hedberg744cf192011-11-08 20:40:14 +02002985int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
Johan Hedberg73f22f62010-12-29 16:00:25 +02002986{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02002987 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg5e5282b2012-02-21 16:01:30 +02002988 bool changed = false;
2989 int err = 0;
Johan Hedberg73f22f62010-12-29 16:00:25 +02002990
Johan Hedberg5e5282b2012-02-21 16:01:30 +02002991 if (discoverable) {
2992 if (!test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
2993 changed = true;
2994 } else {
2995 if (test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
2996 changed = true;
2997 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02002998
Johan Hedberged9b5f22012-02-21 20:47:06 +02002999 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003000 &match);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003001
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003002 if (changed)
3003 err = new_settings(hdev, match.sk);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003004
Johan Hedberg73f22f62010-12-29 16:00:25 +02003005 if (match.sk)
3006 sock_put(match.sk);
3007
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003008 return err;
Johan Hedberg73f22f62010-12-29 16:00:25 +02003009}
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003010
Johan Hedberg744cf192011-11-08 20:40:14 +02003011int mgmt_connectable(struct hci_dev *hdev, u8 connectable)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003012{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02003013 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003014 bool changed = false;
3015 int err = 0;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003016
Johan Hedberg5e5282b2012-02-21 16:01:30 +02003017 if (connectable) {
3018 if (!test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3019 changed = true;
3020 } else {
3021 if (test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags))
3022 changed = true;
3023 }
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003024
Johan Hedberged9b5f22012-02-21 20:47:06 +02003025 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003026 &match);
Johan Hedberged9b5f22012-02-21 20:47:06 +02003027
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02003028 if (changed)
3029 err = new_settings(hdev, match.sk);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003030
3031 if (match.sk)
3032 sock_put(match.sk);
3033
Johan Hedberg7bb895d2012-02-17 01:20:00 +02003034 return err;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02003035}
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003036
Johan Hedberg744cf192011-11-08 20:40:14 +02003037int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003038{
Johan Hedbergca69b792011-11-11 18:10:00 +02003039 u8 mgmt_err = mgmt_status(status);
3040
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003041 if (scan & SCAN_PAGE)
Johan Hedberg744cf192011-11-08 20:40:14 +02003042 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003043 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003044
3045 if (scan & SCAN_INQUIRY)
Johan Hedberg744cf192011-11-08 20:40:14 +02003046 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003047 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02003048
3049 return 0;
3050}
3051
Cristian Chilipirea53168e52012-05-09 08:44:52 +03003052int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
3053 bool persistent)
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003054{
Johan Hedberg86742e12011-11-07 23:13:38 +02003055 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003056
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003057 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003058
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003059 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02003060 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003061 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003062 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03003063 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003064 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003065
Johan Hedberg744cf192011-11-08 20:40:14 +02003066 return mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02003067}
Johan Hedbergf7520542011-01-20 12:34:39 +02003068
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003069int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent)
3070{
3071 struct mgmt_ev_new_long_term_key ev;
3072
3073 memset(&ev, 0, sizeof(ev));
3074
3075 ev.store_hint = persistent;
3076 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003077 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003078 ev.key.authenticated = key->authenticated;
3079 ev.key.enc_size = key->enc_size;
3080 ev.key.ediv = key->ediv;
3081
3082 if (key->type == HCI_SMP_LTK)
3083 ev.key.master = 1;
3084
3085 memcpy(ev.key.rand, key->rand, sizeof(key->rand));
3086 memcpy(ev.key.val, key->val, sizeof(key->val));
3087
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003088 return mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev),
3089 NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03003090}
3091
Johan Hedbergafc747a2012-01-15 18:11:07 +02003092int mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003093 u8 addr_type, u32 flags, u8 *name, u8 name_len,
3094 u8 *dev_class)
Johan Hedbergf7520542011-01-20 12:34:39 +02003095{
Johan Hedbergb644ba32012-01-17 21:48:47 +02003096 char buf[512];
3097 struct mgmt_ev_device_connected *ev = (void *) buf;
3098 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02003099
Johan Hedbergb644ba32012-01-17 21:48:47 +02003100 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003101 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02003102
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02003103 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02003104
Johan Hedbergb644ba32012-01-17 21:48:47 +02003105 if (name_len > 0)
3106 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003107 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003108
3109 if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
Brian Gix53156382012-03-09 14:07:03 -08003110 eir_len = eir_append_data(ev->eir, eir_len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003111 EIR_CLASS_OF_DEV, dev_class, 3);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003112
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003113 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003114
3115 return mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003116 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02003117}
3118
Johan Hedberg8962ee72011-01-20 12:40:27 +02003119static void disconnect_rsp(struct pending_cmd *cmd, void *data)
3120{
Szymon Jancc68fb7f2011-03-22 13:12:19 +01003121 struct mgmt_cp_disconnect *cp = cmd->param;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003122 struct sock **sk = data;
Johan Hedberga38528f2011-01-22 06:46:43 +02003123 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003124
Johan Hedberg88c3df12012-02-09 14:27:38 +02003125 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3126 rp.addr.type = cp->addr.type;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003127
Johan Hedbergaee9b212012-02-18 15:07:59 +02003128 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003129 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003130
3131 *sk = cmd->sk;
3132 sock_hold(*sk);
3133
Johan Hedberga664b5b2011-02-19 12:06:02 -03003134 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003135}
3136
Johan Hedberg124f6e32012-02-09 13:50:12 +02003137static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02003138{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003139 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02003140 struct mgmt_cp_unpair_device *cp = cmd->param;
3141 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003142
3143 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02003144 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3145 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003146
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003147 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
3148
Johan Hedbergaee9b212012-02-18 15:07:59 +02003149 cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02003150
3151 mgmt_pending_remove(cmd);
3152}
3153
Johan Hedbergafc747a2012-01-15 18:11:07 +02003154int mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003155 u8 link_type, u8 addr_type, u8 reason)
Johan Hedbergf7520542011-01-20 12:34:39 +02003156{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003157 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003158 struct sock *sk = NULL;
3159 int err;
3160
Johan Hedberg744cf192011-11-08 20:40:14 +02003161 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02003162
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02003163 bacpy(&ev.addr.bdaddr, bdaddr);
3164 ev.addr.type = link_to_bdaddr(link_type, addr_type);
3165 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02003166
Johan Hedbergafc747a2012-01-15 18:11:07 +02003167 err = mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003168 sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003169
3170 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01003171 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003172
Johan Hedberg124f6e32012-02-09 13:50:12 +02003173 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003174 hdev);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003175
Johan Hedberg8962ee72011-01-20 12:40:27 +02003176 return err;
3177}
3178
Johan Hedberg88c3df12012-02-09 14:27:38 +02003179int mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003180 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02003181{
Johan Hedberg88c3df12012-02-09 14:27:38 +02003182 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003183 struct pending_cmd *cmd;
3184 int err;
3185
Jefferson Delfes36a75f12012-09-18 13:36:54 -04003186 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
3187 hdev);
3188
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003189 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003190 if (!cmd)
3191 return -ENOENT;
3192
Johan Hedberg88c3df12012-02-09 14:27:38 +02003193 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003194 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02003195
Johan Hedberg88c3df12012-02-09 14:27:38 +02003196 err = cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003197 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003198
Johan Hedberga664b5b2011-02-19 12:06:02 -03003199 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003200
3201 return err;
Johan Hedbergf7520542011-01-20 12:34:39 +02003202}
Johan Hedberg17d5c042011-01-22 06:09:08 +02003203
Johan Hedberg48264f02011-11-09 13:58:58 +02003204int mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003205 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02003206{
3207 struct mgmt_ev_connect_failed ev;
3208
Johan Hedberg4c659c32011-11-07 23:13:39 +02003209 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003210 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02003211 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02003212
Johan Hedberg744cf192011-11-08 20:40:14 +02003213 return mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02003214}
Johan Hedberg980e1a52011-01-22 06:10:07 +02003215
Johan Hedberg744cf192011-11-08 20:40:14 +02003216int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003217{
3218 struct mgmt_ev_pin_code_request ev;
3219
Johan Hedbergd8457692012-02-17 14:24:57 +02003220 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003221 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02003222 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003223
Johan Hedberg744cf192011-11-08 20:40:14 +02003224 return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003225 NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003226}
3227
Johan Hedberg744cf192011-11-08 20:40:14 +02003228int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003229 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003230{
3231 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003232 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003233 int err;
3234
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003235 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003236 if (!cmd)
3237 return -ENOENT;
3238
Johan Hedbergd8457692012-02-17 14:24:57 +02003239 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003240 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003241
Johan Hedbergaee9b212012-02-18 15:07:59 +02003242 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003243 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003244
Johan Hedberga664b5b2011-02-19 12:06:02 -03003245 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003246
3247 return err;
3248}
3249
Johan Hedberg744cf192011-11-08 20:40:14 +02003250int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003251 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003252{
3253 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003254 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003255 int err;
3256
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003257 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003258 if (!cmd)
3259 return -ENOENT;
3260
Johan Hedbergd8457692012-02-17 14:24:57 +02003261 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03003262 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03003263
Johan Hedbergaee9b212012-02-18 15:07:59 +02003264 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003265 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003266
Johan Hedberga664b5b2011-02-19 12:06:02 -03003267 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003268
3269 return err;
3270}
Johan Hedberga5c29682011-02-19 12:05:57 -03003271
Johan Hedberg744cf192011-11-08 20:40:14 +02003272int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003273 u8 link_type, u8 addr_type, __le32 value,
3274 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03003275{
3276 struct mgmt_ev_user_confirm_request ev;
3277
Johan Hedberg744cf192011-11-08 20:40:14 +02003278 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03003279
Johan Hedberg272d90d2012-02-09 15:26:12 +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 Hedberg55bc1a32011-04-28 11:28:56 -07003282 ev.confirm_hint = confirm_hint;
Andrei Emeltchenko78e80982012-03-09 13:00:50 +02003283 ev.value = value;
Johan Hedberga5c29682011-02-19 12:05:57 -03003284
Johan Hedberg744cf192011-11-08 20:40:14 +02003285 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003286 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03003287}
3288
Johan Hedberg272d90d2012-02-09 15:26:12 +02003289int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003290 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08003291{
3292 struct mgmt_ev_user_passkey_request ev;
3293
3294 BT_DBG("%s", hdev->name);
3295
Johan Hedberg272d90d2012-02-09 15:26:12 +02003296 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003297 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08003298
3299 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003300 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08003301}
3302
Brian Gix0df4c182011-11-16 13:53:13 -08003303static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003304 u8 link_type, u8 addr_type, u8 status,
3305 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03003306{
3307 struct pending_cmd *cmd;
3308 struct mgmt_rp_user_confirm_reply rp;
3309 int err;
3310
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003311 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003312 if (!cmd)
3313 return -ENOENT;
3314
Johan Hedberg272d90d2012-02-09 15:26:12 +02003315 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003316 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergaee9b212012-02-18 15:07:59 +02003317 err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003318 &rp, sizeof(rp));
Johan Hedberga5c29682011-02-19 12:05:57 -03003319
Johan Hedberga664b5b2011-02-19 12:06:02 -03003320 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003321
3322 return err;
3323}
3324
Johan Hedberg744cf192011-11-08 20:40:14 +02003325int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003326 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03003327{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003328 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003329 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03003330}
3331
Johan Hedberg272d90d2012-02-09 15:26:12 +02003332int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003333 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03003334{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003335 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003336 status,
3337 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03003338}
Johan Hedberg2a611692011-02-19 12:06:00 -03003339
Brian Gix604086b2011-11-23 08:28:33 -08003340int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003341 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08003342{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003343 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003344 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08003345}
3346
Johan Hedberg272d90d2012-02-09 15:26:12 +02003347int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003348 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08003349{
Johan Hedberg272d90d2012-02-09 15:26:12 +02003350 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003351 status,
3352 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08003353}
3354
Johan Hedberg92a25252012-09-06 18:39:26 +03003355int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
3356 u8 link_type, u8 addr_type, u32 passkey,
3357 u8 entered)
3358{
3359 struct mgmt_ev_passkey_notify ev;
3360
3361 BT_DBG("%s", hdev->name);
3362
3363 bacpy(&ev.addr.bdaddr, bdaddr);
3364 ev.addr.type = link_to_bdaddr(link_type, addr_type);
3365 ev.passkey = __cpu_to_le32(passkey);
3366 ev.entered = entered;
3367
3368 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
3369}
3370
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003371int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003372 u8 addr_type, u8 status)
Johan Hedberg2a611692011-02-19 12:06:00 -03003373{
3374 struct mgmt_ev_auth_failed ev;
3375
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003376 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003377 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02003378 ev.status = mgmt_status(status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003379
Johan Hedberg744cf192011-11-08 20:40:14 +02003380 return mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg2a611692011-02-19 12:06:00 -03003381}
Johan Hedbergb312b1612011-03-16 14:29:37 +02003382
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003383int mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
3384{
3385 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg47990ea2012-02-22 11:58:37 +02003386 bool changed = false;
3387 int err = 0;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003388
3389 if (status) {
3390 u8 mgmt_err = mgmt_status(status);
3391 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003392 cmd_status_rsp, &mgmt_err);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003393 return 0;
3394 }
3395
Johan Hedberg47990ea2012-02-22 11:58:37 +02003396 if (test_bit(HCI_AUTH, &hdev->flags)) {
3397 if (!test_and_set_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
3398 changed = true;
3399 } else {
3400 if (test_and_clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
3401 changed = true;
3402 }
3403
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003404 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003405 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003406
Johan Hedberg47990ea2012-02-22 11:58:37 +02003407 if (changed)
3408 err = new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02003409
3410 if (match.sk)
3411 sock_put(match.sk);
3412
3413 return err;
3414}
3415
Johan Hedbergcacaf522012-02-21 00:52:42 +02003416static int clear_eir(struct hci_dev *hdev)
3417{
3418 struct hci_cp_write_eir cp;
3419
Johan Hedberg976eb202012-10-24 21:12:01 +03003420 if (!lmp_ext_inq_capable(hdev))
Johan Hedbergcacaf522012-02-21 00:52:42 +02003421 return 0;
3422
Johan Hedbergc80da272012-02-22 15:38:48 +02003423 memset(hdev->eir, 0, sizeof(hdev->eir));
3424
Johan Hedbergcacaf522012-02-21 00:52:42 +02003425 memset(&cp, 0, sizeof(cp));
3426
3427 return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
3428}
3429
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003430int mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003431{
3432 struct cmd_lookup match = { NULL, hdev };
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003433 bool changed = false;
3434 int err = 0;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003435
3436 if (status) {
3437 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003438
3439 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003440 &hdev->dev_flags))
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003441 err = new_settings(hdev, NULL);
3442
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003443 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
3444 &mgmt_err);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003445
3446 return err;
3447 }
3448
3449 if (enable) {
3450 if (!test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3451 changed = true;
3452 } else {
3453 if (test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3454 changed = true;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003455 }
3456
3457 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
3458
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02003459 if (changed)
3460 err = new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003461
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02003462 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003463 sock_put(match.sk);
3464
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02003465 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
3466 update_eir(hdev);
3467 else
3468 clear_eir(hdev);
Johan Hedbergcacaf522012-02-21 00:52:42 +02003469
Johan Hedberged2c4ee2012-02-17 00:56:28 +02003470 return err;
3471}
3472
Johan Hedberg90e70452012-02-23 23:09:40 +02003473static void class_rsp(struct pending_cmd *cmd, void *data)
3474{
3475 struct cmd_lookup *match = data;
3476
3477 cmd_complete(cmd->sk, cmd->index, cmd->opcode, match->mgmt_status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003478 match->hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02003479
3480 list_del(&cmd->list);
3481
3482 if (match->sk == NULL) {
3483 match->sk = cmd->sk;
3484 sock_hold(match->sk);
3485 }
3486
3487 mgmt_pending_free(cmd);
3488}
3489
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003490int mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003491 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003492{
Johan Hedberg90e70452012-02-23 23:09:40 +02003493 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
3494 int err = 0;
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003495
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02003496 clear_bit(HCI_PENDING_CLASS, &hdev->dev_flags);
3497
Johan Hedberg90e70452012-02-23 23:09:40 +02003498 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, class_rsp, &match);
3499 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, class_rsp, &match);
3500 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, class_rsp, &match);
3501
3502 if (!status)
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003503 err = mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
3504 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02003505
3506 if (match.sk)
3507 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01003508
3509 return err;
3510}
3511
Johan Hedberg744cf192011-11-08 20:40:14 +02003512int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003513{
3514 struct pending_cmd *cmd;
3515 struct mgmt_cp_set_local_name ev;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003516 bool changed = false;
3517 int err = 0;
3518
3519 if (memcmp(name, hdev->dev_name, sizeof(hdev->dev_name)) != 0) {
3520 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
3521 changed = true;
3522 }
Johan Hedbergb312b1612011-03-16 14:29:37 +02003523
3524 memset(&ev, 0, sizeof(ev));
3525 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003526 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003527
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003528 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003529 if (!cmd)
3530 goto send_event;
3531
Johan Hedberg7bdaae42012-02-22 21:39:58 +02003532 /* Always assume that either the short or the complete name has
3533 * changed if there was a pending mgmt command */
3534 changed = true;
3535
Johan Hedbergb312b1612011-03-16 14:29:37 +02003536 if (status) {
Johan Hedberg744cf192011-11-08 20:40:14 +02003537 err = cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003538 mgmt_status(status));
Johan Hedbergb312b1612011-03-16 14:29:37 +02003539 goto failed;
3540 }
3541
Johan Hedbergaee9b212012-02-18 15:07:59 +02003542 err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0, &ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003543 sizeof(ev));
Johan Hedbergb312b1612011-03-16 14:29:37 +02003544 if (err < 0)
3545 goto failed;
3546
3547send_event:
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003548 if (changed)
3549 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003550 sizeof(ev), cmd ? cmd->sk : NULL);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003551
Johan Hedberg1225a6b2012-10-25 00:09:54 +03003552 /* EIR is taken care of separately when powering on the
3553 * adapter so only update them here if this is a name change
3554 * unrelated to power on.
3555 */
3556 if (!test_bit(HCI_INIT, &hdev->flags))
3557 update_eir(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003558
3559failed:
3560 if (cmd)
3561 mgmt_pending_remove(cmd);
3562 return err;
3563}
Szymon Jancc35938b2011-03-22 13:12:21 +01003564
Johan Hedberg744cf192011-11-08 20:40:14 +02003565int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003566 u8 *randomizer, u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01003567{
3568 struct pending_cmd *cmd;
3569 int err;
3570
Johan Hedberg744cf192011-11-08 20:40:14 +02003571 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01003572
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003573 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003574 if (!cmd)
3575 return -ENOENT;
3576
3577 if (status) {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003578 err = cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3579 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01003580 } else {
3581 struct mgmt_rp_read_local_oob_data rp;
3582
3583 memcpy(rp.hash, hash, sizeof(rp.hash));
3584 memcpy(rp.randomizer, randomizer, sizeof(rp.randomizer));
3585
Johan Hedberg744cf192011-11-08 20:40:14 +02003586 err = cmd_complete(cmd->sk, hdev->id,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003587 MGMT_OP_READ_LOCAL_OOB_DATA, 0, &rp,
3588 sizeof(rp));
Szymon Jancc35938b2011-03-22 13:12:21 +01003589 }
3590
3591 mgmt_pending_remove(cmd);
3592
3593 return err;
3594}
Johan Hedberge17acd42011-03-30 23:57:16 +03003595
Johan Hedberg06199cf2012-02-22 16:37:11 +02003596int mgmt_le_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
3597{
3598 struct cmd_lookup match = { NULL, hdev };
3599 bool changed = false;
3600 int err = 0;
3601
3602 if (status) {
3603 u8 mgmt_err = mgmt_status(status);
3604
3605 if (enable && test_and_clear_bit(HCI_LE_ENABLED,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003606 &hdev->dev_flags))
Szymon Jancd97dcb62012-03-16 16:02:56 +01003607 err = new_settings(hdev, NULL);
Johan Hedberg06199cf2012-02-22 16:37:11 +02003608
Szymon Jancd97dcb62012-03-16 16:02:56 +01003609 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
3610 &mgmt_err);
Johan Hedberg06199cf2012-02-22 16:37:11 +02003611
3612 return err;
3613 }
3614
3615 if (enable) {
3616 if (!test_and_set_bit(HCI_LE_ENABLED, &hdev->dev_flags))
3617 changed = true;
3618 } else {
3619 if (test_and_clear_bit(HCI_LE_ENABLED, &hdev->dev_flags))
3620 changed = true;
3621 }
3622
3623 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
3624
3625 if (changed)
3626 err = new_settings(hdev, match.sk);
3627
3628 if (match.sk)
3629 sock_put(match.sk);
3630
3631 return err;
3632}
3633
Johan Hedberg48264f02011-11-09 13:58:58 +02003634int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003635 u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name, u8
3636 ssp, u8 *eir, u16 eir_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03003637{
Johan Hedberge319d2e2012-01-15 19:51:59 +02003638 char buf[512];
3639 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02003640 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03003641
Johan Hedberg1dc06092012-01-15 21:01:23 +02003642 /* Leave 5 bytes for a potential CoD field */
3643 if (sizeof(*ev) + eir_len + 5 > sizeof(buf))
Andre Guedes7d262f82012-01-10 18:20:49 -03003644 return -EINVAL;
3645
Johan Hedberg1dc06092012-01-15 21:01:23 +02003646 memset(buf, 0, sizeof(buf));
3647
Johan Hedberge319d2e2012-01-15 19:51:59 +02003648 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003649 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02003650 ev->rssi = rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +02003651 if (cfm_name)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05303652 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_CONFIRM_NAME);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003653 if (!ssp)
Syam Sidhardhan612dfce2012-10-29 22:37:36 +05303654 ev->flags |= __constant_cpu_to_le32(MGMT_DEV_FOUND_LEGACY_PAIRING);
Johan Hedberge17acd42011-03-30 23:57:16 +03003655
Johan Hedberg1dc06092012-01-15 21:01:23 +02003656 if (eir_len > 0)
Johan Hedberge319d2e2012-01-15 19:51:59 +02003657 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03003658
Johan Hedberg1dc06092012-01-15 21:01:23 +02003659 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
3660 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003661 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02003662
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003663 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedberg1dc06092012-01-15 21:01:23 +02003664 ev_size = sizeof(*ev) + eir_len;
Andre Guedesf8523592011-09-09 18:56:26 -03003665
Johan Hedberge319d2e2012-01-15 19:51:59 +02003666 return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03003667}
Johan Hedberga88a9652011-03-30 13:18:12 +03003668
Johan Hedbergb644ba32012-01-17 21:48:47 +02003669int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003670 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03003671{
Johan Hedbergb644ba32012-01-17 21:48:47 +02003672 struct mgmt_ev_device_found *ev;
3673 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
3674 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03003675
Johan Hedbergb644ba32012-01-17 21:48:47 +02003676 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03003677
Johan Hedbergb644ba32012-01-17 21:48:47 +02003678 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03003679
Johan Hedbergb644ba32012-01-17 21:48:47 +02003680 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03003681 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003682 ev->rssi = rssi;
3683
3684 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003685 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003686
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003687 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003688
Johan Hedberg053c7e02012-02-04 00:06:00 +02003689 return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003690 sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03003691}
Johan Hedberg314b2382011-04-27 10:29:57 -04003692
Andre Guedes7a135102011-11-09 17:14:25 -03003693int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status)
Johan Hedberg164a6e72011-11-01 17:06:44 +02003694{
3695 struct pending_cmd *cmd;
Johan Hedbergf808e162012-02-19 12:52:07 +02003696 u8 type;
Johan Hedberg164a6e72011-11-01 17:06:44 +02003697 int err;
3698
Andre Guedes203159d2012-02-13 15:41:01 -03003699 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3700
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003701 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003702 if (!cmd)
3703 return -ENOENT;
3704
Johan Hedbergf808e162012-02-19 12:52:07 +02003705 type = hdev->discovery.type;
3706
3707 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003708 &type, sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02003709 mgmt_pending_remove(cmd);
3710
3711 return err;
3712}
3713
Andre Guedese6d465c2011-11-09 17:14:26 -03003714int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status)
3715{
3716 struct pending_cmd *cmd;
3717 int err;
3718
3719 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
3720 if (!cmd)
3721 return -ENOENT;
3722
Johan Hedbergd9306502012-02-20 23:25:18 +02003723 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003724 &hdev->discovery.type, sizeof(hdev->discovery.type));
Johan Hedberg03811012010-12-08 00:21:06 +02003725 mgmt_pending_remove(cmd);
3726
3727 return err;
3728}
Johan Hedberg314b2382011-04-27 10:29:57 -04003729
Johan Hedberg744cf192011-11-08 20:40:14 +02003730int mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04003731{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02003732 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02003733 struct pending_cmd *cmd;
3734
Andre Guedes343fb142011-11-22 17:14:19 -03003735 BT_DBG("%s discovering %u", hdev->name, discovering);
3736
Johan Hedberg164a6e72011-11-01 17:06:44 +02003737 if (discovering)
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003738 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003739 else
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003740 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02003741
3742 if (cmd != NULL) {
Johan Hedbergf808e162012-02-19 12:52:07 +02003743 u8 type = hdev->discovery.type;
3744
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003745 cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
3746 sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02003747 mgmt_pending_remove(cmd);
3748 }
3749
Johan Hedbergf963e8e2012-02-20 23:30:44 +02003750 memset(&ev, 0, sizeof(ev));
3751 ev.type = hdev->discovery.type;
3752 ev.discovering = discovering;
3753
3754 return mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04003755}
Antti Julku5e762442011-08-25 16:48:02 +03003756
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003757int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03003758{
3759 struct pending_cmd *cmd;
3760 struct mgmt_ev_device_blocked ev;
3761
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003762 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003763
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003764 bacpy(&ev.addr.bdaddr, bdaddr);
3765 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03003766
Johan Hedberg744cf192011-11-08 20:40:14 +02003767 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003768 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03003769}
3770
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003771int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03003772{
3773 struct pending_cmd *cmd;
3774 struct mgmt_ev_device_unblocked ev;
3775
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003776 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003777
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003778 bacpy(&ev.addr.bdaddr, bdaddr);
3779 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03003780
Johan Hedberg744cf192011-11-08 20:40:14 +02003781 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003782 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03003783}
Marcel Holtmannd7b7e792012-02-20 21:47:49 +01003784
3785module_param(enable_hs, bool, 0644);
3786MODULE_PARM_DESC(enable_hs, "Enable High Speed support");