blob: d702ba1c171c2588a29687361483347669863096 [file] [log] [blame]
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 BlueZ - Bluetooth protocol stack for Linux
Ron Shaffer2d0a0342010-05-28 11:53:46 -04003 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
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
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090015 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090020 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 SOFTWARE IS DISCLAIMED.
23*/
24
25/* Bluetooth HCI event handling. */
26
Gustavo Padovan8c520a52012-05-23 04:04:22 -030027#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/unaligned.h>
29
30#include <net/bluetooth/bluetooth.h>
31#include <net/bluetooth/hci_core.h>
Mikel Astizf0d6a0e2012-08-09 09:52:30 +020032#include <net/bluetooth/mgmt.h>
Andrei Emeltchenko8e2a0d92012-09-27 17:26:08 +030033#include <net/bluetooth/a2mp.h>
Andrei Emeltchenko903e4542012-09-27 17:26:09 +030034#include <net/bluetooth/amp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* Handle HCI Event packets */
37
Marcel Holtmanna9de9242007-10-20 13:33:56 +020038static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020040 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030042 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Andre Guedese6d465c2011-11-09 17:14:26 -030044 if (status) {
45 hci_dev_lock(hdev);
46 mgmt_stop_discovery_failed(hdev, status);
47 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020048 return;
Andre Guedese6d465c2011-11-09 17:14:26 -030049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Andre Guedes89352e72011-11-04 14:16:53 -030051 clear_bit(HCI_INQUIRY, &hdev->flags);
52
Johan Hedberg56e5cb82011-11-08 20:40:16 +020053 hci_dev_lock(hdev);
Johan Hedbergff9ef572012-01-04 14:23:45 +020054 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Johan Hedberg56e5cb82011-11-08 20:40:16 +020055 hci_dev_unlock(hdev);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010056
Johan Hedberg23bb5762010-12-21 23:01:27 +020057 hci_req_complete(hdev, HCI_OP_INQUIRY_CANCEL, status);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010058
Marcel Holtmanna9de9242007-10-20 13:33:56 +020059 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
61
Andre Guedes4d934832012-03-21 00:03:35 -030062static void hci_cc_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
63{
64 __u8 status = *((__u8 *) skb->data);
65
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030066 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesae854a72012-03-21 00:03:36 -030067
68 if (status)
69 return;
70
71 set_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
Andre Guedes4d934832012-03-21 00:03:35 -030072}
73
Marcel Holtmanna9de9242007-10-20 13:33:56 +020074static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020076 __u8 status = *((__u8 *) skb->data);
77
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030078 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020079
80 if (status)
81 return;
82
Andre Guedesae854a72012-03-21 00:03:36 -030083 clear_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
84
Marcel Holtmanna9de9242007-10-20 13:33:56 +020085 hci_conn_check_pending(hdev);
86}
87
Gustavo Padovan807deac2012-05-17 00:36:24 -030088static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev,
89 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +020090{
91 BT_DBG("%s", hdev->name);
92}
93
94static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
95{
96 struct hci_rp_role_discovery *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030099 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200101 if (rp->status)
102 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200104 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200106 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
107 if (conn) {
108 if (rp->role)
109 conn->link_mode &= ~HCI_LM_MASTER;
110 else
111 conn->link_mode |= HCI_LM_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200113
114 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200117static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
118{
119 struct hci_rp_read_link_policy *rp = (void *) skb->data;
120 struct hci_conn *conn;
121
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300122 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200123
124 if (rp->status)
125 return;
126
127 hci_dev_lock(hdev);
128
129 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
130 if (conn)
131 conn->link_policy = __le16_to_cpu(rp->policy);
132
133 hci_dev_unlock(hdev);
134}
135
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200136static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200138 struct hci_rp_write_link_policy *rp = (void *) skb->data;
139 struct hci_conn *conn;
140 void *sent;
141
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300142 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200143
144 if (rp->status)
145 return;
146
147 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
148 if (!sent)
149 return;
150
151 hci_dev_lock(hdev);
152
153 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200154 if (conn)
Harvey Harrison83985312008-05-02 16:25:46 -0700155 conn->link_policy = get_unaligned_le16(sent + 2);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200156
157 hci_dev_unlock(hdev);
158}
159
Gustavo Padovan807deac2012-05-17 00:36:24 -0300160static void hci_cc_read_def_link_policy(struct hci_dev *hdev,
161 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200162{
163 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
164
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300165 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200166
167 if (rp->status)
168 return;
169
170 hdev->link_policy = __le16_to_cpu(rp->policy);
171}
172
Gustavo Padovan807deac2012-05-17 00:36:24 -0300173static void hci_cc_write_def_link_policy(struct hci_dev *hdev,
174 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200175{
176 __u8 status = *((__u8 *) skb->data);
177 void *sent;
178
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300179 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200180
181 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
182 if (!sent)
183 return;
184
185 if (!status)
186 hdev->link_policy = get_unaligned_le16(sent);
187
Johan Hedberg23bb5762010-12-21 23:01:27 +0200188 hci_req_complete(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200189}
190
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200191static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
192{
193 __u8 status = *((__u8 *) skb->data);
194
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300195 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200196
Gustavo F. Padovan10572132011-03-16 15:36:29 -0300197 clear_bit(HCI_RESET, &hdev->flags);
198
Johan Hedberg23bb5762010-12-21 23:01:27 +0200199 hci_req_complete(hdev, HCI_OP_RESET, status);
Andre Guedesd23264a2011-11-25 20:53:38 -0300200
Johan Hedberga297e972012-02-21 17:55:47 +0200201 /* Reset all non-persistent flags */
Andre Guedesae854a72012-03-21 00:03:36 -0300202 hdev->dev_flags &= ~(BIT(HCI_LE_SCAN) | BIT(HCI_PENDING_CLASS) |
203 BIT(HCI_PERIODIC_INQ));
Andre Guedes69775ff2012-02-23 16:50:05 +0200204
205 hdev->discovery.state = DISCOVERY_STOPPED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200206}
207
208static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
209{
210 __u8 status = *((__u8 *) skb->data);
211 void *sent;
212
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300213 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200214
215 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
216 if (!sent)
217 return;
218
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200219 hci_dev_lock(hdev);
220
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200221 if (test_bit(HCI_MGMT, &hdev->dev_flags))
222 mgmt_set_local_name_complete(hdev, sent, status);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +0200223 else if (!status)
224 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200225
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200226 hci_dev_unlock(hdev);
Johan Hedberg3159d382012-02-24 13:47:56 +0200227
228 hci_req_complete(hdev, HCI_OP_WRITE_LOCAL_NAME, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200229}
230
231static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
232{
233 struct hci_rp_read_local_name *rp = (void *) skb->data;
234
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300235 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200236
237 if (rp->status)
238 return;
239
Johan Hedbergdb99b5f2012-02-22 20:14:22 +0200240 if (test_bit(HCI_SETUP, &hdev->dev_flags))
241 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200242}
243
244static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
245{
246 __u8 status = *((__u8 *) skb->data);
247 void *sent;
248
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300249 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200250
251 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
252 if (!sent)
253 return;
254
255 if (!status) {
256 __u8 param = *((__u8 *) sent);
257
258 if (param == AUTH_ENABLED)
259 set_bit(HCI_AUTH, &hdev->flags);
260 else
261 clear_bit(HCI_AUTH, &hdev->flags);
262 }
263
Johan Hedberg33ef95e2012-02-16 23:56:27 +0200264 if (test_bit(HCI_MGMT, &hdev->dev_flags))
265 mgmt_auth_enable_complete(hdev, status);
266
Johan Hedberg23bb5762010-12-21 23:01:27 +0200267 hci_req_complete(hdev, HCI_OP_WRITE_AUTH_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200268}
269
270static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
271{
272 __u8 status = *((__u8 *) skb->data);
273 void *sent;
274
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300275 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200276
277 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
278 if (!sent)
279 return;
280
281 if (!status) {
282 __u8 param = *((__u8 *) sent);
283
284 if (param)
285 set_bit(HCI_ENCRYPT, &hdev->flags);
286 else
287 clear_bit(HCI_ENCRYPT, &hdev->flags);
288 }
289
Johan Hedberg23bb5762010-12-21 23:01:27 +0200290 hci_req_complete(hdev, HCI_OP_WRITE_ENCRYPT_MODE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200291}
292
293static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
294{
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200295 __u8 param, status = *((__u8 *) skb->data);
296 int old_pscan, old_iscan;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200297 void *sent;
298
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300299 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200300
301 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
302 if (!sent)
303 return;
304
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200305 param = *((__u8 *) sent);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200306
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200307 hci_dev_lock(hdev);
308
Mikel Astizfa1bd912012-08-09 09:52:29 +0200309 if (status) {
Johan Hedberg744cf192011-11-08 20:40:14 +0200310 mgmt_write_scan_failed(hdev, param, status);
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200311 hdev->discov_timeout = 0;
312 goto done;
313 }
314
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200315 old_pscan = test_and_clear_bit(HCI_PSCAN, &hdev->flags);
316 old_iscan = test_and_clear_bit(HCI_ISCAN, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200317
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200318 if (param & SCAN_INQUIRY) {
319 set_bit(HCI_ISCAN, &hdev->flags);
320 if (!old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200321 mgmt_discoverable(hdev, 1);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200322 if (hdev->discov_timeout > 0) {
323 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
324 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300325 to);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200326 }
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200327 } else if (old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200328 mgmt_discoverable(hdev, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200329
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200330 if (param & SCAN_PAGE) {
331 set_bit(HCI_PSCAN, &hdev->flags);
332 if (!old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200333 mgmt_connectable(hdev, 1);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200334 } else if (old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200335 mgmt_connectable(hdev, 0);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200336
337done:
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200338 hci_dev_unlock(hdev);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200339 hci_req_complete(hdev, HCI_OP_WRITE_SCAN_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200340}
341
342static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
343{
344 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
345
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300346 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200347
348 if (rp->status)
349 return;
350
351 memcpy(hdev->dev_class, rp->dev_class, 3);
352
353 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300354 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200355}
356
357static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
358{
359 __u8 status = *((__u8 *) skb->data);
360 void *sent;
361
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300362 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200363
364 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
365 if (!sent)
366 return;
367
Marcel Holtmann7f9a9032012-02-22 18:38:01 +0100368 hci_dev_lock(hdev);
369
370 if (status == 0)
371 memcpy(hdev->dev_class, sent, 3);
372
373 if (test_bit(HCI_MGMT, &hdev->dev_flags))
374 mgmt_set_class_of_dev_complete(hdev, sent, status);
375
376 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200377}
378
379static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
380{
381 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 __u16 setting;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200383
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300384 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200385
386 if (rp->status)
387 return;
388
389 setting = __le16_to_cpu(rp->voice_setting);
390
Marcel Holtmannf383f272008-07-14 20:13:47 +0200391 if (hdev->voice_setting == setting)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200392 return;
393
394 hdev->voice_setting = setting;
395
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300396 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200397
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200398 if (hdev->notify)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200399 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200400}
401
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300402static void hci_cc_write_voice_setting(struct hci_dev *hdev,
403 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200404{
405 __u8 status = *((__u8 *) skb->data);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200406 __u16 setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 void *sent;
408
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300409 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Marcel Holtmannf383f272008-07-14 20:13:47 +0200411 if (status)
412 return;
413
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200414 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
415 if (!sent)
416 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Marcel Holtmannf383f272008-07-14 20:13:47 +0200418 setting = get_unaligned_le16(sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Marcel Holtmannf383f272008-07-14 20:13:47 +0200420 if (hdev->voice_setting == setting)
421 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Marcel Holtmannf383f272008-07-14 20:13:47 +0200423 hdev->voice_setting = setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300425 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200426
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200427 if (hdev->notify)
Marcel Holtmannf383f272008-07-14 20:13:47 +0200428 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200431static void hci_cc_host_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200433 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300435 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Johan Hedberg23bb5762010-12-21 23:01:27 +0200437 hci_req_complete(hdev, HCI_OP_HOST_BUFFER_SIZE, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Marcel Holtmann333140b2008-07-14 20:13:48 +0200440static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
441{
442 __u8 status = *((__u8 *) skb->data);
443 void *sent;
444
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300445 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200446
Marcel Holtmann333140b2008-07-14 20:13:48 +0200447 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
448 if (!sent)
449 return;
450
Johan Hedberged2c4ee2012-02-17 00:56:28 +0200451 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedbergc0ecddc2012-02-22 12:38:31 +0200452 mgmt_ssp_enable_complete(hdev, *((u8 *) sent), status);
453 else if (!status) {
454 if (*((u8 *) sent))
455 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
456 else
457 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
458 }
Marcel Holtmann333140b2008-07-14 20:13:48 +0200459}
460
Johan Hedbergd5859e22011-01-25 01:19:58 +0200461static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
462{
463 if (hdev->features[6] & LMP_EXT_INQ)
464 return 2;
465
466 if (hdev->features[3] & LMP_RSSI_INQ)
467 return 1;
468
469 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -0300470 hdev->lmp_subver == 0x0757)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200471 return 1;
472
473 if (hdev->manufacturer == 15) {
474 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
475 return 1;
476 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
477 return 1;
478 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
479 return 1;
480 }
481
482 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -0300483 hdev->lmp_subver == 0x1805)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200484 return 1;
485
486 return 0;
487}
488
489static void hci_setup_inquiry_mode(struct hci_dev *hdev)
490{
491 u8 mode;
492
493 mode = hci_get_inquiry_mode(hdev);
494
495 hci_send_cmd(hdev, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
496}
497
498static void hci_setup_event_mask(struct hci_dev *hdev)
499{
500 /* The second byte is 0xff instead of 0x9f (two reserved bits
501 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
502 * command otherwise */
503 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
504
Ville Tervo6de6c182011-05-27 11:16:21 +0300505 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
506 * any event mask for pre 1.2 devices */
Andrei Emeltchenko5a13b092011-12-01 14:33:28 +0200507 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
Ville Tervo6de6c182011-05-27 11:16:21 +0300508 return;
509
510 events[4] |= 0x01; /* Flow Specification Complete */
511 events[4] |= 0x02; /* Inquiry Result with RSSI */
512 events[4] |= 0x04; /* Read Remote Extended Features Complete */
513 events[5] |= 0x08; /* Synchronous Connection Complete */
514 events[5] |= 0x10; /* Synchronous Connection Changed */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200515
516 if (hdev->features[3] & LMP_RSSI_INQ)
Johan Hedberga24299e2012-04-26 09:47:46 +0300517 events[4] |= 0x02; /* Inquiry Result with RSSI */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200518
Andre Guedes999dcd12012-07-24 15:03:52 -0300519 if (lmp_sniffsubr_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200520 events[5] |= 0x20; /* Sniff Subrating */
521
522 if (hdev->features[5] & LMP_PAUSE_ENC)
523 events[5] |= 0x80; /* Encryption Key Refresh Complete */
524
525 if (hdev->features[6] & LMP_EXT_INQ)
526 events[5] |= 0x40; /* Extended Inquiry Result */
527
Andre Guedesc58e8102012-07-24 15:03:53 -0300528 if (lmp_no_flush_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200529 events[7] |= 0x01; /* Enhanced Flush Complete */
530
531 if (hdev->features[7] & LMP_LSTO)
532 events[6] |= 0x80; /* Link Supervision Timeout Changed */
533
Andre Guedes9a1a1992012-07-24 15:03:48 -0300534 if (lmp_ssp_capable(hdev)) {
Johan Hedbergd5859e22011-01-25 01:19:58 +0200535 events[6] |= 0x01; /* IO Capability Request */
536 events[6] |= 0x02; /* IO Capability Response */
537 events[6] |= 0x04; /* User Confirmation Request */
538 events[6] |= 0x08; /* User Passkey Request */
539 events[6] |= 0x10; /* Remote OOB Data Request */
540 events[6] |= 0x20; /* Simple Pairing Complete */
541 events[7] |= 0x04; /* User Passkey Notification */
542 events[7] |= 0x08; /* Keypress Notification */
543 events[7] |= 0x10; /* Remote Host Supported
544 * Features Notification */
545 }
546
Andre Guedesc383ddc2012-07-24 15:03:47 -0300547 if (lmp_le_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200548 events[7] |= 0x20; /* LE Meta-Event */
549
550 hci_send_cmd(hdev, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
551}
552
553static void hci_setup(struct hci_dev *hdev)
554{
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200555 if (hdev->dev_type != HCI_BREDR)
556 return;
557
Johan Hedbergd5859e22011-01-25 01:19:58 +0200558 hci_setup_event_mask(hdev);
559
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +0200560 if (hdev->hci_ver > BLUETOOTH_VER_1_1)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200561 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
562
Gustavo Padovan6d3c7302012-05-24 03:36:37 -0300563 if (lmp_ssp_capable(hdev)) {
Johan Hedberg54d04db2012-02-22 15:47:48 +0200564 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
565 u8 mode = 0x01;
566 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300567 sizeof(mode), &mode);
Johan Hedberg54d04db2012-02-22 15:47:48 +0200568 } else {
569 struct hci_cp_write_eir cp;
570
571 memset(hdev->eir, 0, sizeof(hdev->eir));
572 memset(&cp, 0, sizeof(cp));
573
574 hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
575 }
Johan Hedbergd5859e22011-01-25 01:19:58 +0200576 }
577
578 if (hdev->features[3] & LMP_RSSI_INQ)
579 hci_setup_inquiry_mode(hdev);
580
581 if (hdev->features[7] & LMP_INQ_TX_PWR)
582 hci_send_cmd(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
Andre Guedes971e3a42011-06-30 19:20:52 -0300583
584 if (hdev->features[7] & LMP_EXTFEATURES) {
585 struct hci_cp_read_local_ext_features cp;
586
587 cp.page = 0x01;
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300588 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, sizeof(cp),
589 &cp);
Andre Guedes971e3a42011-06-30 19:20:52 -0300590 }
Andre Guedese6100a22011-06-30 19:20:54 -0300591
Johan Hedberg47990ea2012-02-22 11:58:37 +0200592 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags)) {
593 u8 enable = 1;
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300594 hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(enable),
595 &enable);
Johan Hedberg47990ea2012-02-22 11:58:37 +0200596 }
Johan Hedbergd5859e22011-01-25 01:19:58 +0200597}
598
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200599static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
600{
601 struct hci_rp_read_local_version *rp = (void *) skb->data;
602
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300603 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200604
605 if (rp->status)
Andrei Emeltchenko28b8df72012-02-24 12:45:44 +0200606 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200607
608 hdev->hci_ver = rp->hci_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200609 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200610 hdev->lmp_ver = rp->lmp_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200611 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200612 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200613
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300614 BT_DBG("%s manufacturer 0x%4.4x hci ver %d:%d", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300615 hdev->manufacturer, hdev->hci_ver, hdev->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200616
617 if (test_bit(HCI_INIT, &hdev->flags))
618 hci_setup(hdev);
Andrei Emeltchenko28b8df72012-02-24 12:45:44 +0200619
620done:
621 hci_req_complete(hdev, HCI_OP_READ_LOCAL_VERSION, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200622}
623
624static void hci_setup_link_policy(struct hci_dev *hdev)
625{
Andrei Emeltchenko035100c2012-03-12 15:59:32 +0200626 struct hci_cp_write_def_link_policy cp;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200627 u16 link_policy = 0;
628
Andre Guedes9f92ebf2012-07-24 15:03:50 -0300629 if (lmp_rswitch_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200630 link_policy |= HCI_LP_RSWITCH;
631 if (hdev->features[0] & LMP_HOLD)
632 link_policy |= HCI_LP_HOLD;
Andre Guedes6eded102012-07-24 15:03:51 -0300633 if (lmp_sniff_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200634 link_policy |= HCI_LP_SNIFF;
635 if (hdev->features[1] & LMP_PARK)
636 link_policy |= HCI_LP_PARK;
637
Andrei Emeltchenko035100c2012-03-12 15:59:32 +0200638 cp.policy = cpu_to_le16(link_policy);
639 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, sizeof(cp), &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200640}
641
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300642static void hci_cc_read_local_commands(struct hci_dev *hdev,
643 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200644{
645 struct hci_rp_read_local_commands *rp = (void *) skb->data;
646
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300647 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200648
649 if (rp->status)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200650 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200651
652 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Johan Hedbergd5859e22011-01-25 01:19:58 +0200653
654 if (test_bit(HCI_INIT, &hdev->flags) && (hdev->commands[5] & 0x10))
655 hci_setup_link_policy(hdev);
656
657done:
658 hci_req_complete(hdev, HCI_OP_READ_LOCAL_COMMANDS, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200659}
660
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300661static void hci_cc_read_local_features(struct hci_dev *hdev,
662 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200663{
664 struct hci_rp_read_local_features *rp = (void *) skb->data;
665
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300666 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200667
668 if (rp->status)
669 return;
670
671 memcpy(hdev->features, rp->features, 8);
672
673 /* Adjust default settings according to features
674 * supported by device. */
675
676 if (hdev->features[0] & LMP_3SLOT)
677 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
678
679 if (hdev->features[0] & LMP_5SLOT)
680 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
681
682 if (hdev->features[1] & LMP_HV2) {
683 hdev->pkt_type |= (HCI_HV2);
684 hdev->esco_type |= (ESCO_HV2);
685 }
686
687 if (hdev->features[1] & LMP_HV3) {
688 hdev->pkt_type |= (HCI_HV3);
689 hdev->esco_type |= (ESCO_HV3);
690 }
691
Andre Guedes45db810f2012-07-24 15:03:49 -0300692 if (lmp_esco_capable(hdev))
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200693 hdev->esco_type |= (ESCO_EV3);
694
695 if (hdev->features[4] & LMP_EV4)
696 hdev->esco_type |= (ESCO_EV4);
697
698 if (hdev->features[4] & LMP_EV5)
699 hdev->esco_type |= (ESCO_EV5);
700
Marcel Holtmannefc76882009-02-06 09:13:37 +0100701 if (hdev->features[5] & LMP_EDR_ESCO_2M)
702 hdev->esco_type |= (ESCO_2EV3);
703
704 if (hdev->features[5] & LMP_EDR_ESCO_3M)
705 hdev->esco_type |= (ESCO_3EV3);
706
707 if (hdev->features[5] & LMP_EDR_3S_ESCO)
708 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
709
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200710 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300711 hdev->features[0], hdev->features[1],
712 hdev->features[2], hdev->features[3],
713 hdev->features[4], hdev->features[5],
714 hdev->features[6], hdev->features[7]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200715}
716
Johan Hedberg8f984df2012-02-28 01:07:22 +0200717static void hci_set_le_support(struct hci_dev *hdev)
718{
719 struct hci_cp_write_le_host_supported cp;
720
721 memset(&cp, 0, sizeof(cp));
722
Marcel Holtmann9d428202012-05-03 07:12:31 +0200723 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
Johan Hedberg8f984df2012-02-28 01:07:22 +0200724 cp.le = 1;
725 cp.simul = !!(hdev->features[6] & LMP_SIMUL_LE_BR);
726 }
727
728 if (cp.le != !!(hdev->host_features[0] & LMP_HOST_LE))
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300729 hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp),
730 &cp);
Johan Hedberg8f984df2012-02-28 01:07:22 +0200731}
732
Andre Guedes971e3a42011-06-30 19:20:52 -0300733static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300734 struct sk_buff *skb)
Andre Guedes971e3a42011-06-30 19:20:52 -0300735{
736 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
737
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300738 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andre Guedes971e3a42011-06-30 19:20:52 -0300739
740 if (rp->status)
Johan Hedberg8f984df2012-02-28 01:07:22 +0200741 goto done;
Andre Guedes971e3a42011-06-30 19:20:52 -0300742
Andre Guedesb5b32b62011-12-30 10:34:04 -0300743 switch (rp->page) {
744 case 0:
745 memcpy(hdev->features, rp->features, 8);
746 break;
747 case 1:
748 memcpy(hdev->host_features, rp->features, 8);
749 break;
750 }
Andre Guedes971e3a42011-06-30 19:20:52 -0300751
Andre Guedesc383ddc2012-07-24 15:03:47 -0300752 if (test_bit(HCI_INIT, &hdev->flags) && lmp_le_capable(hdev))
Johan Hedberg8f984df2012-02-28 01:07:22 +0200753 hci_set_le_support(hdev);
754
755done:
Andre Guedes971e3a42011-06-30 19:20:52 -0300756 hci_req_complete(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, rp->status);
757}
758
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200759static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300760 struct sk_buff *skb)
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200761{
762 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
763
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300764 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200765
766 if (rp->status)
767 return;
768
769 hdev->flow_ctl_mode = rp->mode;
770
771 hci_req_complete(hdev, HCI_OP_READ_FLOW_CONTROL_MODE, rp->status);
772}
773
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200774static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
775{
776 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
777
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300778 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200779
780 if (rp->status)
781 return;
782
783 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
784 hdev->sco_mtu = rp->sco_mtu;
785 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
786 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
787
788 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
789 hdev->sco_mtu = 64;
790 hdev->sco_pkts = 8;
791 }
792
793 hdev->acl_cnt = hdev->acl_pkts;
794 hdev->sco_cnt = hdev->sco_pkts;
795
Gustavo Padovan807deac2012-05-17 00:36:24 -0300796 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name, hdev->acl_mtu,
797 hdev->acl_pkts, hdev->sco_mtu, hdev->sco_pkts);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200798}
799
800static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
801{
802 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
803
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300804 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200805
806 if (!rp->status)
807 bacpy(&hdev->bdaddr, &rp->bdaddr);
808
Johan Hedberg23bb5762010-12-21 23:01:27 +0200809 hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
810}
811
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200812static void hci_cc_read_data_block_size(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300813 struct sk_buff *skb)
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200814{
815 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
816
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300817 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200818
819 if (rp->status)
820 return;
821
822 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
823 hdev->block_len = __le16_to_cpu(rp->block_len);
824 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
825
826 hdev->block_cnt = hdev->num_blocks;
827
828 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300829 hdev->block_cnt, hdev->block_len);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200830
831 hci_req_complete(hdev, HCI_OP_READ_DATA_BLOCK_SIZE, rp->status);
832}
833
Johan Hedberg23bb5762010-12-21 23:01:27 +0200834static void hci_cc_write_ca_timeout(struct hci_dev *hdev, struct sk_buff *skb)
835{
836 __u8 status = *((__u8 *) skb->data);
837
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300838 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200839
840 hci_req_complete(hdev, HCI_OP_WRITE_CA_TIMEOUT, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200841}
842
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300843static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300844 struct sk_buff *skb)
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300845{
846 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
847
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300848 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300849
850 if (rp->status)
Andrei Emeltchenko8e2a0d92012-09-27 17:26:08 +0300851 goto a2mp_rsp;
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300852
853 hdev->amp_status = rp->amp_status;
854 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
855 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
856 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
857 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
858 hdev->amp_type = rp->amp_type;
859 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
860 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
861 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
862 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
863
864 hci_req_complete(hdev, HCI_OP_READ_LOCAL_AMP_INFO, rp->status);
Andrei Emeltchenko8e2a0d92012-09-27 17:26:08 +0300865
866a2mp_rsp:
867 a2mp_send_getinfo_rsp(hdev);
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300868}
869
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300870static void hci_cc_read_local_amp_assoc(struct hci_dev *hdev,
871 struct sk_buff *skb)
872{
873 struct hci_rp_read_local_amp_assoc *rp = (void *) skb->data;
874 struct amp_assoc *assoc = &hdev->loc_assoc;
875 size_t rem_len, frag_len;
876
877 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
878
879 if (rp->status)
880 goto a2mp_rsp;
881
882 frag_len = skb->len - sizeof(*rp);
883 rem_len = __le16_to_cpu(rp->rem_len);
884
885 if (rem_len > frag_len) {
886 BT_DBG("frag_len %d rem_len %d", frag_len, rem_len);
887
888 memcpy(assoc->data + assoc->offset, rp->frag, frag_len);
889 assoc->offset += frag_len;
890
891 /* Read other fragments */
892 amp_read_loc_assoc_frag(hdev, rp->phy_handle);
893
894 return;
895 }
896
897 memcpy(assoc->data + assoc->offset, rp->frag, rem_len);
898 assoc->len = assoc->offset + rem_len;
899 assoc->offset = 0;
900
901a2mp_rsp:
902 /* Send A2MP Rsp when all fragments are received */
903 a2mp_send_getampassoc_rsp(hdev, rp->status);
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +0300904 a2mp_send_create_phy_link_req(hdev, rp->status);
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300905}
906
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200907static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300908 struct sk_buff *skb)
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200909{
910 __u8 status = *((__u8 *) skb->data);
911
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300912 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200913
914 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
915}
916
Johan Hedbergd5859e22011-01-25 01:19:58 +0200917static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
918{
919 __u8 status = *((__u8 *) skb->data);
920
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300921 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200922
923 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
924}
925
926static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300927 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200928{
929 __u8 status = *((__u8 *) skb->data);
930
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300931 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200932
933 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
934}
935
936static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300937 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200938{
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700939 struct hci_rp_read_inq_rsp_tx_power *rp = (void *) skb->data;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200940
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300941 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200942
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700943 if (!rp->status)
944 hdev->inq_tx_power = rp->tx_power;
945
946 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200947}
948
949static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
950{
951 __u8 status = *((__u8 *) skb->data);
952
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300953 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200954
955 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
956}
957
Johan Hedberg980e1a52011-01-22 06:10:07 +0200958static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
959{
960 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
961 struct hci_cp_pin_code_reply *cp;
962 struct hci_conn *conn;
963
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300964 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200965
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200966 hci_dev_lock(hdev);
967
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200968 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200969 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200970
Mikel Astizfa1bd912012-08-09 09:52:29 +0200971 if (rp->status)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200972 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200973
974 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
975 if (!cp)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200976 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200977
978 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
979 if (conn)
980 conn->pin_length = cp->pin_len;
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200981
982unlock:
983 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200984}
985
986static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
987{
988 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
989
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300990 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200991
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200992 hci_dev_lock(hdev);
993
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200994 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200995 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300996 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200997
998 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200999}
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001000
Ville Tervo6ed58ec2011-02-10 22:38:48 -03001001static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
1002 struct sk_buff *skb)
1003{
1004 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
1005
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001006 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03001007
1008 if (rp->status)
1009 return;
1010
1011 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
1012 hdev->le_pkts = rp->le_max_pkt;
1013
1014 hdev->le_cnt = hdev->le_pkts;
1015
1016 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
1017
1018 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
1019}
Johan Hedberg980e1a52011-01-22 06:10:07 +02001020
Johan Hedberga5c29682011-02-19 12:05:57 -03001021static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
1022{
1023 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1024
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001025 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -03001026
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001027 hci_dev_lock(hdev);
1028
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001029 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001030 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK, 0,
1031 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001032
1033 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03001034}
1035
1036static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001037 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03001038{
1039 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1040
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001041 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -03001042
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001043 hci_dev_lock(hdev);
1044
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001045 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001046 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001047 ACL_LINK, 0, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001048
1049 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03001050}
1051
Brian Gix1143d452011-11-23 08:28:34 -08001052static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
1053{
1054 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1055
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001056 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001057
1058 hci_dev_lock(hdev);
1059
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001060 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02001061 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001062 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001063
1064 hci_dev_unlock(hdev);
1065}
1066
1067static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001068 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08001069{
1070 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1071
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001072 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001073
1074 hci_dev_lock(hdev);
1075
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001076 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Brian Gix1143d452011-11-23 08:28:34 -08001077 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001078 ACL_LINK, 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001079
1080 hci_dev_unlock(hdev);
1081}
1082
Szymon Jancc35938b2011-03-22 13:12:21 +01001083static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001084 struct sk_buff *skb)
Szymon Jancc35938b2011-03-22 13:12:21 +01001085{
1086 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
1087
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001088 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Szymon Jancc35938b2011-03-22 13:12:21 +01001089
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001090 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001091 mgmt_read_local_oob_data_reply_complete(hdev, rp->hash,
Szymon Jancc35938b2011-03-22 13:12:21 +01001092 rp->randomizer, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001093 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01001094}
1095
Andre Guedes07f7fa52011-12-02 21:13:31 +09001096static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1097{
1098 __u8 status = *((__u8 *) skb->data);
1099
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001100 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001101
1102 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_PARAM, status);
Andre Guedes3fd24152012-02-03 17:48:01 -03001103
1104 if (status) {
1105 hci_dev_lock(hdev);
1106 mgmt_start_discovery_failed(hdev, status);
1107 hci_dev_unlock(hdev);
1108 return;
1109 }
Andre Guedes07f7fa52011-12-02 21:13:31 +09001110}
1111
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001112static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001113 struct sk_buff *skb)
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001114{
1115 struct hci_cp_le_set_scan_enable *cp;
1116 __u8 status = *((__u8 *) skb->data);
1117
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001118 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001119
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001120 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1121 if (!cp)
1122 return;
1123
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001124 switch (cp->enable) {
1125 case LE_SCANNING_ENABLED:
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001126 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_ENABLE, status);
1127
Andre Guedes3fd24152012-02-03 17:48:01 -03001128 if (status) {
1129 hci_dev_lock(hdev);
1130 mgmt_start_discovery_failed(hdev, status);
1131 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001132 return;
Andre Guedes3fd24152012-02-03 17:48:01 -03001133 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001134
Andre Guedesd23264a2011-11-25 20:53:38 -03001135 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
1136
Andre Guedesa8f13c82011-09-09 18:56:24 -03001137 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001138 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedesa8f13c82011-09-09 18:56:24 -03001139 hci_dev_unlock(hdev);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001140 break;
1141
1142 case LE_SCANNING_DISABLED:
Andre Guedesc9ecc482012-03-15 16:52:08 -03001143 if (status) {
1144 hci_dev_lock(hdev);
1145 mgmt_stop_discovery_failed(hdev, status);
1146 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001147 return;
Andre Guedesc9ecc482012-03-15 16:52:08 -03001148 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001149
Andre Guedesd23264a2011-11-25 20:53:38 -03001150 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
1151
Andre Guedesbc3dd332012-03-06 19:37:06 -03001152 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
1153 hdev->discovery.state == DISCOVERY_FINDING) {
Andre Guedes5e0452c2012-02-17 20:39:38 -03001154 mgmt_interleaved_discovery(hdev);
1155 } else {
1156 hci_dev_lock(hdev);
1157 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1158 hci_dev_unlock(hdev);
1159 }
1160
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001161 break;
1162
1163 default:
1164 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1165 break;
Andre Guedes35815082011-05-26 16:23:53 -03001166 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001167}
1168
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001169static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
1170{
1171 struct hci_rp_le_ltk_reply *rp = (void *) skb->data;
1172
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001173 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001174
1175 if (rp->status)
1176 return;
1177
1178 hci_req_complete(hdev, HCI_OP_LE_LTK_REPLY, rp->status);
1179}
1180
1181static void hci_cc_le_ltk_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
1182{
1183 struct hci_rp_le_ltk_neg_reply *rp = (void *) skb->data;
1184
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001185 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001186
1187 if (rp->status)
1188 return;
1189
1190 hci_req_complete(hdev, HCI_OP_LE_LTK_NEG_REPLY, rp->status);
1191}
1192
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001193static void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1194 struct sk_buff *skb)
Andre Guedesf9b49302011-06-30 19:20:53 -03001195{
Johan Hedberg06199cf2012-02-22 16:37:11 +02001196 struct hci_cp_write_le_host_supported *sent;
Andre Guedesf9b49302011-06-30 19:20:53 -03001197 __u8 status = *((__u8 *) skb->data);
1198
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001199 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001200
Johan Hedberg06199cf2012-02-22 16:37:11 +02001201 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED);
Johan Hedberg8f984df2012-02-28 01:07:22 +02001202 if (!sent)
Andre Guedesf9b49302011-06-30 19:20:53 -03001203 return;
1204
Johan Hedberg8f984df2012-02-28 01:07:22 +02001205 if (!status) {
1206 if (sent->le)
1207 hdev->host_features[0] |= LMP_HOST_LE;
1208 else
1209 hdev->host_features[0] &= ~LMP_HOST_LE;
1210 }
1211
1212 if (test_bit(HCI_MGMT, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001213 !test_bit(HCI_INIT, &hdev->flags))
Johan Hedberg8f984df2012-02-28 01:07:22 +02001214 mgmt_le_enable_complete(hdev, sent->le, status);
1215
1216 hci_req_complete(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001217}
1218
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001219static void hci_cc_write_remote_amp_assoc(struct hci_dev *hdev,
1220 struct sk_buff *skb)
1221{
1222 struct hci_rp_write_remote_amp_assoc *rp = (void *) skb->data;
1223
1224 BT_DBG("%s status 0x%2.2x phy_handle 0x%2.2x",
1225 hdev->name, rp->status, rp->phy_handle);
1226
1227 if (rp->status)
1228 return;
1229
1230 amp_write_rem_assoc_continue(hdev, rp->phy_handle);
1231}
1232
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001233static void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001234{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001235 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001236
1237 if (status) {
Johan Hedberg23bb5762010-12-21 23:01:27 +02001238 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001239 hci_conn_check_pending(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001240 hci_dev_lock(hdev);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001241 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Andre Guedes7a135102011-11-09 17:14:25 -03001242 mgmt_start_discovery_failed(hdev, status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001243 hci_dev_unlock(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -04001244 return;
1245 }
1246
Andre Guedes89352e72011-11-04 14:16:53 -03001247 set_bit(HCI_INQUIRY, &hdev->flags);
1248
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001249 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001250 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001251 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001252}
1253
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001254static void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001256 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001259 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001260
1261 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (!cp)
1263 return;
1264
1265 hci_dev_lock(hdev);
1266
1267 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1268
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001269 BT_DBG("%s bdaddr %s hcon %p", hdev->name, batostr(&cp->bdaddr), conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 if (status) {
1272 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +02001273 if (status != 0x0c || conn->attempt > 2) {
1274 conn->state = BT_CLOSED;
1275 hci_proto_connect_cfm(conn, status);
1276 hci_conn_del(conn);
1277 } else
1278 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
1280 } else {
1281 if (!conn) {
1282 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1283 if (conn) {
Johan Hedberga0c808b2012-01-16 09:49:58 +02001284 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 conn->link_mode |= HCI_LM_MASTER;
1286 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001287 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
1289 }
1290
1291 hci_dev_unlock(hdev);
1292}
1293
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001294static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001296 struct hci_cp_add_sco *cp;
1297 struct hci_conn *acl, *sco;
1298 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001300 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001301
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001302 if (!status)
1303 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001305 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1306 if (!cp)
1307 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001309 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001311 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001312
1313 hci_dev_lock(hdev);
1314
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001315 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001316 if (acl) {
1317 sco = acl->link;
1318 if (sco) {
1319 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001320
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001321 hci_proto_connect_cfm(sco, status);
1322 hci_conn_del(sco);
1323 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001324 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001325
1326 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
1328
Marcel Holtmannf8558552008-07-14 20:13:49 +02001329static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1330{
1331 struct hci_cp_auth_requested *cp;
1332 struct hci_conn *conn;
1333
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001334 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001335
1336 if (!status)
1337 return;
1338
1339 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1340 if (!cp)
1341 return;
1342
1343 hci_dev_lock(hdev);
1344
1345 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1346 if (conn) {
1347 if (conn->state == BT_CONFIG) {
1348 hci_proto_connect_cfm(conn, status);
1349 hci_conn_put(conn);
1350 }
1351 }
1352
1353 hci_dev_unlock(hdev);
1354}
1355
1356static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1357{
1358 struct hci_cp_set_conn_encrypt *cp;
1359 struct hci_conn *conn;
1360
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001361 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001362
1363 if (!status)
1364 return;
1365
1366 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1367 if (!cp)
1368 return;
1369
1370 hci_dev_lock(hdev);
1371
1372 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1373 if (conn) {
1374 if (conn->state == BT_CONFIG) {
1375 hci_proto_connect_cfm(conn, status);
1376 hci_conn_put(conn);
1377 }
1378 }
1379
1380 hci_dev_unlock(hdev);
1381}
1382
Johan Hedberg127178d2010-11-18 22:22:29 +02001383static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001384 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001385{
Johan Hedberg392599b2010-11-18 22:22:28 +02001386 if (conn->state != BT_CONFIG || !conn->out)
1387 return 0;
1388
Johan Hedberg765c2a92011-01-19 12:06:52 +05301389 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001390 return 0;
1391
1392 /* Only request authentication for SSP connections or non-SSP
Vinicius Costa Gomese9bf2bf2011-09-02 14:51:20 -03001393 * devices with sec_level HIGH or if MITM protection is requested */
Gustavo Padovan807deac2012-05-17 00:36:24 -03001394 if (!hci_conn_ssp_enabled(conn) && !(conn->auth_type & 0x01) &&
1395 conn->pending_sec_level != BT_SECURITY_HIGH)
Johan Hedberg392599b2010-11-18 22:22:28 +02001396 return 0;
1397
Johan Hedberg392599b2010-11-18 22:22:28 +02001398 return 1;
1399}
1400
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001401static int hci_resolve_name(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001402 struct inquiry_entry *e)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001403{
1404 struct hci_cp_remote_name_req cp;
1405
1406 memset(&cp, 0, sizeof(cp));
1407
1408 bacpy(&cp.bdaddr, &e->data.bdaddr);
1409 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1410 cp.pscan_mode = e->data.pscan_mode;
1411 cp.clock_offset = e->data.clock_offset;
1412
1413 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1414}
1415
Johan Hedbergb644ba32012-01-17 21:48:47 +02001416static bool hci_resolve_next_name(struct hci_dev *hdev)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001417{
1418 struct discovery_state *discov = &hdev->discovery;
1419 struct inquiry_entry *e;
1420
Johan Hedbergb644ba32012-01-17 21:48:47 +02001421 if (list_empty(&discov->resolve))
1422 return false;
1423
1424 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
Ram Malovanyc8100892012-07-19 10:26:09 +03001425 if (!e)
1426 return false;
1427
Johan Hedbergb644ba32012-01-17 21:48:47 +02001428 if (hci_resolve_name(hdev, e) == 0) {
1429 e->name_state = NAME_PENDING;
1430 return true;
1431 }
1432
1433 return false;
1434}
1435
1436static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001437 bdaddr_t *bdaddr, u8 *name, u8 name_len)
Johan Hedbergb644ba32012-01-17 21:48:47 +02001438{
1439 struct discovery_state *discov = &hdev->discovery;
1440 struct inquiry_entry *e;
1441
1442 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001443 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00, 0, name,
1444 name_len, conn->dev_class);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001445
1446 if (discov->state == DISCOVERY_STOPPED)
1447 return;
1448
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001449 if (discov->state == DISCOVERY_STOPPING)
1450 goto discov_complete;
1451
1452 if (discov->state != DISCOVERY_RESOLVING)
1453 return;
1454
1455 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
Ram Malovany7cc83802012-07-19 10:26:10 +03001456 /* If the device was not found in a list of found devices names of which
1457 * are pending. there is no need to continue resolving a next name as it
1458 * will be done upon receiving another Remote Name Request Complete
1459 * Event */
1460 if (!e)
1461 return;
1462
1463 list_del(&e->list);
1464 if (name) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001465 e->name_state = NAME_KNOWN;
Ram Malovany7cc83802012-07-19 10:26:10 +03001466 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
1467 e->data.rssi, name, name_len);
Ram Malovanyc3e7c0d2012-07-19 10:26:11 +03001468 } else {
1469 e->name_state = NAME_NOT_KNOWN;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001470 }
1471
Johan Hedbergb644ba32012-01-17 21:48:47 +02001472 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001473 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001474
1475discov_complete:
1476 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1477}
1478
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001479static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1480{
Johan Hedberg127178d2010-11-18 22:22:29 +02001481 struct hci_cp_remote_name_req *cp;
1482 struct hci_conn *conn;
1483
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001484 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001485
1486 /* If successful wait for the name req complete event before
1487 * checking for the need to do authentication */
1488 if (!status)
1489 return;
1490
1491 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1492 if (!cp)
1493 return;
1494
1495 hci_dev_lock(hdev);
1496
1497 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001498
1499 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1500 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1501
Johan Hedberg79c6c702011-04-28 11:28:55 -07001502 if (!conn)
1503 goto unlock;
1504
1505 if (!hci_outgoing_auth_needed(hdev, conn))
1506 goto unlock;
1507
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001508 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001509 struct hci_cp_auth_requested cp;
1510 cp.handle = __cpu_to_le16(conn->handle);
1511 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1512 }
1513
Johan Hedberg79c6c702011-04-28 11:28:55 -07001514unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001515 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001516}
1517
Marcel Holtmann769be972008-07-14 20:13:49 +02001518static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1519{
1520 struct hci_cp_read_remote_features *cp;
1521 struct hci_conn *conn;
1522
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001523 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001524
1525 if (!status)
1526 return;
1527
1528 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1529 if (!cp)
1530 return;
1531
1532 hci_dev_lock(hdev);
1533
1534 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1535 if (conn) {
1536 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001537 hci_proto_connect_cfm(conn, status);
1538 hci_conn_put(conn);
1539 }
1540 }
1541
1542 hci_dev_unlock(hdev);
1543}
1544
1545static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1546{
1547 struct hci_cp_read_remote_ext_features *cp;
1548 struct hci_conn *conn;
1549
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001550 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001551
1552 if (!status)
1553 return;
1554
1555 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1556 if (!cp)
1557 return;
1558
1559 hci_dev_lock(hdev);
1560
1561 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1562 if (conn) {
1563 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001564 hci_proto_connect_cfm(conn, status);
1565 hci_conn_put(conn);
1566 }
1567 }
1568
1569 hci_dev_unlock(hdev);
1570}
1571
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001572static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1573{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001574 struct hci_cp_setup_sync_conn *cp;
1575 struct hci_conn *acl, *sco;
1576 __u16 handle;
1577
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001578 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001579
1580 if (!status)
1581 return;
1582
1583 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1584 if (!cp)
1585 return;
1586
1587 handle = __le16_to_cpu(cp->handle);
1588
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001589 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001590
1591 hci_dev_lock(hdev);
1592
1593 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001594 if (acl) {
1595 sco = acl->link;
1596 if (sco) {
1597 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001598
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001599 hci_proto_connect_cfm(sco, status);
1600 hci_conn_del(sco);
1601 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001602 }
1603
1604 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001605}
1606
1607static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1608{
1609 struct hci_cp_sniff_mode *cp;
1610 struct hci_conn *conn;
1611
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001612 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001613
1614 if (!status)
1615 return;
1616
1617 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1618 if (!cp)
1619 return;
1620
1621 hci_dev_lock(hdev);
1622
1623 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001624 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001625 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001626
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001627 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001628 hci_sco_setup(conn, status);
1629 }
1630
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001631 hci_dev_unlock(hdev);
1632}
1633
1634static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1635{
1636 struct hci_cp_exit_sniff_mode *cp;
1637 struct hci_conn *conn;
1638
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001639 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001640
1641 if (!status)
1642 return;
1643
1644 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1645 if (!cp)
1646 return;
1647
1648 hci_dev_lock(hdev);
1649
1650 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001651 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001652 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001653
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001654 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001655 hci_sco_setup(conn, status);
1656 }
1657
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001658 hci_dev_unlock(hdev);
1659}
1660
Johan Hedberg88c3df12012-02-09 14:27:38 +02001661static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1662{
1663 struct hci_cp_disconnect *cp;
1664 struct hci_conn *conn;
1665
1666 if (!status)
1667 return;
1668
1669 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1670 if (!cp)
1671 return;
1672
1673 hci_dev_lock(hdev);
1674
1675 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1676 if (conn)
1677 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001678 conn->dst_type, status);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001679
1680 hci_dev_unlock(hdev);
1681}
1682
Ville Tervofcd89c02011-02-10 22:38:47 -03001683static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1684{
Ville Tervofcd89c02011-02-10 22:38:47 -03001685 struct hci_conn *conn;
1686
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001687 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Ville Tervofcd89c02011-02-10 22:38:47 -03001688
Ville Tervofcd89c02011-02-10 22:38:47 -03001689 if (status) {
Andre Guedesf00a06a2012-07-27 15:10:13 -03001690 hci_dev_lock(hdev);
Ville Tervofcd89c02011-02-10 22:38:47 -03001691
Andre Guedes0c95ab72012-07-27 15:10:14 -03001692 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Andre Guedesf00a06a2012-07-27 15:10:13 -03001693 if (!conn) {
1694 hci_dev_unlock(hdev);
1695 return;
1696 }
1697
Andre Guedes0c95ab72012-07-27 15:10:14 -03001698 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&conn->dst),
Andre Guedesf00a06a2012-07-27 15:10:13 -03001699 conn);
1700
1701 conn->state = BT_CLOSED;
Andre Guedes0c95ab72012-07-27 15:10:14 -03001702 mgmt_connect_failed(hdev, &conn->dst, conn->type,
Andre Guedesf00a06a2012-07-27 15:10:13 -03001703 conn->dst_type, status);
1704 hci_proto_connect_cfm(conn, status);
1705 hci_conn_del(conn);
1706
1707 hci_dev_unlock(hdev);
1708 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001709}
1710
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001711static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1712{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001713 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001714}
1715
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001716static void hci_cs_create_phylink(struct hci_dev *hdev, u8 status)
1717{
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001718 struct hci_cp_create_phy_link *cp;
1719
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001720 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03001721
1722 if (status)
1723 return;
1724
1725 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_PHY_LINK);
1726 if (!cp)
1727 return;
1728
1729 amp_write_remote_assoc(hdev, cp->phy_handle);
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03001730}
1731
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001732static void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001733{
1734 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001735 struct discovery_state *discov = &hdev->discovery;
1736 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001737
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001738 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001739
Johan Hedberg23bb5762010-12-21 23:01:27 +02001740 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001741
1742 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001743
1744 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1745 return;
1746
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001747 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001748 return;
1749
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001750 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001751
Andre Guedes343f9352012-02-17 20:39:37 -03001752 if (discov->state != DISCOVERY_FINDING)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001753 goto unlock;
1754
1755 if (list_empty(&discov->resolve)) {
1756 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1757 goto unlock;
1758 }
1759
1760 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1761 if (e && hci_resolve_name(hdev, e) == 0) {
1762 e->name_state = NAME_PENDING;
1763 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1764 } else {
1765 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1766 }
1767
1768unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001769 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001770}
1771
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001772static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001774 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001775 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 int num_rsp = *((__u8 *) skb->data);
1777
1778 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1779
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001780 if (!num_rsp)
1781 return;
1782
Andre Guedes1519cc12012-03-21 00:03:38 -03001783 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
1784 return;
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001787
Johan Hedberge17acd42011-03-30 23:57:16 +03001788 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001789 bool name_known, ssp;
Johan Hedberg31754052012-01-04 13:39:52 +02001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 bacpy(&data.bdaddr, &info->bdaddr);
1792 data.pscan_rep_mode = info->pscan_rep_mode;
1793 data.pscan_period_mode = info->pscan_period_mode;
1794 data.pscan_mode = info->pscan_mode;
1795 memcpy(data.dev_class, info->dev_class, 3);
1796 data.clock_offset = info->clock_offset;
1797 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001798 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02001799
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001800 name_known = hci_inquiry_cache_update(hdev, &data, false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02001801 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001802 info->dev_class, 0, !name_known, ssp, NULL,
1803 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 hci_dev_unlock(hdev);
1807}
1808
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001809static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001811 struct hci_ev_conn_complete *ev = (void *) skb->data;
1812 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001814 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001817
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001818 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001819 if (!conn) {
1820 if (ev->link_type != SCO_LINK)
1821 goto unlock;
1822
1823 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1824 if (!conn)
1825 goto unlock;
1826
1827 conn->type = SCO_LINK;
1828 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001829
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001830 if (!ev->status) {
1831 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001832
1833 if (conn->type == ACL_LINK) {
1834 conn->state = BT_CONFIG;
1835 hci_conn_hold(conn);
Szymon Janca9ea3ed2012-07-19 14:46:08 +02001836
1837 if (!conn->out && !hci_conn_ssp_enabled(conn) &&
1838 !hci_find_link_key(hdev, &ev->bdaddr))
1839 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
1840 else
1841 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02001842 } else
1843 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001844
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001845 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001846 hci_conn_add_sysfs(conn);
1847
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001848 if (test_bit(HCI_AUTH, &hdev->flags))
1849 conn->link_mode |= HCI_LM_AUTH;
1850
1851 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1852 conn->link_mode |= HCI_LM_ENCRYPT;
1853
1854 /* Get remote features */
1855 if (conn->type == ACL_LINK) {
1856 struct hci_cp_read_remote_features cp;
1857 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001858 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001859 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001860 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001861
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001862 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02001863 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001864 struct hci_cp_change_conn_ptype cp;
1865 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001866 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001867 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, sizeof(cp),
1868 &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001869 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001870 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001871 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001872 if (conn->type == ACL_LINK)
Johan Hedberg744cf192011-11-08 20:40:14 +02001873 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001874 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02001875 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001876
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001877 if (conn->type == ACL_LINK)
1878 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001879
Marcel Holtmann769be972008-07-14 20:13:49 +02001880 if (ev->status) {
1881 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001882 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001883 } else if (ev->link_type != ACL_LINK)
1884 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001885
1886unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001888
1889 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890}
1891
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001892static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001894 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 int mask = hdev->link_mode;
1896
Gustavo Padovan807deac2012-05-17 00:36:24 -03001897 BT_DBG("%s bdaddr %s type 0x%x", hdev->name, batostr(&ev->bdaddr),
1898 ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1901
Szymon Janc138d22e2011-02-17 16:44:23 +01001902 if ((mask & HCI_LM_ACCEPT) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001903 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001905 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001909
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001910 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1911 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001912 memcpy(ie->data.dev_class, ev->dev_class, 3);
1913
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001914 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type,
1915 &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001917 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1918 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001919 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 hci_dev_unlock(hdev);
1921 return;
1922 }
1923 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 memcpy(conn->dev_class, ev->dev_class, 3);
1926 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 hci_dev_unlock(hdev);
1929
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001930 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1931 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001933 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001935 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1936 cp.role = 0x00; /* Become master */
1937 else
1938 cp.role = 0x01; /* Remain slave */
1939
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001940 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp),
1941 &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001942 } else {
1943 struct hci_cp_accept_sync_conn_req cp;
1944
1945 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001946 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001947
Andrei Emeltchenko82781e62012-05-25 11:38:27 +03001948 cp.tx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1949 cp.rx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1950 cp.max_latency = __constant_cpu_to_le16(0xffff);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001951 cp.content_format = cpu_to_le16(hdev->voice_setting);
1952 cp.retrans_effort = 0xff;
1953
1954 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001955 sizeof(cp), &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 } else {
1958 /* Connection rejected */
1959 struct hci_cp_reject_conn_req cp;
1960
1961 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02001962 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001963 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965}
1966
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001967static u8 hci_to_mgmt_reason(u8 err)
1968{
1969 switch (err) {
1970 case HCI_ERROR_CONNECTION_TIMEOUT:
1971 return MGMT_DEV_DISCONN_TIMEOUT;
1972 case HCI_ERROR_REMOTE_USER_TERM:
1973 case HCI_ERROR_REMOTE_LOW_RESOURCES:
1974 case HCI_ERROR_REMOTE_POWER_OFF:
1975 return MGMT_DEV_DISCONN_REMOTE;
1976 case HCI_ERROR_LOCAL_HOST_TERM:
1977 return MGMT_DEV_DISCONN_LOCAL_HOST;
1978 default:
1979 return MGMT_DEV_DISCONN_UNKNOWN;
1980 }
1981}
1982
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001983static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001985 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001986 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001988 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 hci_dev_lock(hdev);
1991
Marcel Holtmann04837f62006-07-03 10:02:33 +02001992 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001993 if (!conn)
1994 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001995
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001996 if (ev->status == 0)
1997 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Johan Hedbergb644ba32012-01-17 21:48:47 +02001999 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002000 (conn->type == ACL_LINK || conn->type == LE_LINK)) {
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02002001 if (ev->status) {
Johan Hedberg88c3df12012-02-09 14:27:38 +02002002 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002003 conn->dst_type, ev->status);
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02002004 } else {
2005 u8 reason = hci_to_mgmt_reason(ev->reason);
2006
Johan Hedbergafc747a2012-01-15 18:11:07 +02002007 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02002008 conn->dst_type, reason);
2009 }
Johan Hedberg37d9ef72011-11-10 15:54:39 +02002010 }
Johan Hedbergf7520542011-01-20 12:34:39 +02002011
Johan Hedberg37d9ef72011-11-10 15:54:39 +02002012 if (ev->status == 0) {
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05302013 if (conn->type == ACL_LINK && conn->flush_key)
2014 hci_remove_link_key(hdev, &conn->dst);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02002015 hci_proto_disconn_cfm(conn, ev->reason);
2016 hci_conn_del(conn);
2017 }
Johan Hedbergf7520542011-01-20 12:34:39 +02002018
2019unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 hci_dev_unlock(hdev);
2021}
2022
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002023static void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002024{
2025 struct hci_ev_auth_complete *ev = (void *) skb->data;
2026 struct hci_conn *conn;
2027
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002028 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002029
2030 hci_dev_lock(hdev);
2031
2032 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002033 if (!conn)
2034 goto unlock;
2035
2036 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02002037 if (!hci_conn_ssp_enabled(conn) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002038 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002039 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03002040 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002041 conn->link_mode |= HCI_LM_AUTH;
2042 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03002043 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002044 } else {
Johan Hedbergbab73cb2012-02-09 16:07:29 +02002045 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002046 ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002047 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002048
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002049 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
2050 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002051
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002052 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02002053 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002054 struct hci_cp_set_conn_encrypt cp;
2055 cp.handle = ev->handle;
2056 cp.encrypt = 0x01;
2057 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03002058 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002059 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002060 conn->state = BT_CONNECTED;
2061 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002062 hci_conn_put(conn);
2063 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002064 } else {
2065 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002066
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002067 hci_conn_hold(conn);
2068 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
2069 hci_conn_put(conn);
2070 }
2071
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002072 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002073 if (!ev->status) {
2074 struct hci_cp_set_conn_encrypt cp;
2075 cp.handle = ev->handle;
2076 cp.encrypt = 0x01;
2077 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03002078 &cp);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002079 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002080 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002081 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002082 }
2083 }
2084
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002085unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002086 hci_dev_unlock(hdev);
2087}
2088
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002089static void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002090{
Johan Hedberg127178d2010-11-18 22:22:29 +02002091 struct hci_ev_remote_name *ev = (void *) skb->data;
2092 struct hci_conn *conn;
2093
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002094 BT_DBG("%s", hdev->name);
2095
2096 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02002097
2098 hci_dev_lock(hdev);
2099
2100 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002101
2102 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2103 goto check_auth;
2104
2105 if (ev->status == 0)
2106 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002107 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
Johan Hedbergb644ba32012-01-17 21:48:47 +02002108 else
2109 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
2110
2111check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07002112 if (!conn)
2113 goto unlock;
2114
2115 if (!hci_outgoing_auth_needed(hdev, conn))
2116 goto unlock;
2117
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002118 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002119 struct hci_cp_auth_requested cp;
2120 cp.handle = __cpu_to_le16(conn->handle);
2121 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
2122 }
2123
Johan Hedberg79c6c702011-04-28 11:28:55 -07002124unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02002125 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002126}
2127
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002128static void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002129{
2130 struct hci_ev_encrypt_change *ev = (void *) skb->data;
2131 struct hci_conn *conn;
2132
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002133 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002134
2135 hci_dev_lock(hdev);
2136
2137 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2138 if (conn) {
2139 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02002140 if (ev->encrypt) {
2141 /* Encryption implies authentication */
2142 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002143 conn->link_mode |= HCI_LM_ENCRYPT;
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002144 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannae293192008-07-14 20:13:45 +02002145 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002146 conn->link_mode &= ~HCI_LM_ENCRYPT;
2147 }
2148
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002149 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002150
Gustavo Padovana7d77232012-05-13 03:20:07 -03002151 if (ev->status && conn->state == BT_CONNECTED) {
Gustavo Padovand839c812012-05-16 12:17:12 -03002152 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
Gustavo Padovana7d77232012-05-13 03:20:07 -03002153 hci_conn_put(conn);
2154 goto unlock;
2155 }
2156
Marcel Holtmannf8558552008-07-14 20:13:49 +02002157 if (conn->state == BT_CONFIG) {
2158 if (!ev->status)
2159 conn->state = BT_CONNECTED;
2160
2161 hci_proto_connect_cfm(conn, ev->status);
2162 hci_conn_put(conn);
2163 } else
2164 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002165 }
2166
Gustavo Padovana7d77232012-05-13 03:20:07 -03002167unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002168 hci_dev_unlock(hdev);
2169}
2170
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002171static void hci_change_link_key_complete_evt(struct hci_dev *hdev,
2172 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002173{
2174 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2175 struct hci_conn *conn;
2176
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002177 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002178
2179 hci_dev_lock(hdev);
2180
2181 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2182 if (conn) {
2183 if (!ev->status)
2184 conn->link_mode |= HCI_LM_SECURE;
2185
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002186 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002187
2188 hci_key_change_cfm(conn, ev->status);
2189 }
2190
2191 hci_dev_unlock(hdev);
2192}
2193
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002194static void hci_remote_features_evt(struct hci_dev *hdev,
2195 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002196{
2197 struct hci_ev_remote_features *ev = (void *) skb->data;
2198 struct hci_conn *conn;
2199
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002200 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002201
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002202 hci_dev_lock(hdev);
2203
2204 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002205 if (!conn)
2206 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002207
Johan Hedbergccd556f2010-11-10 17:11:51 +02002208 if (!ev->status)
2209 memcpy(conn->features, ev->features, 8);
2210
2211 if (conn->state != BT_CONFIG)
2212 goto unlock;
2213
2214 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2215 struct hci_cp_read_remote_ext_features cp;
2216 cp.handle = ev->handle;
2217 cp.page = 0x01;
2218 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002219 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002220 goto unlock;
2221 }
2222
Johan Hedberg671267b2012-05-12 16:11:50 -03002223 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002224 struct hci_cp_remote_name_req cp;
2225 memset(&cp, 0, sizeof(cp));
2226 bacpy(&cp.bdaddr, &conn->dst);
2227 cp.pscan_rep_mode = 0x02;
2228 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002229 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2230 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002231 conn->dst_type, 0, NULL, 0,
2232 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002233
Johan Hedberg127178d2010-11-18 22:22:29 +02002234 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002235 conn->state = BT_CONNECTED;
2236 hci_proto_connect_cfm(conn, ev->status);
2237 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002238 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002239
Johan Hedbergccd556f2010-11-10 17:11:51 +02002240unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002241 hci_dev_unlock(hdev);
2242}
2243
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002244static void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002245{
2246 BT_DBG("%s", hdev->name);
2247}
2248
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002249static void hci_qos_setup_complete_evt(struct hci_dev *hdev,
2250 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002251{
2252 BT_DBG("%s", hdev->name);
2253}
2254
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002255static void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002256{
2257 struct hci_ev_cmd_complete *ev = (void *) skb->data;
2258 __u16 opcode;
2259
2260 skb_pull(skb, sizeof(*ev));
2261
2262 opcode = __le16_to_cpu(ev->opcode);
2263
2264 switch (opcode) {
2265 case HCI_OP_INQUIRY_CANCEL:
2266 hci_cc_inquiry_cancel(hdev, skb);
2267 break;
2268
Andre Guedes4d934832012-03-21 00:03:35 -03002269 case HCI_OP_PERIODIC_INQ:
2270 hci_cc_periodic_inq(hdev, skb);
2271 break;
2272
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002273 case HCI_OP_EXIT_PERIODIC_INQ:
2274 hci_cc_exit_periodic_inq(hdev, skb);
2275 break;
2276
2277 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2278 hci_cc_remote_name_req_cancel(hdev, skb);
2279 break;
2280
2281 case HCI_OP_ROLE_DISCOVERY:
2282 hci_cc_role_discovery(hdev, skb);
2283 break;
2284
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002285 case HCI_OP_READ_LINK_POLICY:
2286 hci_cc_read_link_policy(hdev, skb);
2287 break;
2288
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002289 case HCI_OP_WRITE_LINK_POLICY:
2290 hci_cc_write_link_policy(hdev, skb);
2291 break;
2292
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002293 case HCI_OP_READ_DEF_LINK_POLICY:
2294 hci_cc_read_def_link_policy(hdev, skb);
2295 break;
2296
2297 case HCI_OP_WRITE_DEF_LINK_POLICY:
2298 hci_cc_write_def_link_policy(hdev, skb);
2299 break;
2300
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002301 case HCI_OP_RESET:
2302 hci_cc_reset(hdev, skb);
2303 break;
2304
2305 case HCI_OP_WRITE_LOCAL_NAME:
2306 hci_cc_write_local_name(hdev, skb);
2307 break;
2308
2309 case HCI_OP_READ_LOCAL_NAME:
2310 hci_cc_read_local_name(hdev, skb);
2311 break;
2312
2313 case HCI_OP_WRITE_AUTH_ENABLE:
2314 hci_cc_write_auth_enable(hdev, skb);
2315 break;
2316
2317 case HCI_OP_WRITE_ENCRYPT_MODE:
2318 hci_cc_write_encrypt_mode(hdev, skb);
2319 break;
2320
2321 case HCI_OP_WRITE_SCAN_ENABLE:
2322 hci_cc_write_scan_enable(hdev, skb);
2323 break;
2324
2325 case HCI_OP_READ_CLASS_OF_DEV:
2326 hci_cc_read_class_of_dev(hdev, skb);
2327 break;
2328
2329 case HCI_OP_WRITE_CLASS_OF_DEV:
2330 hci_cc_write_class_of_dev(hdev, skb);
2331 break;
2332
2333 case HCI_OP_READ_VOICE_SETTING:
2334 hci_cc_read_voice_setting(hdev, skb);
2335 break;
2336
2337 case HCI_OP_WRITE_VOICE_SETTING:
2338 hci_cc_write_voice_setting(hdev, skb);
2339 break;
2340
2341 case HCI_OP_HOST_BUFFER_SIZE:
2342 hci_cc_host_buffer_size(hdev, skb);
2343 break;
2344
Marcel Holtmann333140b2008-07-14 20:13:48 +02002345 case HCI_OP_WRITE_SSP_MODE:
2346 hci_cc_write_ssp_mode(hdev, skb);
2347 break;
2348
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002349 case HCI_OP_READ_LOCAL_VERSION:
2350 hci_cc_read_local_version(hdev, skb);
2351 break;
2352
2353 case HCI_OP_READ_LOCAL_COMMANDS:
2354 hci_cc_read_local_commands(hdev, skb);
2355 break;
2356
2357 case HCI_OP_READ_LOCAL_FEATURES:
2358 hci_cc_read_local_features(hdev, skb);
2359 break;
2360
Andre Guedes971e3a42011-06-30 19:20:52 -03002361 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2362 hci_cc_read_local_ext_features(hdev, skb);
2363 break;
2364
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002365 case HCI_OP_READ_BUFFER_SIZE:
2366 hci_cc_read_buffer_size(hdev, skb);
2367 break;
2368
2369 case HCI_OP_READ_BD_ADDR:
2370 hci_cc_read_bd_addr(hdev, skb);
2371 break;
2372
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002373 case HCI_OP_READ_DATA_BLOCK_SIZE:
2374 hci_cc_read_data_block_size(hdev, skb);
2375 break;
2376
Johan Hedberg23bb5762010-12-21 23:01:27 +02002377 case HCI_OP_WRITE_CA_TIMEOUT:
2378 hci_cc_write_ca_timeout(hdev, skb);
2379 break;
2380
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002381 case HCI_OP_READ_FLOW_CONTROL_MODE:
2382 hci_cc_read_flow_control_mode(hdev, skb);
2383 break;
2384
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002385 case HCI_OP_READ_LOCAL_AMP_INFO:
2386 hci_cc_read_local_amp_info(hdev, skb);
2387 break;
2388
Andrei Emeltchenko903e4542012-09-27 17:26:09 +03002389 case HCI_OP_READ_LOCAL_AMP_ASSOC:
2390 hci_cc_read_local_amp_assoc(hdev, skb);
2391 break;
2392
Johan Hedbergb0916ea2011-01-10 13:44:55 +02002393 case HCI_OP_DELETE_STORED_LINK_KEY:
2394 hci_cc_delete_stored_link_key(hdev, skb);
2395 break;
2396
Johan Hedbergd5859e22011-01-25 01:19:58 +02002397 case HCI_OP_SET_EVENT_MASK:
2398 hci_cc_set_event_mask(hdev, skb);
2399 break;
2400
2401 case HCI_OP_WRITE_INQUIRY_MODE:
2402 hci_cc_write_inquiry_mode(hdev, skb);
2403 break;
2404
2405 case HCI_OP_READ_INQ_RSP_TX_POWER:
2406 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2407 break;
2408
2409 case HCI_OP_SET_EVENT_FLT:
2410 hci_cc_set_event_flt(hdev, skb);
2411 break;
2412
Johan Hedberg980e1a52011-01-22 06:10:07 +02002413 case HCI_OP_PIN_CODE_REPLY:
2414 hci_cc_pin_code_reply(hdev, skb);
2415 break;
2416
2417 case HCI_OP_PIN_CODE_NEG_REPLY:
2418 hci_cc_pin_code_neg_reply(hdev, skb);
2419 break;
2420
Szymon Jancc35938b2011-03-22 13:12:21 +01002421 case HCI_OP_READ_LOCAL_OOB_DATA:
2422 hci_cc_read_local_oob_data_reply(hdev, skb);
2423 break;
2424
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002425 case HCI_OP_LE_READ_BUFFER_SIZE:
2426 hci_cc_le_read_buffer_size(hdev, skb);
2427 break;
2428
Johan Hedberga5c29682011-02-19 12:05:57 -03002429 case HCI_OP_USER_CONFIRM_REPLY:
2430 hci_cc_user_confirm_reply(hdev, skb);
2431 break;
2432
2433 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2434 hci_cc_user_confirm_neg_reply(hdev, skb);
2435 break;
2436
Brian Gix1143d452011-11-23 08:28:34 -08002437 case HCI_OP_USER_PASSKEY_REPLY:
2438 hci_cc_user_passkey_reply(hdev, skb);
2439 break;
2440
2441 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2442 hci_cc_user_passkey_neg_reply(hdev, skb);
Szymon Janc16cde992012-04-13 12:32:42 +02002443 break;
Andre Guedes07f7fa52011-12-02 21:13:31 +09002444
2445 case HCI_OP_LE_SET_SCAN_PARAM:
2446 hci_cc_le_set_scan_param(hdev, skb);
Brian Gix1143d452011-11-23 08:28:34 -08002447 break;
2448
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002449 case HCI_OP_LE_SET_SCAN_ENABLE:
2450 hci_cc_le_set_scan_enable(hdev, skb);
2451 break;
2452
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002453 case HCI_OP_LE_LTK_REPLY:
2454 hci_cc_le_ltk_reply(hdev, skb);
2455 break;
2456
2457 case HCI_OP_LE_LTK_NEG_REPLY:
2458 hci_cc_le_ltk_neg_reply(hdev, skb);
2459 break;
2460
Andre Guedesf9b49302011-06-30 19:20:53 -03002461 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2462 hci_cc_write_le_host_supported(hdev, skb);
2463 break;
2464
Andrei Emeltchenko93c284e2012-09-27 17:26:20 +03002465 case HCI_OP_WRITE_REMOTE_AMP_ASSOC:
2466 hci_cc_write_remote_amp_assoc(hdev, skb);
2467 break;
2468
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002469 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002470 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002471 break;
2472 }
2473
Ville Tervo6bd32322011-02-16 16:32:41 +02002474 if (ev->opcode != HCI_OP_NOP)
2475 del_timer(&hdev->cmd_timer);
2476
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002477 if (ev->ncmd) {
2478 atomic_set(&hdev->cmd_cnt, 1);
2479 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002480 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002481 }
2482}
2483
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002484static void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002485{
2486 struct hci_ev_cmd_status *ev = (void *) skb->data;
2487 __u16 opcode;
2488
2489 skb_pull(skb, sizeof(*ev));
2490
2491 opcode = __le16_to_cpu(ev->opcode);
2492
2493 switch (opcode) {
2494 case HCI_OP_INQUIRY:
2495 hci_cs_inquiry(hdev, ev->status);
2496 break;
2497
2498 case HCI_OP_CREATE_CONN:
2499 hci_cs_create_conn(hdev, ev->status);
2500 break;
2501
2502 case HCI_OP_ADD_SCO:
2503 hci_cs_add_sco(hdev, ev->status);
2504 break;
2505
Marcel Holtmannf8558552008-07-14 20:13:49 +02002506 case HCI_OP_AUTH_REQUESTED:
2507 hci_cs_auth_requested(hdev, ev->status);
2508 break;
2509
2510 case HCI_OP_SET_CONN_ENCRYPT:
2511 hci_cs_set_conn_encrypt(hdev, ev->status);
2512 break;
2513
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002514 case HCI_OP_REMOTE_NAME_REQ:
2515 hci_cs_remote_name_req(hdev, ev->status);
2516 break;
2517
Marcel Holtmann769be972008-07-14 20:13:49 +02002518 case HCI_OP_READ_REMOTE_FEATURES:
2519 hci_cs_read_remote_features(hdev, ev->status);
2520 break;
2521
2522 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2523 hci_cs_read_remote_ext_features(hdev, ev->status);
2524 break;
2525
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002526 case HCI_OP_SETUP_SYNC_CONN:
2527 hci_cs_setup_sync_conn(hdev, ev->status);
2528 break;
2529
2530 case HCI_OP_SNIFF_MODE:
2531 hci_cs_sniff_mode(hdev, ev->status);
2532 break;
2533
2534 case HCI_OP_EXIT_SNIFF_MODE:
2535 hci_cs_exit_sniff_mode(hdev, ev->status);
2536 break;
2537
Johan Hedberg8962ee72011-01-20 12:40:27 +02002538 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002539 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002540 break;
2541
Ville Tervofcd89c02011-02-10 22:38:47 -03002542 case HCI_OP_LE_CREATE_CONN:
2543 hci_cs_le_create_conn(hdev, ev->status);
2544 break;
2545
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002546 case HCI_OP_LE_START_ENC:
2547 hci_cs_le_start_enc(hdev, ev->status);
2548 break;
2549
Andrei Emeltchenkoa02226d2012-09-27 17:26:19 +03002550 case HCI_OP_CREATE_PHY_LINK:
2551 hci_cs_create_phylink(hdev, ev->status);
2552 break;
2553
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002554 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002555 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002556 break;
2557 }
2558
Ville Tervo6bd32322011-02-16 16:32:41 +02002559 if (ev->opcode != HCI_OP_NOP)
2560 del_timer(&hdev->cmd_timer);
2561
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002562 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002563 atomic_set(&hdev->cmd_cnt, 1);
2564 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002565 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002566 }
2567}
2568
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002569static void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002570{
2571 struct hci_ev_role_change *ev = (void *) skb->data;
2572 struct hci_conn *conn;
2573
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002574 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002575
2576 hci_dev_lock(hdev);
2577
2578 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2579 if (conn) {
2580 if (!ev->status) {
2581 if (ev->role)
2582 conn->link_mode &= ~HCI_LM_MASTER;
2583 else
2584 conn->link_mode |= HCI_LM_MASTER;
2585 }
2586
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002587 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002588
2589 hci_role_switch_cfm(conn, ev->status, ev->role);
2590 }
2591
2592 hci_dev_unlock(hdev);
2593}
2594
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002595static void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002597 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 int i;
2599
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002600 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2601 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2602 return;
2603 }
2604
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002605 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002606 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 BT_DBG("%s bad parameters", hdev->name);
2608 return;
2609 }
2610
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002611 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2612
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002613 for (i = 0; i < ev->num_hndl; i++) {
2614 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 struct hci_conn *conn;
2616 __u16 handle, count;
2617
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002618 handle = __le16_to_cpu(info->handle);
2619 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
2621 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002622 if (!conn)
2623 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002625 conn->sent -= count;
2626
2627 switch (conn->type) {
2628 case ACL_LINK:
2629 hdev->acl_cnt += count;
2630 if (hdev->acl_cnt > hdev->acl_pkts)
2631 hdev->acl_cnt = hdev->acl_pkts;
2632 break;
2633
2634 case LE_LINK:
2635 if (hdev->le_pkts) {
2636 hdev->le_cnt += count;
2637 if (hdev->le_cnt > hdev->le_pkts)
2638 hdev->le_cnt = hdev->le_pkts;
2639 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002640 hdev->acl_cnt += count;
2641 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 hdev->acl_cnt = hdev->acl_pkts;
2643 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002644 break;
2645
2646 case SCO_LINK:
2647 hdev->sco_cnt += count;
2648 if (hdev->sco_cnt > hdev->sco_pkts)
2649 hdev->sco_cnt = hdev->sco_pkts;
2650 break;
2651
2652 default:
2653 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2654 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 }
2656 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002657
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002658 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659}
2660
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002661static void hci_num_comp_blocks_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002662{
2663 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2664 int i;
2665
2666 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2667 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2668 return;
2669 }
2670
2671 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002672 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002673 BT_DBG("%s bad parameters", hdev->name);
2674 return;
2675 }
2676
2677 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002678 ev->num_hndl);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002679
2680 for (i = 0; i < ev->num_hndl; i++) {
2681 struct hci_comp_blocks_info *info = &ev->handles[i];
2682 struct hci_conn *conn;
2683 __u16 handle, block_count;
2684
2685 handle = __le16_to_cpu(info->handle);
2686 block_count = __le16_to_cpu(info->blocks);
2687
2688 conn = hci_conn_hash_lookup_handle(hdev, handle);
2689 if (!conn)
2690 continue;
2691
2692 conn->sent -= block_count;
2693
2694 switch (conn->type) {
2695 case ACL_LINK:
2696 hdev->block_cnt += block_count;
2697 if (hdev->block_cnt > hdev->num_blocks)
2698 hdev->block_cnt = hdev->num_blocks;
2699 break;
2700
2701 default:
2702 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2703 break;
2704 }
2705 }
2706
2707 queue_work(hdev->workqueue, &hdev->tx_work);
2708}
2709
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002710static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002712 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002713 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002715 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
2717 hci_dev_lock(hdev);
2718
Marcel Holtmann04837f62006-07-03 10:02:33 +02002719 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2720 if (conn) {
2721 conn->mode = ev->mode;
2722 conn->interval = __le16_to_cpu(ev->interval);
2723
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002724 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
2725 &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02002726 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002727 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002728 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02002729 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002730 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002731
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002732 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002733 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002734 }
2735
2736 hci_dev_unlock(hdev);
2737}
2738
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002739static void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002741 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2742 struct hci_conn *conn;
2743
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002744 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002745
2746 hci_dev_lock(hdev);
2747
2748 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002749 if (!conn)
2750 goto unlock;
2751
2752 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002753 hci_conn_hold(conn);
2754 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2755 hci_conn_put(conn);
2756 }
2757
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002758 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02002759 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002760 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002761 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002762 u8 secure;
2763
2764 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2765 secure = 1;
2766 else
2767 secure = 0;
2768
Johan Hedberg744cf192011-11-08 20:40:14 +02002769 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002770 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002771
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002772unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002773 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774}
2775
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002776static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002778 struct hci_ev_link_key_req *ev = (void *) skb->data;
2779 struct hci_cp_link_key_reply cp;
2780 struct hci_conn *conn;
2781 struct link_key *key;
2782
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002783 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002784
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002785 if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002786 return;
2787
2788 hci_dev_lock(hdev);
2789
2790 key = hci_find_link_key(hdev, &ev->bdaddr);
2791 if (!key) {
2792 BT_DBG("%s link key not found for %s", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002793 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002794 goto not_found;
2795 }
2796
2797 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002798 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002799
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002800 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002801 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002802 BT_DBG("%s ignoring debug key", hdev->name);
2803 goto not_found;
2804 }
2805
2806 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002807 if (conn) {
2808 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002809 conn->auth_type != 0xff && (conn->auth_type & 0x01)) {
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002810 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2811 goto not_found;
2812 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002813
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002814 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002815 conn->pending_sec_level == BT_SECURITY_HIGH) {
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002816 BT_DBG("%s ignoring key unauthenticated for high security",
2817 hdev->name);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002818 goto not_found;
2819 }
2820
2821 conn->key_type = key->type;
2822 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002823 }
2824
2825 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03002826 memcpy(cp.link_key, key->val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002827
2828 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2829
2830 hci_dev_unlock(hdev);
2831
2832 return;
2833
2834not_found:
2835 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2836 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002839static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002841 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2842 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002843 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002844
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002845 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002846
2847 hci_dev_lock(hdev);
2848
2849 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2850 if (conn) {
2851 hci_conn_hold(conn);
2852 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002853 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002854
2855 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2856 conn->key_type = ev->key_type;
2857
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002858 hci_conn_put(conn);
2859 }
2860
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002861 if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002862 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002863 ev->key_type, pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002864
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002865 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866}
2867
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002868static void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002869{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002870 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002871 struct hci_conn *conn;
2872
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002873 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002874
2875 hci_dev_lock(hdev);
2876
2877 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 if (conn && !ev->status) {
2879 struct inquiry_entry *ie;
2880
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002881 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2882 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 ie->data.clock_offset = ev->clock_offset;
2884 ie->timestamp = jiffies;
2885 }
2886 }
2887
2888 hci_dev_unlock(hdev);
2889}
2890
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002891static void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna8746412008-07-14 20:13:46 +02002892{
2893 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2894 struct hci_conn *conn;
2895
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002896 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna8746412008-07-14 20:13:46 +02002897
2898 hci_dev_lock(hdev);
2899
2900 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2901 if (conn && !ev->status)
2902 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2903
2904 hci_dev_unlock(hdev);
2905}
2906
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002907static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002908{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002909 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002910 struct inquiry_entry *ie;
2911
2912 BT_DBG("%s", hdev->name);
2913
2914 hci_dev_lock(hdev);
2915
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002916 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2917 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002918 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2919 ie->timestamp = jiffies;
2920 }
2921
2922 hci_dev_unlock(hdev);
2923}
2924
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002925static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
2926 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002927{
2928 struct inquiry_data data;
2929 int num_rsp = *((__u8 *) skb->data);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02002930 bool name_known, ssp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002931
2932 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2933
2934 if (!num_rsp)
2935 return;
2936
Andre Guedes1519cc12012-03-21 00:03:38 -03002937 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
2938 return;
2939
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002940 hci_dev_lock(hdev);
2941
2942 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002943 struct inquiry_info_with_rssi_and_pscan_mode *info;
2944 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002945
Johan Hedberge17acd42011-03-30 23:57:16 +03002946 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002947 bacpy(&data.bdaddr, &info->bdaddr);
2948 data.pscan_rep_mode = info->pscan_rep_mode;
2949 data.pscan_period_mode = info->pscan_period_mode;
2950 data.pscan_mode = info->pscan_mode;
2951 memcpy(data.dev_class, info->dev_class, 3);
2952 data.clock_offset = info->clock_offset;
2953 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002954 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002955
2956 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002957 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002958 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002959 info->dev_class, info->rssi,
2960 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002961 }
2962 } else {
2963 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2964
Johan Hedberge17acd42011-03-30 23:57:16 +03002965 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002966 bacpy(&data.bdaddr, &info->bdaddr);
2967 data.pscan_rep_mode = info->pscan_rep_mode;
2968 data.pscan_period_mode = info->pscan_period_mode;
2969 data.pscan_mode = 0x00;
2970 memcpy(data.dev_class, info->dev_class, 3);
2971 data.clock_offset = info->clock_offset;
2972 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002973 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002974 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002975 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002976 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002977 info->dev_class, info->rssi,
2978 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002979 }
2980 }
2981
2982 hci_dev_unlock(hdev);
2983}
2984
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002985static void hci_remote_ext_features_evt(struct hci_dev *hdev,
2986 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002987{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002988 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2989 struct hci_conn *conn;
2990
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002991 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002992
Marcel Holtmann41a96212008-07-14 20:13:48 +02002993 hci_dev_lock(hdev);
2994
2995 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002996 if (!conn)
2997 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002998
Johan Hedbergccd556f2010-11-10 17:11:51 +02002999 if (!ev->status && ev->page == 0x01) {
3000 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003001
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003002 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
3003 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003004 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann769be972008-07-14 20:13:49 +02003005
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003006 if (ev->features[0] & LMP_HOST_SSP)
Johan Hedberg58a681e2012-01-16 06:47:28 +02003007 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003008 }
3009
Johan Hedbergccd556f2010-11-10 17:11:51 +02003010 if (conn->state != BT_CONFIG)
3011 goto unlock;
3012
Johan Hedberg671267b2012-05-12 16:11:50 -03003013 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02003014 struct hci_cp_remote_name_req cp;
3015 memset(&cp, 0, sizeof(cp));
3016 bacpy(&cp.bdaddr, &conn->dst);
3017 cp.pscan_rep_mode = 0x02;
3018 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02003019 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3020 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003021 conn->dst_type, 0, NULL, 0,
3022 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02003023
Johan Hedberg127178d2010-11-18 22:22:29 +02003024 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02003025 conn->state = BT_CONNECTED;
3026 hci_proto_connect_cfm(conn, ev->status);
3027 hci_conn_put(conn);
3028 }
3029
3030unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02003031 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003032}
3033
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003034static void hci_sync_conn_complete_evt(struct hci_dev *hdev,
3035 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003036{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003037 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
3038 struct hci_conn *conn;
3039
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003040 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003041
3042 hci_dev_lock(hdev);
3043
3044 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02003045 if (!conn) {
3046 if (ev->link_type == ESCO_LINK)
3047 goto unlock;
3048
3049 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
3050 if (!conn)
3051 goto unlock;
3052
3053 conn->type = SCO_LINK;
3054 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003055
Marcel Holtmann732547f2009-04-19 19:14:14 +02003056 switch (ev->status) {
3057 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003058 conn->handle = __le16_to_cpu(ev->handle);
3059 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02003060
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07003061 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02003062 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02003063 break;
3064
Stephen Coe705e5712010-02-16 11:29:44 -05003065 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02003066 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08003067 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02003068 case 0x1f: /* Unspecified error */
3069 if (conn->out && conn->attempt < 2) {
3070 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
3071 (hdev->esco_type & EDR_ESCO_MASK);
3072 hci_setup_sync(conn, conn->link->handle);
3073 goto unlock;
3074 }
3075 /* fall through */
3076
3077 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003078 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02003079 break;
3080 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003081
3082 hci_proto_connect_cfm(conn, ev->status);
3083 if (ev->status)
3084 hci_conn_del(conn);
3085
3086unlock:
3087 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003088}
3089
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003090static void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003091{
3092 BT_DBG("%s", hdev->name);
3093}
3094
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003095static void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02003096{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003097 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02003098
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003099 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003100}
3101
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003102static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
3103 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003104{
3105 struct inquiry_data data;
3106 struct extended_inquiry_info *info = (void *) (skb->data + 1);
3107 int num_rsp = *((__u8 *) skb->data);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303108 size_t eir_len;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003109
3110 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
3111
3112 if (!num_rsp)
3113 return;
3114
Andre Guedes1519cc12012-03-21 00:03:38 -03003115 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
3116 return;
3117
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003118 hci_dev_lock(hdev);
3119
Johan Hedberge17acd42011-03-30 23:57:16 +03003120 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003121 bool name_known, ssp;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003122
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003123 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01003124 data.pscan_rep_mode = info->pscan_rep_mode;
3125 data.pscan_period_mode = info->pscan_period_mode;
3126 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003127 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01003128 data.clock_offset = info->clock_offset;
3129 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003130 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003131
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003132 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02003133 name_known = eir_has_data_type(info->data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003134 sizeof(info->data),
3135 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003136 else
3137 name_known = true;
3138
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003139 name_known = hci_inquiry_cache_update(hdev, &data, name_known,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003140 &ssp);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303141 eir_len = eir_get_length(info->data, sizeof(info->data));
Johan Hedberg48264f02011-11-09 13:58:58 +02003142 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003143 info->dev_class, info->rssi, !name_known,
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303144 ssp, info->data, eir_len);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003145 }
3146
3147 hci_dev_unlock(hdev);
3148}
3149
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003150static void hci_key_refresh_complete_evt(struct hci_dev *hdev,
3151 struct sk_buff *skb)
3152{
3153 struct hci_ev_key_refresh_complete *ev = (void *) skb->data;
3154 struct hci_conn *conn;
3155
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003156 BT_DBG("%s status 0x%2.2x handle 0x%4.4x", hdev->name, ev->status,
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003157 __le16_to_cpu(ev->handle));
3158
3159 hci_dev_lock(hdev);
3160
3161 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3162 if (!conn)
3163 goto unlock;
3164
3165 if (!ev->status)
3166 conn->sec_level = conn->pending_sec_level;
3167
3168 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3169
3170 if (ev->status && conn->state == BT_CONNECTED) {
3171 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
3172 hci_conn_put(conn);
3173 goto unlock;
3174 }
3175
3176 if (conn->state == BT_CONFIG) {
3177 if (!ev->status)
3178 conn->state = BT_CONNECTED;
3179
3180 hci_proto_connect_cfm(conn, ev->status);
3181 hci_conn_put(conn);
3182 } else {
3183 hci_auth_cfm(conn, ev->status);
3184
3185 hci_conn_hold(conn);
3186 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
3187 hci_conn_put(conn);
3188 }
3189
3190unlock:
3191 hci_dev_unlock(hdev);
3192}
3193
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003194static u8 hci_get_auth_req(struct hci_conn *conn)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003195{
3196 /* If remote requests dedicated bonding follow that lead */
3197 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
3198 /* If both remote and local IO capabilities allow MITM
3199 * protection then require it, otherwise don't */
3200 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
3201 return 0x02;
3202 else
3203 return 0x03;
3204 }
3205
3206 /* If remote requests no-bonding follow that lead */
3207 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02003208 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003209
3210 return conn->auth_type;
3211}
3212
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003213static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003214{
3215 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3216 struct hci_conn *conn;
3217
3218 BT_DBG("%s", hdev->name);
3219
3220 hci_dev_lock(hdev);
3221
3222 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003223 if (!conn)
3224 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003225
Johan Hedberg03b555e2011-01-04 15:40:05 +02003226 hci_conn_hold(conn);
3227
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003228 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003229 goto unlock;
3230
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003231 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Gustavo Padovan807deac2012-05-17 00:36:24 -03003232 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003233 struct hci_cp_io_capability_reply cp;
3234
3235 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303236 /* Change the IO capability from KeyboardDisplay
3237 * to DisplayYesNo as it is not supported by BT spec. */
3238 cp.capability = (conn->io_capability == 0x04) ?
3239 0x01 : conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07003240 conn->auth_type = hci_get_auth_req(conn);
3241 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003242
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003243 if (hci_find_remote_oob_data(hdev, &conn->dst) &&
3244 (conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)))
Szymon Jancce85ee12011-03-22 13:12:23 +01003245 cp.oob_data = 0x01;
3246 else
3247 cp.oob_data = 0x00;
3248
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003249 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003250 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003251 } else {
3252 struct hci_cp_io_capability_neg_reply cp;
3253
3254 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003255 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003256
3257 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003258 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003259 }
3260
3261unlock:
3262 hci_dev_unlock(hdev);
3263}
3264
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003265static void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
Johan Hedberg03b555e2011-01-04 15:40:05 +02003266{
3267 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3268 struct hci_conn *conn;
3269
3270 BT_DBG("%s", hdev->name);
3271
3272 hci_dev_lock(hdev);
3273
3274 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3275 if (!conn)
3276 goto unlock;
3277
Johan Hedberg03b555e2011-01-04 15:40:05 +02003278 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003279 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003280 if (ev->oob_data)
3281 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003282
3283unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003284 hci_dev_unlock(hdev);
3285}
3286
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003287static void hci_user_confirm_request_evt(struct hci_dev *hdev,
3288 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03003289{
3290 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003291 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003292 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003293
3294 BT_DBG("%s", hdev->name);
3295
3296 hci_dev_lock(hdev);
3297
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003298 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003299 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003300
Johan Hedberg7a828902011-04-28 11:28:53 -07003301 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3302 if (!conn)
3303 goto unlock;
3304
3305 loc_mitm = (conn->auth_type & 0x01);
3306 rem_mitm = (conn->remote_auth & 0x01);
3307
3308 /* If we require MITM but the remote device can't provide that
3309 * (it has NoInputNoOutput) then reject the confirmation
3310 * request. The only exception is when we're dedicated bonding
3311 * initiators (connect_cfm_cb set) since then we always have the MITM
3312 * bit set. */
3313 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
3314 BT_DBG("Rejecting request: remote device can't provide MITM");
3315 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003316 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003317 goto unlock;
3318 }
3319
3320 /* If no side requires MITM protection; auto-accept */
3321 if ((!loc_mitm || conn->remote_cap == 0x03) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03003322 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003323
3324 /* If we're not the initiators request authorization to
3325 * proceed from user space (mgmt_user_confirm with
3326 * confirm_hint set to 1). */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003327 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003328 BT_DBG("Confirming auto-accept as acceptor");
3329 confirm_hint = 1;
3330 goto confirm;
3331 }
3332
Johan Hedberg9f616562011-04-28 11:28:54 -07003333 BT_DBG("Auto-accept of user confirmation with %ums delay",
Gustavo Padovan807deac2012-05-17 00:36:24 -03003334 hdev->auto_accept_delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003335
3336 if (hdev->auto_accept_delay > 0) {
3337 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
3338 mod_timer(&conn->auto_accept_timer, jiffies + delay);
3339 goto unlock;
3340 }
3341
Johan Hedberg7a828902011-04-28 11:28:53 -07003342 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003343 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003344 goto unlock;
3345 }
3346
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003347confirm:
Johan Hedberg272d90d2012-02-09 15:26:12 +02003348 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003349 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003350
3351unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003352 hci_dev_unlock(hdev);
3353}
3354
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003355static void hci_user_passkey_request_evt(struct hci_dev *hdev,
3356 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08003357{
3358 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3359
3360 BT_DBG("%s", hdev->name);
3361
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003362 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003363 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003364}
3365
Johan Hedberg92a25252012-09-06 18:39:26 +03003366static void hci_user_passkey_notify_evt(struct hci_dev *hdev,
3367 struct sk_buff *skb)
3368{
3369 struct hci_ev_user_passkey_notify *ev = (void *) skb->data;
3370 struct hci_conn *conn;
3371
3372 BT_DBG("%s", hdev->name);
3373
3374 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3375 if (!conn)
3376 return;
3377
3378 conn->passkey_notify = __le32_to_cpu(ev->passkey);
3379 conn->passkey_entered = 0;
3380
3381 if (test_bit(HCI_MGMT, &hdev->dev_flags))
3382 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
3383 conn->dst_type, conn->passkey_notify,
3384 conn->passkey_entered);
3385}
3386
3387static void hci_keypress_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
3388{
3389 struct hci_ev_keypress_notify *ev = (void *) skb->data;
3390 struct hci_conn *conn;
3391
3392 BT_DBG("%s", hdev->name);
3393
3394 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3395 if (!conn)
3396 return;
3397
3398 switch (ev->type) {
3399 case HCI_KEYPRESS_STARTED:
3400 conn->passkey_entered = 0;
3401 return;
3402
3403 case HCI_KEYPRESS_ENTERED:
3404 conn->passkey_entered++;
3405 break;
3406
3407 case HCI_KEYPRESS_ERASED:
3408 conn->passkey_entered--;
3409 break;
3410
3411 case HCI_KEYPRESS_CLEARED:
3412 conn->passkey_entered = 0;
3413 break;
3414
3415 case HCI_KEYPRESS_COMPLETED:
3416 return;
3417 }
3418
3419 if (test_bit(HCI_MGMT, &hdev->dev_flags))
3420 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
3421 conn->dst_type, conn->passkey_notify,
3422 conn->passkey_entered);
3423}
3424
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003425static void hci_simple_pair_complete_evt(struct hci_dev *hdev,
3426 struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003427{
3428 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3429 struct hci_conn *conn;
3430
3431 BT_DBG("%s", hdev->name);
3432
3433 hci_dev_lock(hdev);
3434
3435 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003436 if (!conn)
3437 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003438
Johan Hedberg2a611692011-02-19 12:06:00 -03003439 /* To avoid duplicate auth_failed events to user space we check
3440 * the HCI_CONN_AUTH_PEND flag which will be set if we
3441 * initiated the authentication. A traditional auth_complete
3442 * event gets always produced as initiator and is also mapped to
3443 * the mgmt_auth_failed event */
Mikel Astizfa1bd912012-08-09 09:52:29 +02003444 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status)
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003445 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003446 ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003447
3448 hci_conn_put(conn);
3449
3450unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003451 hci_dev_unlock(hdev);
3452}
3453
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003454static void hci_remote_host_features_evt(struct hci_dev *hdev,
3455 struct sk_buff *skb)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003456{
3457 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3458 struct inquiry_entry *ie;
3459
3460 BT_DBG("%s", hdev->name);
3461
3462 hci_dev_lock(hdev);
3463
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003464 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3465 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003466 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003467
3468 hci_dev_unlock(hdev);
3469}
3470
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003471static void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3472 struct sk_buff *skb)
Szymon Janc2763eda2011-03-22 13:12:22 +01003473{
3474 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3475 struct oob_data *data;
3476
3477 BT_DBG("%s", hdev->name);
3478
3479 hci_dev_lock(hdev);
3480
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003481 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003482 goto unlock;
3483
Szymon Janc2763eda2011-03-22 13:12:22 +01003484 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3485 if (data) {
3486 struct hci_cp_remote_oob_data_reply cp;
3487
3488 bacpy(&cp.bdaddr, &ev->bdaddr);
3489 memcpy(cp.hash, data->hash, sizeof(cp.hash));
3490 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
3491
3492 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003493 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003494 } else {
3495 struct hci_cp_remote_oob_data_neg_reply cp;
3496
3497 bacpy(&cp.bdaddr, &ev->bdaddr);
3498 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003499 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003500 }
3501
Szymon Jance1ba1f12011-04-06 13:01:59 +02003502unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003503 hci_dev_unlock(hdev);
3504}
3505
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003506static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003507{
3508 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3509 struct hci_conn *conn;
3510
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003511 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03003512
3513 hci_dev_lock(hdev);
3514
Andre Guedesb47a09b2012-07-27 15:10:15 -03003515 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Ville Tervob62f3282011-02-10 22:38:50 -03003516 if (!conn) {
3517 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3518 if (!conn) {
3519 BT_ERR("No memory for new connection");
Andre Guedes230fd162012-07-27 15:10:10 -03003520 goto unlock;
Ville Tervob62f3282011-02-10 22:38:50 -03003521 }
Andre Guedes29b79882011-05-31 14:20:54 -03003522
3523 conn->dst_type = ev->bdaddr_type;
Andre Guedesb9b343d2012-07-27 15:10:11 -03003524
3525 if (ev->role == LE_CONN_ROLE_MASTER) {
3526 conn->out = true;
3527 conn->link_mode |= HCI_LM_MASTER;
3528 }
Ville Tervob62f3282011-02-10 22:38:50 -03003529 }
Ville Tervofcd89c02011-02-10 22:38:47 -03003530
Andre Guedescd17dec2012-07-27 15:10:16 -03003531 if (ev->status) {
3532 mgmt_connect_failed(hdev, &conn->dst, conn->type,
3533 conn->dst_type, ev->status);
3534 hci_proto_connect_cfm(conn, ev->status);
3535 conn->state = BT_CLOSED;
3536 hci_conn_del(conn);
3537 goto unlock;
3538 }
3539
Johan Hedbergb644ba32012-01-17 21:48:47 +02003540 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3541 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003542 conn->dst_type, 0, NULL, 0, NULL);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03003543
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03003544 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03003545 conn->handle = __le16_to_cpu(ev->handle);
3546 conn->state = BT_CONNECTED;
3547
3548 hci_conn_hold_device(conn);
3549 hci_conn_add_sysfs(conn);
3550
3551 hci_proto_connect_cfm(conn, ev->status);
3552
3553unlock:
3554 hci_dev_unlock(hdev);
3555}
3556
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003557static void hci_le_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andre Guedes9aa04c92011-05-26 16:23:51 -03003558{
Andre Guedese95beb42011-09-26 20:48:35 -03003559 u8 num_reports = skb->data[0];
3560 void *ptr = &skb->data[1];
Andre Guedes3c9e9192012-01-10 18:20:50 -03003561 s8 rssi;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003562
3563 hci_dev_lock(hdev);
3564
Andre Guedese95beb42011-09-26 20:48:35 -03003565 while (num_reports--) {
3566 struct hci_ev_le_advertising_info *ev = ptr;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003567
Andre Guedes3c9e9192012-01-10 18:20:50 -03003568 rssi = ev->data[ev->length];
3569 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003570 NULL, rssi, 0, 1, ev->data, ev->length);
Andre Guedes3c9e9192012-01-10 18:20:50 -03003571
Andre Guedese95beb42011-09-26 20:48:35 -03003572 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003573 }
3574
3575 hci_dev_unlock(hdev);
3576}
3577
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003578static void hci_le_ltk_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003579{
3580 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3581 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003582 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003583 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003584 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003585
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003586 BT_DBG("%s handle 0x%4.4x", hdev->name, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003587
3588 hci_dev_lock(hdev);
3589
3590 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003591 if (conn == NULL)
3592 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003593
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003594 ltk = hci_find_ltk(hdev, ev->ediv, ev->random);
3595 if (ltk == NULL)
3596 goto not_found;
3597
3598 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003599 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003600
3601 if (ltk->authenticated)
3602 conn->sec_level = BT_SECURITY_HIGH;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003603
3604 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3605
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003606 if (ltk->type & HCI_SMP_STK) {
3607 list_del(&ltk->list);
3608 kfree(ltk);
3609 }
3610
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003611 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003612
3613 return;
3614
3615not_found:
3616 neg.handle = ev->handle;
3617 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3618 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003619}
3620
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003621static void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003622{
3623 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3624
3625 skb_pull(skb, sizeof(*le_ev));
3626
3627 switch (le_ev->subevent) {
3628 case HCI_EV_LE_CONN_COMPLETE:
3629 hci_le_conn_complete_evt(hdev, skb);
3630 break;
3631
Andre Guedes9aa04c92011-05-26 16:23:51 -03003632 case HCI_EV_LE_ADVERTISING_REPORT:
3633 hci_le_adv_report_evt(hdev, skb);
3634 break;
3635
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003636 case HCI_EV_LE_LTK_REQ:
3637 hci_le_ltk_request_evt(hdev, skb);
3638 break;
3639
Ville Tervofcd89c02011-02-10 22:38:47 -03003640 default:
3641 break;
3642 }
3643}
3644
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +03003645static void hci_chan_selected_evt(struct hci_dev *hdev, struct sk_buff *skb)
3646{
3647 struct hci_ev_channel_selected *ev = (void *) skb->data;
3648 struct hci_conn *hcon;
3649
3650 BT_DBG("%s handle 0x%2.2x", hdev->name, ev->phy_handle);
3651
3652 skb_pull(skb, sizeof(*ev));
3653
3654 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
3655 if (!hcon)
3656 return;
3657
3658 amp_read_loc_assoc_final_data(hdev, hcon);
3659}
3660
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3662{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003663 struct hci_event_hdr *hdr = (void *) skb->data;
3664 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
3666 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3667
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003668 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 case HCI_EV_INQUIRY_COMPLETE:
3670 hci_inquiry_complete_evt(hdev, skb);
3671 break;
3672
3673 case HCI_EV_INQUIRY_RESULT:
3674 hci_inquiry_result_evt(hdev, skb);
3675 break;
3676
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003677 case HCI_EV_CONN_COMPLETE:
3678 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02003679 break;
3680
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 case HCI_EV_CONN_REQUEST:
3682 hci_conn_request_evt(hdev, skb);
3683 break;
3684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 case HCI_EV_DISCONN_COMPLETE:
3686 hci_disconn_complete_evt(hdev, skb);
3687 break;
3688
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 case HCI_EV_AUTH_COMPLETE:
3690 hci_auth_complete_evt(hdev, skb);
3691 break;
3692
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003693 case HCI_EV_REMOTE_NAME:
3694 hci_remote_name_evt(hdev, skb);
3695 break;
3696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 case HCI_EV_ENCRYPT_CHANGE:
3698 hci_encrypt_change_evt(hdev, skb);
3699 break;
3700
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003701 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3702 hci_change_link_key_complete_evt(hdev, skb);
3703 break;
3704
3705 case HCI_EV_REMOTE_FEATURES:
3706 hci_remote_features_evt(hdev, skb);
3707 break;
3708
3709 case HCI_EV_REMOTE_VERSION:
3710 hci_remote_version_evt(hdev, skb);
3711 break;
3712
3713 case HCI_EV_QOS_SETUP_COMPLETE:
3714 hci_qos_setup_complete_evt(hdev, skb);
3715 break;
3716
3717 case HCI_EV_CMD_COMPLETE:
3718 hci_cmd_complete_evt(hdev, skb);
3719 break;
3720
3721 case HCI_EV_CMD_STATUS:
3722 hci_cmd_status_evt(hdev, skb);
3723 break;
3724
3725 case HCI_EV_ROLE_CHANGE:
3726 hci_role_change_evt(hdev, skb);
3727 break;
3728
3729 case HCI_EV_NUM_COMP_PKTS:
3730 hci_num_comp_pkts_evt(hdev, skb);
3731 break;
3732
3733 case HCI_EV_MODE_CHANGE:
3734 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 break;
3736
3737 case HCI_EV_PIN_CODE_REQ:
3738 hci_pin_code_request_evt(hdev, skb);
3739 break;
3740
3741 case HCI_EV_LINK_KEY_REQ:
3742 hci_link_key_request_evt(hdev, skb);
3743 break;
3744
3745 case HCI_EV_LINK_KEY_NOTIFY:
3746 hci_link_key_notify_evt(hdev, skb);
3747 break;
3748
3749 case HCI_EV_CLOCK_OFFSET:
3750 hci_clock_offset_evt(hdev, skb);
3751 break;
3752
Marcel Holtmanna8746412008-07-14 20:13:46 +02003753 case HCI_EV_PKT_TYPE_CHANGE:
3754 hci_pkt_type_change_evt(hdev, skb);
3755 break;
3756
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003757 case HCI_EV_PSCAN_REP_MODE:
3758 hci_pscan_rep_mode_evt(hdev, skb);
3759 break;
3760
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003761 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3762 hci_inquiry_result_with_rssi_evt(hdev, skb);
3763 break;
3764
3765 case HCI_EV_REMOTE_EXT_FEATURES:
3766 hci_remote_ext_features_evt(hdev, skb);
3767 break;
3768
3769 case HCI_EV_SYNC_CONN_COMPLETE:
3770 hci_sync_conn_complete_evt(hdev, skb);
3771 break;
3772
3773 case HCI_EV_SYNC_CONN_CHANGED:
3774 hci_sync_conn_changed_evt(hdev, skb);
3775 break;
3776
Marcel Holtmann04837f62006-07-03 10:02:33 +02003777 case HCI_EV_SNIFF_SUBRATE:
3778 hci_sniff_subrate_evt(hdev, skb);
3779 break;
3780
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003781 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3782 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 break;
3784
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003785 case HCI_EV_KEY_REFRESH_COMPLETE:
3786 hci_key_refresh_complete_evt(hdev, skb);
3787 break;
3788
Marcel Holtmann04936842008-07-14 20:13:48 +02003789 case HCI_EV_IO_CAPA_REQUEST:
3790 hci_io_capa_request_evt(hdev, skb);
3791 break;
3792
Johan Hedberg03b555e2011-01-04 15:40:05 +02003793 case HCI_EV_IO_CAPA_REPLY:
3794 hci_io_capa_reply_evt(hdev, skb);
3795 break;
3796
Johan Hedberga5c29682011-02-19 12:05:57 -03003797 case HCI_EV_USER_CONFIRM_REQUEST:
3798 hci_user_confirm_request_evt(hdev, skb);
3799 break;
3800
Brian Gix1143d452011-11-23 08:28:34 -08003801 case HCI_EV_USER_PASSKEY_REQUEST:
3802 hci_user_passkey_request_evt(hdev, skb);
3803 break;
3804
Johan Hedberg92a25252012-09-06 18:39:26 +03003805 case HCI_EV_USER_PASSKEY_NOTIFY:
3806 hci_user_passkey_notify_evt(hdev, skb);
3807 break;
3808
3809 case HCI_EV_KEYPRESS_NOTIFY:
3810 hci_keypress_notify_evt(hdev, skb);
3811 break;
3812
Marcel Holtmann04936842008-07-14 20:13:48 +02003813 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3814 hci_simple_pair_complete_evt(hdev, skb);
3815 break;
3816
Marcel Holtmann41a96212008-07-14 20:13:48 +02003817 case HCI_EV_REMOTE_HOST_FEATURES:
3818 hci_remote_host_features_evt(hdev, skb);
3819 break;
3820
Ville Tervofcd89c02011-02-10 22:38:47 -03003821 case HCI_EV_LE_META:
3822 hci_le_meta_evt(hdev, skb);
3823 break;
3824
Andrei Emeltchenko9495b2e2012-09-27 17:26:22 +03003825 case HCI_EV_CHANNEL_SELECTED:
3826 hci_chan_selected_evt(hdev, skb);
3827 break;
3828
Szymon Janc2763eda2011-03-22 13:12:22 +01003829 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3830 hci_remote_oob_data_request_evt(hdev, skb);
3831 break;
3832
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003833 case HCI_EV_NUM_COMP_BLOCKS:
3834 hci_num_comp_blocks_evt(hdev, skb);
3835 break;
3836
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003837 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003838 BT_DBG("%s event 0x%2.2x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 break;
3840 }
3841
3842 kfree_skb(skb);
3843 hdev->stat.evt_rx++;
3844}