blob: 48d730228c2fbaf39e81e3e2a9fd0ba089a3de42 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/* Handle HCI Event packets */
35
Marcel Holtmanna9de9242007-10-20 13:33:56 +020036static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020038 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030040 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Andre Guedese6d465c2011-11-09 17:14:26 -030042 if (status) {
43 hci_dev_lock(hdev);
44 mgmt_stop_discovery_failed(hdev, status);
45 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020046 return;
Andre Guedese6d465c2011-11-09 17:14:26 -030047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Andre Guedes89352e72011-11-04 14:16:53 -030049 clear_bit(HCI_INQUIRY, &hdev->flags);
50
Johan Hedberg56e5cb82011-11-08 20:40:16 +020051 hci_dev_lock(hdev);
Johan Hedbergff9ef572012-01-04 14:23:45 +020052 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Johan Hedberg56e5cb82011-11-08 20:40:16 +020053 hci_dev_unlock(hdev);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010054
Johan Hedberg23bb5762010-12-21 23:01:27 +020055 hci_req_complete(hdev, HCI_OP_INQUIRY_CANCEL, status);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010056
Marcel Holtmanna9de9242007-10-20 13:33:56 +020057 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
Andre Guedes4d934832012-03-21 00:03:35 -030060static void hci_cc_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
61{
62 __u8 status = *((__u8 *) skb->data);
63
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030064 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesae854a72012-03-21 00:03:36 -030065
66 if (status)
67 return;
68
69 set_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
Andre Guedes4d934832012-03-21 00:03:35 -030070}
71
Marcel Holtmanna9de9242007-10-20 13:33:56 +020072static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020074 __u8 status = *((__u8 *) skb->data);
75
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030076 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020077
78 if (status)
79 return;
80
Andre Guedesae854a72012-03-21 00:03:36 -030081 clear_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
82
Marcel Holtmanna9de9242007-10-20 13:33:56 +020083 hci_conn_check_pending(hdev);
84}
85
Gustavo Padovan807deac2012-05-17 00:36:24 -030086static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev,
87 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +020088{
89 BT_DBG("%s", hdev->name);
90}
91
92static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
93{
94 struct hci_rp_role_discovery *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030097 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Marcel Holtmanna9de9242007-10-20 13:33:56 +020099 if (rp->status)
100 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200102 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200104 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
105 if (conn) {
106 if (rp->role)
107 conn->link_mode &= ~HCI_LM_MASTER;
108 else
109 conn->link_mode |= HCI_LM_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200111
112 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200115static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
116{
117 struct hci_rp_read_link_policy *rp = (void *) skb->data;
118 struct hci_conn *conn;
119
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300120 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200121
122 if (rp->status)
123 return;
124
125 hci_dev_lock(hdev);
126
127 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
128 if (conn)
129 conn->link_policy = __le16_to_cpu(rp->policy);
130
131 hci_dev_unlock(hdev);
132}
133
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200134static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200136 struct hci_rp_write_link_policy *rp = (void *) skb->data;
137 struct hci_conn *conn;
138 void *sent;
139
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300140 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200141
142 if (rp->status)
143 return;
144
145 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
146 if (!sent)
147 return;
148
149 hci_dev_lock(hdev);
150
151 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200152 if (conn)
Harvey Harrison83985312008-05-02 16:25:46 -0700153 conn->link_policy = get_unaligned_le16(sent + 2);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200154
155 hci_dev_unlock(hdev);
156}
157
Gustavo Padovan807deac2012-05-17 00:36:24 -0300158static void hci_cc_read_def_link_policy(struct hci_dev *hdev,
159 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200160{
161 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
162
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300163 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200164
165 if (rp->status)
166 return;
167
168 hdev->link_policy = __le16_to_cpu(rp->policy);
169}
170
Gustavo Padovan807deac2012-05-17 00:36:24 -0300171static void hci_cc_write_def_link_policy(struct hci_dev *hdev,
172 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200173{
174 __u8 status = *((__u8 *) skb->data);
175 void *sent;
176
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300177 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200178
179 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
180 if (!sent)
181 return;
182
183 if (!status)
184 hdev->link_policy = get_unaligned_le16(sent);
185
Johan Hedberg23bb5762010-12-21 23:01:27 +0200186 hci_req_complete(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200187}
188
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200189static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
190{
191 __u8 status = *((__u8 *) skb->data);
192
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300193 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200194
Gustavo F. Padovan10572132011-03-16 15:36:29 -0300195 clear_bit(HCI_RESET, &hdev->flags);
196
Johan Hedberg23bb5762010-12-21 23:01:27 +0200197 hci_req_complete(hdev, HCI_OP_RESET, status);
Andre Guedesd23264a2011-11-25 20:53:38 -0300198
Johan Hedberga297e972012-02-21 17:55:47 +0200199 /* Reset all non-persistent flags */
Andre Guedesae854a72012-03-21 00:03:36 -0300200 hdev->dev_flags &= ~(BIT(HCI_LE_SCAN) | BIT(HCI_PENDING_CLASS) |
201 BIT(HCI_PERIODIC_INQ));
Andre Guedes69775ff2012-02-23 16:50:05 +0200202
203 hdev->discovery.state = DISCOVERY_STOPPED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200204}
205
206static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
207{
208 __u8 status = *((__u8 *) skb->data);
209 void *sent;
210
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300211 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200212
213 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
214 if (!sent)
215 return;
216
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200217 hci_dev_lock(hdev);
218
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200219 if (test_bit(HCI_MGMT, &hdev->dev_flags))
220 mgmt_set_local_name_complete(hdev, sent, status);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +0200221 else if (!status)
222 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200223
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200224 hci_dev_unlock(hdev);
Johan Hedberg3159d382012-02-24 13:47:56 +0200225
226 hci_req_complete(hdev, HCI_OP_WRITE_LOCAL_NAME, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200227}
228
229static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
230{
231 struct hci_rp_read_local_name *rp = (void *) skb->data;
232
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300233 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200234
235 if (rp->status)
236 return;
237
Johan Hedbergdb99b5f2012-02-22 20:14:22 +0200238 if (test_bit(HCI_SETUP, &hdev->dev_flags))
239 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200240}
241
242static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
243{
244 __u8 status = *((__u8 *) skb->data);
245 void *sent;
246
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300247 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200248
249 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
250 if (!sent)
251 return;
252
253 if (!status) {
254 __u8 param = *((__u8 *) sent);
255
256 if (param == AUTH_ENABLED)
257 set_bit(HCI_AUTH, &hdev->flags);
258 else
259 clear_bit(HCI_AUTH, &hdev->flags);
260 }
261
Johan Hedberg33ef95e2012-02-16 23:56:27 +0200262 if (test_bit(HCI_MGMT, &hdev->dev_flags))
263 mgmt_auth_enable_complete(hdev, status);
264
Johan Hedberg23bb5762010-12-21 23:01:27 +0200265 hci_req_complete(hdev, HCI_OP_WRITE_AUTH_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200266}
267
268static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
269{
270 __u8 status = *((__u8 *) skb->data);
271 void *sent;
272
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300273 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200274
275 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
276 if (!sent)
277 return;
278
279 if (!status) {
280 __u8 param = *((__u8 *) sent);
281
282 if (param)
283 set_bit(HCI_ENCRYPT, &hdev->flags);
284 else
285 clear_bit(HCI_ENCRYPT, &hdev->flags);
286 }
287
Johan Hedberg23bb5762010-12-21 23:01:27 +0200288 hci_req_complete(hdev, HCI_OP_WRITE_ENCRYPT_MODE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200289}
290
291static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
292{
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200293 __u8 param, status = *((__u8 *) skb->data);
294 int old_pscan, old_iscan;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200295 void *sent;
296
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300297 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200298
299 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
300 if (!sent)
301 return;
302
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200303 param = *((__u8 *) sent);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200304
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200305 hci_dev_lock(hdev);
306
Mikel Astizfa1bd912012-08-09 09:52:29 +0200307 if (status) {
Johan Hedberg744cf192011-11-08 20:40:14 +0200308 mgmt_write_scan_failed(hdev, param, status);
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200309 hdev->discov_timeout = 0;
310 goto done;
311 }
312
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200313 old_pscan = test_and_clear_bit(HCI_PSCAN, &hdev->flags);
314 old_iscan = test_and_clear_bit(HCI_ISCAN, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200315
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200316 if (param & SCAN_INQUIRY) {
317 set_bit(HCI_ISCAN, &hdev->flags);
318 if (!old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200319 mgmt_discoverable(hdev, 1);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200320 if (hdev->discov_timeout > 0) {
321 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
322 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300323 to);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200324 }
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200325 } else if (old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200326 mgmt_discoverable(hdev, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200327
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200328 if (param & SCAN_PAGE) {
329 set_bit(HCI_PSCAN, &hdev->flags);
330 if (!old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200331 mgmt_connectable(hdev, 1);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200332 } else if (old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200333 mgmt_connectable(hdev, 0);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200334
335done:
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200336 hci_dev_unlock(hdev);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200337 hci_req_complete(hdev, HCI_OP_WRITE_SCAN_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200338}
339
340static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
341{
342 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
343
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300344 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200345
346 if (rp->status)
347 return;
348
349 memcpy(hdev->dev_class, rp->dev_class, 3);
350
351 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300352 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200353}
354
355static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
356{
357 __u8 status = *((__u8 *) skb->data);
358 void *sent;
359
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300360 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200361
362 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
363 if (!sent)
364 return;
365
Marcel Holtmann7f9a9032012-02-22 18:38:01 +0100366 hci_dev_lock(hdev);
367
368 if (status == 0)
369 memcpy(hdev->dev_class, sent, 3);
370
371 if (test_bit(HCI_MGMT, &hdev->dev_flags))
372 mgmt_set_class_of_dev_complete(hdev, sent, status);
373
374 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200375}
376
377static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
378{
379 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 __u16 setting;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200381
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300382 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200383
384 if (rp->status)
385 return;
386
387 setting = __le16_to_cpu(rp->voice_setting);
388
Marcel Holtmannf383f272008-07-14 20:13:47 +0200389 if (hdev->voice_setting == setting)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200390 return;
391
392 hdev->voice_setting = setting;
393
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300394 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200395
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200396 if (hdev->notify)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200397 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200398}
399
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300400static void hci_cc_write_voice_setting(struct hci_dev *hdev,
401 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200402{
403 __u8 status = *((__u8 *) skb->data);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200404 __u16 setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 void *sent;
406
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300407 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Marcel Holtmannf383f272008-07-14 20:13:47 +0200409 if (status)
410 return;
411
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200412 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
413 if (!sent)
414 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Marcel Holtmannf383f272008-07-14 20:13:47 +0200416 setting = get_unaligned_le16(sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Marcel Holtmannf383f272008-07-14 20:13:47 +0200418 if (hdev->voice_setting == setting)
419 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Marcel Holtmannf383f272008-07-14 20:13:47 +0200421 hdev->voice_setting = setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300423 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200424
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200425 if (hdev->notify)
Marcel Holtmannf383f272008-07-14 20:13:47 +0200426 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200429static void hci_cc_host_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200431 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300433 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Johan Hedberg23bb5762010-12-21 23:01:27 +0200435 hci_req_complete(hdev, HCI_OP_HOST_BUFFER_SIZE, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Marcel Holtmann333140b2008-07-14 20:13:48 +0200438static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
439{
440 __u8 status = *((__u8 *) skb->data);
441 void *sent;
442
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300443 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200444
Marcel Holtmann333140b2008-07-14 20:13:48 +0200445 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
446 if (!sent)
447 return;
448
Johan Hedberged2c4ee2012-02-17 00:56:28 +0200449 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedbergc0ecddc2012-02-22 12:38:31 +0200450 mgmt_ssp_enable_complete(hdev, *((u8 *) sent), status);
451 else if (!status) {
452 if (*((u8 *) sent))
453 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
454 else
455 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
456 }
Marcel Holtmann333140b2008-07-14 20:13:48 +0200457}
458
Johan Hedbergd5859e22011-01-25 01:19:58 +0200459static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
460{
461 if (hdev->features[6] & LMP_EXT_INQ)
462 return 2;
463
464 if (hdev->features[3] & LMP_RSSI_INQ)
465 return 1;
466
467 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -0300468 hdev->lmp_subver == 0x0757)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200469 return 1;
470
471 if (hdev->manufacturer == 15) {
472 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
473 return 1;
474 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
475 return 1;
476 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
477 return 1;
478 }
479
480 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -0300481 hdev->lmp_subver == 0x1805)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200482 return 1;
483
484 return 0;
485}
486
487static void hci_setup_inquiry_mode(struct hci_dev *hdev)
488{
489 u8 mode;
490
491 mode = hci_get_inquiry_mode(hdev);
492
493 hci_send_cmd(hdev, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
494}
495
496static void hci_setup_event_mask(struct hci_dev *hdev)
497{
498 /* The second byte is 0xff instead of 0x9f (two reserved bits
499 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
500 * command otherwise */
501 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
502
Ville Tervo6de6c182011-05-27 11:16:21 +0300503 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
504 * any event mask for pre 1.2 devices */
Andrei Emeltchenko5a13b092011-12-01 14:33:28 +0200505 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
Ville Tervo6de6c182011-05-27 11:16:21 +0300506 return;
507
508 events[4] |= 0x01; /* Flow Specification Complete */
509 events[4] |= 0x02; /* Inquiry Result with RSSI */
510 events[4] |= 0x04; /* Read Remote Extended Features Complete */
511 events[5] |= 0x08; /* Synchronous Connection Complete */
512 events[5] |= 0x10; /* Synchronous Connection Changed */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200513
514 if (hdev->features[3] & LMP_RSSI_INQ)
Johan Hedberga24299e2012-04-26 09:47:46 +0300515 events[4] |= 0x02; /* Inquiry Result with RSSI */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200516
Andre Guedes999dcd12012-07-24 15:03:52 -0300517 if (lmp_sniffsubr_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200518 events[5] |= 0x20; /* Sniff Subrating */
519
520 if (hdev->features[5] & LMP_PAUSE_ENC)
521 events[5] |= 0x80; /* Encryption Key Refresh Complete */
522
523 if (hdev->features[6] & LMP_EXT_INQ)
524 events[5] |= 0x40; /* Extended Inquiry Result */
525
Andre Guedesc58e8102012-07-24 15:03:53 -0300526 if (lmp_no_flush_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200527 events[7] |= 0x01; /* Enhanced Flush Complete */
528
529 if (hdev->features[7] & LMP_LSTO)
530 events[6] |= 0x80; /* Link Supervision Timeout Changed */
531
Andre Guedes9a1a1992012-07-24 15:03:48 -0300532 if (lmp_ssp_capable(hdev)) {
Johan Hedbergd5859e22011-01-25 01:19:58 +0200533 events[6] |= 0x01; /* IO Capability Request */
534 events[6] |= 0x02; /* IO Capability Response */
535 events[6] |= 0x04; /* User Confirmation Request */
536 events[6] |= 0x08; /* User Passkey Request */
537 events[6] |= 0x10; /* Remote OOB Data Request */
538 events[6] |= 0x20; /* Simple Pairing Complete */
539 events[7] |= 0x04; /* User Passkey Notification */
540 events[7] |= 0x08; /* Keypress Notification */
541 events[7] |= 0x10; /* Remote Host Supported
542 * Features Notification */
543 }
544
Andre Guedesc383ddc2012-07-24 15:03:47 -0300545 if (lmp_le_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200546 events[7] |= 0x20; /* LE Meta-Event */
547
548 hci_send_cmd(hdev, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
549}
550
551static void hci_setup(struct hci_dev *hdev)
552{
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200553 if (hdev->dev_type != HCI_BREDR)
554 return;
555
Johan Hedbergd5859e22011-01-25 01:19:58 +0200556 hci_setup_event_mask(hdev);
557
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +0200558 if (hdev->hci_ver > BLUETOOTH_VER_1_1)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200559 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
560
Gustavo Padovan6d3c7302012-05-24 03:36:37 -0300561 if (lmp_ssp_capable(hdev)) {
Johan Hedberg54d04db2012-02-22 15:47:48 +0200562 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
563 u8 mode = 0x01;
564 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300565 sizeof(mode), &mode);
Johan Hedberg54d04db2012-02-22 15:47:48 +0200566 } else {
567 struct hci_cp_write_eir cp;
568
569 memset(hdev->eir, 0, sizeof(hdev->eir));
570 memset(&cp, 0, sizeof(cp));
571
572 hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
573 }
Johan Hedbergd5859e22011-01-25 01:19:58 +0200574 }
575
576 if (hdev->features[3] & LMP_RSSI_INQ)
577 hci_setup_inquiry_mode(hdev);
578
579 if (hdev->features[7] & LMP_INQ_TX_PWR)
580 hci_send_cmd(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
Andre Guedes971e3a42011-06-30 19:20:52 -0300581
582 if (hdev->features[7] & LMP_EXTFEATURES) {
583 struct hci_cp_read_local_ext_features cp;
584
585 cp.page = 0x01;
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300586 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, sizeof(cp),
587 &cp);
Andre Guedes971e3a42011-06-30 19:20:52 -0300588 }
Andre Guedese6100a22011-06-30 19:20:54 -0300589
Johan Hedberg47990ea2012-02-22 11:58:37 +0200590 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags)) {
591 u8 enable = 1;
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300592 hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(enable),
593 &enable);
Johan Hedberg47990ea2012-02-22 11:58:37 +0200594 }
Johan Hedbergd5859e22011-01-25 01:19:58 +0200595}
596
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200597static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
598{
599 struct hci_rp_read_local_version *rp = (void *) skb->data;
600
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300601 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200602
603 if (rp->status)
Andrei Emeltchenko28b8df72012-02-24 12:45:44 +0200604 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200605
606 hdev->hci_ver = rp->hci_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200607 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200608 hdev->lmp_ver = rp->lmp_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200609 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200610 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200611
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300612 BT_DBG("%s manufacturer 0x%4.4x hci ver %d:%d", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300613 hdev->manufacturer, hdev->hci_ver, hdev->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200614
615 if (test_bit(HCI_INIT, &hdev->flags))
616 hci_setup(hdev);
Andrei Emeltchenko28b8df72012-02-24 12:45:44 +0200617
618done:
619 hci_req_complete(hdev, HCI_OP_READ_LOCAL_VERSION, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200620}
621
622static void hci_setup_link_policy(struct hci_dev *hdev)
623{
Andrei Emeltchenko035100c2012-03-12 15:59:32 +0200624 struct hci_cp_write_def_link_policy cp;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200625 u16 link_policy = 0;
626
Andre Guedes9f92ebf2012-07-24 15:03:50 -0300627 if (lmp_rswitch_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200628 link_policy |= HCI_LP_RSWITCH;
629 if (hdev->features[0] & LMP_HOLD)
630 link_policy |= HCI_LP_HOLD;
Andre Guedes6eded102012-07-24 15:03:51 -0300631 if (lmp_sniff_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200632 link_policy |= HCI_LP_SNIFF;
633 if (hdev->features[1] & LMP_PARK)
634 link_policy |= HCI_LP_PARK;
635
Andrei Emeltchenko035100c2012-03-12 15:59:32 +0200636 cp.policy = cpu_to_le16(link_policy);
637 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, sizeof(cp), &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200638}
639
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300640static void hci_cc_read_local_commands(struct hci_dev *hdev,
641 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200642{
643 struct hci_rp_read_local_commands *rp = (void *) skb->data;
644
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300645 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200646
647 if (rp->status)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200648 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200649
650 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Johan Hedbergd5859e22011-01-25 01:19:58 +0200651
652 if (test_bit(HCI_INIT, &hdev->flags) && (hdev->commands[5] & 0x10))
653 hci_setup_link_policy(hdev);
654
655done:
656 hci_req_complete(hdev, HCI_OP_READ_LOCAL_COMMANDS, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200657}
658
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300659static void hci_cc_read_local_features(struct hci_dev *hdev,
660 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200661{
662 struct hci_rp_read_local_features *rp = (void *) skb->data;
663
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300664 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200665
666 if (rp->status)
667 return;
668
669 memcpy(hdev->features, rp->features, 8);
670
671 /* Adjust default settings according to features
672 * supported by device. */
673
674 if (hdev->features[0] & LMP_3SLOT)
675 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
676
677 if (hdev->features[0] & LMP_5SLOT)
678 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
679
680 if (hdev->features[1] & LMP_HV2) {
681 hdev->pkt_type |= (HCI_HV2);
682 hdev->esco_type |= (ESCO_HV2);
683 }
684
685 if (hdev->features[1] & LMP_HV3) {
686 hdev->pkt_type |= (HCI_HV3);
687 hdev->esco_type |= (ESCO_HV3);
688 }
689
Andre Guedes45db810f2012-07-24 15:03:49 -0300690 if (lmp_esco_capable(hdev))
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200691 hdev->esco_type |= (ESCO_EV3);
692
693 if (hdev->features[4] & LMP_EV4)
694 hdev->esco_type |= (ESCO_EV4);
695
696 if (hdev->features[4] & LMP_EV5)
697 hdev->esco_type |= (ESCO_EV5);
698
Marcel Holtmannefc76882009-02-06 09:13:37 +0100699 if (hdev->features[5] & LMP_EDR_ESCO_2M)
700 hdev->esco_type |= (ESCO_2EV3);
701
702 if (hdev->features[5] & LMP_EDR_ESCO_3M)
703 hdev->esco_type |= (ESCO_3EV3);
704
705 if (hdev->features[5] & LMP_EDR_3S_ESCO)
706 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
707
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200708 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300709 hdev->features[0], hdev->features[1],
710 hdev->features[2], hdev->features[3],
711 hdev->features[4], hdev->features[5],
712 hdev->features[6], hdev->features[7]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200713}
714
Johan Hedberg8f984df2012-02-28 01:07:22 +0200715static void hci_set_le_support(struct hci_dev *hdev)
716{
717 struct hci_cp_write_le_host_supported cp;
718
719 memset(&cp, 0, sizeof(cp));
720
Marcel Holtmann9d428202012-05-03 07:12:31 +0200721 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
Johan Hedberg8f984df2012-02-28 01:07:22 +0200722 cp.le = 1;
723 cp.simul = !!(hdev->features[6] & LMP_SIMUL_LE_BR);
724 }
725
726 if (cp.le != !!(hdev->host_features[0] & LMP_HOST_LE))
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300727 hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp),
728 &cp);
Johan Hedberg8f984df2012-02-28 01:07:22 +0200729}
730
Andre Guedes971e3a42011-06-30 19:20:52 -0300731static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300732 struct sk_buff *skb)
Andre Guedes971e3a42011-06-30 19:20:52 -0300733{
734 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
735
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300736 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andre Guedes971e3a42011-06-30 19:20:52 -0300737
738 if (rp->status)
Johan Hedberg8f984df2012-02-28 01:07:22 +0200739 goto done;
Andre Guedes971e3a42011-06-30 19:20:52 -0300740
Andre Guedesb5b32b62011-12-30 10:34:04 -0300741 switch (rp->page) {
742 case 0:
743 memcpy(hdev->features, rp->features, 8);
744 break;
745 case 1:
746 memcpy(hdev->host_features, rp->features, 8);
747 break;
748 }
Andre Guedes971e3a42011-06-30 19:20:52 -0300749
Andre Guedesc383ddc2012-07-24 15:03:47 -0300750 if (test_bit(HCI_INIT, &hdev->flags) && lmp_le_capable(hdev))
Johan Hedberg8f984df2012-02-28 01:07:22 +0200751 hci_set_le_support(hdev);
752
753done:
Andre Guedes971e3a42011-06-30 19:20:52 -0300754 hci_req_complete(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, rp->status);
755}
756
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200757static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300758 struct sk_buff *skb)
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200759{
760 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
761
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300762 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200763
764 if (rp->status)
765 return;
766
767 hdev->flow_ctl_mode = rp->mode;
768
769 hci_req_complete(hdev, HCI_OP_READ_FLOW_CONTROL_MODE, rp->status);
770}
771
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200772static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
773{
774 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
775
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300776 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200777
778 if (rp->status)
779 return;
780
781 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
782 hdev->sco_mtu = rp->sco_mtu;
783 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
784 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
785
786 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
787 hdev->sco_mtu = 64;
788 hdev->sco_pkts = 8;
789 }
790
791 hdev->acl_cnt = hdev->acl_pkts;
792 hdev->sco_cnt = hdev->sco_pkts;
793
Gustavo Padovan807deac2012-05-17 00:36:24 -0300794 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name, hdev->acl_mtu,
795 hdev->acl_pkts, hdev->sco_mtu, hdev->sco_pkts);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200796}
797
798static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
799{
800 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
801
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300802 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200803
804 if (!rp->status)
805 bacpy(&hdev->bdaddr, &rp->bdaddr);
806
Johan Hedberg23bb5762010-12-21 23:01:27 +0200807 hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
808}
809
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200810static void hci_cc_read_data_block_size(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300811 struct sk_buff *skb)
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200812{
813 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
814
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300815 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200816
817 if (rp->status)
818 return;
819
820 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
821 hdev->block_len = __le16_to_cpu(rp->block_len);
822 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
823
824 hdev->block_cnt = hdev->num_blocks;
825
826 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300827 hdev->block_cnt, hdev->block_len);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200828
829 hci_req_complete(hdev, HCI_OP_READ_DATA_BLOCK_SIZE, rp->status);
830}
831
Johan Hedberg23bb5762010-12-21 23:01:27 +0200832static void hci_cc_write_ca_timeout(struct hci_dev *hdev, struct sk_buff *skb)
833{
834 __u8 status = *((__u8 *) skb->data);
835
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300836 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200837
838 hci_req_complete(hdev, HCI_OP_WRITE_CA_TIMEOUT, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200839}
840
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300841static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300842 struct sk_buff *skb)
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300843{
844 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
845
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300846 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300847
848 if (rp->status)
849 return;
850
851 hdev->amp_status = rp->amp_status;
852 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
853 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
854 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
855 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
856 hdev->amp_type = rp->amp_type;
857 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
858 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
859 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
860 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
861
862 hci_req_complete(hdev, HCI_OP_READ_LOCAL_AMP_INFO, rp->status);
863}
864
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200865static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300866 struct sk_buff *skb)
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200867{
868 __u8 status = *((__u8 *) skb->data);
869
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300870 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200871
872 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
873}
874
Johan Hedbergd5859e22011-01-25 01:19:58 +0200875static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
876{
877 __u8 status = *((__u8 *) skb->data);
878
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300879 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200880
881 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
882}
883
884static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300885 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200886{
887 __u8 status = *((__u8 *) skb->data);
888
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300889 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200890
891 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
892}
893
894static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300895 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200896{
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700897 struct hci_rp_read_inq_rsp_tx_power *rp = (void *) skb->data;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200898
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300899 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200900
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700901 if (!rp->status)
902 hdev->inq_tx_power = rp->tx_power;
903
904 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200905}
906
907static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
908{
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 Hedbergd5859e22011-01-25 01:19:58 +0200912
913 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
914}
915
Johan Hedberg980e1a52011-01-22 06:10:07 +0200916static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
917{
918 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
919 struct hci_cp_pin_code_reply *cp;
920 struct hci_conn *conn;
921
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300922 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200923
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200924 hci_dev_lock(hdev);
925
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200926 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200927 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200928
Mikel Astizfa1bd912012-08-09 09:52:29 +0200929 if (rp->status)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200930 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200931
932 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
933 if (!cp)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200934 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200935
936 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
937 if (conn)
938 conn->pin_length = cp->pin_len;
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200939
940unlock:
941 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200942}
943
944static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
945{
946 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
947
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300948 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200949
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200950 hci_dev_lock(hdev);
951
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200952 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200953 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300954 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200955
956 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200957}
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200958
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300959static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
960 struct sk_buff *skb)
961{
962 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
963
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300964 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300965
966 if (rp->status)
967 return;
968
969 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
970 hdev->le_pkts = rp->le_max_pkt;
971
972 hdev->le_cnt = hdev->le_pkts;
973
974 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
975
976 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
977}
Johan Hedberg980e1a52011-01-22 06:10:07 +0200978
Johan Hedberga5c29682011-02-19 12:05:57 -0300979static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
980{
981 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
982
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300983 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -0300984
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200985 hci_dev_lock(hdev);
986
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200987 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300988 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK, 0,
989 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200990
991 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300992}
993
994static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300995 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -0300996{
997 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
998
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300999 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -03001000
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001001 hci_dev_lock(hdev);
1002
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001003 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001004 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001005 ACL_LINK, 0, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001006
1007 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03001008}
1009
Brian Gix1143d452011-11-23 08:28:34 -08001010static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
1011{
1012 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1013
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001014 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001015
1016 hci_dev_lock(hdev);
1017
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001018 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02001019 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001020 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001021
1022 hci_dev_unlock(hdev);
1023}
1024
1025static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001026 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08001027{
1028 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1029
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001030 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001031
1032 hci_dev_lock(hdev);
1033
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001034 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Brian Gix1143d452011-11-23 08:28:34 -08001035 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001036 ACL_LINK, 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001037
1038 hci_dev_unlock(hdev);
1039}
1040
Szymon Jancc35938b2011-03-22 13:12:21 +01001041static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001042 struct sk_buff *skb)
Szymon Jancc35938b2011-03-22 13:12:21 +01001043{
1044 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
1045
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001046 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Szymon Jancc35938b2011-03-22 13:12:21 +01001047
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001048 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001049 mgmt_read_local_oob_data_reply_complete(hdev, rp->hash,
Szymon Jancc35938b2011-03-22 13:12:21 +01001050 rp->randomizer, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001051 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01001052}
1053
Andre Guedes07f7fa52011-12-02 21:13:31 +09001054static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1055{
1056 __u8 status = *((__u8 *) skb->data);
1057
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001058 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001059
1060 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_PARAM, status);
Andre Guedes3fd24152012-02-03 17:48:01 -03001061
1062 if (status) {
1063 hci_dev_lock(hdev);
1064 mgmt_start_discovery_failed(hdev, status);
1065 hci_dev_unlock(hdev);
1066 return;
1067 }
Andre Guedes07f7fa52011-12-02 21:13:31 +09001068}
1069
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001070static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001071 struct sk_buff *skb)
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001072{
1073 struct hci_cp_le_set_scan_enable *cp;
1074 __u8 status = *((__u8 *) skb->data);
1075
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001076 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001077
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001078 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1079 if (!cp)
1080 return;
1081
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001082 switch (cp->enable) {
1083 case LE_SCANNING_ENABLED:
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001084 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_ENABLE, status);
1085
Andre Guedes3fd24152012-02-03 17:48:01 -03001086 if (status) {
1087 hci_dev_lock(hdev);
1088 mgmt_start_discovery_failed(hdev, status);
1089 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001090 return;
Andre Guedes3fd24152012-02-03 17:48:01 -03001091 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001092
Andre Guedesd23264a2011-11-25 20:53:38 -03001093 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
1094
Andre Guedesa8f13c82011-09-09 18:56:24 -03001095 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001096 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedesa8f13c82011-09-09 18:56:24 -03001097 hci_dev_unlock(hdev);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001098 break;
1099
1100 case LE_SCANNING_DISABLED:
Andre Guedesc9ecc482012-03-15 16:52:08 -03001101 if (status) {
1102 hci_dev_lock(hdev);
1103 mgmt_stop_discovery_failed(hdev, status);
1104 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001105 return;
Andre Guedesc9ecc482012-03-15 16:52:08 -03001106 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001107
Andre Guedesd23264a2011-11-25 20:53:38 -03001108 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
1109
Andre Guedesbc3dd332012-03-06 19:37:06 -03001110 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
1111 hdev->discovery.state == DISCOVERY_FINDING) {
Andre Guedes5e0452c2012-02-17 20:39:38 -03001112 mgmt_interleaved_discovery(hdev);
1113 } else {
1114 hci_dev_lock(hdev);
1115 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1116 hci_dev_unlock(hdev);
1117 }
1118
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001119 break;
1120
1121 default:
1122 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1123 break;
Andre Guedes35815082011-05-26 16:23:53 -03001124 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001125}
1126
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001127static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
1128{
1129 struct hci_rp_le_ltk_reply *rp = (void *) skb->data;
1130
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001131 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001132
1133 if (rp->status)
1134 return;
1135
1136 hci_req_complete(hdev, HCI_OP_LE_LTK_REPLY, rp->status);
1137}
1138
1139static void hci_cc_le_ltk_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
1140{
1141 struct hci_rp_le_ltk_neg_reply *rp = (void *) skb->data;
1142
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001143 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001144
1145 if (rp->status)
1146 return;
1147
1148 hci_req_complete(hdev, HCI_OP_LE_LTK_NEG_REPLY, rp->status);
1149}
1150
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001151static void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1152 struct sk_buff *skb)
Andre Guedesf9b49302011-06-30 19:20:53 -03001153{
Johan Hedberg06199cf2012-02-22 16:37:11 +02001154 struct hci_cp_write_le_host_supported *sent;
Andre Guedesf9b49302011-06-30 19:20:53 -03001155 __u8 status = *((__u8 *) skb->data);
1156
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001157 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001158
Johan Hedberg06199cf2012-02-22 16:37:11 +02001159 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED);
Johan Hedberg8f984df2012-02-28 01:07:22 +02001160 if (!sent)
Andre Guedesf9b49302011-06-30 19:20:53 -03001161 return;
1162
Johan Hedberg8f984df2012-02-28 01:07:22 +02001163 if (!status) {
1164 if (sent->le)
1165 hdev->host_features[0] |= LMP_HOST_LE;
1166 else
1167 hdev->host_features[0] &= ~LMP_HOST_LE;
1168 }
1169
1170 if (test_bit(HCI_MGMT, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001171 !test_bit(HCI_INIT, &hdev->flags))
Johan Hedberg8f984df2012-02-28 01:07:22 +02001172 mgmt_le_enable_complete(hdev, sent->le, status);
1173
1174 hci_req_complete(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001175}
1176
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001177static void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001178{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001179 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001180
1181 if (status) {
Johan Hedberg23bb5762010-12-21 23:01:27 +02001182 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001183 hci_conn_check_pending(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001184 hci_dev_lock(hdev);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001185 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Andre Guedes7a135102011-11-09 17:14:25 -03001186 mgmt_start_discovery_failed(hdev, status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001187 hci_dev_unlock(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -04001188 return;
1189 }
1190
Andre Guedes89352e72011-11-04 14:16:53 -03001191 set_bit(HCI_INQUIRY, &hdev->flags);
1192
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001193 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001194 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001195 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001196}
1197
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001198static void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001200 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001203 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001204
1205 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (!cp)
1207 return;
1208
1209 hci_dev_lock(hdev);
1210
1211 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1212
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001213 BT_DBG("%s bdaddr %s hcon %p", hdev->name, batostr(&cp->bdaddr), conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 if (status) {
1216 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +02001217 if (status != 0x0c || conn->attempt > 2) {
1218 conn->state = BT_CLOSED;
1219 hci_proto_connect_cfm(conn, status);
1220 hci_conn_del(conn);
1221 } else
1222 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224 } else {
1225 if (!conn) {
1226 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1227 if (conn) {
Johan Hedberga0c808b2012-01-16 09:49:58 +02001228 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 conn->link_mode |= HCI_LM_MASTER;
1230 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001231 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 }
1234
1235 hci_dev_unlock(hdev);
1236}
1237
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001238static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001240 struct hci_cp_add_sco *cp;
1241 struct hci_conn *acl, *sco;
1242 __u16 handle;
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 Holtmannb6a0dc82007-10-20 14:55:10 +02001245
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001246 if (!status)
1247 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001249 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1250 if (!cp)
1251 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001253 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001255 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001256
1257 hci_dev_lock(hdev);
1258
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001259 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001260 if (acl) {
1261 sco = acl->link;
1262 if (sco) {
1263 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001264
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001265 hci_proto_connect_cfm(sco, status);
1266 hci_conn_del(sco);
1267 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001268 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001269
1270 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
Marcel Holtmannf8558552008-07-14 20:13:49 +02001273static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1274{
1275 struct hci_cp_auth_requested *cp;
1276 struct hci_conn *conn;
1277
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001278 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001279
1280 if (!status)
1281 return;
1282
1283 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1284 if (!cp)
1285 return;
1286
1287 hci_dev_lock(hdev);
1288
1289 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1290 if (conn) {
1291 if (conn->state == BT_CONFIG) {
1292 hci_proto_connect_cfm(conn, status);
1293 hci_conn_put(conn);
1294 }
1295 }
1296
1297 hci_dev_unlock(hdev);
1298}
1299
1300static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1301{
1302 struct hci_cp_set_conn_encrypt *cp;
1303 struct hci_conn *conn;
1304
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001305 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001306
1307 if (!status)
1308 return;
1309
1310 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1311 if (!cp)
1312 return;
1313
1314 hci_dev_lock(hdev);
1315
1316 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1317 if (conn) {
1318 if (conn->state == BT_CONFIG) {
1319 hci_proto_connect_cfm(conn, status);
1320 hci_conn_put(conn);
1321 }
1322 }
1323
1324 hci_dev_unlock(hdev);
1325}
1326
Johan Hedberg127178d2010-11-18 22:22:29 +02001327static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001328 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001329{
Johan Hedberg392599b2010-11-18 22:22:28 +02001330 if (conn->state != BT_CONFIG || !conn->out)
1331 return 0;
1332
Johan Hedberg765c2a92011-01-19 12:06:52 +05301333 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001334 return 0;
1335
1336 /* Only request authentication for SSP connections or non-SSP
Vinicius Costa Gomese9bf2bf2011-09-02 14:51:20 -03001337 * devices with sec_level HIGH or if MITM protection is requested */
Gustavo Padovan807deac2012-05-17 00:36:24 -03001338 if (!hci_conn_ssp_enabled(conn) && !(conn->auth_type & 0x01) &&
1339 conn->pending_sec_level != BT_SECURITY_HIGH)
Johan Hedberg392599b2010-11-18 22:22:28 +02001340 return 0;
1341
Johan Hedberg392599b2010-11-18 22:22:28 +02001342 return 1;
1343}
1344
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001345static int hci_resolve_name(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001346 struct inquiry_entry *e)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001347{
1348 struct hci_cp_remote_name_req cp;
1349
1350 memset(&cp, 0, sizeof(cp));
1351
1352 bacpy(&cp.bdaddr, &e->data.bdaddr);
1353 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1354 cp.pscan_mode = e->data.pscan_mode;
1355 cp.clock_offset = e->data.clock_offset;
1356
1357 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1358}
1359
Johan Hedbergb644ba32012-01-17 21:48:47 +02001360static bool hci_resolve_next_name(struct hci_dev *hdev)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001361{
1362 struct discovery_state *discov = &hdev->discovery;
1363 struct inquiry_entry *e;
1364
Johan Hedbergb644ba32012-01-17 21:48:47 +02001365 if (list_empty(&discov->resolve))
1366 return false;
1367
1368 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1369 if (hci_resolve_name(hdev, e) == 0) {
1370 e->name_state = NAME_PENDING;
1371 return true;
1372 }
1373
1374 return false;
1375}
1376
1377static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001378 bdaddr_t *bdaddr, u8 *name, u8 name_len)
Johan Hedbergb644ba32012-01-17 21:48:47 +02001379{
1380 struct discovery_state *discov = &hdev->discovery;
1381 struct inquiry_entry *e;
1382
1383 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001384 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00, 0, name,
1385 name_len, conn->dev_class);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001386
1387 if (discov->state == DISCOVERY_STOPPED)
1388 return;
1389
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001390 if (discov->state == DISCOVERY_STOPPING)
1391 goto discov_complete;
1392
1393 if (discov->state != DISCOVERY_RESOLVING)
1394 return;
1395
1396 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
1397 if (e) {
1398 e->name_state = NAME_KNOWN;
1399 list_del(&e->list);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001400 if (name)
1401 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001402 e->data.rssi, name, name_len);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001403 }
1404
Johan Hedbergb644ba32012-01-17 21:48:47 +02001405 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001406 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001407
1408discov_complete:
1409 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1410}
1411
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001412static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1413{
Johan Hedberg127178d2010-11-18 22:22:29 +02001414 struct hci_cp_remote_name_req *cp;
1415 struct hci_conn *conn;
1416
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001417 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001418
1419 /* If successful wait for the name req complete event before
1420 * checking for the need to do authentication */
1421 if (!status)
1422 return;
1423
1424 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1425 if (!cp)
1426 return;
1427
1428 hci_dev_lock(hdev);
1429
1430 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001431
1432 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1433 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1434
Johan Hedberg79c6c702011-04-28 11:28:55 -07001435 if (!conn)
1436 goto unlock;
1437
1438 if (!hci_outgoing_auth_needed(hdev, conn))
1439 goto unlock;
1440
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001441 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001442 struct hci_cp_auth_requested cp;
1443 cp.handle = __cpu_to_le16(conn->handle);
1444 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1445 }
1446
Johan Hedberg79c6c702011-04-28 11:28:55 -07001447unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001448 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001449}
1450
Marcel Holtmann769be972008-07-14 20:13:49 +02001451static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1452{
1453 struct hci_cp_read_remote_features *cp;
1454 struct hci_conn *conn;
1455
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001456 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001457
1458 if (!status)
1459 return;
1460
1461 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1462 if (!cp)
1463 return;
1464
1465 hci_dev_lock(hdev);
1466
1467 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1468 if (conn) {
1469 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001470 hci_proto_connect_cfm(conn, status);
1471 hci_conn_put(conn);
1472 }
1473 }
1474
1475 hci_dev_unlock(hdev);
1476}
1477
1478static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1479{
1480 struct hci_cp_read_remote_ext_features *cp;
1481 struct hci_conn *conn;
1482
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001483 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001484
1485 if (!status)
1486 return;
1487
1488 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1489 if (!cp)
1490 return;
1491
1492 hci_dev_lock(hdev);
1493
1494 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1495 if (conn) {
1496 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001497 hci_proto_connect_cfm(conn, status);
1498 hci_conn_put(conn);
1499 }
1500 }
1501
1502 hci_dev_unlock(hdev);
1503}
1504
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001505static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1506{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001507 struct hci_cp_setup_sync_conn *cp;
1508 struct hci_conn *acl, *sco;
1509 __u16 handle;
1510
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001511 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001512
1513 if (!status)
1514 return;
1515
1516 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1517 if (!cp)
1518 return;
1519
1520 handle = __le16_to_cpu(cp->handle);
1521
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001522 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001523
1524 hci_dev_lock(hdev);
1525
1526 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001527 if (acl) {
1528 sco = acl->link;
1529 if (sco) {
1530 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001531
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001532 hci_proto_connect_cfm(sco, status);
1533 hci_conn_del(sco);
1534 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001535 }
1536
1537 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001538}
1539
1540static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1541{
1542 struct hci_cp_sniff_mode *cp;
1543 struct hci_conn *conn;
1544
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001545 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001546
1547 if (!status)
1548 return;
1549
1550 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1551 if (!cp)
1552 return;
1553
1554 hci_dev_lock(hdev);
1555
1556 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001557 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001558 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001559
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001560 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001561 hci_sco_setup(conn, status);
1562 }
1563
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001564 hci_dev_unlock(hdev);
1565}
1566
1567static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1568{
1569 struct hci_cp_exit_sniff_mode *cp;
1570 struct hci_conn *conn;
1571
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001572 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001573
1574 if (!status)
1575 return;
1576
1577 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1578 if (!cp)
1579 return;
1580
1581 hci_dev_lock(hdev);
1582
1583 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001584 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001585 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001586
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001587 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001588 hci_sco_setup(conn, status);
1589 }
1590
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001591 hci_dev_unlock(hdev);
1592}
1593
Johan Hedberg88c3df12012-02-09 14:27:38 +02001594static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1595{
1596 struct hci_cp_disconnect *cp;
1597 struct hci_conn *conn;
1598
1599 if (!status)
1600 return;
1601
1602 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
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));
1609 if (conn)
1610 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001611 conn->dst_type, status);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001612
1613 hci_dev_unlock(hdev);
1614}
1615
Ville Tervofcd89c02011-02-10 22:38:47 -03001616static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1617{
Ville Tervofcd89c02011-02-10 22:38:47 -03001618 struct hci_conn *conn;
1619
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001620 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Ville Tervofcd89c02011-02-10 22:38:47 -03001621
Ville Tervofcd89c02011-02-10 22:38:47 -03001622 if (status) {
Andre Guedesf00a06a2012-07-27 15:10:13 -03001623 hci_dev_lock(hdev);
Ville Tervofcd89c02011-02-10 22:38:47 -03001624
Andre Guedes0c95ab72012-07-27 15:10:14 -03001625 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Andre Guedesf00a06a2012-07-27 15:10:13 -03001626 if (!conn) {
1627 hci_dev_unlock(hdev);
1628 return;
1629 }
1630
Andre Guedes0c95ab72012-07-27 15:10:14 -03001631 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&conn->dst),
Andre Guedesf00a06a2012-07-27 15:10:13 -03001632 conn);
1633
1634 conn->state = BT_CLOSED;
Andre Guedes0c95ab72012-07-27 15:10:14 -03001635 mgmt_connect_failed(hdev, &conn->dst, conn->type,
Andre Guedesf00a06a2012-07-27 15:10:13 -03001636 conn->dst_type, status);
1637 hci_proto_connect_cfm(conn, status);
1638 hci_conn_del(conn);
1639
1640 hci_dev_unlock(hdev);
1641 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001642}
1643
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001644static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1645{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001646 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001647}
1648
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001649static void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001650{
1651 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001652 struct discovery_state *discov = &hdev->discovery;
1653 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001654
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001655 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001656
Johan Hedberg23bb5762010-12-21 23:01:27 +02001657 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001658
1659 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001660
1661 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1662 return;
1663
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001664 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001665 return;
1666
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001667 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001668
Andre Guedes343f9352012-02-17 20:39:37 -03001669 if (discov->state != DISCOVERY_FINDING)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001670 goto unlock;
1671
1672 if (list_empty(&discov->resolve)) {
1673 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1674 goto unlock;
1675 }
1676
1677 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1678 if (e && hci_resolve_name(hdev, e) == 0) {
1679 e->name_state = NAME_PENDING;
1680 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1681 } else {
1682 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1683 }
1684
1685unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001686 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001687}
1688
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001689static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001691 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001692 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 int num_rsp = *((__u8 *) skb->data);
1694
1695 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1696
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001697 if (!num_rsp)
1698 return;
1699
Andre Guedes1519cc12012-03-21 00:03:38 -03001700 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
1701 return;
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001704
Johan Hedberge17acd42011-03-30 23:57:16 +03001705 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001706 bool name_known, ssp;
Johan Hedberg31754052012-01-04 13:39:52 +02001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 bacpy(&data.bdaddr, &info->bdaddr);
1709 data.pscan_rep_mode = info->pscan_rep_mode;
1710 data.pscan_period_mode = info->pscan_period_mode;
1711 data.pscan_mode = info->pscan_mode;
1712 memcpy(data.dev_class, info->dev_class, 3);
1713 data.clock_offset = info->clock_offset;
1714 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001715 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02001716
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001717 name_known = hci_inquiry_cache_update(hdev, &data, false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02001718 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001719 info->dev_class, 0, !name_known, ssp, NULL,
1720 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 hci_dev_unlock(hdev);
1724}
1725
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001726static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001728 struct hci_ev_conn_complete *ev = (void *) skb->data;
1729 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001731 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001734
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001735 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001736 if (!conn) {
1737 if (ev->link_type != SCO_LINK)
1738 goto unlock;
1739
1740 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1741 if (!conn)
1742 goto unlock;
1743
1744 conn->type = SCO_LINK;
1745 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001746
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001747 if (!ev->status) {
1748 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001749
1750 if (conn->type == ACL_LINK) {
1751 conn->state = BT_CONFIG;
1752 hci_conn_hold(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001753 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02001754 } else
1755 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001756
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001757 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001758 hci_conn_add_sysfs(conn);
1759
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001760 if (test_bit(HCI_AUTH, &hdev->flags))
1761 conn->link_mode |= HCI_LM_AUTH;
1762
1763 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1764 conn->link_mode |= HCI_LM_ENCRYPT;
1765
1766 /* Get remote features */
1767 if (conn->type == ACL_LINK) {
1768 struct hci_cp_read_remote_features cp;
1769 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001770 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001771 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001772 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001773
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001774 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02001775 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001776 struct hci_cp_change_conn_ptype cp;
1777 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001778 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001779 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, sizeof(cp),
1780 &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001781 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001782 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001783 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001784 if (conn->type == ACL_LINK)
Johan Hedberg744cf192011-11-08 20:40:14 +02001785 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001786 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02001787 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001788
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001789 if (conn->type == ACL_LINK)
1790 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001791
Marcel Holtmann769be972008-07-14 20:13:49 +02001792 if (ev->status) {
1793 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001794 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001795 } else if (ev->link_type != ACL_LINK)
1796 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001797
1798unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001800
1801 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802}
1803
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001804static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001806 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 int mask = hdev->link_mode;
1808
Gustavo Padovan807deac2012-05-17 00:36:24 -03001809 BT_DBG("%s bdaddr %s type 0x%x", hdev->name, batostr(&ev->bdaddr),
1810 ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1813
Szymon Janc138d22e2011-02-17 16:44:23 +01001814 if ((mask & HCI_LM_ACCEPT) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001815 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001817 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001821
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001822 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1823 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001824 memcpy(ie->data.dev_class, ev->dev_class, 3);
1825
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001826 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type,
1827 &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001829 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1830 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001831 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 hci_dev_unlock(hdev);
1833 return;
1834 }
1835 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 memcpy(conn->dev_class, ev->dev_class, 3);
1838 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 hci_dev_unlock(hdev);
1841
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001842 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1843 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001845 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001847 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1848 cp.role = 0x00; /* Become master */
1849 else
1850 cp.role = 0x01; /* Remain slave */
1851
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001852 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp),
1853 &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001854 } else {
1855 struct hci_cp_accept_sync_conn_req cp;
1856
1857 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001858 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001859
Andrei Emeltchenko82781e62012-05-25 11:38:27 +03001860 cp.tx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1861 cp.rx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1862 cp.max_latency = __constant_cpu_to_le16(0xffff);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001863 cp.content_format = cpu_to_le16(hdev->voice_setting);
1864 cp.retrans_effort = 0xff;
1865
1866 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001867 sizeof(cp), &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 } else {
1870 /* Connection rejected */
1871 struct hci_cp_reject_conn_req cp;
1872
1873 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02001874 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001875 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877}
1878
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001879static u8 hci_to_mgmt_reason(u8 err)
1880{
1881 switch (err) {
1882 case HCI_ERROR_CONNECTION_TIMEOUT:
1883 return MGMT_DEV_DISCONN_TIMEOUT;
1884 case HCI_ERROR_REMOTE_USER_TERM:
1885 case HCI_ERROR_REMOTE_LOW_RESOURCES:
1886 case HCI_ERROR_REMOTE_POWER_OFF:
1887 return MGMT_DEV_DISCONN_REMOTE;
1888 case HCI_ERROR_LOCAL_HOST_TERM:
1889 return MGMT_DEV_DISCONN_LOCAL_HOST;
1890 default:
1891 return MGMT_DEV_DISCONN_UNKNOWN;
1892 }
1893}
1894
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001895static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001897 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001898 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001900 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 hci_dev_lock(hdev);
1903
Marcel Holtmann04837f62006-07-03 10:02:33 +02001904 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001905 if (!conn)
1906 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001907
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001908 if (ev->status == 0)
1909 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Johan Hedbergb644ba32012-01-17 21:48:47 +02001911 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001912 (conn->type == ACL_LINK || conn->type == LE_LINK)) {
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001913 if (ev->status) {
Johan Hedberg88c3df12012-02-09 14:27:38 +02001914 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001915 conn->dst_type, ev->status);
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001916 } else {
1917 u8 reason = hci_to_mgmt_reason(ev->reason);
1918
Johan Hedbergafc747a2012-01-15 18:11:07 +02001919 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02001920 conn->dst_type, reason);
1921 }
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001922 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001923
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001924 if (ev->status == 0) {
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05301925 if (conn->type == ACL_LINK && conn->flush_key)
1926 hci_remove_link_key(hdev, &conn->dst);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001927 hci_proto_disconn_cfm(conn, ev->reason);
1928 hci_conn_del(conn);
1929 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001930
1931unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 hci_dev_unlock(hdev);
1933}
1934
Gustavo Padovan6039aa72012-05-23 04:04:18 -03001935static void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001936{
1937 struct hci_ev_auth_complete *ev = (void *) skb->data;
1938 struct hci_conn *conn;
1939
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001940 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001941
1942 hci_dev_lock(hdev);
1943
1944 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001945 if (!conn)
1946 goto unlock;
1947
1948 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001949 if (!hci_conn_ssp_enabled(conn) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001950 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001951 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03001952 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001953 conn->link_mode |= HCI_LM_AUTH;
1954 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03001955 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001956 } else {
Johan Hedbergbab73cb2012-02-09 16:07:29 +02001957 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001958 ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001959 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001960
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001961 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
1962 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001963
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001964 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001965 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001966 struct hci_cp_set_conn_encrypt cp;
1967 cp.handle = ev->handle;
1968 cp.encrypt = 0x01;
1969 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001970 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001971 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001972 conn->state = BT_CONNECTED;
1973 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001974 hci_conn_put(conn);
1975 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001976 } else {
1977 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001978
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001979 hci_conn_hold(conn);
1980 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
1981 hci_conn_put(conn);
1982 }
1983
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001984 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001985 if (!ev->status) {
1986 struct hci_cp_set_conn_encrypt cp;
1987 cp.handle = ev->handle;
1988 cp.encrypt = 0x01;
1989 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001990 &cp);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001991 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001992 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001993 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001994 }
1995 }
1996
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001997unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001998 hci_dev_unlock(hdev);
1999}
2000
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002001static void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002002{
Johan Hedberg127178d2010-11-18 22:22:29 +02002003 struct hci_ev_remote_name *ev = (void *) skb->data;
2004 struct hci_conn *conn;
2005
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002006 BT_DBG("%s", hdev->name);
2007
2008 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02002009
2010 hci_dev_lock(hdev);
2011
2012 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002013
2014 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2015 goto check_auth;
2016
2017 if (ev->status == 0)
2018 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002019 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
Johan Hedbergb644ba32012-01-17 21:48:47 +02002020 else
2021 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
2022
2023check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07002024 if (!conn)
2025 goto unlock;
2026
2027 if (!hci_outgoing_auth_needed(hdev, conn))
2028 goto unlock;
2029
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002030 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002031 struct hci_cp_auth_requested cp;
2032 cp.handle = __cpu_to_le16(conn->handle);
2033 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
2034 }
2035
Johan Hedberg79c6c702011-04-28 11:28:55 -07002036unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02002037 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002038}
2039
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002040static void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002041{
2042 struct hci_ev_encrypt_change *ev = (void *) skb->data;
2043 struct hci_conn *conn;
2044
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002045 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002046
2047 hci_dev_lock(hdev);
2048
2049 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2050 if (conn) {
2051 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02002052 if (ev->encrypt) {
2053 /* Encryption implies authentication */
2054 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002055 conn->link_mode |= HCI_LM_ENCRYPT;
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002056 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannae293192008-07-14 20:13:45 +02002057 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002058 conn->link_mode &= ~HCI_LM_ENCRYPT;
2059 }
2060
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002061 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002062
Gustavo Padovana7d77232012-05-13 03:20:07 -03002063 if (ev->status && conn->state == BT_CONNECTED) {
Gustavo Padovand839c812012-05-16 12:17:12 -03002064 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
Gustavo Padovana7d77232012-05-13 03:20:07 -03002065 hci_conn_put(conn);
2066 goto unlock;
2067 }
2068
Marcel Holtmannf8558552008-07-14 20:13:49 +02002069 if (conn->state == BT_CONFIG) {
2070 if (!ev->status)
2071 conn->state = BT_CONNECTED;
2072
2073 hci_proto_connect_cfm(conn, ev->status);
2074 hci_conn_put(conn);
2075 } else
2076 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002077 }
2078
Gustavo Padovana7d77232012-05-13 03:20:07 -03002079unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002080 hci_dev_unlock(hdev);
2081}
2082
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002083static void hci_change_link_key_complete_evt(struct hci_dev *hdev,
2084 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002085{
2086 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2087 struct hci_conn *conn;
2088
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002089 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002090
2091 hci_dev_lock(hdev);
2092
2093 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2094 if (conn) {
2095 if (!ev->status)
2096 conn->link_mode |= HCI_LM_SECURE;
2097
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002098 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002099
2100 hci_key_change_cfm(conn, ev->status);
2101 }
2102
2103 hci_dev_unlock(hdev);
2104}
2105
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002106static void hci_remote_features_evt(struct hci_dev *hdev,
2107 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002108{
2109 struct hci_ev_remote_features *ev = (void *) skb->data;
2110 struct hci_conn *conn;
2111
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002112 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002113
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002114 hci_dev_lock(hdev);
2115
2116 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002117 if (!conn)
2118 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002119
Johan Hedbergccd556f2010-11-10 17:11:51 +02002120 if (!ev->status)
2121 memcpy(conn->features, ev->features, 8);
2122
2123 if (conn->state != BT_CONFIG)
2124 goto unlock;
2125
2126 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2127 struct hci_cp_read_remote_ext_features cp;
2128 cp.handle = ev->handle;
2129 cp.page = 0x01;
2130 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002131 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002132 goto unlock;
2133 }
2134
Johan Hedberg671267b2012-05-12 16:11:50 -03002135 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002136 struct hci_cp_remote_name_req cp;
2137 memset(&cp, 0, sizeof(cp));
2138 bacpy(&cp.bdaddr, &conn->dst);
2139 cp.pscan_rep_mode = 0x02;
2140 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002141 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2142 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002143 conn->dst_type, 0, NULL, 0,
2144 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002145
Johan Hedberg127178d2010-11-18 22:22:29 +02002146 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002147 conn->state = BT_CONNECTED;
2148 hci_proto_connect_cfm(conn, ev->status);
2149 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002150 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002151
Johan Hedbergccd556f2010-11-10 17:11:51 +02002152unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002153 hci_dev_unlock(hdev);
2154}
2155
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002156static void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002157{
2158 BT_DBG("%s", hdev->name);
2159}
2160
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002161static void hci_qos_setup_complete_evt(struct hci_dev *hdev,
2162 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002163{
2164 BT_DBG("%s", hdev->name);
2165}
2166
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002167static void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002168{
2169 struct hci_ev_cmd_complete *ev = (void *) skb->data;
2170 __u16 opcode;
2171
2172 skb_pull(skb, sizeof(*ev));
2173
2174 opcode = __le16_to_cpu(ev->opcode);
2175
2176 switch (opcode) {
2177 case HCI_OP_INQUIRY_CANCEL:
2178 hci_cc_inquiry_cancel(hdev, skb);
2179 break;
2180
Andre Guedes4d934832012-03-21 00:03:35 -03002181 case HCI_OP_PERIODIC_INQ:
2182 hci_cc_periodic_inq(hdev, skb);
2183 break;
2184
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002185 case HCI_OP_EXIT_PERIODIC_INQ:
2186 hci_cc_exit_periodic_inq(hdev, skb);
2187 break;
2188
2189 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2190 hci_cc_remote_name_req_cancel(hdev, skb);
2191 break;
2192
2193 case HCI_OP_ROLE_DISCOVERY:
2194 hci_cc_role_discovery(hdev, skb);
2195 break;
2196
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002197 case HCI_OP_READ_LINK_POLICY:
2198 hci_cc_read_link_policy(hdev, skb);
2199 break;
2200
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002201 case HCI_OP_WRITE_LINK_POLICY:
2202 hci_cc_write_link_policy(hdev, skb);
2203 break;
2204
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002205 case HCI_OP_READ_DEF_LINK_POLICY:
2206 hci_cc_read_def_link_policy(hdev, skb);
2207 break;
2208
2209 case HCI_OP_WRITE_DEF_LINK_POLICY:
2210 hci_cc_write_def_link_policy(hdev, skb);
2211 break;
2212
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002213 case HCI_OP_RESET:
2214 hci_cc_reset(hdev, skb);
2215 break;
2216
2217 case HCI_OP_WRITE_LOCAL_NAME:
2218 hci_cc_write_local_name(hdev, skb);
2219 break;
2220
2221 case HCI_OP_READ_LOCAL_NAME:
2222 hci_cc_read_local_name(hdev, skb);
2223 break;
2224
2225 case HCI_OP_WRITE_AUTH_ENABLE:
2226 hci_cc_write_auth_enable(hdev, skb);
2227 break;
2228
2229 case HCI_OP_WRITE_ENCRYPT_MODE:
2230 hci_cc_write_encrypt_mode(hdev, skb);
2231 break;
2232
2233 case HCI_OP_WRITE_SCAN_ENABLE:
2234 hci_cc_write_scan_enable(hdev, skb);
2235 break;
2236
2237 case HCI_OP_READ_CLASS_OF_DEV:
2238 hci_cc_read_class_of_dev(hdev, skb);
2239 break;
2240
2241 case HCI_OP_WRITE_CLASS_OF_DEV:
2242 hci_cc_write_class_of_dev(hdev, skb);
2243 break;
2244
2245 case HCI_OP_READ_VOICE_SETTING:
2246 hci_cc_read_voice_setting(hdev, skb);
2247 break;
2248
2249 case HCI_OP_WRITE_VOICE_SETTING:
2250 hci_cc_write_voice_setting(hdev, skb);
2251 break;
2252
2253 case HCI_OP_HOST_BUFFER_SIZE:
2254 hci_cc_host_buffer_size(hdev, skb);
2255 break;
2256
Marcel Holtmann333140b2008-07-14 20:13:48 +02002257 case HCI_OP_WRITE_SSP_MODE:
2258 hci_cc_write_ssp_mode(hdev, skb);
2259 break;
2260
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002261 case HCI_OP_READ_LOCAL_VERSION:
2262 hci_cc_read_local_version(hdev, skb);
2263 break;
2264
2265 case HCI_OP_READ_LOCAL_COMMANDS:
2266 hci_cc_read_local_commands(hdev, skb);
2267 break;
2268
2269 case HCI_OP_READ_LOCAL_FEATURES:
2270 hci_cc_read_local_features(hdev, skb);
2271 break;
2272
Andre Guedes971e3a42011-06-30 19:20:52 -03002273 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2274 hci_cc_read_local_ext_features(hdev, skb);
2275 break;
2276
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002277 case HCI_OP_READ_BUFFER_SIZE:
2278 hci_cc_read_buffer_size(hdev, skb);
2279 break;
2280
2281 case HCI_OP_READ_BD_ADDR:
2282 hci_cc_read_bd_addr(hdev, skb);
2283 break;
2284
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002285 case HCI_OP_READ_DATA_BLOCK_SIZE:
2286 hci_cc_read_data_block_size(hdev, skb);
2287 break;
2288
Johan Hedberg23bb5762010-12-21 23:01:27 +02002289 case HCI_OP_WRITE_CA_TIMEOUT:
2290 hci_cc_write_ca_timeout(hdev, skb);
2291 break;
2292
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002293 case HCI_OP_READ_FLOW_CONTROL_MODE:
2294 hci_cc_read_flow_control_mode(hdev, skb);
2295 break;
2296
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002297 case HCI_OP_READ_LOCAL_AMP_INFO:
2298 hci_cc_read_local_amp_info(hdev, skb);
2299 break;
2300
Johan Hedbergb0916ea2011-01-10 13:44:55 +02002301 case HCI_OP_DELETE_STORED_LINK_KEY:
2302 hci_cc_delete_stored_link_key(hdev, skb);
2303 break;
2304
Johan Hedbergd5859e22011-01-25 01:19:58 +02002305 case HCI_OP_SET_EVENT_MASK:
2306 hci_cc_set_event_mask(hdev, skb);
2307 break;
2308
2309 case HCI_OP_WRITE_INQUIRY_MODE:
2310 hci_cc_write_inquiry_mode(hdev, skb);
2311 break;
2312
2313 case HCI_OP_READ_INQ_RSP_TX_POWER:
2314 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2315 break;
2316
2317 case HCI_OP_SET_EVENT_FLT:
2318 hci_cc_set_event_flt(hdev, skb);
2319 break;
2320
Johan Hedberg980e1a52011-01-22 06:10:07 +02002321 case HCI_OP_PIN_CODE_REPLY:
2322 hci_cc_pin_code_reply(hdev, skb);
2323 break;
2324
2325 case HCI_OP_PIN_CODE_NEG_REPLY:
2326 hci_cc_pin_code_neg_reply(hdev, skb);
2327 break;
2328
Szymon Jancc35938b2011-03-22 13:12:21 +01002329 case HCI_OP_READ_LOCAL_OOB_DATA:
2330 hci_cc_read_local_oob_data_reply(hdev, skb);
2331 break;
2332
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002333 case HCI_OP_LE_READ_BUFFER_SIZE:
2334 hci_cc_le_read_buffer_size(hdev, skb);
2335 break;
2336
Johan Hedberga5c29682011-02-19 12:05:57 -03002337 case HCI_OP_USER_CONFIRM_REPLY:
2338 hci_cc_user_confirm_reply(hdev, skb);
2339 break;
2340
2341 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2342 hci_cc_user_confirm_neg_reply(hdev, skb);
2343 break;
2344
Brian Gix1143d452011-11-23 08:28:34 -08002345 case HCI_OP_USER_PASSKEY_REPLY:
2346 hci_cc_user_passkey_reply(hdev, skb);
2347 break;
2348
2349 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2350 hci_cc_user_passkey_neg_reply(hdev, skb);
Szymon Janc16cde992012-04-13 12:32:42 +02002351 break;
Andre Guedes07f7fa52011-12-02 21:13:31 +09002352
2353 case HCI_OP_LE_SET_SCAN_PARAM:
2354 hci_cc_le_set_scan_param(hdev, skb);
Brian Gix1143d452011-11-23 08:28:34 -08002355 break;
2356
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002357 case HCI_OP_LE_SET_SCAN_ENABLE:
2358 hci_cc_le_set_scan_enable(hdev, skb);
2359 break;
2360
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002361 case HCI_OP_LE_LTK_REPLY:
2362 hci_cc_le_ltk_reply(hdev, skb);
2363 break;
2364
2365 case HCI_OP_LE_LTK_NEG_REPLY:
2366 hci_cc_le_ltk_neg_reply(hdev, skb);
2367 break;
2368
Andre Guedesf9b49302011-06-30 19:20:53 -03002369 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2370 hci_cc_write_le_host_supported(hdev, skb);
2371 break;
2372
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002373 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002374 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002375 break;
2376 }
2377
Ville Tervo6bd32322011-02-16 16:32:41 +02002378 if (ev->opcode != HCI_OP_NOP)
2379 del_timer(&hdev->cmd_timer);
2380
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002381 if (ev->ncmd) {
2382 atomic_set(&hdev->cmd_cnt, 1);
2383 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002384 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002385 }
2386}
2387
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002388static void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002389{
2390 struct hci_ev_cmd_status *ev = (void *) skb->data;
2391 __u16 opcode;
2392
2393 skb_pull(skb, sizeof(*ev));
2394
2395 opcode = __le16_to_cpu(ev->opcode);
2396
2397 switch (opcode) {
2398 case HCI_OP_INQUIRY:
2399 hci_cs_inquiry(hdev, ev->status);
2400 break;
2401
2402 case HCI_OP_CREATE_CONN:
2403 hci_cs_create_conn(hdev, ev->status);
2404 break;
2405
2406 case HCI_OP_ADD_SCO:
2407 hci_cs_add_sco(hdev, ev->status);
2408 break;
2409
Marcel Holtmannf8558552008-07-14 20:13:49 +02002410 case HCI_OP_AUTH_REQUESTED:
2411 hci_cs_auth_requested(hdev, ev->status);
2412 break;
2413
2414 case HCI_OP_SET_CONN_ENCRYPT:
2415 hci_cs_set_conn_encrypt(hdev, ev->status);
2416 break;
2417
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002418 case HCI_OP_REMOTE_NAME_REQ:
2419 hci_cs_remote_name_req(hdev, ev->status);
2420 break;
2421
Marcel Holtmann769be972008-07-14 20:13:49 +02002422 case HCI_OP_READ_REMOTE_FEATURES:
2423 hci_cs_read_remote_features(hdev, ev->status);
2424 break;
2425
2426 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2427 hci_cs_read_remote_ext_features(hdev, ev->status);
2428 break;
2429
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002430 case HCI_OP_SETUP_SYNC_CONN:
2431 hci_cs_setup_sync_conn(hdev, ev->status);
2432 break;
2433
2434 case HCI_OP_SNIFF_MODE:
2435 hci_cs_sniff_mode(hdev, ev->status);
2436 break;
2437
2438 case HCI_OP_EXIT_SNIFF_MODE:
2439 hci_cs_exit_sniff_mode(hdev, ev->status);
2440 break;
2441
Johan Hedberg8962ee72011-01-20 12:40:27 +02002442 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002443 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002444 break;
2445
Ville Tervofcd89c02011-02-10 22:38:47 -03002446 case HCI_OP_LE_CREATE_CONN:
2447 hci_cs_le_create_conn(hdev, ev->status);
2448 break;
2449
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002450 case HCI_OP_LE_START_ENC:
2451 hci_cs_le_start_enc(hdev, ev->status);
2452 break;
2453
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002454 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002455 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002456 break;
2457 }
2458
Ville Tervo6bd32322011-02-16 16:32:41 +02002459 if (ev->opcode != HCI_OP_NOP)
2460 del_timer(&hdev->cmd_timer);
2461
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002462 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002463 atomic_set(&hdev->cmd_cnt, 1);
2464 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002465 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002466 }
2467}
2468
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002469static void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002470{
2471 struct hci_ev_role_change *ev = (void *) skb->data;
2472 struct hci_conn *conn;
2473
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002474 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002475
2476 hci_dev_lock(hdev);
2477
2478 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2479 if (conn) {
2480 if (!ev->status) {
2481 if (ev->role)
2482 conn->link_mode &= ~HCI_LM_MASTER;
2483 else
2484 conn->link_mode |= HCI_LM_MASTER;
2485 }
2486
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002487 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002488
2489 hci_role_switch_cfm(conn, ev->status, ev->role);
2490 }
2491
2492 hci_dev_unlock(hdev);
2493}
2494
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002495static void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002497 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 int i;
2499
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002500 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2501 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2502 return;
2503 }
2504
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002505 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002506 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 BT_DBG("%s bad parameters", hdev->name);
2508 return;
2509 }
2510
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002511 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2512
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002513 for (i = 0; i < ev->num_hndl; i++) {
2514 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 struct hci_conn *conn;
2516 __u16 handle, count;
2517
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002518 handle = __le16_to_cpu(info->handle);
2519 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002522 if (!conn)
2523 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002525 conn->sent -= count;
2526
2527 switch (conn->type) {
2528 case ACL_LINK:
2529 hdev->acl_cnt += count;
2530 if (hdev->acl_cnt > hdev->acl_pkts)
2531 hdev->acl_cnt = hdev->acl_pkts;
2532 break;
2533
2534 case LE_LINK:
2535 if (hdev->le_pkts) {
2536 hdev->le_cnt += count;
2537 if (hdev->le_cnt > hdev->le_pkts)
2538 hdev->le_cnt = hdev->le_pkts;
2539 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002540 hdev->acl_cnt += count;
2541 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 hdev->acl_cnt = hdev->acl_pkts;
2543 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002544 break;
2545
2546 case SCO_LINK:
2547 hdev->sco_cnt += count;
2548 if (hdev->sco_cnt > hdev->sco_pkts)
2549 hdev->sco_cnt = hdev->sco_pkts;
2550 break;
2551
2552 default:
2553 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2554 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 }
2556 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002557
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002558 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559}
2560
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002561static void hci_num_comp_blocks_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002562{
2563 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2564 int i;
2565
2566 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2567 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2568 return;
2569 }
2570
2571 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002572 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002573 BT_DBG("%s bad parameters", hdev->name);
2574 return;
2575 }
2576
2577 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002578 ev->num_hndl);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002579
2580 for (i = 0; i < ev->num_hndl; i++) {
2581 struct hci_comp_blocks_info *info = &ev->handles[i];
2582 struct hci_conn *conn;
2583 __u16 handle, block_count;
2584
2585 handle = __le16_to_cpu(info->handle);
2586 block_count = __le16_to_cpu(info->blocks);
2587
2588 conn = hci_conn_hash_lookup_handle(hdev, handle);
2589 if (!conn)
2590 continue;
2591
2592 conn->sent -= block_count;
2593
2594 switch (conn->type) {
2595 case ACL_LINK:
2596 hdev->block_cnt += block_count;
2597 if (hdev->block_cnt > hdev->num_blocks)
2598 hdev->block_cnt = hdev->num_blocks;
2599 break;
2600
2601 default:
2602 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2603 break;
2604 }
2605 }
2606
2607 queue_work(hdev->workqueue, &hdev->tx_work);
2608}
2609
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002610static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002612 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002613 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002615 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
2617 hci_dev_lock(hdev);
2618
Marcel Holtmann04837f62006-07-03 10:02:33 +02002619 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2620 if (conn) {
2621 conn->mode = ev->mode;
2622 conn->interval = __le16_to_cpu(ev->interval);
2623
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002624 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
2625 &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02002626 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002627 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002628 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02002629 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002630 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002631
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002632 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002633 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002634 }
2635
2636 hci_dev_unlock(hdev);
2637}
2638
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002639static void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002641 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2642 struct hci_conn *conn;
2643
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002644 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002645
2646 hci_dev_lock(hdev);
2647
2648 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002649 if (!conn)
2650 goto unlock;
2651
2652 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002653 hci_conn_hold(conn);
2654 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2655 hci_conn_put(conn);
2656 }
2657
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002658 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02002659 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002660 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002661 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002662 u8 secure;
2663
2664 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2665 secure = 1;
2666 else
2667 secure = 0;
2668
Johan Hedberg744cf192011-11-08 20:40:14 +02002669 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002670 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002671
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002672unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002673 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674}
2675
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002676static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002678 struct hci_ev_link_key_req *ev = (void *) skb->data;
2679 struct hci_cp_link_key_reply cp;
2680 struct hci_conn *conn;
2681 struct link_key *key;
2682
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002683 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002684
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002685 if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002686 return;
2687
2688 hci_dev_lock(hdev);
2689
2690 key = hci_find_link_key(hdev, &ev->bdaddr);
2691 if (!key) {
2692 BT_DBG("%s link key not found for %s", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002693 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002694 goto not_found;
2695 }
2696
2697 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002698 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002699
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002700 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002701 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002702 BT_DBG("%s ignoring debug key", hdev->name);
2703 goto not_found;
2704 }
2705
2706 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002707 if (conn) {
2708 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002709 conn->auth_type != 0xff && (conn->auth_type & 0x01)) {
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002710 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2711 goto not_found;
2712 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002713
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002714 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002715 conn->pending_sec_level == BT_SECURITY_HIGH) {
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002716 BT_DBG("%s ignoring key unauthenticated for high security",
2717 hdev->name);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002718 goto not_found;
2719 }
2720
2721 conn->key_type = key->type;
2722 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002723 }
2724
2725 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03002726 memcpy(cp.link_key, key->val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002727
2728 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2729
2730 hci_dev_unlock(hdev);
2731
2732 return;
2733
2734not_found:
2735 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2736 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002739static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002741 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2742 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002743 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002744
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002745 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002746
2747 hci_dev_lock(hdev);
2748
2749 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2750 if (conn) {
2751 hci_conn_hold(conn);
2752 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002753 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002754
2755 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2756 conn->key_type = ev->key_type;
2757
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002758 hci_conn_put(conn);
2759 }
2760
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002761 if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002762 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002763 ev->key_type, pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002764
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002765 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766}
2767
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002768static void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002769{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002770 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002771 struct hci_conn *conn;
2772
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002773 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002774
2775 hci_dev_lock(hdev);
2776
2777 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 if (conn && !ev->status) {
2779 struct inquiry_entry *ie;
2780
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002781 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2782 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 ie->data.clock_offset = ev->clock_offset;
2784 ie->timestamp = jiffies;
2785 }
2786 }
2787
2788 hci_dev_unlock(hdev);
2789}
2790
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002791static void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna8746412008-07-14 20:13:46 +02002792{
2793 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2794 struct hci_conn *conn;
2795
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002796 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna8746412008-07-14 20:13:46 +02002797
2798 hci_dev_lock(hdev);
2799
2800 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2801 if (conn && !ev->status)
2802 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2803
2804 hci_dev_unlock(hdev);
2805}
2806
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002807static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002808{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002809 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002810 struct inquiry_entry *ie;
2811
2812 BT_DBG("%s", hdev->name);
2813
2814 hci_dev_lock(hdev);
2815
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002816 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2817 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002818 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2819 ie->timestamp = jiffies;
2820 }
2821
2822 hci_dev_unlock(hdev);
2823}
2824
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002825static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
2826 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002827{
2828 struct inquiry_data data;
2829 int num_rsp = *((__u8 *) skb->data);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02002830 bool name_known, ssp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002831
2832 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2833
2834 if (!num_rsp)
2835 return;
2836
Andre Guedes1519cc12012-03-21 00:03:38 -03002837 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
2838 return;
2839
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002840 hci_dev_lock(hdev);
2841
2842 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002843 struct inquiry_info_with_rssi_and_pscan_mode *info;
2844 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002845
Johan Hedberge17acd42011-03-30 23:57:16 +03002846 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002847 bacpy(&data.bdaddr, &info->bdaddr);
2848 data.pscan_rep_mode = info->pscan_rep_mode;
2849 data.pscan_period_mode = info->pscan_period_mode;
2850 data.pscan_mode = info->pscan_mode;
2851 memcpy(data.dev_class, info->dev_class, 3);
2852 data.clock_offset = info->clock_offset;
2853 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002854 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002855
2856 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002857 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002858 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002859 info->dev_class, info->rssi,
2860 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002861 }
2862 } else {
2863 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2864
Johan Hedberge17acd42011-03-30 23:57:16 +03002865 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002866 bacpy(&data.bdaddr, &info->bdaddr);
2867 data.pscan_rep_mode = info->pscan_rep_mode;
2868 data.pscan_period_mode = info->pscan_period_mode;
2869 data.pscan_mode = 0x00;
2870 memcpy(data.dev_class, info->dev_class, 3);
2871 data.clock_offset = info->clock_offset;
2872 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002873 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002874 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002875 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002876 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002877 info->dev_class, info->rssi,
2878 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002879 }
2880 }
2881
2882 hci_dev_unlock(hdev);
2883}
2884
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002885static void hci_remote_ext_features_evt(struct hci_dev *hdev,
2886 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002887{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002888 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2889 struct hci_conn *conn;
2890
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002891 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002892
Marcel Holtmann41a96212008-07-14 20:13:48 +02002893 hci_dev_lock(hdev);
2894
2895 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002896 if (!conn)
2897 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002898
Johan Hedbergccd556f2010-11-10 17:11:51 +02002899 if (!ev->status && ev->page == 0x01) {
2900 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002901
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002902 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2903 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002904 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann769be972008-07-14 20:13:49 +02002905
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002906 if (ev->features[0] & LMP_HOST_SSP)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002907 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002908 }
2909
Johan Hedbergccd556f2010-11-10 17:11:51 +02002910 if (conn->state != BT_CONFIG)
2911 goto unlock;
2912
Johan Hedberg671267b2012-05-12 16:11:50 -03002913 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002914 struct hci_cp_remote_name_req cp;
2915 memset(&cp, 0, sizeof(cp));
2916 bacpy(&cp.bdaddr, &conn->dst);
2917 cp.pscan_rep_mode = 0x02;
2918 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002919 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2920 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002921 conn->dst_type, 0, NULL, 0,
2922 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002923
Johan Hedberg127178d2010-11-18 22:22:29 +02002924 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002925 conn->state = BT_CONNECTED;
2926 hci_proto_connect_cfm(conn, ev->status);
2927 hci_conn_put(conn);
2928 }
2929
2930unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002931 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002932}
2933
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002934static void hci_sync_conn_complete_evt(struct hci_dev *hdev,
2935 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002936{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002937 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2938 struct hci_conn *conn;
2939
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002940 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002941
2942 hci_dev_lock(hdev);
2943
2944 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02002945 if (!conn) {
2946 if (ev->link_type == ESCO_LINK)
2947 goto unlock;
2948
2949 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2950 if (!conn)
2951 goto unlock;
2952
2953 conn->type = SCO_LINK;
2954 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002955
Marcel Holtmann732547f2009-04-19 19:14:14 +02002956 switch (ev->status) {
2957 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002958 conn->handle = __le16_to_cpu(ev->handle);
2959 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002960
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07002961 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002962 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02002963 break;
2964
Stephen Coe705e5712010-02-16 11:29:44 -05002965 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002966 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08002967 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002968 case 0x1f: /* Unspecified error */
2969 if (conn->out && conn->attempt < 2) {
2970 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2971 (hdev->esco_type & EDR_ESCO_MASK);
2972 hci_setup_sync(conn, conn->link->handle);
2973 goto unlock;
2974 }
2975 /* fall through */
2976
2977 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002978 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002979 break;
2980 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002981
2982 hci_proto_connect_cfm(conn, ev->status);
2983 if (ev->status)
2984 hci_conn_del(conn);
2985
2986unlock:
2987 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002988}
2989
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002990static void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002991{
2992 BT_DBG("%s", hdev->name);
2993}
2994
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002995static void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002996{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002997 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002998
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002999 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003000}
3001
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003002static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
3003 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003004{
3005 struct inquiry_data data;
3006 struct extended_inquiry_info *info = (void *) (skb->data + 1);
3007 int num_rsp = *((__u8 *) skb->data);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303008 size_t eir_len;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003009
3010 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
3011
3012 if (!num_rsp)
3013 return;
3014
Andre Guedes1519cc12012-03-21 00:03:38 -03003015 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
3016 return;
3017
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003018 hci_dev_lock(hdev);
3019
Johan Hedberge17acd42011-03-30 23:57:16 +03003020 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003021 bool name_known, ssp;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003022
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003023 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01003024 data.pscan_rep_mode = info->pscan_rep_mode;
3025 data.pscan_period_mode = info->pscan_period_mode;
3026 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003027 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01003028 data.clock_offset = info->clock_offset;
3029 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003030 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003031
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003032 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02003033 name_known = eir_has_data_type(info->data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003034 sizeof(info->data),
3035 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003036 else
3037 name_known = true;
3038
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003039 name_known = hci_inquiry_cache_update(hdev, &data, name_known,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003040 &ssp);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303041 eir_len = eir_get_length(info->data, sizeof(info->data));
Johan Hedberg48264f02011-11-09 13:58:58 +02003042 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003043 info->dev_class, info->rssi, !name_known,
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303044 ssp, info->data, eir_len);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003045 }
3046
3047 hci_dev_unlock(hdev);
3048}
3049
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003050static void hci_key_refresh_complete_evt(struct hci_dev *hdev,
3051 struct sk_buff *skb)
3052{
3053 struct hci_ev_key_refresh_complete *ev = (void *) skb->data;
3054 struct hci_conn *conn;
3055
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003056 BT_DBG("%s status 0x%2.2x handle 0x%4.4x", hdev->name, ev->status,
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003057 __le16_to_cpu(ev->handle));
3058
3059 hci_dev_lock(hdev);
3060
3061 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3062 if (!conn)
3063 goto unlock;
3064
3065 if (!ev->status)
3066 conn->sec_level = conn->pending_sec_level;
3067
3068 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3069
3070 if (ev->status && conn->state == BT_CONNECTED) {
3071 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
3072 hci_conn_put(conn);
3073 goto unlock;
3074 }
3075
3076 if (conn->state == BT_CONFIG) {
3077 if (!ev->status)
3078 conn->state = BT_CONNECTED;
3079
3080 hci_proto_connect_cfm(conn, ev->status);
3081 hci_conn_put(conn);
3082 } else {
3083 hci_auth_cfm(conn, ev->status);
3084
3085 hci_conn_hold(conn);
3086 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
3087 hci_conn_put(conn);
3088 }
3089
3090unlock:
3091 hci_dev_unlock(hdev);
3092}
3093
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003094static u8 hci_get_auth_req(struct hci_conn *conn)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003095{
3096 /* If remote requests dedicated bonding follow that lead */
3097 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
3098 /* If both remote and local IO capabilities allow MITM
3099 * protection then require it, otherwise don't */
3100 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
3101 return 0x02;
3102 else
3103 return 0x03;
3104 }
3105
3106 /* If remote requests no-bonding follow that lead */
3107 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02003108 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003109
3110 return conn->auth_type;
3111}
3112
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003113static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003114{
3115 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3116 struct hci_conn *conn;
3117
3118 BT_DBG("%s", hdev->name);
3119
3120 hci_dev_lock(hdev);
3121
3122 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003123 if (!conn)
3124 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003125
Johan Hedberg03b555e2011-01-04 15:40:05 +02003126 hci_conn_hold(conn);
3127
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003128 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003129 goto unlock;
3130
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003131 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Gustavo Padovan807deac2012-05-17 00:36:24 -03003132 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003133 struct hci_cp_io_capability_reply cp;
3134
3135 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303136 /* Change the IO capability from KeyboardDisplay
3137 * to DisplayYesNo as it is not supported by BT spec. */
3138 cp.capability = (conn->io_capability == 0x04) ?
3139 0x01 : conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07003140 conn->auth_type = hci_get_auth_req(conn);
3141 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003142
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003143 if (hci_find_remote_oob_data(hdev, &conn->dst) &&
3144 (conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)))
Szymon Jancce85ee12011-03-22 13:12:23 +01003145 cp.oob_data = 0x01;
3146 else
3147 cp.oob_data = 0x00;
3148
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003149 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003150 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003151 } else {
3152 struct hci_cp_io_capability_neg_reply cp;
3153
3154 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003155 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003156
3157 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003158 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003159 }
3160
3161unlock:
3162 hci_dev_unlock(hdev);
3163}
3164
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003165static void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
Johan Hedberg03b555e2011-01-04 15:40:05 +02003166{
3167 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3168 struct hci_conn *conn;
3169
3170 BT_DBG("%s", hdev->name);
3171
3172 hci_dev_lock(hdev);
3173
3174 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3175 if (!conn)
3176 goto unlock;
3177
Johan Hedberg03b555e2011-01-04 15:40:05 +02003178 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003179 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003180 if (ev->oob_data)
3181 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003182
3183unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003184 hci_dev_unlock(hdev);
3185}
3186
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003187static void hci_user_confirm_request_evt(struct hci_dev *hdev,
3188 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03003189{
3190 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003191 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003192 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003193
3194 BT_DBG("%s", hdev->name);
3195
3196 hci_dev_lock(hdev);
3197
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003198 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003199 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003200
Johan Hedberg7a828902011-04-28 11:28:53 -07003201 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3202 if (!conn)
3203 goto unlock;
3204
3205 loc_mitm = (conn->auth_type & 0x01);
3206 rem_mitm = (conn->remote_auth & 0x01);
3207
3208 /* If we require MITM but the remote device can't provide that
3209 * (it has NoInputNoOutput) then reject the confirmation
3210 * request. The only exception is when we're dedicated bonding
3211 * initiators (connect_cfm_cb set) since then we always have the MITM
3212 * bit set. */
3213 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
3214 BT_DBG("Rejecting request: remote device can't provide MITM");
3215 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003216 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003217 goto unlock;
3218 }
3219
3220 /* If no side requires MITM protection; auto-accept */
3221 if ((!loc_mitm || conn->remote_cap == 0x03) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03003222 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003223
3224 /* If we're not the initiators request authorization to
3225 * proceed from user space (mgmt_user_confirm with
3226 * confirm_hint set to 1). */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003227 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003228 BT_DBG("Confirming auto-accept as acceptor");
3229 confirm_hint = 1;
3230 goto confirm;
3231 }
3232
Johan Hedberg9f616562011-04-28 11:28:54 -07003233 BT_DBG("Auto-accept of user confirmation with %ums delay",
Gustavo Padovan807deac2012-05-17 00:36:24 -03003234 hdev->auto_accept_delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003235
3236 if (hdev->auto_accept_delay > 0) {
3237 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
3238 mod_timer(&conn->auto_accept_timer, jiffies + delay);
3239 goto unlock;
3240 }
3241
Johan Hedberg7a828902011-04-28 11:28:53 -07003242 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003243 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003244 goto unlock;
3245 }
3246
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003247confirm:
Johan Hedberg272d90d2012-02-09 15:26:12 +02003248 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003249 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003250
3251unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003252 hci_dev_unlock(hdev);
3253}
3254
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003255static void hci_user_passkey_request_evt(struct hci_dev *hdev,
3256 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08003257{
3258 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3259
3260 BT_DBG("%s", hdev->name);
3261
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003262 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003263 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003264}
3265
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003266static void hci_simple_pair_complete_evt(struct hci_dev *hdev,
3267 struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003268{
3269 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3270 struct hci_conn *conn;
3271
3272 BT_DBG("%s", hdev->name);
3273
3274 hci_dev_lock(hdev);
3275
3276 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003277 if (!conn)
3278 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003279
Johan Hedberg2a611692011-02-19 12:06:00 -03003280 /* To avoid duplicate auth_failed events to user space we check
3281 * the HCI_CONN_AUTH_PEND flag which will be set if we
3282 * initiated the authentication. A traditional auth_complete
3283 * event gets always produced as initiator and is also mapped to
3284 * the mgmt_auth_failed event */
Mikel Astizfa1bd912012-08-09 09:52:29 +02003285 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status)
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003286 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003287 ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003288
3289 hci_conn_put(conn);
3290
3291unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003292 hci_dev_unlock(hdev);
3293}
3294
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003295static void hci_remote_host_features_evt(struct hci_dev *hdev,
3296 struct sk_buff *skb)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003297{
3298 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3299 struct inquiry_entry *ie;
3300
3301 BT_DBG("%s", hdev->name);
3302
3303 hci_dev_lock(hdev);
3304
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003305 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3306 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003307 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003308
3309 hci_dev_unlock(hdev);
3310}
3311
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003312static void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3313 struct sk_buff *skb)
Szymon Janc2763eda2011-03-22 13:12:22 +01003314{
3315 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3316 struct oob_data *data;
3317
3318 BT_DBG("%s", hdev->name);
3319
3320 hci_dev_lock(hdev);
3321
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003322 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003323 goto unlock;
3324
Szymon Janc2763eda2011-03-22 13:12:22 +01003325 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3326 if (data) {
3327 struct hci_cp_remote_oob_data_reply cp;
3328
3329 bacpy(&cp.bdaddr, &ev->bdaddr);
3330 memcpy(cp.hash, data->hash, sizeof(cp.hash));
3331 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
3332
3333 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003334 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003335 } else {
3336 struct hci_cp_remote_oob_data_neg_reply cp;
3337
3338 bacpy(&cp.bdaddr, &ev->bdaddr);
3339 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003340 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003341 }
3342
Szymon Jance1ba1f12011-04-06 13:01:59 +02003343unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003344 hci_dev_unlock(hdev);
3345}
3346
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003347static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003348{
3349 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3350 struct hci_conn *conn;
3351
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003352 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03003353
3354 hci_dev_lock(hdev);
3355
Andre Guedesb47a09b2012-07-27 15:10:15 -03003356 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Ville Tervob62f3282011-02-10 22:38:50 -03003357 if (!conn) {
3358 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3359 if (!conn) {
3360 BT_ERR("No memory for new connection");
Andre Guedes230fd162012-07-27 15:10:10 -03003361 goto unlock;
Ville Tervob62f3282011-02-10 22:38:50 -03003362 }
Andre Guedes29b79882011-05-31 14:20:54 -03003363
3364 conn->dst_type = ev->bdaddr_type;
Andre Guedesb9b343d2012-07-27 15:10:11 -03003365
3366 if (ev->role == LE_CONN_ROLE_MASTER) {
3367 conn->out = true;
3368 conn->link_mode |= HCI_LM_MASTER;
3369 }
Ville Tervob62f3282011-02-10 22:38:50 -03003370 }
Ville Tervofcd89c02011-02-10 22:38:47 -03003371
Andre Guedescd17dec2012-07-27 15:10:16 -03003372 if (ev->status) {
3373 mgmt_connect_failed(hdev, &conn->dst, conn->type,
3374 conn->dst_type, ev->status);
3375 hci_proto_connect_cfm(conn, ev->status);
3376 conn->state = BT_CLOSED;
3377 hci_conn_del(conn);
3378 goto unlock;
3379 }
3380
Johan Hedbergb644ba32012-01-17 21:48:47 +02003381 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3382 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003383 conn->dst_type, 0, NULL, 0, NULL);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03003384
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03003385 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03003386 conn->handle = __le16_to_cpu(ev->handle);
3387 conn->state = BT_CONNECTED;
3388
3389 hci_conn_hold_device(conn);
3390 hci_conn_add_sysfs(conn);
3391
3392 hci_proto_connect_cfm(conn, ev->status);
3393
3394unlock:
3395 hci_dev_unlock(hdev);
3396}
3397
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003398static void hci_le_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andre Guedes9aa04c92011-05-26 16:23:51 -03003399{
Andre Guedese95beb42011-09-26 20:48:35 -03003400 u8 num_reports = skb->data[0];
3401 void *ptr = &skb->data[1];
Andre Guedes3c9e9192012-01-10 18:20:50 -03003402 s8 rssi;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003403
3404 hci_dev_lock(hdev);
3405
Andre Guedese95beb42011-09-26 20:48:35 -03003406 while (num_reports--) {
3407 struct hci_ev_le_advertising_info *ev = ptr;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003408
Andre Guedes3c9e9192012-01-10 18:20:50 -03003409 rssi = ev->data[ev->length];
3410 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003411 NULL, rssi, 0, 1, ev->data, ev->length);
Andre Guedes3c9e9192012-01-10 18:20:50 -03003412
Andre Guedese95beb42011-09-26 20:48:35 -03003413 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003414 }
3415
3416 hci_dev_unlock(hdev);
3417}
3418
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003419static void hci_le_ltk_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003420{
3421 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3422 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003423 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003424 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003425 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003426
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003427 BT_DBG("%s handle 0x%4.4x", hdev->name, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003428
3429 hci_dev_lock(hdev);
3430
3431 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003432 if (conn == NULL)
3433 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003434
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003435 ltk = hci_find_ltk(hdev, ev->ediv, ev->random);
3436 if (ltk == NULL)
3437 goto not_found;
3438
3439 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003440 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003441
3442 if (ltk->authenticated)
3443 conn->sec_level = BT_SECURITY_HIGH;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003444
3445 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3446
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003447 if (ltk->type & HCI_SMP_STK) {
3448 list_del(&ltk->list);
3449 kfree(ltk);
3450 }
3451
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003452 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003453
3454 return;
3455
3456not_found:
3457 neg.handle = ev->handle;
3458 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3459 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003460}
3461
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003462static void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003463{
3464 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3465
3466 skb_pull(skb, sizeof(*le_ev));
3467
3468 switch (le_ev->subevent) {
3469 case HCI_EV_LE_CONN_COMPLETE:
3470 hci_le_conn_complete_evt(hdev, skb);
3471 break;
3472
Andre Guedes9aa04c92011-05-26 16:23:51 -03003473 case HCI_EV_LE_ADVERTISING_REPORT:
3474 hci_le_adv_report_evt(hdev, skb);
3475 break;
3476
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003477 case HCI_EV_LE_LTK_REQ:
3478 hci_le_ltk_request_evt(hdev, skb);
3479 break;
3480
Ville Tervofcd89c02011-02-10 22:38:47 -03003481 default:
3482 break;
3483 }
3484}
3485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3487{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003488 struct hci_event_hdr *hdr = (void *) skb->data;
3489 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
3491 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3492
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003493 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 case HCI_EV_INQUIRY_COMPLETE:
3495 hci_inquiry_complete_evt(hdev, skb);
3496 break;
3497
3498 case HCI_EV_INQUIRY_RESULT:
3499 hci_inquiry_result_evt(hdev, skb);
3500 break;
3501
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003502 case HCI_EV_CONN_COMPLETE:
3503 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02003504 break;
3505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 case HCI_EV_CONN_REQUEST:
3507 hci_conn_request_evt(hdev, skb);
3508 break;
3509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 case HCI_EV_DISCONN_COMPLETE:
3511 hci_disconn_complete_evt(hdev, skb);
3512 break;
3513
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 case HCI_EV_AUTH_COMPLETE:
3515 hci_auth_complete_evt(hdev, skb);
3516 break;
3517
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003518 case HCI_EV_REMOTE_NAME:
3519 hci_remote_name_evt(hdev, skb);
3520 break;
3521
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 case HCI_EV_ENCRYPT_CHANGE:
3523 hci_encrypt_change_evt(hdev, skb);
3524 break;
3525
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003526 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3527 hci_change_link_key_complete_evt(hdev, skb);
3528 break;
3529
3530 case HCI_EV_REMOTE_FEATURES:
3531 hci_remote_features_evt(hdev, skb);
3532 break;
3533
3534 case HCI_EV_REMOTE_VERSION:
3535 hci_remote_version_evt(hdev, skb);
3536 break;
3537
3538 case HCI_EV_QOS_SETUP_COMPLETE:
3539 hci_qos_setup_complete_evt(hdev, skb);
3540 break;
3541
3542 case HCI_EV_CMD_COMPLETE:
3543 hci_cmd_complete_evt(hdev, skb);
3544 break;
3545
3546 case HCI_EV_CMD_STATUS:
3547 hci_cmd_status_evt(hdev, skb);
3548 break;
3549
3550 case HCI_EV_ROLE_CHANGE:
3551 hci_role_change_evt(hdev, skb);
3552 break;
3553
3554 case HCI_EV_NUM_COMP_PKTS:
3555 hci_num_comp_pkts_evt(hdev, skb);
3556 break;
3557
3558 case HCI_EV_MODE_CHANGE:
3559 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 break;
3561
3562 case HCI_EV_PIN_CODE_REQ:
3563 hci_pin_code_request_evt(hdev, skb);
3564 break;
3565
3566 case HCI_EV_LINK_KEY_REQ:
3567 hci_link_key_request_evt(hdev, skb);
3568 break;
3569
3570 case HCI_EV_LINK_KEY_NOTIFY:
3571 hci_link_key_notify_evt(hdev, skb);
3572 break;
3573
3574 case HCI_EV_CLOCK_OFFSET:
3575 hci_clock_offset_evt(hdev, skb);
3576 break;
3577
Marcel Holtmanna8746412008-07-14 20:13:46 +02003578 case HCI_EV_PKT_TYPE_CHANGE:
3579 hci_pkt_type_change_evt(hdev, skb);
3580 break;
3581
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003582 case HCI_EV_PSCAN_REP_MODE:
3583 hci_pscan_rep_mode_evt(hdev, skb);
3584 break;
3585
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003586 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3587 hci_inquiry_result_with_rssi_evt(hdev, skb);
3588 break;
3589
3590 case HCI_EV_REMOTE_EXT_FEATURES:
3591 hci_remote_ext_features_evt(hdev, skb);
3592 break;
3593
3594 case HCI_EV_SYNC_CONN_COMPLETE:
3595 hci_sync_conn_complete_evt(hdev, skb);
3596 break;
3597
3598 case HCI_EV_SYNC_CONN_CHANGED:
3599 hci_sync_conn_changed_evt(hdev, skb);
3600 break;
3601
Marcel Holtmann04837f62006-07-03 10:02:33 +02003602 case HCI_EV_SNIFF_SUBRATE:
3603 hci_sniff_subrate_evt(hdev, skb);
3604 break;
3605
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003606 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3607 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 break;
3609
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003610 case HCI_EV_KEY_REFRESH_COMPLETE:
3611 hci_key_refresh_complete_evt(hdev, skb);
3612 break;
3613
Marcel Holtmann04936842008-07-14 20:13:48 +02003614 case HCI_EV_IO_CAPA_REQUEST:
3615 hci_io_capa_request_evt(hdev, skb);
3616 break;
3617
Johan Hedberg03b555e2011-01-04 15:40:05 +02003618 case HCI_EV_IO_CAPA_REPLY:
3619 hci_io_capa_reply_evt(hdev, skb);
3620 break;
3621
Johan Hedberga5c29682011-02-19 12:05:57 -03003622 case HCI_EV_USER_CONFIRM_REQUEST:
3623 hci_user_confirm_request_evt(hdev, skb);
3624 break;
3625
Brian Gix1143d452011-11-23 08:28:34 -08003626 case HCI_EV_USER_PASSKEY_REQUEST:
3627 hci_user_passkey_request_evt(hdev, skb);
3628 break;
3629
Marcel Holtmann04936842008-07-14 20:13:48 +02003630 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3631 hci_simple_pair_complete_evt(hdev, skb);
3632 break;
3633
Marcel Holtmann41a96212008-07-14 20:13:48 +02003634 case HCI_EV_REMOTE_HOST_FEATURES:
3635 hci_remote_host_features_evt(hdev, skb);
3636 break;
3637
Ville Tervofcd89c02011-02-10 22:38:47 -03003638 case HCI_EV_LE_META:
3639 hci_le_meta_evt(hdev, skb);
3640 break;
3641
Szymon Janc2763eda2011-03-22 13:12:22 +01003642 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3643 hci_remote_oob_data_request_evt(hdev, skb);
3644 break;
3645
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003646 case HCI_EV_NUM_COMP_BLOCKS:
3647 hci_num_comp_blocks_evt(hdev, skb);
3648 break;
3649
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003650 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003651 BT_DBG("%s event 0x%2.2x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 break;
3653 }
3654
3655 kfree_skb(skb);
3656 hdev->stat.evt_rx++;
3657}