blob: a4240f7a142e058ee72281c36a3c29ea41e7df47 [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);
904}
905
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200906static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300907 struct sk_buff *skb)
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200908{
909 __u8 status = *((__u8 *) skb->data);
910
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300911 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200912
913 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
914}
915
Johan Hedbergd5859e22011-01-25 01:19:58 +0200916static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
917{
918 __u8 status = *((__u8 *) skb->data);
919
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300920 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200921
922 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
923}
924
925static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300926 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200927{
928 __u8 status = *((__u8 *) skb->data);
929
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300930 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200931
932 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
933}
934
935static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300936 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200937{
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700938 struct hci_rp_read_inq_rsp_tx_power *rp = (void *) skb->data;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200939
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300940 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200941
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700942 if (!rp->status)
943 hdev->inq_tx_power = rp->tx_power;
944
945 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200946}
947
948static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
949{
950 __u8 status = *((__u8 *) skb->data);
951
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300952 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200953
954 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
955}
956
Johan Hedberg980e1a52011-01-22 06:10:07 +0200957static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
958{
959 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
960 struct hci_cp_pin_code_reply *cp;
961 struct hci_conn *conn;
962
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300963 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200964
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200965 hci_dev_lock(hdev);
966
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200967 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200968 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200969
Mikel Astizfa1bd912012-08-09 09:52:29 +0200970 if (rp->status)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200971 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200972
973 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
974 if (!cp)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200975 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200976
977 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
978 if (conn)
979 conn->pin_length = cp->pin_len;
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200980
981unlock:
982 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200983}
984
985static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
986{
987 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
988
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300989 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200990
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200991 hci_dev_lock(hdev);
992
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200993 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200994 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300995 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200996
997 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200998}
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200999
Ville Tervo6ed58ec2011-02-10 22:38:48 -03001000static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
1001 struct sk_buff *skb)
1002{
1003 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
1004
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001005 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03001006
1007 if (rp->status)
1008 return;
1009
1010 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
1011 hdev->le_pkts = rp->le_max_pkt;
1012
1013 hdev->le_cnt = hdev->le_pkts;
1014
1015 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
1016
1017 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
1018}
Johan Hedberg980e1a52011-01-22 06:10:07 +02001019
Johan Hedberga5c29682011-02-19 12:05:57 -03001020static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
1021{
1022 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1023
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001024 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -03001025
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001026 hci_dev_lock(hdev);
1027
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001028 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001029 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK, 0,
1030 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001031
1032 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03001033}
1034
1035static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001036 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03001037{
1038 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1039
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001040 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -03001041
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001042 hci_dev_lock(hdev);
1043
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001044 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001045 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001046 ACL_LINK, 0, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001047
1048 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03001049}
1050
Brian Gix1143d452011-11-23 08:28:34 -08001051static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
1052{
1053 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1054
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001055 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001056
1057 hci_dev_lock(hdev);
1058
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001059 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02001060 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001061 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001062
1063 hci_dev_unlock(hdev);
1064}
1065
1066static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001067 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08001068{
1069 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1070
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001071 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001072
1073 hci_dev_lock(hdev);
1074
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001075 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Brian Gix1143d452011-11-23 08:28:34 -08001076 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001077 ACL_LINK, 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001078
1079 hci_dev_unlock(hdev);
1080}
1081
Szymon Jancc35938b2011-03-22 13:12:21 +01001082static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001083 struct sk_buff *skb)
Szymon Jancc35938b2011-03-22 13:12:21 +01001084{
1085 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
1086
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001087 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Szymon Jancc35938b2011-03-22 13:12:21 +01001088
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001089 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001090 mgmt_read_local_oob_data_reply_complete(hdev, rp->hash,
Szymon Jancc35938b2011-03-22 13:12:21 +01001091 rp->randomizer, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001092 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01001093}
1094
Andre Guedes07f7fa52011-12-02 21:13:31 +09001095static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1096{
1097 __u8 status = *((__u8 *) skb->data);
1098
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001099 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001100
1101 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_PARAM, status);
Andre Guedes3fd24152012-02-03 17:48:01 -03001102
1103 if (status) {
1104 hci_dev_lock(hdev);
1105 mgmt_start_discovery_failed(hdev, status);
1106 hci_dev_unlock(hdev);
1107 return;
1108 }
Andre Guedes07f7fa52011-12-02 21:13:31 +09001109}
1110
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001111static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001112 struct sk_buff *skb)
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001113{
1114 struct hci_cp_le_set_scan_enable *cp;
1115 __u8 status = *((__u8 *) skb->data);
1116
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001117 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001118
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001119 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1120 if (!cp)
1121 return;
1122
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001123 switch (cp->enable) {
1124 case LE_SCANNING_ENABLED:
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001125 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_ENABLE, status);
1126
Andre Guedes3fd24152012-02-03 17:48:01 -03001127 if (status) {
1128 hci_dev_lock(hdev);
1129 mgmt_start_discovery_failed(hdev, status);
1130 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001131 return;
Andre Guedes3fd24152012-02-03 17:48:01 -03001132 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001133
Andre Guedesd23264a2011-11-25 20:53:38 -03001134 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
1135
Andre Guedesa8f13c82011-09-09 18:56:24 -03001136 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001137 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedesa8f13c82011-09-09 18:56:24 -03001138 hci_dev_unlock(hdev);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001139 break;
1140
1141 case LE_SCANNING_DISABLED:
Andre Guedesc9ecc482012-03-15 16:52:08 -03001142 if (status) {
1143 hci_dev_lock(hdev);
1144 mgmt_stop_discovery_failed(hdev, status);
1145 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001146 return;
Andre Guedesc9ecc482012-03-15 16:52:08 -03001147 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001148
Andre Guedesd23264a2011-11-25 20:53:38 -03001149 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
1150
Andre Guedesbc3dd332012-03-06 19:37:06 -03001151 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
1152 hdev->discovery.state == DISCOVERY_FINDING) {
Andre Guedes5e0452c2012-02-17 20:39:38 -03001153 mgmt_interleaved_discovery(hdev);
1154 } else {
1155 hci_dev_lock(hdev);
1156 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1157 hci_dev_unlock(hdev);
1158 }
1159
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001160 break;
1161
1162 default:
1163 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1164 break;
Andre Guedes35815082011-05-26 16:23:53 -03001165 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001166}
1167
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001168static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
1169{
1170 struct hci_rp_le_ltk_reply *rp = (void *) skb->data;
1171
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001172 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001173
1174 if (rp->status)
1175 return;
1176
1177 hci_req_complete(hdev, HCI_OP_LE_LTK_REPLY, rp->status);
1178}
1179
1180static void hci_cc_le_ltk_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
1181{
1182 struct hci_rp_le_ltk_neg_reply *rp = (void *) skb->data;
1183
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001184 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001185
1186 if (rp->status)
1187 return;
1188
1189 hci_req_complete(hdev, HCI_OP_LE_LTK_NEG_REPLY, rp->status);
1190}
1191
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001192static void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1193 struct sk_buff *skb)
Andre Guedesf9b49302011-06-30 19:20:53 -03001194{
Johan Hedberg06199cf2012-02-22 16:37:11 +02001195 struct hci_cp_write_le_host_supported *sent;
Andre Guedesf9b49302011-06-30 19:20:53 -03001196 __u8 status = *((__u8 *) skb->data);
1197
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001198 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001199
Johan Hedberg06199cf2012-02-22 16:37:11 +02001200 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED);
Johan Hedberg8f984df2012-02-28 01:07:22 +02001201 if (!sent)
Andre Guedesf9b49302011-06-30 19:20:53 -03001202 return;
1203
Johan Hedberg8f984df2012-02-28 01:07:22 +02001204 if (!status) {
1205 if (sent->le)
1206 hdev->host_features[0] |= LMP_HOST_LE;
1207 else
1208 hdev->host_features[0] &= ~LMP_HOST_LE;
1209 }
1210
1211 if (test_bit(HCI_MGMT, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001212 !test_bit(HCI_INIT, &hdev->flags))
Johan Hedberg8f984df2012-02-28 01:07:22 +02001213 mgmt_le_enable_complete(hdev, sent->le, status);
1214
1215 hci_req_complete(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001216}
1217
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001218static void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001219{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001220 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001221
1222 if (status) {
Johan Hedberg23bb5762010-12-21 23:01:27 +02001223 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001224 hci_conn_check_pending(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001225 hci_dev_lock(hdev);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001226 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Andre Guedes7a135102011-11-09 17:14:25 -03001227 mgmt_start_discovery_failed(hdev, status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001228 hci_dev_unlock(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -04001229 return;
1230 }
1231
Andre Guedes89352e72011-11-04 14:16:53 -03001232 set_bit(HCI_INQUIRY, &hdev->flags);
1233
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001234 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001235 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001236 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001237}
1238
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001239static void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001241 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001244 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001245
1246 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if (!cp)
1248 return;
1249
1250 hci_dev_lock(hdev);
1251
1252 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1253
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001254 BT_DBG("%s bdaddr %s hcon %p", hdev->name, batostr(&cp->bdaddr), conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 if (status) {
1257 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +02001258 if (status != 0x0c || conn->attempt > 2) {
1259 conn->state = BT_CLOSED;
1260 hci_proto_connect_cfm(conn, status);
1261 hci_conn_del(conn);
1262 } else
1263 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265 } else {
1266 if (!conn) {
1267 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1268 if (conn) {
Johan Hedberga0c808b2012-01-16 09:49:58 +02001269 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 conn->link_mode |= HCI_LM_MASTER;
1271 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001272 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274 }
1275
1276 hci_dev_unlock(hdev);
1277}
1278
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001279static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001281 struct hci_cp_add_sco *cp;
1282 struct hci_conn *acl, *sco;
1283 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001285 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001286
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001287 if (!status)
1288 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001290 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1291 if (!cp)
1292 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001294 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001296 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001297
1298 hci_dev_lock(hdev);
1299
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001300 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001301 if (acl) {
1302 sco = acl->link;
1303 if (sco) {
1304 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001305
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001306 hci_proto_connect_cfm(sco, status);
1307 hci_conn_del(sco);
1308 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001309 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001310
1311 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
1313
Marcel Holtmannf8558552008-07-14 20:13:49 +02001314static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1315{
1316 struct hci_cp_auth_requested *cp;
1317 struct hci_conn *conn;
1318
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001319 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001320
1321 if (!status)
1322 return;
1323
1324 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1325 if (!cp)
1326 return;
1327
1328 hci_dev_lock(hdev);
1329
1330 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1331 if (conn) {
1332 if (conn->state == BT_CONFIG) {
1333 hci_proto_connect_cfm(conn, status);
1334 hci_conn_put(conn);
1335 }
1336 }
1337
1338 hci_dev_unlock(hdev);
1339}
1340
1341static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1342{
1343 struct hci_cp_set_conn_encrypt *cp;
1344 struct hci_conn *conn;
1345
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001346 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001347
1348 if (!status)
1349 return;
1350
1351 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1352 if (!cp)
1353 return;
1354
1355 hci_dev_lock(hdev);
1356
1357 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1358 if (conn) {
1359 if (conn->state == BT_CONFIG) {
1360 hci_proto_connect_cfm(conn, status);
1361 hci_conn_put(conn);
1362 }
1363 }
1364
1365 hci_dev_unlock(hdev);
1366}
1367
Johan Hedberg127178d2010-11-18 22:22:29 +02001368static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001369 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001370{
Johan Hedberg392599b2010-11-18 22:22:28 +02001371 if (conn->state != BT_CONFIG || !conn->out)
1372 return 0;
1373
Johan Hedberg765c2a92011-01-19 12:06:52 +05301374 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001375 return 0;
1376
1377 /* Only request authentication for SSP connections or non-SSP
Vinicius Costa Gomese9bf2bf2011-09-02 14:51:20 -03001378 * devices with sec_level HIGH or if MITM protection is requested */
Gustavo Padovan807deac2012-05-17 00:36:24 -03001379 if (!hci_conn_ssp_enabled(conn) && !(conn->auth_type & 0x01) &&
1380 conn->pending_sec_level != BT_SECURITY_HIGH)
Johan Hedberg392599b2010-11-18 22:22:28 +02001381 return 0;
1382
Johan Hedberg392599b2010-11-18 22:22:28 +02001383 return 1;
1384}
1385
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001386static int hci_resolve_name(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001387 struct inquiry_entry *e)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001388{
1389 struct hci_cp_remote_name_req cp;
1390
1391 memset(&cp, 0, sizeof(cp));
1392
1393 bacpy(&cp.bdaddr, &e->data.bdaddr);
1394 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1395 cp.pscan_mode = e->data.pscan_mode;
1396 cp.clock_offset = e->data.clock_offset;
1397
1398 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1399}
1400
Johan Hedbergb644ba32012-01-17 21:48:47 +02001401static bool hci_resolve_next_name(struct hci_dev *hdev)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001402{
1403 struct discovery_state *discov = &hdev->discovery;
1404 struct inquiry_entry *e;
1405
Johan Hedbergb644ba32012-01-17 21:48:47 +02001406 if (list_empty(&discov->resolve))
1407 return false;
1408
1409 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
Ram Malovanyc8100892012-07-19 10:26:09 +03001410 if (!e)
1411 return false;
1412
Johan Hedbergb644ba32012-01-17 21:48:47 +02001413 if (hci_resolve_name(hdev, e) == 0) {
1414 e->name_state = NAME_PENDING;
1415 return true;
1416 }
1417
1418 return false;
1419}
1420
1421static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001422 bdaddr_t *bdaddr, u8 *name, u8 name_len)
Johan Hedbergb644ba32012-01-17 21:48:47 +02001423{
1424 struct discovery_state *discov = &hdev->discovery;
1425 struct inquiry_entry *e;
1426
1427 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001428 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00, 0, name,
1429 name_len, conn->dev_class);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001430
1431 if (discov->state == DISCOVERY_STOPPED)
1432 return;
1433
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001434 if (discov->state == DISCOVERY_STOPPING)
1435 goto discov_complete;
1436
1437 if (discov->state != DISCOVERY_RESOLVING)
1438 return;
1439
1440 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
Ram Malovany7cc83802012-07-19 10:26:10 +03001441 /* If the device was not found in a list of found devices names of which
1442 * are pending. there is no need to continue resolving a next name as it
1443 * will be done upon receiving another Remote Name Request Complete
1444 * Event */
1445 if (!e)
1446 return;
1447
1448 list_del(&e->list);
1449 if (name) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001450 e->name_state = NAME_KNOWN;
Ram Malovany7cc83802012-07-19 10:26:10 +03001451 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
1452 e->data.rssi, name, name_len);
Ram Malovanyc3e7c0d2012-07-19 10:26:11 +03001453 } else {
1454 e->name_state = NAME_NOT_KNOWN;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001455 }
1456
Johan Hedbergb644ba32012-01-17 21:48:47 +02001457 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001458 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001459
1460discov_complete:
1461 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1462}
1463
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001464static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1465{
Johan Hedberg127178d2010-11-18 22:22:29 +02001466 struct hci_cp_remote_name_req *cp;
1467 struct hci_conn *conn;
1468
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001469 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001470
1471 /* If successful wait for the name req complete event before
1472 * checking for the need to do authentication */
1473 if (!status)
1474 return;
1475
1476 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1477 if (!cp)
1478 return;
1479
1480 hci_dev_lock(hdev);
1481
1482 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001483
1484 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1485 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1486
Johan Hedberg79c6c702011-04-28 11:28:55 -07001487 if (!conn)
1488 goto unlock;
1489
1490 if (!hci_outgoing_auth_needed(hdev, conn))
1491 goto unlock;
1492
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001493 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001494 struct hci_cp_auth_requested cp;
1495 cp.handle = __cpu_to_le16(conn->handle);
1496 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1497 }
1498
Johan Hedberg79c6c702011-04-28 11:28:55 -07001499unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001500 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001501}
1502
Marcel Holtmann769be972008-07-14 20:13:49 +02001503static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1504{
1505 struct hci_cp_read_remote_features *cp;
1506 struct hci_conn *conn;
1507
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001508 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001509
1510 if (!status)
1511 return;
1512
1513 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1514 if (!cp)
1515 return;
1516
1517 hci_dev_lock(hdev);
1518
1519 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1520 if (conn) {
1521 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001522 hci_proto_connect_cfm(conn, status);
1523 hci_conn_put(conn);
1524 }
1525 }
1526
1527 hci_dev_unlock(hdev);
1528}
1529
1530static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1531{
1532 struct hci_cp_read_remote_ext_features *cp;
1533 struct hci_conn *conn;
1534
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001535 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001536
1537 if (!status)
1538 return;
1539
1540 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1541 if (!cp)
1542 return;
1543
1544 hci_dev_lock(hdev);
1545
1546 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1547 if (conn) {
1548 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001549 hci_proto_connect_cfm(conn, status);
1550 hci_conn_put(conn);
1551 }
1552 }
1553
1554 hci_dev_unlock(hdev);
1555}
1556
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001557static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1558{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001559 struct hci_cp_setup_sync_conn *cp;
1560 struct hci_conn *acl, *sco;
1561 __u16 handle;
1562
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001563 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001564
1565 if (!status)
1566 return;
1567
1568 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1569 if (!cp)
1570 return;
1571
1572 handle = __le16_to_cpu(cp->handle);
1573
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001574 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001575
1576 hci_dev_lock(hdev);
1577
1578 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001579 if (acl) {
1580 sco = acl->link;
1581 if (sco) {
1582 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001583
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001584 hci_proto_connect_cfm(sco, status);
1585 hci_conn_del(sco);
1586 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001587 }
1588
1589 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001590}
1591
1592static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1593{
1594 struct hci_cp_sniff_mode *cp;
1595 struct hci_conn *conn;
1596
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001597 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001598
1599 if (!status)
1600 return;
1601
1602 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1603 if (!cp)
1604 return;
1605
1606 hci_dev_lock(hdev);
1607
1608 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001609 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001610 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001611
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001612 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001613 hci_sco_setup(conn, status);
1614 }
1615
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001616 hci_dev_unlock(hdev);
1617}
1618
1619static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1620{
1621 struct hci_cp_exit_sniff_mode *cp;
1622 struct hci_conn *conn;
1623
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001624 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001625
1626 if (!status)
1627 return;
1628
1629 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1630 if (!cp)
1631 return;
1632
1633 hci_dev_lock(hdev);
1634
1635 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001636 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001637 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001638
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001639 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001640 hci_sco_setup(conn, status);
1641 }
1642
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001643 hci_dev_unlock(hdev);
1644}
1645
Johan Hedberg88c3df12012-02-09 14:27:38 +02001646static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1647{
1648 struct hci_cp_disconnect *cp;
1649 struct hci_conn *conn;
1650
1651 if (!status)
1652 return;
1653
1654 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1655 if (!cp)
1656 return;
1657
1658 hci_dev_lock(hdev);
1659
1660 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1661 if (conn)
1662 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001663 conn->dst_type, status);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001664
1665 hci_dev_unlock(hdev);
1666}
1667
Ville Tervofcd89c02011-02-10 22:38:47 -03001668static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1669{
Ville Tervofcd89c02011-02-10 22:38:47 -03001670 struct hci_conn *conn;
1671
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001672 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Ville Tervofcd89c02011-02-10 22:38:47 -03001673
Ville Tervofcd89c02011-02-10 22:38:47 -03001674 if (status) {
Andre Guedesf00a06a2012-07-27 15:10:13 -03001675 hci_dev_lock(hdev);
Ville Tervofcd89c02011-02-10 22:38:47 -03001676
Andre Guedes0c95ab72012-07-27 15:10:14 -03001677 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Andre Guedesf00a06a2012-07-27 15:10:13 -03001678 if (!conn) {
1679 hci_dev_unlock(hdev);
1680 return;
1681 }
1682
Andre Guedes0c95ab72012-07-27 15:10:14 -03001683 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&conn->dst),
Andre Guedesf00a06a2012-07-27 15:10:13 -03001684 conn);
1685
1686 conn->state = BT_CLOSED;
Andre Guedes0c95ab72012-07-27 15:10:14 -03001687 mgmt_connect_failed(hdev, &conn->dst, conn->type,
Andre Guedesf00a06a2012-07-27 15:10:13 -03001688 conn->dst_type, status);
1689 hci_proto_connect_cfm(conn, status);
1690 hci_conn_del(conn);
1691
1692 hci_dev_unlock(hdev);
1693 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001694}
1695
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001696static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1697{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001698 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001699}
1700
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001701static void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001702{
1703 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001704 struct discovery_state *discov = &hdev->discovery;
1705 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001706
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001707 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001708
Johan Hedberg23bb5762010-12-21 23:01:27 +02001709 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001710
1711 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001712
1713 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1714 return;
1715
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001716 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001717 return;
1718
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001719 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001720
Andre Guedes343f9352012-02-17 20:39:37 -03001721 if (discov->state != DISCOVERY_FINDING)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001722 goto unlock;
1723
1724 if (list_empty(&discov->resolve)) {
1725 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1726 goto unlock;
1727 }
1728
1729 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1730 if (e && hci_resolve_name(hdev, e) == 0) {
1731 e->name_state = NAME_PENDING;
1732 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1733 } else {
1734 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1735 }
1736
1737unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001738 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001739}
1740
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001741static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001743 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001744 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 int num_rsp = *((__u8 *) skb->data);
1746
1747 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1748
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001749 if (!num_rsp)
1750 return;
1751
Andre Guedes1519cc12012-03-21 00:03:38 -03001752 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
1753 return;
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001756
Johan Hedberge17acd42011-03-30 23:57:16 +03001757 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001758 bool name_known, ssp;
Johan Hedberg31754052012-01-04 13:39:52 +02001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 bacpy(&data.bdaddr, &info->bdaddr);
1761 data.pscan_rep_mode = info->pscan_rep_mode;
1762 data.pscan_period_mode = info->pscan_period_mode;
1763 data.pscan_mode = info->pscan_mode;
1764 memcpy(data.dev_class, info->dev_class, 3);
1765 data.clock_offset = info->clock_offset;
1766 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001767 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02001768
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001769 name_known = hci_inquiry_cache_update(hdev, &data, false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02001770 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001771 info->dev_class, 0, !name_known, ssp, NULL,
1772 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 hci_dev_unlock(hdev);
1776}
1777
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001778static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001780 struct hci_ev_conn_complete *ev = (void *) skb->data;
1781 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001783 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001786
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001787 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001788 if (!conn) {
1789 if (ev->link_type != SCO_LINK)
1790 goto unlock;
1791
1792 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1793 if (!conn)
1794 goto unlock;
1795
1796 conn->type = SCO_LINK;
1797 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001798
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001799 if (!ev->status) {
1800 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001801
1802 if (conn->type == ACL_LINK) {
1803 conn->state = BT_CONFIG;
1804 hci_conn_hold(conn);
Szymon Janca9ea3ed2012-07-19 14:46:08 +02001805
1806 if (!conn->out && !hci_conn_ssp_enabled(conn) &&
1807 !hci_find_link_key(hdev, &ev->bdaddr))
1808 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
1809 else
1810 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02001811 } else
1812 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001813
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001814 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001815 hci_conn_add_sysfs(conn);
1816
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001817 if (test_bit(HCI_AUTH, &hdev->flags))
1818 conn->link_mode |= HCI_LM_AUTH;
1819
1820 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1821 conn->link_mode |= HCI_LM_ENCRYPT;
1822
1823 /* Get remote features */
1824 if (conn->type == ACL_LINK) {
1825 struct hci_cp_read_remote_features cp;
1826 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001827 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001828 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001829 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001830
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001831 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02001832 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001833 struct hci_cp_change_conn_ptype cp;
1834 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001835 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001836 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, sizeof(cp),
1837 &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001838 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001839 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001840 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001841 if (conn->type == ACL_LINK)
Johan Hedberg744cf192011-11-08 20:40:14 +02001842 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001843 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02001844 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001845
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001846 if (conn->type == ACL_LINK)
1847 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001848
Marcel Holtmann769be972008-07-14 20:13:49 +02001849 if (ev->status) {
1850 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001851 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001852 } else if (ev->link_type != ACL_LINK)
1853 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001854
1855unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001857
1858 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859}
1860
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001861static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001863 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 int mask = hdev->link_mode;
1865
Gustavo Padovan807deac2012-05-17 00:36:24 -03001866 BT_DBG("%s bdaddr %s type 0x%x", hdev->name, batostr(&ev->bdaddr),
1867 ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1870
Szymon Janc138d22e2011-02-17 16:44:23 +01001871 if ((mask & HCI_LM_ACCEPT) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001872 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001874 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001878
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001879 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1880 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001881 memcpy(ie->data.dev_class, ev->dev_class, 3);
1882
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001883 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type,
1884 &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001886 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1887 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001888 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 hci_dev_unlock(hdev);
1890 return;
1891 }
1892 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 memcpy(conn->dev_class, ev->dev_class, 3);
1895 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 hci_dev_unlock(hdev);
1898
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001899 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1900 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001902 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001904 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1905 cp.role = 0x00; /* Become master */
1906 else
1907 cp.role = 0x01; /* Remain slave */
1908
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001909 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp),
1910 &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001911 } else {
1912 struct hci_cp_accept_sync_conn_req cp;
1913
1914 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001915 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001916
Andrei Emeltchenko82781e62012-05-25 11:38:27 +03001917 cp.tx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1918 cp.rx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1919 cp.max_latency = __constant_cpu_to_le16(0xffff);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001920 cp.content_format = cpu_to_le16(hdev->voice_setting);
1921 cp.retrans_effort = 0xff;
1922
1923 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001924 sizeof(cp), &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 } else {
1927 /* Connection rejected */
1928 struct hci_cp_reject_conn_req cp;
1929
1930 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02001931 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001932 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934}
1935
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001936static u8 hci_to_mgmt_reason(u8 err)
1937{
1938 switch (err) {
1939 case HCI_ERROR_CONNECTION_TIMEOUT:
1940 return MGMT_DEV_DISCONN_TIMEOUT;
1941 case HCI_ERROR_REMOTE_USER_TERM:
1942 case HCI_ERROR_REMOTE_LOW_RESOURCES:
1943 case HCI_ERROR_REMOTE_POWER_OFF:
1944 return MGMT_DEV_DISCONN_REMOTE;
1945 case HCI_ERROR_LOCAL_HOST_TERM:
1946 return MGMT_DEV_DISCONN_LOCAL_HOST;
1947 default:
1948 return MGMT_DEV_DISCONN_UNKNOWN;
1949 }
1950}
1951
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001952static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001954 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001955 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001957 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 hci_dev_lock(hdev);
1960
Marcel Holtmann04837f62006-07-03 10:02:33 +02001961 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001962 if (!conn)
1963 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001964
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001965 if (ev->status == 0)
1966 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Johan Hedbergb644ba32012-01-17 21:48:47 +02001968 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001969 (conn->type == ACL_LINK || conn->type == LE_LINK)) {
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001970 if (ev->status) {
Johan Hedberg88c3df12012-02-09 14:27:38 +02001971 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001972 conn->dst_type, ev->status);
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001973 } else {
1974 u8 reason = hci_to_mgmt_reason(ev->reason);
1975
Johan Hedbergafc747a2012-01-15 18:11:07 +02001976 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001977 conn->dst_type, reason);
1978 }
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001979 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001980
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001981 if (ev->status == 0) {
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05301982 if (conn->type == ACL_LINK && conn->flush_key)
1983 hci_remove_link_key(hdev, &conn->dst);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001984 hci_proto_disconn_cfm(conn, ev->reason);
1985 hci_conn_del(conn);
1986 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001987
1988unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 hci_dev_unlock(hdev);
1990}
1991
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001992static void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001993{
1994 struct hci_ev_auth_complete *ev = (void *) skb->data;
1995 struct hci_conn *conn;
1996
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001997 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001998
1999 hci_dev_lock(hdev);
2000
2001 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002002 if (!conn)
2003 goto unlock;
2004
2005 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02002006 if (!hci_conn_ssp_enabled(conn) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002007 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002008 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03002009 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002010 conn->link_mode |= HCI_LM_AUTH;
2011 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03002012 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002013 } else {
Johan Hedbergbab73cb2012-02-09 16:07:29 +02002014 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002015 ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002016 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002017
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002018 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
2019 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002020
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002021 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02002022 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002023 struct hci_cp_set_conn_encrypt cp;
2024 cp.handle = ev->handle;
2025 cp.encrypt = 0x01;
2026 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03002027 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002028 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002029 conn->state = BT_CONNECTED;
2030 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002031 hci_conn_put(conn);
2032 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002033 } else {
2034 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002035
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002036 hci_conn_hold(conn);
2037 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
2038 hci_conn_put(conn);
2039 }
2040
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002041 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002042 if (!ev->status) {
2043 struct hci_cp_set_conn_encrypt cp;
2044 cp.handle = ev->handle;
2045 cp.encrypt = 0x01;
2046 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03002047 &cp);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002048 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002049 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002050 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002051 }
2052 }
2053
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02002054unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002055 hci_dev_unlock(hdev);
2056}
2057
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002058static void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002059{
Johan Hedberg127178d2010-11-18 22:22:29 +02002060 struct hci_ev_remote_name *ev = (void *) skb->data;
2061 struct hci_conn *conn;
2062
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002063 BT_DBG("%s", hdev->name);
2064
2065 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02002066
2067 hci_dev_lock(hdev);
2068
2069 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002070
2071 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2072 goto check_auth;
2073
2074 if (ev->status == 0)
2075 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002076 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
Johan Hedbergb644ba32012-01-17 21:48:47 +02002077 else
2078 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
2079
2080check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07002081 if (!conn)
2082 goto unlock;
2083
2084 if (!hci_outgoing_auth_needed(hdev, conn))
2085 goto unlock;
2086
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002087 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002088 struct hci_cp_auth_requested cp;
2089 cp.handle = __cpu_to_le16(conn->handle);
2090 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
2091 }
2092
Johan Hedberg79c6c702011-04-28 11:28:55 -07002093unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02002094 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002095}
2096
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002097static void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002098{
2099 struct hci_ev_encrypt_change *ev = (void *) skb->data;
2100 struct hci_conn *conn;
2101
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002102 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002103
2104 hci_dev_lock(hdev);
2105
2106 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2107 if (conn) {
2108 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02002109 if (ev->encrypt) {
2110 /* Encryption implies authentication */
2111 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002112 conn->link_mode |= HCI_LM_ENCRYPT;
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002113 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannae293192008-07-14 20:13:45 +02002114 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002115 conn->link_mode &= ~HCI_LM_ENCRYPT;
2116 }
2117
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002118 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002119
Gustavo Padovana7d77232012-05-13 03:20:07 -03002120 if (ev->status && conn->state == BT_CONNECTED) {
Gustavo Padovand839c812012-05-16 12:17:12 -03002121 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
Gustavo Padovana7d77232012-05-13 03:20:07 -03002122 hci_conn_put(conn);
2123 goto unlock;
2124 }
2125
Marcel Holtmannf8558552008-07-14 20:13:49 +02002126 if (conn->state == BT_CONFIG) {
2127 if (!ev->status)
2128 conn->state = BT_CONNECTED;
2129
2130 hci_proto_connect_cfm(conn, ev->status);
2131 hci_conn_put(conn);
2132 } else
2133 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002134 }
2135
Gustavo Padovana7d77232012-05-13 03:20:07 -03002136unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002137 hci_dev_unlock(hdev);
2138}
2139
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002140static void hci_change_link_key_complete_evt(struct hci_dev *hdev,
2141 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002142{
2143 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2144 struct hci_conn *conn;
2145
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002146 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002147
2148 hci_dev_lock(hdev);
2149
2150 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2151 if (conn) {
2152 if (!ev->status)
2153 conn->link_mode |= HCI_LM_SECURE;
2154
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002155 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002156
2157 hci_key_change_cfm(conn, ev->status);
2158 }
2159
2160 hci_dev_unlock(hdev);
2161}
2162
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002163static void hci_remote_features_evt(struct hci_dev *hdev,
2164 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002165{
2166 struct hci_ev_remote_features *ev = (void *) skb->data;
2167 struct hci_conn *conn;
2168
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002169 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002170
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002171 hci_dev_lock(hdev);
2172
2173 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002174 if (!conn)
2175 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002176
Johan Hedbergccd556f2010-11-10 17:11:51 +02002177 if (!ev->status)
2178 memcpy(conn->features, ev->features, 8);
2179
2180 if (conn->state != BT_CONFIG)
2181 goto unlock;
2182
2183 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2184 struct hci_cp_read_remote_ext_features cp;
2185 cp.handle = ev->handle;
2186 cp.page = 0x01;
2187 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002188 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002189 goto unlock;
2190 }
2191
Johan Hedberg671267b2012-05-12 16:11:50 -03002192 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002193 struct hci_cp_remote_name_req cp;
2194 memset(&cp, 0, sizeof(cp));
2195 bacpy(&cp.bdaddr, &conn->dst);
2196 cp.pscan_rep_mode = 0x02;
2197 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002198 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2199 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002200 conn->dst_type, 0, NULL, 0,
2201 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002202
Johan Hedberg127178d2010-11-18 22:22:29 +02002203 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002204 conn->state = BT_CONNECTED;
2205 hci_proto_connect_cfm(conn, ev->status);
2206 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002207 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002208
Johan Hedbergccd556f2010-11-10 17:11:51 +02002209unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002210 hci_dev_unlock(hdev);
2211}
2212
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002213static void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002214{
2215 BT_DBG("%s", hdev->name);
2216}
2217
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002218static void hci_qos_setup_complete_evt(struct hci_dev *hdev,
2219 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002220{
2221 BT_DBG("%s", hdev->name);
2222}
2223
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002224static void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002225{
2226 struct hci_ev_cmd_complete *ev = (void *) skb->data;
2227 __u16 opcode;
2228
2229 skb_pull(skb, sizeof(*ev));
2230
2231 opcode = __le16_to_cpu(ev->opcode);
2232
2233 switch (opcode) {
2234 case HCI_OP_INQUIRY_CANCEL:
2235 hci_cc_inquiry_cancel(hdev, skb);
2236 break;
2237
Andre Guedes4d934832012-03-21 00:03:35 -03002238 case HCI_OP_PERIODIC_INQ:
2239 hci_cc_periodic_inq(hdev, skb);
2240 break;
2241
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002242 case HCI_OP_EXIT_PERIODIC_INQ:
2243 hci_cc_exit_periodic_inq(hdev, skb);
2244 break;
2245
2246 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2247 hci_cc_remote_name_req_cancel(hdev, skb);
2248 break;
2249
2250 case HCI_OP_ROLE_DISCOVERY:
2251 hci_cc_role_discovery(hdev, skb);
2252 break;
2253
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002254 case HCI_OP_READ_LINK_POLICY:
2255 hci_cc_read_link_policy(hdev, skb);
2256 break;
2257
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002258 case HCI_OP_WRITE_LINK_POLICY:
2259 hci_cc_write_link_policy(hdev, skb);
2260 break;
2261
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002262 case HCI_OP_READ_DEF_LINK_POLICY:
2263 hci_cc_read_def_link_policy(hdev, skb);
2264 break;
2265
2266 case HCI_OP_WRITE_DEF_LINK_POLICY:
2267 hci_cc_write_def_link_policy(hdev, skb);
2268 break;
2269
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002270 case HCI_OP_RESET:
2271 hci_cc_reset(hdev, skb);
2272 break;
2273
2274 case HCI_OP_WRITE_LOCAL_NAME:
2275 hci_cc_write_local_name(hdev, skb);
2276 break;
2277
2278 case HCI_OP_READ_LOCAL_NAME:
2279 hci_cc_read_local_name(hdev, skb);
2280 break;
2281
2282 case HCI_OP_WRITE_AUTH_ENABLE:
2283 hci_cc_write_auth_enable(hdev, skb);
2284 break;
2285
2286 case HCI_OP_WRITE_ENCRYPT_MODE:
2287 hci_cc_write_encrypt_mode(hdev, skb);
2288 break;
2289
2290 case HCI_OP_WRITE_SCAN_ENABLE:
2291 hci_cc_write_scan_enable(hdev, skb);
2292 break;
2293
2294 case HCI_OP_READ_CLASS_OF_DEV:
2295 hci_cc_read_class_of_dev(hdev, skb);
2296 break;
2297
2298 case HCI_OP_WRITE_CLASS_OF_DEV:
2299 hci_cc_write_class_of_dev(hdev, skb);
2300 break;
2301
2302 case HCI_OP_READ_VOICE_SETTING:
2303 hci_cc_read_voice_setting(hdev, skb);
2304 break;
2305
2306 case HCI_OP_WRITE_VOICE_SETTING:
2307 hci_cc_write_voice_setting(hdev, skb);
2308 break;
2309
2310 case HCI_OP_HOST_BUFFER_SIZE:
2311 hci_cc_host_buffer_size(hdev, skb);
2312 break;
2313
Marcel Holtmann333140b2008-07-14 20:13:48 +02002314 case HCI_OP_WRITE_SSP_MODE:
2315 hci_cc_write_ssp_mode(hdev, skb);
2316 break;
2317
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002318 case HCI_OP_READ_LOCAL_VERSION:
2319 hci_cc_read_local_version(hdev, skb);
2320 break;
2321
2322 case HCI_OP_READ_LOCAL_COMMANDS:
2323 hci_cc_read_local_commands(hdev, skb);
2324 break;
2325
2326 case HCI_OP_READ_LOCAL_FEATURES:
2327 hci_cc_read_local_features(hdev, skb);
2328 break;
2329
Andre Guedes971e3a42011-06-30 19:20:52 -03002330 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2331 hci_cc_read_local_ext_features(hdev, skb);
2332 break;
2333
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002334 case HCI_OP_READ_BUFFER_SIZE:
2335 hci_cc_read_buffer_size(hdev, skb);
2336 break;
2337
2338 case HCI_OP_READ_BD_ADDR:
2339 hci_cc_read_bd_addr(hdev, skb);
2340 break;
2341
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002342 case HCI_OP_READ_DATA_BLOCK_SIZE:
2343 hci_cc_read_data_block_size(hdev, skb);
2344 break;
2345
Johan Hedberg23bb5762010-12-21 23:01:27 +02002346 case HCI_OP_WRITE_CA_TIMEOUT:
2347 hci_cc_write_ca_timeout(hdev, skb);
2348 break;
2349
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002350 case HCI_OP_READ_FLOW_CONTROL_MODE:
2351 hci_cc_read_flow_control_mode(hdev, skb);
2352 break;
2353
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002354 case HCI_OP_READ_LOCAL_AMP_INFO:
2355 hci_cc_read_local_amp_info(hdev, skb);
2356 break;
2357
Andrei Emeltchenko903e4542012-09-27 17:26:09 +03002358 case HCI_OP_READ_LOCAL_AMP_ASSOC:
2359 hci_cc_read_local_amp_assoc(hdev, skb);
2360 break;
2361
Johan Hedbergb0916ea2011-01-10 13:44:55 +02002362 case HCI_OP_DELETE_STORED_LINK_KEY:
2363 hci_cc_delete_stored_link_key(hdev, skb);
2364 break;
2365
Johan Hedbergd5859e22011-01-25 01:19:58 +02002366 case HCI_OP_SET_EVENT_MASK:
2367 hci_cc_set_event_mask(hdev, skb);
2368 break;
2369
2370 case HCI_OP_WRITE_INQUIRY_MODE:
2371 hci_cc_write_inquiry_mode(hdev, skb);
2372 break;
2373
2374 case HCI_OP_READ_INQ_RSP_TX_POWER:
2375 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2376 break;
2377
2378 case HCI_OP_SET_EVENT_FLT:
2379 hci_cc_set_event_flt(hdev, skb);
2380 break;
2381
Johan Hedberg980e1a52011-01-22 06:10:07 +02002382 case HCI_OP_PIN_CODE_REPLY:
2383 hci_cc_pin_code_reply(hdev, skb);
2384 break;
2385
2386 case HCI_OP_PIN_CODE_NEG_REPLY:
2387 hci_cc_pin_code_neg_reply(hdev, skb);
2388 break;
2389
Szymon Jancc35938b2011-03-22 13:12:21 +01002390 case HCI_OP_READ_LOCAL_OOB_DATA:
2391 hci_cc_read_local_oob_data_reply(hdev, skb);
2392 break;
2393
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002394 case HCI_OP_LE_READ_BUFFER_SIZE:
2395 hci_cc_le_read_buffer_size(hdev, skb);
2396 break;
2397
Johan Hedberga5c29682011-02-19 12:05:57 -03002398 case HCI_OP_USER_CONFIRM_REPLY:
2399 hci_cc_user_confirm_reply(hdev, skb);
2400 break;
2401
2402 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2403 hci_cc_user_confirm_neg_reply(hdev, skb);
2404 break;
2405
Brian Gix1143d452011-11-23 08:28:34 -08002406 case HCI_OP_USER_PASSKEY_REPLY:
2407 hci_cc_user_passkey_reply(hdev, skb);
2408 break;
2409
2410 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2411 hci_cc_user_passkey_neg_reply(hdev, skb);
Szymon Janc16cde992012-04-13 12:32:42 +02002412 break;
Andre Guedes07f7fa52011-12-02 21:13:31 +09002413
2414 case HCI_OP_LE_SET_SCAN_PARAM:
2415 hci_cc_le_set_scan_param(hdev, skb);
Brian Gix1143d452011-11-23 08:28:34 -08002416 break;
2417
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002418 case HCI_OP_LE_SET_SCAN_ENABLE:
2419 hci_cc_le_set_scan_enable(hdev, skb);
2420 break;
2421
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002422 case HCI_OP_LE_LTK_REPLY:
2423 hci_cc_le_ltk_reply(hdev, skb);
2424 break;
2425
2426 case HCI_OP_LE_LTK_NEG_REPLY:
2427 hci_cc_le_ltk_neg_reply(hdev, skb);
2428 break;
2429
Andre Guedesf9b49302011-06-30 19:20:53 -03002430 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2431 hci_cc_write_le_host_supported(hdev, skb);
2432 break;
2433
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002434 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002435 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002436 break;
2437 }
2438
Ville Tervo6bd32322011-02-16 16:32:41 +02002439 if (ev->opcode != HCI_OP_NOP)
2440 del_timer(&hdev->cmd_timer);
2441
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002442 if (ev->ncmd) {
2443 atomic_set(&hdev->cmd_cnt, 1);
2444 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002445 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002446 }
2447}
2448
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002449static void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002450{
2451 struct hci_ev_cmd_status *ev = (void *) skb->data;
2452 __u16 opcode;
2453
2454 skb_pull(skb, sizeof(*ev));
2455
2456 opcode = __le16_to_cpu(ev->opcode);
2457
2458 switch (opcode) {
2459 case HCI_OP_INQUIRY:
2460 hci_cs_inquiry(hdev, ev->status);
2461 break;
2462
2463 case HCI_OP_CREATE_CONN:
2464 hci_cs_create_conn(hdev, ev->status);
2465 break;
2466
2467 case HCI_OP_ADD_SCO:
2468 hci_cs_add_sco(hdev, ev->status);
2469 break;
2470
Marcel Holtmannf8558552008-07-14 20:13:49 +02002471 case HCI_OP_AUTH_REQUESTED:
2472 hci_cs_auth_requested(hdev, ev->status);
2473 break;
2474
2475 case HCI_OP_SET_CONN_ENCRYPT:
2476 hci_cs_set_conn_encrypt(hdev, ev->status);
2477 break;
2478
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002479 case HCI_OP_REMOTE_NAME_REQ:
2480 hci_cs_remote_name_req(hdev, ev->status);
2481 break;
2482
Marcel Holtmann769be972008-07-14 20:13:49 +02002483 case HCI_OP_READ_REMOTE_FEATURES:
2484 hci_cs_read_remote_features(hdev, ev->status);
2485 break;
2486
2487 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2488 hci_cs_read_remote_ext_features(hdev, ev->status);
2489 break;
2490
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002491 case HCI_OP_SETUP_SYNC_CONN:
2492 hci_cs_setup_sync_conn(hdev, ev->status);
2493 break;
2494
2495 case HCI_OP_SNIFF_MODE:
2496 hci_cs_sniff_mode(hdev, ev->status);
2497 break;
2498
2499 case HCI_OP_EXIT_SNIFF_MODE:
2500 hci_cs_exit_sniff_mode(hdev, ev->status);
2501 break;
2502
Johan Hedberg8962ee72011-01-20 12:40:27 +02002503 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002504 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002505 break;
2506
Ville Tervofcd89c02011-02-10 22:38:47 -03002507 case HCI_OP_LE_CREATE_CONN:
2508 hci_cs_le_create_conn(hdev, ev->status);
2509 break;
2510
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002511 case HCI_OP_LE_START_ENC:
2512 hci_cs_le_start_enc(hdev, ev->status);
2513 break;
2514
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002515 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002516 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002517 break;
2518 }
2519
Ville Tervo6bd32322011-02-16 16:32:41 +02002520 if (ev->opcode != HCI_OP_NOP)
2521 del_timer(&hdev->cmd_timer);
2522
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002523 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002524 atomic_set(&hdev->cmd_cnt, 1);
2525 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002526 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002527 }
2528}
2529
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002530static void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002531{
2532 struct hci_ev_role_change *ev = (void *) skb->data;
2533 struct hci_conn *conn;
2534
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002535 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002536
2537 hci_dev_lock(hdev);
2538
2539 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2540 if (conn) {
2541 if (!ev->status) {
2542 if (ev->role)
2543 conn->link_mode &= ~HCI_LM_MASTER;
2544 else
2545 conn->link_mode |= HCI_LM_MASTER;
2546 }
2547
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002548 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002549
2550 hci_role_switch_cfm(conn, ev->status, ev->role);
2551 }
2552
2553 hci_dev_unlock(hdev);
2554}
2555
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002556static void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002558 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 int i;
2560
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002561 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2562 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2563 return;
2564 }
2565
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002566 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002567 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 BT_DBG("%s bad parameters", hdev->name);
2569 return;
2570 }
2571
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002572 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2573
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002574 for (i = 0; i < ev->num_hndl; i++) {
2575 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 struct hci_conn *conn;
2577 __u16 handle, count;
2578
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002579 handle = __le16_to_cpu(info->handle);
2580 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002583 if (!conn)
2584 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002586 conn->sent -= count;
2587
2588 switch (conn->type) {
2589 case ACL_LINK:
2590 hdev->acl_cnt += count;
2591 if (hdev->acl_cnt > hdev->acl_pkts)
2592 hdev->acl_cnt = hdev->acl_pkts;
2593 break;
2594
2595 case LE_LINK:
2596 if (hdev->le_pkts) {
2597 hdev->le_cnt += count;
2598 if (hdev->le_cnt > hdev->le_pkts)
2599 hdev->le_cnt = hdev->le_pkts;
2600 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002601 hdev->acl_cnt += count;
2602 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 hdev->acl_cnt = hdev->acl_pkts;
2604 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002605 break;
2606
2607 case SCO_LINK:
2608 hdev->sco_cnt += count;
2609 if (hdev->sco_cnt > hdev->sco_pkts)
2610 hdev->sco_cnt = hdev->sco_pkts;
2611 break;
2612
2613 default:
2614 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2615 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 }
2617 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002618
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002619 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
2621
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002622static void hci_num_comp_blocks_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002623{
2624 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2625 int i;
2626
2627 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2628 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2629 return;
2630 }
2631
2632 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002633 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002634 BT_DBG("%s bad parameters", hdev->name);
2635 return;
2636 }
2637
2638 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002639 ev->num_hndl);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002640
2641 for (i = 0; i < ev->num_hndl; i++) {
2642 struct hci_comp_blocks_info *info = &ev->handles[i];
2643 struct hci_conn *conn;
2644 __u16 handle, block_count;
2645
2646 handle = __le16_to_cpu(info->handle);
2647 block_count = __le16_to_cpu(info->blocks);
2648
2649 conn = hci_conn_hash_lookup_handle(hdev, handle);
2650 if (!conn)
2651 continue;
2652
2653 conn->sent -= block_count;
2654
2655 switch (conn->type) {
2656 case ACL_LINK:
2657 hdev->block_cnt += block_count;
2658 if (hdev->block_cnt > hdev->num_blocks)
2659 hdev->block_cnt = hdev->num_blocks;
2660 break;
2661
2662 default:
2663 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2664 break;
2665 }
2666 }
2667
2668 queue_work(hdev->workqueue, &hdev->tx_work);
2669}
2670
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002671static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002673 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002674 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002676 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 hci_dev_lock(hdev);
2679
Marcel Holtmann04837f62006-07-03 10:02:33 +02002680 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2681 if (conn) {
2682 conn->mode = ev->mode;
2683 conn->interval = __le16_to_cpu(ev->interval);
2684
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002685 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
2686 &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02002687 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002688 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002689 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02002690 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002691 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002692
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002693 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002694 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002695 }
2696
2697 hci_dev_unlock(hdev);
2698}
2699
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002700static void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002702 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2703 struct hci_conn *conn;
2704
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002705 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002706
2707 hci_dev_lock(hdev);
2708
2709 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002710 if (!conn)
2711 goto unlock;
2712
2713 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002714 hci_conn_hold(conn);
2715 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2716 hci_conn_put(conn);
2717 }
2718
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002719 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02002720 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002721 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002722 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002723 u8 secure;
2724
2725 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2726 secure = 1;
2727 else
2728 secure = 0;
2729
Johan Hedberg744cf192011-11-08 20:40:14 +02002730 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002731 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002732
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002733unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002734 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735}
2736
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002737static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002739 struct hci_ev_link_key_req *ev = (void *) skb->data;
2740 struct hci_cp_link_key_reply cp;
2741 struct hci_conn *conn;
2742 struct link_key *key;
2743
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002744 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002745
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002746 if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002747 return;
2748
2749 hci_dev_lock(hdev);
2750
2751 key = hci_find_link_key(hdev, &ev->bdaddr);
2752 if (!key) {
2753 BT_DBG("%s link key not found for %s", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002754 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002755 goto not_found;
2756 }
2757
2758 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002759 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002760
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002761 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002762 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002763 BT_DBG("%s ignoring debug key", hdev->name);
2764 goto not_found;
2765 }
2766
2767 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002768 if (conn) {
2769 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002770 conn->auth_type != 0xff && (conn->auth_type & 0x01)) {
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002771 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2772 goto not_found;
2773 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002774
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002775 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002776 conn->pending_sec_level == BT_SECURITY_HIGH) {
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002777 BT_DBG("%s ignoring key unauthenticated for high security",
2778 hdev->name);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002779 goto not_found;
2780 }
2781
2782 conn->key_type = key->type;
2783 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002784 }
2785
2786 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03002787 memcpy(cp.link_key, key->val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002788
2789 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2790
2791 hci_dev_unlock(hdev);
2792
2793 return;
2794
2795not_found:
2796 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2797 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798}
2799
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002800static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002802 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2803 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002804 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002805
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002806 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002807
2808 hci_dev_lock(hdev);
2809
2810 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2811 if (conn) {
2812 hci_conn_hold(conn);
2813 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002814 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002815
2816 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2817 conn->key_type = ev->key_type;
2818
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002819 hci_conn_put(conn);
2820 }
2821
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002822 if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002823 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002824 ev->key_type, pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002825
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002826 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827}
2828
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002829static void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002830{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002831 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002832 struct hci_conn *conn;
2833
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002834 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002835
2836 hci_dev_lock(hdev);
2837
2838 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 if (conn && !ev->status) {
2840 struct inquiry_entry *ie;
2841
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002842 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2843 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 ie->data.clock_offset = ev->clock_offset;
2845 ie->timestamp = jiffies;
2846 }
2847 }
2848
2849 hci_dev_unlock(hdev);
2850}
2851
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002852static void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna8746412008-07-14 20:13:46 +02002853{
2854 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2855 struct hci_conn *conn;
2856
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002857 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna8746412008-07-14 20:13:46 +02002858
2859 hci_dev_lock(hdev);
2860
2861 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2862 if (conn && !ev->status)
2863 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2864
2865 hci_dev_unlock(hdev);
2866}
2867
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002868static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002869{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002870 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002871 struct inquiry_entry *ie;
2872
2873 BT_DBG("%s", hdev->name);
2874
2875 hci_dev_lock(hdev);
2876
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002877 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2878 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002879 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2880 ie->timestamp = jiffies;
2881 }
2882
2883 hci_dev_unlock(hdev);
2884}
2885
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002886static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
2887 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002888{
2889 struct inquiry_data data;
2890 int num_rsp = *((__u8 *) skb->data);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02002891 bool name_known, ssp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002892
2893 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2894
2895 if (!num_rsp)
2896 return;
2897
Andre Guedes1519cc12012-03-21 00:03:38 -03002898 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
2899 return;
2900
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002901 hci_dev_lock(hdev);
2902
2903 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002904 struct inquiry_info_with_rssi_and_pscan_mode *info;
2905 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002906
Johan Hedberge17acd42011-03-30 23:57:16 +03002907 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002908 bacpy(&data.bdaddr, &info->bdaddr);
2909 data.pscan_rep_mode = info->pscan_rep_mode;
2910 data.pscan_period_mode = info->pscan_period_mode;
2911 data.pscan_mode = info->pscan_mode;
2912 memcpy(data.dev_class, info->dev_class, 3);
2913 data.clock_offset = info->clock_offset;
2914 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002915 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002916
2917 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002918 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002919 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002920 info->dev_class, info->rssi,
2921 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002922 }
2923 } else {
2924 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2925
Johan Hedberge17acd42011-03-30 23:57:16 +03002926 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002927 bacpy(&data.bdaddr, &info->bdaddr);
2928 data.pscan_rep_mode = info->pscan_rep_mode;
2929 data.pscan_period_mode = info->pscan_period_mode;
2930 data.pscan_mode = 0x00;
2931 memcpy(data.dev_class, info->dev_class, 3);
2932 data.clock_offset = info->clock_offset;
2933 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002934 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002935 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002936 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002937 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002938 info->dev_class, info->rssi,
2939 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002940 }
2941 }
2942
2943 hci_dev_unlock(hdev);
2944}
2945
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002946static void hci_remote_ext_features_evt(struct hci_dev *hdev,
2947 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002948{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002949 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2950 struct hci_conn *conn;
2951
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002952 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002953
Marcel Holtmann41a96212008-07-14 20:13:48 +02002954 hci_dev_lock(hdev);
2955
2956 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002957 if (!conn)
2958 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002959
Johan Hedbergccd556f2010-11-10 17:11:51 +02002960 if (!ev->status && ev->page == 0x01) {
2961 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002962
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002963 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2964 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002965 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann769be972008-07-14 20:13:49 +02002966
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002967 if (ev->features[0] & LMP_HOST_SSP)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002968 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002969 }
2970
Johan Hedbergccd556f2010-11-10 17:11:51 +02002971 if (conn->state != BT_CONFIG)
2972 goto unlock;
2973
Johan Hedberg671267b2012-05-12 16:11:50 -03002974 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002975 struct hci_cp_remote_name_req cp;
2976 memset(&cp, 0, sizeof(cp));
2977 bacpy(&cp.bdaddr, &conn->dst);
2978 cp.pscan_rep_mode = 0x02;
2979 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002980 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2981 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002982 conn->dst_type, 0, NULL, 0,
2983 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002984
Johan Hedberg127178d2010-11-18 22:22:29 +02002985 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002986 conn->state = BT_CONNECTED;
2987 hci_proto_connect_cfm(conn, ev->status);
2988 hci_conn_put(conn);
2989 }
2990
2991unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002992 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002993}
2994
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002995static void hci_sync_conn_complete_evt(struct hci_dev *hdev,
2996 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002997{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002998 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2999 struct hci_conn *conn;
3000
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003001 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003002
3003 hci_dev_lock(hdev);
3004
3005 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02003006 if (!conn) {
3007 if (ev->link_type == ESCO_LINK)
3008 goto unlock;
3009
3010 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
3011 if (!conn)
3012 goto unlock;
3013
3014 conn->type = SCO_LINK;
3015 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003016
Marcel Holtmann732547f2009-04-19 19:14:14 +02003017 switch (ev->status) {
3018 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003019 conn->handle = __le16_to_cpu(ev->handle);
3020 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02003021
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07003022 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02003023 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02003024 break;
3025
Stephen Coe705e5712010-02-16 11:29:44 -05003026 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02003027 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08003028 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02003029 case 0x1f: /* Unspecified error */
3030 if (conn->out && conn->attempt < 2) {
3031 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
3032 (hdev->esco_type & EDR_ESCO_MASK);
3033 hci_setup_sync(conn, conn->link->handle);
3034 goto unlock;
3035 }
3036 /* fall through */
3037
3038 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003039 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02003040 break;
3041 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003042
3043 hci_proto_connect_cfm(conn, ev->status);
3044 if (ev->status)
3045 hci_conn_del(conn);
3046
3047unlock:
3048 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003049}
3050
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003051static void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003052{
3053 BT_DBG("%s", hdev->name);
3054}
3055
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003056static void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02003057{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003058 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02003059
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003060 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003061}
3062
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003063static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
3064 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003065{
3066 struct inquiry_data data;
3067 struct extended_inquiry_info *info = (void *) (skb->data + 1);
3068 int num_rsp = *((__u8 *) skb->data);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303069 size_t eir_len;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003070
3071 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
3072
3073 if (!num_rsp)
3074 return;
3075
Andre Guedes1519cc12012-03-21 00:03:38 -03003076 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
3077 return;
3078
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003079 hci_dev_lock(hdev);
3080
Johan Hedberge17acd42011-03-30 23:57:16 +03003081 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003082 bool name_known, ssp;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003083
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003084 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01003085 data.pscan_rep_mode = info->pscan_rep_mode;
3086 data.pscan_period_mode = info->pscan_period_mode;
3087 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003088 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01003089 data.clock_offset = info->clock_offset;
3090 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003091 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003092
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003093 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02003094 name_known = eir_has_data_type(info->data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003095 sizeof(info->data),
3096 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003097 else
3098 name_known = true;
3099
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003100 name_known = hci_inquiry_cache_update(hdev, &data, name_known,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003101 &ssp);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303102 eir_len = eir_get_length(info->data, sizeof(info->data));
Johan Hedberg48264f02011-11-09 13:58:58 +02003103 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003104 info->dev_class, info->rssi, !name_known,
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303105 ssp, info->data, eir_len);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003106 }
3107
3108 hci_dev_unlock(hdev);
3109}
3110
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003111static void hci_key_refresh_complete_evt(struct hci_dev *hdev,
3112 struct sk_buff *skb)
3113{
3114 struct hci_ev_key_refresh_complete *ev = (void *) skb->data;
3115 struct hci_conn *conn;
3116
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003117 BT_DBG("%s status 0x%2.2x handle 0x%4.4x", hdev->name, ev->status,
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003118 __le16_to_cpu(ev->handle));
3119
3120 hci_dev_lock(hdev);
3121
3122 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3123 if (!conn)
3124 goto unlock;
3125
3126 if (!ev->status)
3127 conn->sec_level = conn->pending_sec_level;
3128
3129 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3130
3131 if (ev->status && conn->state == BT_CONNECTED) {
3132 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
3133 hci_conn_put(conn);
3134 goto unlock;
3135 }
3136
3137 if (conn->state == BT_CONFIG) {
3138 if (!ev->status)
3139 conn->state = BT_CONNECTED;
3140
3141 hci_proto_connect_cfm(conn, ev->status);
3142 hci_conn_put(conn);
3143 } else {
3144 hci_auth_cfm(conn, ev->status);
3145
3146 hci_conn_hold(conn);
3147 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
3148 hci_conn_put(conn);
3149 }
3150
3151unlock:
3152 hci_dev_unlock(hdev);
3153}
3154
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003155static u8 hci_get_auth_req(struct hci_conn *conn)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003156{
3157 /* If remote requests dedicated bonding follow that lead */
3158 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
3159 /* If both remote and local IO capabilities allow MITM
3160 * protection then require it, otherwise don't */
3161 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
3162 return 0x02;
3163 else
3164 return 0x03;
3165 }
3166
3167 /* If remote requests no-bonding follow that lead */
3168 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02003169 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003170
3171 return conn->auth_type;
3172}
3173
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003174static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003175{
3176 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3177 struct hci_conn *conn;
3178
3179 BT_DBG("%s", hdev->name);
3180
3181 hci_dev_lock(hdev);
3182
3183 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003184 if (!conn)
3185 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003186
Johan Hedberg03b555e2011-01-04 15:40:05 +02003187 hci_conn_hold(conn);
3188
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003189 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003190 goto unlock;
3191
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003192 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Gustavo Padovan807deac2012-05-17 00:36:24 -03003193 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003194 struct hci_cp_io_capability_reply cp;
3195
3196 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303197 /* Change the IO capability from KeyboardDisplay
3198 * to DisplayYesNo as it is not supported by BT spec. */
3199 cp.capability = (conn->io_capability == 0x04) ?
3200 0x01 : conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07003201 conn->auth_type = hci_get_auth_req(conn);
3202 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003203
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003204 if (hci_find_remote_oob_data(hdev, &conn->dst) &&
3205 (conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)))
Szymon Jancce85ee12011-03-22 13:12:23 +01003206 cp.oob_data = 0x01;
3207 else
3208 cp.oob_data = 0x00;
3209
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003210 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003211 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003212 } else {
3213 struct hci_cp_io_capability_neg_reply cp;
3214
3215 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003216 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003217
3218 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003219 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003220 }
3221
3222unlock:
3223 hci_dev_unlock(hdev);
3224}
3225
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003226static void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
Johan Hedberg03b555e2011-01-04 15:40:05 +02003227{
3228 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3229 struct hci_conn *conn;
3230
3231 BT_DBG("%s", hdev->name);
3232
3233 hci_dev_lock(hdev);
3234
3235 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3236 if (!conn)
3237 goto unlock;
3238
Johan Hedberg03b555e2011-01-04 15:40:05 +02003239 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003240 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003241 if (ev->oob_data)
3242 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003243
3244unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003245 hci_dev_unlock(hdev);
3246}
3247
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003248static void hci_user_confirm_request_evt(struct hci_dev *hdev,
3249 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03003250{
3251 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003252 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003253 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003254
3255 BT_DBG("%s", hdev->name);
3256
3257 hci_dev_lock(hdev);
3258
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003259 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003260 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003261
Johan Hedberg7a828902011-04-28 11:28:53 -07003262 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3263 if (!conn)
3264 goto unlock;
3265
3266 loc_mitm = (conn->auth_type & 0x01);
3267 rem_mitm = (conn->remote_auth & 0x01);
3268
3269 /* If we require MITM but the remote device can't provide that
3270 * (it has NoInputNoOutput) then reject the confirmation
3271 * request. The only exception is when we're dedicated bonding
3272 * initiators (connect_cfm_cb set) since then we always have the MITM
3273 * bit set. */
3274 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
3275 BT_DBG("Rejecting request: remote device can't provide MITM");
3276 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003277 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003278 goto unlock;
3279 }
3280
3281 /* If no side requires MITM protection; auto-accept */
3282 if ((!loc_mitm || conn->remote_cap == 0x03) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03003283 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003284
3285 /* If we're not the initiators request authorization to
3286 * proceed from user space (mgmt_user_confirm with
3287 * confirm_hint set to 1). */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003288 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003289 BT_DBG("Confirming auto-accept as acceptor");
3290 confirm_hint = 1;
3291 goto confirm;
3292 }
3293
Johan Hedberg9f616562011-04-28 11:28:54 -07003294 BT_DBG("Auto-accept of user confirmation with %ums delay",
Gustavo Padovan807deac2012-05-17 00:36:24 -03003295 hdev->auto_accept_delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003296
3297 if (hdev->auto_accept_delay > 0) {
3298 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
3299 mod_timer(&conn->auto_accept_timer, jiffies + delay);
3300 goto unlock;
3301 }
3302
Johan Hedberg7a828902011-04-28 11:28:53 -07003303 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003304 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003305 goto unlock;
3306 }
3307
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003308confirm:
Johan Hedberg272d90d2012-02-09 15:26:12 +02003309 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003310 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003311
3312unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003313 hci_dev_unlock(hdev);
3314}
3315
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003316static void hci_user_passkey_request_evt(struct hci_dev *hdev,
3317 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08003318{
3319 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3320
3321 BT_DBG("%s", hdev->name);
3322
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003323 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003324 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003325}
3326
Johan Hedberg92a25252012-09-06 18:39:26 +03003327static void hci_user_passkey_notify_evt(struct hci_dev *hdev,
3328 struct sk_buff *skb)
3329{
3330 struct hci_ev_user_passkey_notify *ev = (void *) skb->data;
3331 struct hci_conn *conn;
3332
3333 BT_DBG("%s", hdev->name);
3334
3335 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3336 if (!conn)
3337 return;
3338
3339 conn->passkey_notify = __le32_to_cpu(ev->passkey);
3340 conn->passkey_entered = 0;
3341
3342 if (test_bit(HCI_MGMT, &hdev->dev_flags))
3343 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
3344 conn->dst_type, conn->passkey_notify,
3345 conn->passkey_entered);
3346}
3347
3348static void hci_keypress_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
3349{
3350 struct hci_ev_keypress_notify *ev = (void *) skb->data;
3351 struct hci_conn *conn;
3352
3353 BT_DBG("%s", hdev->name);
3354
3355 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3356 if (!conn)
3357 return;
3358
3359 switch (ev->type) {
3360 case HCI_KEYPRESS_STARTED:
3361 conn->passkey_entered = 0;
3362 return;
3363
3364 case HCI_KEYPRESS_ENTERED:
3365 conn->passkey_entered++;
3366 break;
3367
3368 case HCI_KEYPRESS_ERASED:
3369 conn->passkey_entered--;
3370 break;
3371
3372 case HCI_KEYPRESS_CLEARED:
3373 conn->passkey_entered = 0;
3374 break;
3375
3376 case HCI_KEYPRESS_COMPLETED:
3377 return;
3378 }
3379
3380 if (test_bit(HCI_MGMT, &hdev->dev_flags))
3381 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
3382 conn->dst_type, conn->passkey_notify,
3383 conn->passkey_entered);
3384}
3385
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003386static void hci_simple_pair_complete_evt(struct hci_dev *hdev,
3387 struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003388{
3389 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3390 struct hci_conn *conn;
3391
3392 BT_DBG("%s", hdev->name);
3393
3394 hci_dev_lock(hdev);
3395
3396 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003397 if (!conn)
3398 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003399
Johan Hedberg2a611692011-02-19 12:06:00 -03003400 /* To avoid duplicate auth_failed events to user space we check
3401 * the HCI_CONN_AUTH_PEND flag which will be set if we
3402 * initiated the authentication. A traditional auth_complete
3403 * event gets always produced as initiator and is also mapped to
3404 * the mgmt_auth_failed event */
Mikel Astizfa1bd912012-08-09 09:52:29 +02003405 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status)
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003406 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003407 ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003408
3409 hci_conn_put(conn);
3410
3411unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003412 hci_dev_unlock(hdev);
3413}
3414
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003415static void hci_remote_host_features_evt(struct hci_dev *hdev,
3416 struct sk_buff *skb)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003417{
3418 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3419 struct inquiry_entry *ie;
3420
3421 BT_DBG("%s", hdev->name);
3422
3423 hci_dev_lock(hdev);
3424
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003425 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3426 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003427 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003428
3429 hci_dev_unlock(hdev);
3430}
3431
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003432static void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3433 struct sk_buff *skb)
Szymon Janc2763eda2011-03-22 13:12:22 +01003434{
3435 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3436 struct oob_data *data;
3437
3438 BT_DBG("%s", hdev->name);
3439
3440 hci_dev_lock(hdev);
3441
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003442 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003443 goto unlock;
3444
Szymon Janc2763eda2011-03-22 13:12:22 +01003445 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3446 if (data) {
3447 struct hci_cp_remote_oob_data_reply cp;
3448
3449 bacpy(&cp.bdaddr, &ev->bdaddr);
3450 memcpy(cp.hash, data->hash, sizeof(cp.hash));
3451 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
3452
3453 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003454 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003455 } else {
3456 struct hci_cp_remote_oob_data_neg_reply cp;
3457
3458 bacpy(&cp.bdaddr, &ev->bdaddr);
3459 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003460 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003461 }
3462
Szymon Jance1ba1f12011-04-06 13:01:59 +02003463unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003464 hci_dev_unlock(hdev);
3465}
3466
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003467static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003468{
3469 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3470 struct hci_conn *conn;
3471
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003472 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03003473
3474 hci_dev_lock(hdev);
3475
Andre Guedesb47a09b2012-07-27 15:10:15 -03003476 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Ville Tervob62f3282011-02-10 22:38:50 -03003477 if (!conn) {
3478 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3479 if (!conn) {
3480 BT_ERR("No memory for new connection");
Andre Guedes230fd162012-07-27 15:10:10 -03003481 goto unlock;
Ville Tervob62f3282011-02-10 22:38:50 -03003482 }
Andre Guedes29b79882011-05-31 14:20:54 -03003483
3484 conn->dst_type = ev->bdaddr_type;
Andre Guedesb9b343d2012-07-27 15:10:11 -03003485
3486 if (ev->role == LE_CONN_ROLE_MASTER) {
3487 conn->out = true;
3488 conn->link_mode |= HCI_LM_MASTER;
3489 }
Ville Tervob62f3282011-02-10 22:38:50 -03003490 }
Ville Tervofcd89c02011-02-10 22:38:47 -03003491
Andre Guedescd17dec2012-07-27 15:10:16 -03003492 if (ev->status) {
3493 mgmt_connect_failed(hdev, &conn->dst, conn->type,
3494 conn->dst_type, ev->status);
3495 hci_proto_connect_cfm(conn, ev->status);
3496 conn->state = BT_CLOSED;
3497 hci_conn_del(conn);
3498 goto unlock;
3499 }
3500
Johan Hedbergb644ba32012-01-17 21:48:47 +02003501 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3502 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003503 conn->dst_type, 0, NULL, 0, NULL);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03003504
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03003505 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03003506 conn->handle = __le16_to_cpu(ev->handle);
3507 conn->state = BT_CONNECTED;
3508
3509 hci_conn_hold_device(conn);
3510 hci_conn_add_sysfs(conn);
3511
3512 hci_proto_connect_cfm(conn, ev->status);
3513
3514unlock:
3515 hci_dev_unlock(hdev);
3516}
3517
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003518static void hci_le_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andre Guedes9aa04c92011-05-26 16:23:51 -03003519{
Andre Guedese95beb42011-09-26 20:48:35 -03003520 u8 num_reports = skb->data[0];
3521 void *ptr = &skb->data[1];
Andre Guedes3c9e9192012-01-10 18:20:50 -03003522 s8 rssi;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003523
3524 hci_dev_lock(hdev);
3525
Andre Guedese95beb42011-09-26 20:48:35 -03003526 while (num_reports--) {
3527 struct hci_ev_le_advertising_info *ev = ptr;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003528
Andre Guedes3c9e9192012-01-10 18:20:50 -03003529 rssi = ev->data[ev->length];
3530 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003531 NULL, rssi, 0, 1, ev->data, ev->length);
Andre Guedes3c9e9192012-01-10 18:20:50 -03003532
Andre Guedese95beb42011-09-26 20:48:35 -03003533 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003534 }
3535
3536 hci_dev_unlock(hdev);
3537}
3538
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003539static void hci_le_ltk_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003540{
3541 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3542 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003543 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003544 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003545 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003546
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003547 BT_DBG("%s handle 0x%4.4x", hdev->name, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003548
3549 hci_dev_lock(hdev);
3550
3551 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003552 if (conn == NULL)
3553 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003554
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003555 ltk = hci_find_ltk(hdev, ev->ediv, ev->random);
3556 if (ltk == NULL)
3557 goto not_found;
3558
3559 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003560 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003561
3562 if (ltk->authenticated)
3563 conn->sec_level = BT_SECURITY_HIGH;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003564
3565 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3566
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003567 if (ltk->type & HCI_SMP_STK) {
3568 list_del(&ltk->list);
3569 kfree(ltk);
3570 }
3571
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003572 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003573
3574 return;
3575
3576not_found:
3577 neg.handle = ev->handle;
3578 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3579 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003580}
3581
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003582static void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003583{
3584 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3585
3586 skb_pull(skb, sizeof(*le_ev));
3587
3588 switch (le_ev->subevent) {
3589 case HCI_EV_LE_CONN_COMPLETE:
3590 hci_le_conn_complete_evt(hdev, skb);
3591 break;
3592
Andre Guedes9aa04c92011-05-26 16:23:51 -03003593 case HCI_EV_LE_ADVERTISING_REPORT:
3594 hci_le_adv_report_evt(hdev, skb);
3595 break;
3596
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003597 case HCI_EV_LE_LTK_REQ:
3598 hci_le_ltk_request_evt(hdev, skb);
3599 break;
3600
Ville Tervofcd89c02011-02-10 22:38:47 -03003601 default:
3602 break;
3603 }
3604}
3605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3607{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003608 struct hci_event_hdr *hdr = (void *) skb->data;
3609 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3612
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003613 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 case HCI_EV_INQUIRY_COMPLETE:
3615 hci_inquiry_complete_evt(hdev, skb);
3616 break;
3617
3618 case HCI_EV_INQUIRY_RESULT:
3619 hci_inquiry_result_evt(hdev, skb);
3620 break;
3621
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003622 case HCI_EV_CONN_COMPLETE:
3623 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02003624 break;
3625
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 case HCI_EV_CONN_REQUEST:
3627 hci_conn_request_evt(hdev, skb);
3628 break;
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 case HCI_EV_DISCONN_COMPLETE:
3631 hci_disconn_complete_evt(hdev, skb);
3632 break;
3633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 case HCI_EV_AUTH_COMPLETE:
3635 hci_auth_complete_evt(hdev, skb);
3636 break;
3637
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003638 case HCI_EV_REMOTE_NAME:
3639 hci_remote_name_evt(hdev, skb);
3640 break;
3641
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 case HCI_EV_ENCRYPT_CHANGE:
3643 hci_encrypt_change_evt(hdev, skb);
3644 break;
3645
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003646 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3647 hci_change_link_key_complete_evt(hdev, skb);
3648 break;
3649
3650 case HCI_EV_REMOTE_FEATURES:
3651 hci_remote_features_evt(hdev, skb);
3652 break;
3653
3654 case HCI_EV_REMOTE_VERSION:
3655 hci_remote_version_evt(hdev, skb);
3656 break;
3657
3658 case HCI_EV_QOS_SETUP_COMPLETE:
3659 hci_qos_setup_complete_evt(hdev, skb);
3660 break;
3661
3662 case HCI_EV_CMD_COMPLETE:
3663 hci_cmd_complete_evt(hdev, skb);
3664 break;
3665
3666 case HCI_EV_CMD_STATUS:
3667 hci_cmd_status_evt(hdev, skb);
3668 break;
3669
3670 case HCI_EV_ROLE_CHANGE:
3671 hci_role_change_evt(hdev, skb);
3672 break;
3673
3674 case HCI_EV_NUM_COMP_PKTS:
3675 hci_num_comp_pkts_evt(hdev, skb);
3676 break;
3677
3678 case HCI_EV_MODE_CHANGE:
3679 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 break;
3681
3682 case HCI_EV_PIN_CODE_REQ:
3683 hci_pin_code_request_evt(hdev, skb);
3684 break;
3685
3686 case HCI_EV_LINK_KEY_REQ:
3687 hci_link_key_request_evt(hdev, skb);
3688 break;
3689
3690 case HCI_EV_LINK_KEY_NOTIFY:
3691 hci_link_key_notify_evt(hdev, skb);
3692 break;
3693
3694 case HCI_EV_CLOCK_OFFSET:
3695 hci_clock_offset_evt(hdev, skb);
3696 break;
3697
Marcel Holtmanna8746412008-07-14 20:13:46 +02003698 case HCI_EV_PKT_TYPE_CHANGE:
3699 hci_pkt_type_change_evt(hdev, skb);
3700 break;
3701
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003702 case HCI_EV_PSCAN_REP_MODE:
3703 hci_pscan_rep_mode_evt(hdev, skb);
3704 break;
3705
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003706 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3707 hci_inquiry_result_with_rssi_evt(hdev, skb);
3708 break;
3709
3710 case HCI_EV_REMOTE_EXT_FEATURES:
3711 hci_remote_ext_features_evt(hdev, skb);
3712 break;
3713
3714 case HCI_EV_SYNC_CONN_COMPLETE:
3715 hci_sync_conn_complete_evt(hdev, skb);
3716 break;
3717
3718 case HCI_EV_SYNC_CONN_CHANGED:
3719 hci_sync_conn_changed_evt(hdev, skb);
3720 break;
3721
Marcel Holtmann04837f62006-07-03 10:02:33 +02003722 case HCI_EV_SNIFF_SUBRATE:
3723 hci_sniff_subrate_evt(hdev, skb);
3724 break;
3725
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003726 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3727 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 break;
3729
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003730 case HCI_EV_KEY_REFRESH_COMPLETE:
3731 hci_key_refresh_complete_evt(hdev, skb);
3732 break;
3733
Marcel Holtmann04936842008-07-14 20:13:48 +02003734 case HCI_EV_IO_CAPA_REQUEST:
3735 hci_io_capa_request_evt(hdev, skb);
3736 break;
3737
Johan Hedberg03b555e2011-01-04 15:40:05 +02003738 case HCI_EV_IO_CAPA_REPLY:
3739 hci_io_capa_reply_evt(hdev, skb);
3740 break;
3741
Johan Hedberga5c29682011-02-19 12:05:57 -03003742 case HCI_EV_USER_CONFIRM_REQUEST:
3743 hci_user_confirm_request_evt(hdev, skb);
3744 break;
3745
Brian Gix1143d452011-11-23 08:28:34 -08003746 case HCI_EV_USER_PASSKEY_REQUEST:
3747 hci_user_passkey_request_evt(hdev, skb);
3748 break;
3749
Johan Hedberg92a25252012-09-06 18:39:26 +03003750 case HCI_EV_USER_PASSKEY_NOTIFY:
3751 hci_user_passkey_notify_evt(hdev, skb);
3752 break;
3753
3754 case HCI_EV_KEYPRESS_NOTIFY:
3755 hci_keypress_notify_evt(hdev, skb);
3756 break;
3757
Marcel Holtmann04936842008-07-14 20:13:48 +02003758 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3759 hci_simple_pair_complete_evt(hdev, skb);
3760 break;
3761
Marcel Holtmann41a96212008-07-14 20:13:48 +02003762 case HCI_EV_REMOTE_HOST_FEATURES:
3763 hci_remote_host_features_evt(hdev, skb);
3764 break;
3765
Ville Tervofcd89c02011-02-10 22:38:47 -03003766 case HCI_EV_LE_META:
3767 hci_le_meta_evt(hdev, skb);
3768 break;
3769
Szymon Janc2763eda2011-03-22 13:12:22 +01003770 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3771 hci_remote_oob_data_request_evt(hdev, skb);
3772 break;
3773
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003774 case HCI_EV_NUM_COMP_BLOCKS:
3775 hci_num_comp_blocks_evt(hdev, skb);
3776 break;
3777
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003778 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003779 BT_DBG("%s event 0x%2.2x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 break;
3781 }
3782
3783 kfree_skb(skb);
3784 hdev->stat.evt_rx++;
3785}