blob: 4fd2cf3bcd0577f418d622d3d81007867b52b283 [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>
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/* Handle HCI Event packets */
34
Marcel Holtmanna9de9242007-10-20 13:33:56 +020035static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020037 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030039 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Andre Guedese6d465c2011-11-09 17:14:26 -030041 if (status) {
42 hci_dev_lock(hdev);
43 mgmt_stop_discovery_failed(hdev, status);
44 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020045 return;
Andre Guedese6d465c2011-11-09 17:14:26 -030046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Andre Guedes89352e72011-11-04 14:16:53 -030048 clear_bit(HCI_INQUIRY, &hdev->flags);
49
Johan Hedberg56e5cb82011-11-08 20:40:16 +020050 hci_dev_lock(hdev);
Johan Hedbergff9ef572012-01-04 14:23:45 +020051 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Johan Hedberg56e5cb82011-11-08 20:40:16 +020052 hci_dev_unlock(hdev);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010053
Johan Hedberg23bb5762010-12-21 23:01:27 +020054 hci_req_complete(hdev, HCI_OP_INQUIRY_CANCEL, status);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010055
Marcel Holtmanna9de9242007-10-20 13:33:56 +020056 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Andre Guedes4d934832012-03-21 00:03:35 -030059static void hci_cc_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
60{
61 __u8 status = *((__u8 *) skb->data);
62
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030063 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesae854a72012-03-21 00:03:36 -030064
65 if (status)
66 return;
67
68 set_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
Andre Guedes4d934832012-03-21 00:03:35 -030069}
70
Marcel Holtmanna9de9242007-10-20 13:33:56 +020071static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020073 __u8 status = *((__u8 *) skb->data);
74
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030075 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020076
77 if (status)
78 return;
79
Andre Guedesae854a72012-03-21 00:03:36 -030080 clear_bit(HCI_PERIODIC_INQ, &hdev->dev_flags);
81
Marcel Holtmanna9de9242007-10-20 13:33:56 +020082 hci_conn_check_pending(hdev);
83}
84
Gustavo Padovan807deac2012-05-17 00:36:24 -030085static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev,
86 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +020087{
88 BT_DBG("%s", hdev->name);
89}
90
91static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
92{
93 struct hci_rp_role_discovery *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +030096 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Marcel Holtmanna9de9242007-10-20 13:33:56 +020098 if (rp->status)
99 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200101 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200103 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
104 if (conn) {
105 if (rp->role)
106 conn->link_mode &= ~HCI_LM_MASTER;
107 else
108 conn->link_mode |= HCI_LM_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200110
111 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200114static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
115{
116 struct hci_rp_read_link_policy *rp = (void *) skb->data;
117 struct hci_conn *conn;
118
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300119 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200120
121 if (rp->status)
122 return;
123
124 hci_dev_lock(hdev);
125
126 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
127 if (conn)
128 conn->link_policy = __le16_to_cpu(rp->policy);
129
130 hci_dev_unlock(hdev);
131}
132
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200133static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200135 struct hci_rp_write_link_policy *rp = (void *) skb->data;
136 struct hci_conn *conn;
137 void *sent;
138
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300139 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200140
141 if (rp->status)
142 return;
143
144 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
145 if (!sent)
146 return;
147
148 hci_dev_lock(hdev);
149
150 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200151 if (conn)
Harvey Harrison83985312008-05-02 16:25:46 -0700152 conn->link_policy = get_unaligned_le16(sent + 2);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200153
154 hci_dev_unlock(hdev);
155}
156
Gustavo Padovan807deac2012-05-17 00:36:24 -0300157static void hci_cc_read_def_link_policy(struct hci_dev *hdev,
158 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200159{
160 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
161
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300162 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200163
164 if (rp->status)
165 return;
166
167 hdev->link_policy = __le16_to_cpu(rp->policy);
168}
169
Gustavo Padovan807deac2012-05-17 00:36:24 -0300170static void hci_cc_write_def_link_policy(struct hci_dev *hdev,
171 struct sk_buff *skb)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200172{
173 __u8 status = *((__u8 *) skb->data);
174 void *sent;
175
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300176 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200177
178 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
179 if (!sent)
180 return;
181
182 if (!status)
183 hdev->link_policy = get_unaligned_le16(sent);
184
Johan Hedberg23bb5762010-12-21 23:01:27 +0200185 hci_req_complete(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200186}
187
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200188static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
189{
190 __u8 status = *((__u8 *) skb->data);
191
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300192 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200193
Gustavo F. Padovan10572132011-03-16 15:36:29 -0300194 clear_bit(HCI_RESET, &hdev->flags);
195
Johan Hedberg23bb5762010-12-21 23:01:27 +0200196 hci_req_complete(hdev, HCI_OP_RESET, status);
Andre Guedesd23264a2011-11-25 20:53:38 -0300197
Johan Hedberga297e972012-02-21 17:55:47 +0200198 /* Reset all non-persistent flags */
Andre Guedesae854a72012-03-21 00:03:36 -0300199 hdev->dev_flags &= ~(BIT(HCI_LE_SCAN) | BIT(HCI_PENDING_CLASS) |
200 BIT(HCI_PERIODIC_INQ));
Andre Guedes69775ff2012-02-23 16:50:05 +0200201
202 hdev->discovery.state = DISCOVERY_STOPPED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200203}
204
205static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
206{
207 __u8 status = *((__u8 *) skb->data);
208 void *sent;
209
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300210 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200211
212 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
213 if (!sent)
214 return;
215
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200216 hci_dev_lock(hdev);
217
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200218 if (test_bit(HCI_MGMT, &hdev->dev_flags))
219 mgmt_set_local_name_complete(hdev, sent, status);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +0200220 else if (!status)
221 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
Johan Hedbergf51d5b22012-02-22 18:17:32 +0200222
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200223 hci_dev_unlock(hdev);
Johan Hedberg3159d382012-02-24 13:47:56 +0200224
225 hci_req_complete(hdev, HCI_OP_WRITE_LOCAL_NAME, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200226}
227
228static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
229{
230 struct hci_rp_read_local_name *rp = (void *) skb->data;
231
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300232 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200233
234 if (rp->status)
235 return;
236
Johan Hedbergdb99b5f2012-02-22 20:14:22 +0200237 if (test_bit(HCI_SETUP, &hdev->dev_flags))
238 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200239}
240
241static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
242{
243 __u8 status = *((__u8 *) skb->data);
244 void *sent;
245
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300246 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200247
248 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
249 if (!sent)
250 return;
251
252 if (!status) {
253 __u8 param = *((__u8 *) sent);
254
255 if (param == AUTH_ENABLED)
256 set_bit(HCI_AUTH, &hdev->flags);
257 else
258 clear_bit(HCI_AUTH, &hdev->flags);
259 }
260
Johan Hedberg33ef95e2012-02-16 23:56:27 +0200261 if (test_bit(HCI_MGMT, &hdev->dev_flags))
262 mgmt_auth_enable_complete(hdev, status);
263
Johan Hedberg23bb5762010-12-21 23:01:27 +0200264 hci_req_complete(hdev, HCI_OP_WRITE_AUTH_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200265}
266
267static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
268{
269 __u8 status = *((__u8 *) skb->data);
270 void *sent;
271
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300272 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200273
274 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
275 if (!sent)
276 return;
277
278 if (!status) {
279 __u8 param = *((__u8 *) sent);
280
281 if (param)
282 set_bit(HCI_ENCRYPT, &hdev->flags);
283 else
284 clear_bit(HCI_ENCRYPT, &hdev->flags);
285 }
286
Johan Hedberg23bb5762010-12-21 23:01:27 +0200287 hci_req_complete(hdev, HCI_OP_WRITE_ENCRYPT_MODE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200288}
289
290static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
291{
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200292 __u8 param, status = *((__u8 *) skb->data);
293 int old_pscan, old_iscan;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200294 void *sent;
295
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300296 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200297
298 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
299 if (!sent)
300 return;
301
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200302 param = *((__u8 *) sent);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200303
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200304 hci_dev_lock(hdev);
305
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200306 if (status != 0) {
Johan Hedberg744cf192011-11-08 20:40:14 +0200307 mgmt_write_scan_failed(hdev, param, status);
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200308 hdev->discov_timeout = 0;
309 goto done;
310 }
311
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200312 old_pscan = test_and_clear_bit(HCI_PSCAN, &hdev->flags);
313 old_iscan = test_and_clear_bit(HCI_ISCAN, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200314
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200315 if (param & SCAN_INQUIRY) {
316 set_bit(HCI_ISCAN, &hdev->flags);
317 if (!old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200318 mgmt_discoverable(hdev, 1);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200319 if (hdev->discov_timeout > 0) {
320 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
321 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300322 to);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200323 }
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200324 } else if (old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200325 mgmt_discoverable(hdev, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200326
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200327 if (param & SCAN_PAGE) {
328 set_bit(HCI_PSCAN, &hdev->flags);
329 if (!old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200330 mgmt_connectable(hdev, 1);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200331 } else if (old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200332 mgmt_connectable(hdev, 0);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200333
334done:
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200335 hci_dev_unlock(hdev);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200336 hci_req_complete(hdev, HCI_OP_WRITE_SCAN_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200337}
338
339static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
340{
341 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
342
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300343 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200344
345 if (rp->status)
346 return;
347
348 memcpy(hdev->dev_class, rp->dev_class, 3);
349
350 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300351 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200352}
353
354static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
355{
356 __u8 status = *((__u8 *) skb->data);
357 void *sent;
358
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300359 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200360
361 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
362 if (!sent)
363 return;
364
Marcel Holtmann7f9a9032012-02-22 18:38:01 +0100365 hci_dev_lock(hdev);
366
367 if (status == 0)
368 memcpy(hdev->dev_class, sent, 3);
369
370 if (test_bit(HCI_MGMT, &hdev->dev_flags))
371 mgmt_set_class_of_dev_complete(hdev, sent, status);
372
373 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200374}
375
376static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
377{
378 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 __u16 setting;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200380
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300381 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200382
383 if (rp->status)
384 return;
385
386 setting = __le16_to_cpu(rp->voice_setting);
387
Marcel Holtmannf383f272008-07-14 20:13:47 +0200388 if (hdev->voice_setting == setting)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200389 return;
390
391 hdev->voice_setting = setting;
392
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300393 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200394
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200395 if (hdev->notify)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200396 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200397}
398
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300399static void hci_cc_write_voice_setting(struct hci_dev *hdev,
400 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200401{
402 __u8 status = *((__u8 *) skb->data);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200403 __u16 setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 void *sent;
405
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300406 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Marcel Holtmannf383f272008-07-14 20:13:47 +0200408 if (status)
409 return;
410
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200411 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
412 if (!sent)
413 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Marcel Holtmannf383f272008-07-14 20:13:47 +0200415 setting = get_unaligned_le16(sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Marcel Holtmannf383f272008-07-14 20:13:47 +0200417 if (hdev->voice_setting == setting)
418 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Marcel Holtmannf383f272008-07-14 20:13:47 +0200420 hdev->voice_setting = setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300422 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200423
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200424 if (hdev->notify)
Marcel Holtmannf383f272008-07-14 20:13:47 +0200425 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200428static void hci_cc_host_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200430 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300432 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Johan Hedberg23bb5762010-12-21 23:01:27 +0200434 hci_req_complete(hdev, HCI_OP_HOST_BUFFER_SIZE, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Marcel Holtmann333140b2008-07-14 20:13:48 +0200437static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
438{
439 __u8 status = *((__u8 *) skb->data);
440 void *sent;
441
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300442 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200443
Marcel Holtmann333140b2008-07-14 20:13:48 +0200444 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
445 if (!sent)
446 return;
447
Johan Hedberged2c4ee2012-02-17 00:56:28 +0200448 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedbergc0ecddc2012-02-22 12:38:31 +0200449 mgmt_ssp_enable_complete(hdev, *((u8 *) sent), status);
450 else if (!status) {
451 if (*((u8 *) sent))
452 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
453 else
454 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
455 }
Marcel Holtmann333140b2008-07-14 20:13:48 +0200456}
457
Johan Hedbergd5859e22011-01-25 01:19:58 +0200458static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
459{
460 if (hdev->features[6] & LMP_EXT_INQ)
461 return 2;
462
463 if (hdev->features[3] & LMP_RSSI_INQ)
464 return 1;
465
466 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -0300467 hdev->lmp_subver == 0x0757)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200468 return 1;
469
470 if (hdev->manufacturer == 15) {
471 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
472 return 1;
473 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
474 return 1;
475 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
476 return 1;
477 }
478
479 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -0300480 hdev->lmp_subver == 0x1805)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200481 return 1;
482
483 return 0;
484}
485
486static void hci_setup_inquiry_mode(struct hci_dev *hdev)
487{
488 u8 mode;
489
490 mode = hci_get_inquiry_mode(hdev);
491
492 hci_send_cmd(hdev, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
493}
494
495static void hci_setup_event_mask(struct hci_dev *hdev)
496{
497 /* The second byte is 0xff instead of 0x9f (two reserved bits
498 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
499 * command otherwise */
500 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
501
Ville Tervo6de6c182011-05-27 11:16:21 +0300502 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
503 * any event mask for pre 1.2 devices */
Andrei Emeltchenko5a13b092011-12-01 14:33:28 +0200504 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
Ville Tervo6de6c182011-05-27 11:16:21 +0300505 return;
506
507 events[4] |= 0x01; /* Flow Specification Complete */
508 events[4] |= 0x02; /* Inquiry Result with RSSI */
509 events[4] |= 0x04; /* Read Remote Extended Features Complete */
510 events[5] |= 0x08; /* Synchronous Connection Complete */
511 events[5] |= 0x10; /* Synchronous Connection Changed */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200512
513 if (hdev->features[3] & LMP_RSSI_INQ)
Johan Hedberga24299e2012-04-26 09:47:46 +0300514 events[4] |= 0x02; /* Inquiry Result with RSSI */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200515
Andre Guedes999dcd12012-07-24 15:03:52 -0300516 if (lmp_sniffsubr_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200517 events[5] |= 0x20; /* Sniff Subrating */
518
519 if (hdev->features[5] & LMP_PAUSE_ENC)
520 events[5] |= 0x80; /* Encryption Key Refresh Complete */
521
522 if (hdev->features[6] & LMP_EXT_INQ)
523 events[5] |= 0x40; /* Extended Inquiry Result */
524
Andre Guedesc58e8102012-07-24 15:03:53 -0300525 if (lmp_no_flush_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200526 events[7] |= 0x01; /* Enhanced Flush Complete */
527
528 if (hdev->features[7] & LMP_LSTO)
529 events[6] |= 0x80; /* Link Supervision Timeout Changed */
530
Andre Guedes9a1a1992012-07-24 15:03:48 -0300531 if (lmp_ssp_capable(hdev)) {
Johan Hedbergd5859e22011-01-25 01:19:58 +0200532 events[6] |= 0x01; /* IO Capability Request */
533 events[6] |= 0x02; /* IO Capability Response */
534 events[6] |= 0x04; /* User Confirmation Request */
535 events[6] |= 0x08; /* User Passkey Request */
536 events[6] |= 0x10; /* Remote OOB Data Request */
537 events[6] |= 0x20; /* Simple Pairing Complete */
538 events[7] |= 0x04; /* User Passkey Notification */
539 events[7] |= 0x08; /* Keypress Notification */
540 events[7] |= 0x10; /* Remote Host Supported
541 * Features Notification */
542 }
543
Andre Guedesc383ddc2012-07-24 15:03:47 -0300544 if (lmp_le_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200545 events[7] |= 0x20; /* LE Meta-Event */
546
547 hci_send_cmd(hdev, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
548}
549
550static void hci_setup(struct hci_dev *hdev)
551{
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200552 if (hdev->dev_type != HCI_BREDR)
553 return;
554
Johan Hedbergd5859e22011-01-25 01:19:58 +0200555 hci_setup_event_mask(hdev);
556
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +0200557 if (hdev->hci_ver > BLUETOOTH_VER_1_1)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200558 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
559
Gustavo Padovan6d3c7302012-05-24 03:36:37 -0300560 if (lmp_ssp_capable(hdev)) {
Johan Hedberg54d04db2012-02-22 15:47:48 +0200561 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
562 u8 mode = 0x01;
563 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300564 sizeof(mode), &mode);
Johan Hedberg54d04db2012-02-22 15:47:48 +0200565 } else {
566 struct hci_cp_write_eir cp;
567
568 memset(hdev->eir, 0, sizeof(hdev->eir));
569 memset(&cp, 0, sizeof(cp));
570
571 hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
572 }
Johan Hedbergd5859e22011-01-25 01:19:58 +0200573 }
574
575 if (hdev->features[3] & LMP_RSSI_INQ)
576 hci_setup_inquiry_mode(hdev);
577
578 if (hdev->features[7] & LMP_INQ_TX_PWR)
579 hci_send_cmd(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
Andre Guedes971e3a42011-06-30 19:20:52 -0300580
581 if (hdev->features[7] & LMP_EXTFEATURES) {
582 struct hci_cp_read_local_ext_features cp;
583
584 cp.page = 0x01;
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300585 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, sizeof(cp),
586 &cp);
Andre Guedes971e3a42011-06-30 19:20:52 -0300587 }
Andre Guedese6100a22011-06-30 19:20:54 -0300588
Johan Hedberg47990ea2012-02-22 11:58:37 +0200589 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags)) {
590 u8 enable = 1;
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300591 hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(enable),
592 &enable);
Johan Hedberg47990ea2012-02-22 11:58:37 +0200593 }
Johan Hedbergd5859e22011-01-25 01:19:58 +0200594}
595
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200596static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
597{
598 struct hci_rp_read_local_version *rp = (void *) skb->data;
599
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300600 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200601
602 if (rp->status)
Andrei Emeltchenko28b8df72012-02-24 12:45:44 +0200603 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200604
605 hdev->hci_ver = rp->hci_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200606 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200607 hdev->lmp_ver = rp->lmp_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200608 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200609 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200610
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300611 BT_DBG("%s manufacturer 0x%4.4x hci ver %d:%d", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300612 hdev->manufacturer, hdev->hci_ver, hdev->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200613
614 if (test_bit(HCI_INIT, &hdev->flags))
615 hci_setup(hdev);
Andrei Emeltchenko28b8df72012-02-24 12:45:44 +0200616
617done:
618 hci_req_complete(hdev, HCI_OP_READ_LOCAL_VERSION, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200619}
620
621static void hci_setup_link_policy(struct hci_dev *hdev)
622{
Andrei Emeltchenko035100c2012-03-12 15:59:32 +0200623 struct hci_cp_write_def_link_policy cp;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200624 u16 link_policy = 0;
625
Andre Guedes9f92ebf2012-07-24 15:03:50 -0300626 if (lmp_rswitch_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200627 link_policy |= HCI_LP_RSWITCH;
628 if (hdev->features[0] & LMP_HOLD)
629 link_policy |= HCI_LP_HOLD;
Andre Guedes6eded102012-07-24 15:03:51 -0300630 if (lmp_sniff_capable(hdev))
Johan Hedbergd5859e22011-01-25 01:19:58 +0200631 link_policy |= HCI_LP_SNIFF;
632 if (hdev->features[1] & LMP_PARK)
633 link_policy |= HCI_LP_PARK;
634
Andrei Emeltchenko035100c2012-03-12 15:59:32 +0200635 cp.policy = cpu_to_le16(link_policy);
636 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, sizeof(cp), &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200637}
638
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300639static void hci_cc_read_local_commands(struct hci_dev *hdev,
640 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200641{
642 struct hci_rp_read_local_commands *rp = (void *) skb->data;
643
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300644 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200645
646 if (rp->status)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200647 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200648
649 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Johan Hedbergd5859e22011-01-25 01:19:58 +0200650
651 if (test_bit(HCI_INIT, &hdev->flags) && (hdev->commands[5] & 0x10))
652 hci_setup_link_policy(hdev);
653
654done:
655 hci_req_complete(hdev, HCI_OP_READ_LOCAL_COMMANDS, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200656}
657
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300658static void hci_cc_read_local_features(struct hci_dev *hdev,
659 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200660{
661 struct hci_rp_read_local_features *rp = (void *) skb->data;
662
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300663 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200664
665 if (rp->status)
666 return;
667
668 memcpy(hdev->features, rp->features, 8);
669
670 /* Adjust default settings according to features
671 * supported by device. */
672
673 if (hdev->features[0] & LMP_3SLOT)
674 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
675
676 if (hdev->features[0] & LMP_5SLOT)
677 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
678
679 if (hdev->features[1] & LMP_HV2) {
680 hdev->pkt_type |= (HCI_HV2);
681 hdev->esco_type |= (ESCO_HV2);
682 }
683
684 if (hdev->features[1] & LMP_HV3) {
685 hdev->pkt_type |= (HCI_HV3);
686 hdev->esco_type |= (ESCO_HV3);
687 }
688
Andre Guedes45db810f2012-07-24 15:03:49 -0300689 if (lmp_esco_capable(hdev))
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200690 hdev->esco_type |= (ESCO_EV3);
691
692 if (hdev->features[4] & LMP_EV4)
693 hdev->esco_type |= (ESCO_EV4);
694
695 if (hdev->features[4] & LMP_EV5)
696 hdev->esco_type |= (ESCO_EV5);
697
Marcel Holtmannefc76882009-02-06 09:13:37 +0100698 if (hdev->features[5] & LMP_EDR_ESCO_2M)
699 hdev->esco_type |= (ESCO_2EV3);
700
701 if (hdev->features[5] & LMP_EDR_ESCO_3M)
702 hdev->esco_type |= (ESCO_3EV3);
703
704 if (hdev->features[5] & LMP_EDR_3S_ESCO)
705 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
706
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200707 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300708 hdev->features[0], hdev->features[1],
709 hdev->features[2], hdev->features[3],
710 hdev->features[4], hdev->features[5],
711 hdev->features[6], hdev->features[7]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200712}
713
Johan Hedberg8f984df2012-02-28 01:07:22 +0200714static void hci_set_le_support(struct hci_dev *hdev)
715{
716 struct hci_cp_write_le_host_supported cp;
717
718 memset(&cp, 0, sizeof(cp));
719
Marcel Holtmann9d428202012-05-03 07:12:31 +0200720 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
Johan Hedberg8f984df2012-02-28 01:07:22 +0200721 cp.le = 1;
722 cp.simul = !!(hdev->features[6] & LMP_SIMUL_LE_BR);
723 }
724
725 if (cp.le != !!(hdev->host_features[0] & LMP_HOST_LE))
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300726 hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp),
727 &cp);
Johan Hedberg8f984df2012-02-28 01:07:22 +0200728}
729
Andre Guedes971e3a42011-06-30 19:20:52 -0300730static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300731 struct sk_buff *skb)
Andre Guedes971e3a42011-06-30 19:20:52 -0300732{
733 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
734
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300735 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andre Guedes971e3a42011-06-30 19:20:52 -0300736
737 if (rp->status)
Johan Hedberg8f984df2012-02-28 01:07:22 +0200738 goto done;
Andre Guedes971e3a42011-06-30 19:20:52 -0300739
Andre Guedesb5b32b62011-12-30 10:34:04 -0300740 switch (rp->page) {
741 case 0:
742 memcpy(hdev->features, rp->features, 8);
743 break;
744 case 1:
745 memcpy(hdev->host_features, rp->features, 8);
746 break;
747 }
Andre Guedes971e3a42011-06-30 19:20:52 -0300748
Andre Guedesc383ddc2012-07-24 15:03:47 -0300749 if (test_bit(HCI_INIT, &hdev->flags) && lmp_le_capable(hdev))
Johan Hedberg8f984df2012-02-28 01:07:22 +0200750 hci_set_le_support(hdev);
751
752done:
Andre Guedes971e3a42011-06-30 19:20:52 -0300753 hci_req_complete(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, rp->status);
754}
755
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200756static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300757 struct sk_buff *skb)
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200758{
759 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
760
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300761 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200762
763 if (rp->status)
764 return;
765
766 hdev->flow_ctl_mode = rp->mode;
767
768 hci_req_complete(hdev, HCI_OP_READ_FLOW_CONTROL_MODE, rp->status);
769}
770
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200771static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
772{
773 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
774
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300775 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200776
777 if (rp->status)
778 return;
779
780 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
781 hdev->sco_mtu = rp->sco_mtu;
782 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
783 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
784
785 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
786 hdev->sco_mtu = 64;
787 hdev->sco_pkts = 8;
788 }
789
790 hdev->acl_cnt = hdev->acl_pkts;
791 hdev->sco_cnt = hdev->sco_pkts;
792
Gustavo Padovan807deac2012-05-17 00:36:24 -0300793 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name, hdev->acl_mtu,
794 hdev->acl_pkts, hdev->sco_mtu, hdev->sco_pkts);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200795}
796
797static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
798{
799 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
800
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300801 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200802
803 if (!rp->status)
804 bacpy(&hdev->bdaddr, &rp->bdaddr);
805
Johan Hedberg23bb5762010-12-21 23:01:27 +0200806 hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
807}
808
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200809static void hci_cc_read_data_block_size(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300810 struct sk_buff *skb)
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200811{
812 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
813
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300814 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200815
816 if (rp->status)
817 return;
818
819 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
820 hdev->block_len = __le16_to_cpu(rp->block_len);
821 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
822
823 hdev->block_cnt = hdev->num_blocks;
824
825 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300826 hdev->block_cnt, hdev->block_len);
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200827
828 hci_req_complete(hdev, HCI_OP_READ_DATA_BLOCK_SIZE, rp->status);
829}
830
Johan Hedberg23bb5762010-12-21 23:01:27 +0200831static void hci_cc_write_ca_timeout(struct hci_dev *hdev, struct sk_buff *skb)
832{
833 __u8 status = *((__u8 *) skb->data);
834
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300835 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200836
837 hci_req_complete(hdev, HCI_OP_WRITE_CA_TIMEOUT, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200838}
839
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300840static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300841 struct sk_buff *skb)
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300842{
843 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
844
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300845 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300846
847 if (rp->status)
848 return;
849
850 hdev->amp_status = rp->amp_status;
851 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
852 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
853 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
854 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
855 hdev->amp_type = rp->amp_type;
856 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
857 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
858 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
859 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
860
861 hci_req_complete(hdev, HCI_OP_READ_LOCAL_AMP_INFO, rp->status);
862}
863
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200864static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300865 struct sk_buff *skb)
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200866{
867 __u8 status = *((__u8 *) skb->data);
868
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300869 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200870
871 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
872}
873
Johan Hedbergd5859e22011-01-25 01:19:58 +0200874static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
875{
876 __u8 status = *((__u8 *) skb->data);
877
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300878 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200879
880 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
881}
882
883static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300884 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200885{
886 __u8 status = *((__u8 *) skb->data);
887
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300888 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200889
890 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
891}
892
893static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300894 struct sk_buff *skb)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200895{
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700896 struct hci_rp_read_inq_rsp_tx_power *rp = (void *) skb->data;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200897
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300898 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200899
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700900 if (!rp->status)
901 hdev->inq_tx_power = rp->tx_power;
902
903 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, rp->status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200904}
905
906static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
907{
908 __u8 status = *((__u8 *) skb->data);
909
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300910 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200911
912 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
913}
914
Johan Hedberg980e1a52011-01-22 06:10:07 +0200915static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
916{
917 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
918 struct hci_cp_pin_code_reply *cp;
919 struct hci_conn *conn;
920
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300921 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200922
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200923 hci_dev_lock(hdev);
924
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200925 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200926 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200927
928 if (rp->status != 0)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200929 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200930
931 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
932 if (!cp)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200933 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200934
935 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
936 if (conn)
937 conn->pin_length = cp->pin_len;
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200938
939unlock:
940 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200941}
942
943static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
944{
945 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
946
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300947 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200948
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200949 hci_dev_lock(hdev);
950
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200951 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200952 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300953 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200954
955 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200956}
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200957
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300958static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
959 struct sk_buff *skb)
960{
961 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
962
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300963 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300964
965 if (rp->status)
966 return;
967
968 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
969 hdev->le_pkts = rp->le_max_pkt;
970
971 hdev->le_cnt = hdev->le_pkts;
972
973 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
974
975 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
976}
Johan Hedberg980e1a52011-01-22 06:10:07 +0200977
Johan Hedberga5c29682011-02-19 12:05:57 -0300978static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
979{
980 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
981
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300982 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -0300983
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200984 hci_dev_lock(hdev);
985
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200986 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300987 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK, 0,
988 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200989
990 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300991}
992
993static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -0300994 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -0300995{
996 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
997
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +0300998 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Johan Hedberga5c29682011-02-19 12:05:57 -0300999
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001000 hci_dev_lock(hdev);
1001
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001002 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001003 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001004 ACL_LINK, 0, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001005
1006 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03001007}
1008
Brian Gix1143d452011-11-23 08:28:34 -08001009static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
1010{
1011 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1012
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001013 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001014
1015 hci_dev_lock(hdev);
1016
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001017 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02001018 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001019 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001020
1021 hci_dev_unlock(hdev);
1022}
1023
1024static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001025 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08001026{
1027 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1028
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001029 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001030
1031 hci_dev_lock(hdev);
1032
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001033 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Brian Gix1143d452011-11-23 08:28:34 -08001034 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001035 ACL_LINK, 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001036
1037 hci_dev_unlock(hdev);
1038}
1039
Szymon Jancc35938b2011-03-22 13:12:21 +01001040static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001041 struct sk_buff *skb)
Szymon Jancc35938b2011-03-22 13:12:21 +01001042{
1043 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
1044
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001045 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Szymon Jancc35938b2011-03-22 13:12:21 +01001046
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001047 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001048 mgmt_read_local_oob_data_reply_complete(hdev, rp->hash,
Szymon Jancc35938b2011-03-22 13:12:21 +01001049 rp->randomizer, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001050 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01001051}
1052
Andre Guedes07f7fa52011-12-02 21:13:31 +09001053static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1054{
1055 __u8 status = *((__u8 *) skb->data);
1056
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001057 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001058
1059 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_PARAM, status);
Andre Guedes3fd24152012-02-03 17:48:01 -03001060
1061 if (status) {
1062 hci_dev_lock(hdev);
1063 mgmt_start_discovery_failed(hdev, status);
1064 hci_dev_unlock(hdev);
1065 return;
1066 }
Andre Guedes07f7fa52011-12-02 21:13:31 +09001067}
1068
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001069static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001070 struct sk_buff *skb)
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001071{
1072 struct hci_cp_le_set_scan_enable *cp;
1073 __u8 status = *((__u8 *) skb->data);
1074
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001075 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001076
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001077 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1078 if (!cp)
1079 return;
1080
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001081 switch (cp->enable) {
1082 case LE_SCANNING_ENABLED:
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001083 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_ENABLE, status);
1084
Andre Guedes3fd24152012-02-03 17:48:01 -03001085 if (status) {
1086 hci_dev_lock(hdev);
1087 mgmt_start_discovery_failed(hdev, status);
1088 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001089 return;
Andre Guedes3fd24152012-02-03 17:48:01 -03001090 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001091
Andre Guedesd23264a2011-11-25 20:53:38 -03001092 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
1093
Andre Guedesa8f13c82011-09-09 18:56:24 -03001094 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001095 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedesa8f13c82011-09-09 18:56:24 -03001096 hci_dev_unlock(hdev);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001097 break;
1098
1099 case LE_SCANNING_DISABLED:
Andre Guedesc9ecc482012-03-15 16:52:08 -03001100 if (status) {
1101 hci_dev_lock(hdev);
1102 mgmt_stop_discovery_failed(hdev, status);
1103 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001104 return;
Andre Guedesc9ecc482012-03-15 16:52:08 -03001105 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001106
Andre Guedesd23264a2011-11-25 20:53:38 -03001107 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
1108
Andre Guedesbc3dd332012-03-06 19:37:06 -03001109 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
1110 hdev->discovery.state == DISCOVERY_FINDING) {
Andre Guedes5e0452c2012-02-17 20:39:38 -03001111 mgmt_interleaved_discovery(hdev);
1112 } else {
1113 hci_dev_lock(hdev);
1114 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1115 hci_dev_unlock(hdev);
1116 }
1117
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001118 break;
1119
1120 default:
1121 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1122 break;
Andre Guedes35815082011-05-26 16:23:53 -03001123 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001124}
1125
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001126static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
1127{
1128 struct hci_rp_le_ltk_reply *rp = (void *) skb->data;
1129
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001130 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001131
1132 if (rp->status)
1133 return;
1134
1135 hci_req_complete(hdev, HCI_OP_LE_LTK_REPLY, rp->status);
1136}
1137
1138static void hci_cc_le_ltk_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
1139{
1140 struct hci_rp_le_ltk_neg_reply *rp = (void *) skb->data;
1141
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001142 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001143
1144 if (rp->status)
1145 return;
1146
1147 hci_req_complete(hdev, HCI_OP_LE_LTK_NEG_REPLY, rp->status);
1148}
1149
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001150static void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1151 struct sk_buff *skb)
Andre Guedesf9b49302011-06-30 19:20:53 -03001152{
Johan Hedberg06199cf2012-02-22 16:37:11 +02001153 struct hci_cp_write_le_host_supported *sent;
Andre Guedesf9b49302011-06-30 19:20:53 -03001154 __u8 status = *((__u8 *) skb->data);
1155
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001156 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001157
Johan Hedberg06199cf2012-02-22 16:37:11 +02001158 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED);
Johan Hedberg8f984df2012-02-28 01:07:22 +02001159 if (!sent)
Andre Guedesf9b49302011-06-30 19:20:53 -03001160 return;
1161
Johan Hedberg8f984df2012-02-28 01:07:22 +02001162 if (!status) {
1163 if (sent->le)
1164 hdev->host_features[0] |= LMP_HOST_LE;
1165 else
1166 hdev->host_features[0] &= ~LMP_HOST_LE;
1167 }
1168
1169 if (test_bit(HCI_MGMT, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001170 !test_bit(HCI_INIT, &hdev->flags))
Johan Hedberg8f984df2012-02-28 01:07:22 +02001171 mgmt_le_enable_complete(hdev, sent->le, status);
1172
1173 hci_req_complete(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, status);
Andre Guedesf9b49302011-06-30 19:20:53 -03001174}
1175
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001176static void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001177{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001178 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001179
1180 if (status) {
Johan Hedberg23bb5762010-12-21 23:01:27 +02001181 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001182 hci_conn_check_pending(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001183 hci_dev_lock(hdev);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001184 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Andre Guedes7a135102011-11-09 17:14:25 -03001185 mgmt_start_discovery_failed(hdev, status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001186 hci_dev_unlock(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -04001187 return;
1188 }
1189
Andre Guedes89352e72011-11-04 14:16:53 -03001190 set_bit(HCI_INQUIRY, &hdev->flags);
1191
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001192 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001193 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001194 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001195}
1196
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001197static void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001199 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001202 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001203
1204 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (!cp)
1206 return;
1207
1208 hci_dev_lock(hdev);
1209
1210 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1211
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001212 BT_DBG("%s bdaddr %s hcon %p", hdev->name, batostr(&cp->bdaddr), conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 if (status) {
1215 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +02001216 if (status != 0x0c || conn->attempt > 2) {
1217 conn->state = BT_CLOSED;
1218 hci_proto_connect_cfm(conn, status);
1219 hci_conn_del(conn);
1220 } else
1221 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223 } else {
1224 if (!conn) {
1225 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1226 if (conn) {
Johan Hedberga0c808b2012-01-16 09:49:58 +02001227 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 conn->link_mode |= HCI_LM_MASTER;
1229 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001230 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232 }
1233
1234 hci_dev_unlock(hdev);
1235}
1236
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001237static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001239 struct hci_cp_add_sco *cp;
1240 struct hci_conn *acl, *sco;
1241 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001243 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001244
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001245 if (!status)
1246 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001248 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1249 if (!cp)
1250 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001252 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001254 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001255
1256 hci_dev_lock(hdev);
1257
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001258 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001259 if (acl) {
1260 sco = acl->link;
1261 if (sco) {
1262 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001263
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001264 hci_proto_connect_cfm(sco, status);
1265 hci_conn_del(sco);
1266 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001267 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001268
1269 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
Marcel Holtmannf8558552008-07-14 20:13:49 +02001272static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1273{
1274 struct hci_cp_auth_requested *cp;
1275 struct hci_conn *conn;
1276
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001277 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001278
1279 if (!status)
1280 return;
1281
1282 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1283 if (!cp)
1284 return;
1285
1286 hci_dev_lock(hdev);
1287
1288 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1289 if (conn) {
1290 if (conn->state == BT_CONFIG) {
1291 hci_proto_connect_cfm(conn, status);
1292 hci_conn_put(conn);
1293 }
1294 }
1295
1296 hci_dev_unlock(hdev);
1297}
1298
1299static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1300{
1301 struct hci_cp_set_conn_encrypt *cp;
1302 struct hci_conn *conn;
1303
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001304 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannf8558552008-07-14 20:13:49 +02001305
1306 if (!status)
1307 return;
1308
1309 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1310 if (!cp)
1311 return;
1312
1313 hci_dev_lock(hdev);
1314
1315 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1316 if (conn) {
1317 if (conn->state == BT_CONFIG) {
1318 hci_proto_connect_cfm(conn, status);
1319 hci_conn_put(conn);
1320 }
1321 }
1322
1323 hci_dev_unlock(hdev);
1324}
1325
Johan Hedberg127178d2010-11-18 22:22:29 +02001326static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001327 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001328{
Johan Hedberg392599b2010-11-18 22:22:28 +02001329 if (conn->state != BT_CONFIG || !conn->out)
1330 return 0;
1331
Johan Hedberg765c2a92011-01-19 12:06:52 +05301332 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001333 return 0;
1334
1335 /* Only request authentication for SSP connections or non-SSP
Vinicius Costa Gomese9bf2bf2011-09-02 14:51:20 -03001336 * devices with sec_level HIGH or if MITM protection is requested */
Gustavo Padovan807deac2012-05-17 00:36:24 -03001337 if (!hci_conn_ssp_enabled(conn) && !(conn->auth_type & 0x01) &&
1338 conn->pending_sec_level != BT_SECURITY_HIGH)
Johan Hedberg392599b2010-11-18 22:22:28 +02001339 return 0;
1340
Johan Hedberg392599b2010-11-18 22:22:28 +02001341 return 1;
1342}
1343
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001344static int hci_resolve_name(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001345 struct inquiry_entry *e)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001346{
1347 struct hci_cp_remote_name_req cp;
1348
1349 memset(&cp, 0, sizeof(cp));
1350
1351 bacpy(&cp.bdaddr, &e->data.bdaddr);
1352 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1353 cp.pscan_mode = e->data.pscan_mode;
1354 cp.clock_offset = e->data.clock_offset;
1355
1356 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1357}
1358
Johan Hedbergb644ba32012-01-17 21:48:47 +02001359static bool hci_resolve_next_name(struct hci_dev *hdev)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001360{
1361 struct discovery_state *discov = &hdev->discovery;
1362 struct inquiry_entry *e;
1363
Johan Hedbergb644ba32012-01-17 21:48:47 +02001364 if (list_empty(&discov->resolve))
1365 return false;
1366
1367 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
Ram Malovanyc8100892012-07-19 10:26:09 +03001368 if (!e)
1369 return false;
1370
Johan Hedbergb644ba32012-01-17 21:48:47 +02001371 if (hci_resolve_name(hdev, e) == 0) {
1372 e->name_state = NAME_PENDING;
1373 return true;
1374 }
1375
1376 return false;
1377}
1378
1379static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001380 bdaddr_t *bdaddr, u8 *name, u8 name_len)
Johan Hedbergb644ba32012-01-17 21:48:47 +02001381{
1382 struct discovery_state *discov = &hdev->discovery;
1383 struct inquiry_entry *e;
1384
1385 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001386 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00, 0, name,
1387 name_len, conn->dev_class);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001388
1389 if (discov->state == DISCOVERY_STOPPED)
1390 return;
1391
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001392 if (discov->state == DISCOVERY_STOPPING)
1393 goto discov_complete;
1394
1395 if (discov->state != DISCOVERY_RESOLVING)
1396 return;
1397
1398 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
Ram Malovany7cc83802012-07-19 10:26:10 +03001399 /* If the device was not found in a list of found devices names of which
1400 * are pending. there is no need to continue resolving a next name as it
1401 * will be done upon receiving another Remote Name Request Complete
1402 * Event */
1403 if (!e)
1404 return;
1405
1406 list_del(&e->list);
1407 if (name) {
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001408 e->name_state = NAME_KNOWN;
Ram Malovany7cc83802012-07-19 10:26:10 +03001409 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
1410 e->data.rssi, name, name_len);
Ram Malovanyc3e7c0d2012-07-19 10:26:11 +03001411 } else {
1412 e->name_state = NAME_NOT_KNOWN;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001413 }
1414
Johan Hedbergb644ba32012-01-17 21:48:47 +02001415 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001416 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001417
1418discov_complete:
1419 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1420}
1421
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001422static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1423{
Johan Hedberg127178d2010-11-18 22:22:29 +02001424 struct hci_cp_remote_name_req *cp;
1425 struct hci_conn *conn;
1426
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001427 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001428
1429 /* If successful wait for the name req complete event before
1430 * checking for the need to do authentication */
1431 if (!status)
1432 return;
1433
1434 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1435 if (!cp)
1436 return;
1437
1438 hci_dev_lock(hdev);
1439
1440 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001441
1442 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1443 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1444
Johan Hedberg79c6c702011-04-28 11:28:55 -07001445 if (!conn)
1446 goto unlock;
1447
1448 if (!hci_outgoing_auth_needed(hdev, conn))
1449 goto unlock;
1450
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001451 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001452 struct hci_cp_auth_requested cp;
1453 cp.handle = __cpu_to_le16(conn->handle);
1454 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1455 }
1456
Johan Hedberg79c6c702011-04-28 11:28:55 -07001457unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001458 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001459}
1460
Marcel Holtmann769be972008-07-14 20:13:49 +02001461static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1462{
1463 struct hci_cp_read_remote_features *cp;
1464 struct hci_conn *conn;
1465
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001466 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001467
1468 if (!status)
1469 return;
1470
1471 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1472 if (!cp)
1473 return;
1474
1475 hci_dev_lock(hdev);
1476
1477 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1478 if (conn) {
1479 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001480 hci_proto_connect_cfm(conn, status);
1481 hci_conn_put(conn);
1482 }
1483 }
1484
1485 hci_dev_unlock(hdev);
1486}
1487
1488static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1489{
1490 struct hci_cp_read_remote_ext_features *cp;
1491 struct hci_conn *conn;
1492
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001493 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001494
1495 if (!status)
1496 return;
1497
1498 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1499 if (!cp)
1500 return;
1501
1502 hci_dev_lock(hdev);
1503
1504 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1505 if (conn) {
1506 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001507 hci_proto_connect_cfm(conn, status);
1508 hci_conn_put(conn);
1509 }
1510 }
1511
1512 hci_dev_unlock(hdev);
1513}
1514
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001515static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1516{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001517 struct hci_cp_setup_sync_conn *cp;
1518 struct hci_conn *acl, *sco;
1519 __u16 handle;
1520
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001521 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001522
1523 if (!status)
1524 return;
1525
1526 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1527 if (!cp)
1528 return;
1529
1530 handle = __le16_to_cpu(cp->handle);
1531
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001532 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001533
1534 hci_dev_lock(hdev);
1535
1536 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001537 if (acl) {
1538 sco = acl->link;
1539 if (sco) {
1540 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001541
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001542 hci_proto_connect_cfm(sco, status);
1543 hci_conn_del(sco);
1544 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001545 }
1546
1547 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001548}
1549
1550static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1551{
1552 struct hci_cp_sniff_mode *cp;
1553 struct hci_conn *conn;
1554
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001555 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001556
1557 if (!status)
1558 return;
1559
1560 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1561 if (!cp)
1562 return;
1563
1564 hci_dev_lock(hdev);
1565
1566 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001567 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001568 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001569
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001570 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001571 hci_sco_setup(conn, status);
1572 }
1573
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001574 hci_dev_unlock(hdev);
1575}
1576
1577static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1578{
1579 struct hci_cp_exit_sniff_mode *cp;
1580 struct hci_conn *conn;
1581
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001582 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001583
1584 if (!status)
1585 return;
1586
1587 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1588 if (!cp)
1589 return;
1590
1591 hci_dev_lock(hdev);
1592
1593 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001594 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001595 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001596
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001597 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001598 hci_sco_setup(conn, status);
1599 }
1600
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001601 hci_dev_unlock(hdev);
1602}
1603
Johan Hedberg88c3df12012-02-09 14:27:38 +02001604static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1605{
1606 struct hci_cp_disconnect *cp;
1607 struct hci_conn *conn;
1608
1609 if (!status)
1610 return;
1611
1612 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1613 if (!cp)
1614 return;
1615
1616 hci_dev_lock(hdev);
1617
1618 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1619 if (conn)
1620 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001621 conn->dst_type, status);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001622
1623 hci_dev_unlock(hdev);
1624}
1625
Ville Tervofcd89c02011-02-10 22:38:47 -03001626static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1627{
Ville Tervofcd89c02011-02-10 22:38:47 -03001628 struct hci_conn *conn;
1629
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001630 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Ville Tervofcd89c02011-02-10 22:38:47 -03001631
Ville Tervofcd89c02011-02-10 22:38:47 -03001632 if (status) {
Andre Guedesf00a06a2012-07-27 15:10:13 -03001633 hci_dev_lock(hdev);
Ville Tervofcd89c02011-02-10 22:38:47 -03001634
Andre Guedes0c95ab72012-07-27 15:10:14 -03001635 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Andre Guedesf00a06a2012-07-27 15:10:13 -03001636 if (!conn) {
1637 hci_dev_unlock(hdev);
1638 return;
1639 }
1640
Andre Guedes0c95ab72012-07-27 15:10:14 -03001641 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&conn->dst),
Andre Guedesf00a06a2012-07-27 15:10:13 -03001642 conn);
1643
1644 conn->state = BT_CLOSED;
Andre Guedes0c95ab72012-07-27 15:10:14 -03001645 mgmt_connect_failed(hdev, &conn->dst, conn->type,
Andre Guedesf00a06a2012-07-27 15:10:13 -03001646 conn->dst_type, status);
1647 hci_proto_connect_cfm(conn, status);
1648 hci_conn_del(conn);
1649
1650 hci_dev_unlock(hdev);
1651 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001652}
1653
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001654static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1655{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001656 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001657}
1658
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001659static void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001660{
1661 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001662 struct discovery_state *discov = &hdev->discovery;
1663 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001664
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001665 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001666
Johan Hedberg23bb5762010-12-21 23:01:27 +02001667 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001668
1669 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001670
1671 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1672 return;
1673
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001674 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001675 return;
1676
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001677 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001678
Andre Guedes343f9352012-02-17 20:39:37 -03001679 if (discov->state != DISCOVERY_FINDING)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001680 goto unlock;
1681
1682 if (list_empty(&discov->resolve)) {
1683 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1684 goto unlock;
1685 }
1686
1687 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1688 if (e && hci_resolve_name(hdev, e) == 0) {
1689 e->name_state = NAME_PENDING;
1690 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1691 } else {
1692 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1693 }
1694
1695unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001696 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001697}
1698
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001699static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001701 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001702 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 int num_rsp = *((__u8 *) skb->data);
1704
1705 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1706
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001707 if (!num_rsp)
1708 return;
1709
Andre Guedes1519cc12012-03-21 00:03:38 -03001710 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
1711 return;
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001714
Johan Hedberge17acd42011-03-30 23:57:16 +03001715 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001716 bool name_known, ssp;
Johan Hedberg31754052012-01-04 13:39:52 +02001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 bacpy(&data.bdaddr, &info->bdaddr);
1719 data.pscan_rep_mode = info->pscan_rep_mode;
1720 data.pscan_period_mode = info->pscan_period_mode;
1721 data.pscan_mode = info->pscan_mode;
1722 memcpy(data.dev_class, info->dev_class, 3);
1723 data.clock_offset = info->clock_offset;
1724 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001725 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02001726
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001727 name_known = hci_inquiry_cache_update(hdev, &data, false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02001728 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001729 info->dev_class, 0, !name_known, ssp, NULL,
1730 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 hci_dev_unlock(hdev);
1734}
1735
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001736static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001738 struct hci_ev_conn_complete *ev = (void *) skb->data;
1739 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001741 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001744
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001745 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001746 if (!conn) {
1747 if (ev->link_type != SCO_LINK)
1748 goto unlock;
1749
1750 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1751 if (!conn)
1752 goto unlock;
1753
1754 conn->type = SCO_LINK;
1755 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001756
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001757 if (!ev->status) {
1758 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001759
1760 if (conn->type == ACL_LINK) {
1761 conn->state = BT_CONFIG;
1762 hci_conn_hold(conn);
Szymon Janca9ea3ed2012-07-19 14:46:08 +02001763
1764 if (!conn->out && !hci_conn_ssp_enabled(conn) &&
1765 !hci_find_link_key(hdev, &ev->bdaddr))
1766 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
1767 else
1768 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02001769 } else
1770 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001771
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001772 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001773 hci_conn_add_sysfs(conn);
1774
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001775 if (test_bit(HCI_AUTH, &hdev->flags))
1776 conn->link_mode |= HCI_LM_AUTH;
1777
1778 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1779 conn->link_mode |= HCI_LM_ENCRYPT;
1780
1781 /* Get remote features */
1782 if (conn->type == ACL_LINK) {
1783 struct hci_cp_read_remote_features cp;
1784 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001785 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001786 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001787 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001788
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001789 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02001790 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001791 struct hci_cp_change_conn_ptype cp;
1792 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001793 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001794 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, sizeof(cp),
1795 &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001796 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001797 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001798 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001799 if (conn->type == ACL_LINK)
Johan Hedberg744cf192011-11-08 20:40:14 +02001800 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001801 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02001802 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001803
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001804 if (conn->type == ACL_LINK)
1805 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001806
Marcel Holtmann769be972008-07-14 20:13:49 +02001807 if (ev->status) {
1808 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001809 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001810 } else if (ev->link_type != ACL_LINK)
1811 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001812
1813unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001815
1816 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001819static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001821 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 int mask = hdev->link_mode;
1823
Gustavo Padovan807deac2012-05-17 00:36:24 -03001824 BT_DBG("%s bdaddr %s type 0x%x", hdev->name, batostr(&ev->bdaddr),
1825 ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1828
Szymon Janc138d22e2011-02-17 16:44:23 +01001829 if ((mask & HCI_LM_ACCEPT) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001830 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001832 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001836
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001837 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1838 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001839 memcpy(ie->data.dev_class, ev->dev_class, 3);
1840
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001841 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type,
1842 &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001844 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1845 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001846 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 hci_dev_unlock(hdev);
1848 return;
1849 }
1850 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 memcpy(conn->dev_class, ev->dev_class, 3);
1853 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 hci_dev_unlock(hdev);
1856
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001857 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1858 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001860 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001862 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1863 cp.role = 0x00; /* Become master */
1864 else
1865 cp.role = 0x01; /* Remain slave */
1866
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001867 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp),
1868 &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001869 } else {
1870 struct hci_cp_accept_sync_conn_req cp;
1871
1872 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001873 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001874
Andrei Emeltchenko82781e62012-05-25 11:38:27 +03001875 cp.tx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1876 cp.rx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1877 cp.max_latency = __constant_cpu_to_le16(0xffff);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001878 cp.content_format = cpu_to_le16(hdev->voice_setting);
1879 cp.retrans_effort = 0xff;
1880
1881 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001882 sizeof(cp), &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 } else {
1885 /* Connection rejected */
1886 struct hci_cp_reject_conn_req cp;
1887
1888 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02001889 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001890 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892}
1893
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001894static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001896 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001897 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001899 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 hci_dev_lock(hdev);
1902
Marcel Holtmann04837f62006-07-03 10:02:33 +02001903 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001904 if (!conn)
1905 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001906
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001907 if (ev->status == 0)
1908 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Johan Hedbergb644ba32012-01-17 21:48:47 +02001910 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001911 (conn->type == ACL_LINK || conn->type == LE_LINK)) {
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001912 if (ev->status != 0)
Johan Hedberg88c3df12012-02-09 14:27:38 +02001913 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001914 conn->dst_type, ev->status);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001915 else
Johan Hedbergafc747a2012-01-15 18:11:07 +02001916 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001917 conn->dst_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001918 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001919
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001920 if (ev->status == 0) {
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05301921 if (conn->type == ACL_LINK && conn->flush_key)
1922 hci_remove_link_key(hdev, &conn->dst);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001923 hci_proto_disconn_cfm(conn, ev->reason);
1924 hci_conn_del(conn);
1925 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001926
1927unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 hci_dev_unlock(hdev);
1929}
1930
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001931static void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001932{
1933 struct hci_ev_auth_complete *ev = (void *) skb->data;
1934 struct hci_conn *conn;
1935
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001936 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001937
1938 hci_dev_lock(hdev);
1939
1940 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001941 if (!conn)
1942 goto unlock;
1943
1944 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001945 if (!hci_conn_ssp_enabled(conn) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001946 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001947 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03001948 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001949 conn->link_mode |= HCI_LM_AUTH;
1950 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03001951 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001952 } else {
Johan Hedbergbab73cb2012-02-09 16:07:29 +02001953 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001954 ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001955 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001956
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001957 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
1958 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001959
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001960 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001961 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001962 struct hci_cp_set_conn_encrypt cp;
1963 cp.handle = ev->handle;
1964 cp.encrypt = 0x01;
1965 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001966 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001967 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001968 conn->state = BT_CONNECTED;
1969 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001970 hci_conn_put(conn);
1971 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001972 } else {
1973 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001974
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001975 hci_conn_hold(conn);
1976 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
1977 hci_conn_put(conn);
1978 }
1979
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001980 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001981 if (!ev->status) {
1982 struct hci_cp_set_conn_encrypt cp;
1983 cp.handle = ev->handle;
1984 cp.encrypt = 0x01;
1985 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001986 &cp);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001987 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001988 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001989 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001990 }
1991 }
1992
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001993unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001994 hci_dev_unlock(hdev);
1995}
1996
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001997static void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001998{
Johan Hedberg127178d2010-11-18 22:22:29 +02001999 struct hci_ev_remote_name *ev = (void *) skb->data;
2000 struct hci_conn *conn;
2001
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002002 BT_DBG("%s", hdev->name);
2003
2004 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02002005
2006 hci_dev_lock(hdev);
2007
2008 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002009
2010 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2011 goto check_auth;
2012
2013 if (ev->status == 0)
2014 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002015 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
Johan Hedbergb644ba32012-01-17 21:48:47 +02002016 else
2017 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
2018
2019check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07002020 if (!conn)
2021 goto unlock;
2022
2023 if (!hci_outgoing_auth_needed(hdev, conn))
2024 goto unlock;
2025
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002026 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002027 struct hci_cp_auth_requested cp;
2028 cp.handle = __cpu_to_le16(conn->handle);
2029 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
2030 }
2031
Johan Hedberg79c6c702011-04-28 11:28:55 -07002032unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02002033 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002034}
2035
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002036static void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002037{
2038 struct hci_ev_encrypt_change *ev = (void *) skb->data;
2039 struct hci_conn *conn;
2040
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002041 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002042
2043 hci_dev_lock(hdev);
2044
2045 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2046 if (conn) {
2047 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02002048 if (ev->encrypt) {
2049 /* Encryption implies authentication */
2050 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002051 conn->link_mode |= HCI_LM_ENCRYPT;
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002052 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannae293192008-07-14 20:13:45 +02002053 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002054 conn->link_mode &= ~HCI_LM_ENCRYPT;
2055 }
2056
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002057 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002058
Gustavo Padovana7d77232012-05-13 03:20:07 -03002059 if (ev->status && conn->state == BT_CONNECTED) {
Gustavo Padovand839c812012-05-16 12:17:12 -03002060 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
Gustavo Padovana7d77232012-05-13 03:20:07 -03002061 hci_conn_put(conn);
2062 goto unlock;
2063 }
2064
Marcel Holtmannf8558552008-07-14 20:13:49 +02002065 if (conn->state == BT_CONFIG) {
2066 if (!ev->status)
2067 conn->state = BT_CONNECTED;
2068
2069 hci_proto_connect_cfm(conn, ev->status);
2070 hci_conn_put(conn);
2071 } else
2072 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002073 }
2074
Gustavo Padovana7d77232012-05-13 03:20:07 -03002075unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002076 hci_dev_unlock(hdev);
2077}
2078
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002079static void hci_change_link_key_complete_evt(struct hci_dev *hdev,
2080 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002081{
2082 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2083 struct hci_conn *conn;
2084
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002085 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002086
2087 hci_dev_lock(hdev);
2088
2089 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2090 if (conn) {
2091 if (!ev->status)
2092 conn->link_mode |= HCI_LM_SECURE;
2093
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002094 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002095
2096 hci_key_change_cfm(conn, ev->status);
2097 }
2098
2099 hci_dev_unlock(hdev);
2100}
2101
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002102static void hci_remote_features_evt(struct hci_dev *hdev,
2103 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002104{
2105 struct hci_ev_remote_features *ev = (void *) skb->data;
2106 struct hci_conn *conn;
2107
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002108 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002109
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002110 hci_dev_lock(hdev);
2111
2112 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002113 if (!conn)
2114 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002115
Johan Hedbergccd556f2010-11-10 17:11:51 +02002116 if (!ev->status)
2117 memcpy(conn->features, ev->features, 8);
2118
2119 if (conn->state != BT_CONFIG)
2120 goto unlock;
2121
2122 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2123 struct hci_cp_read_remote_ext_features cp;
2124 cp.handle = ev->handle;
2125 cp.page = 0x01;
2126 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002127 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002128 goto unlock;
2129 }
2130
Johan Hedberg671267b2012-05-12 16:11:50 -03002131 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002132 struct hci_cp_remote_name_req cp;
2133 memset(&cp, 0, sizeof(cp));
2134 bacpy(&cp.bdaddr, &conn->dst);
2135 cp.pscan_rep_mode = 0x02;
2136 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002137 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2138 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002139 conn->dst_type, 0, NULL, 0,
2140 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002141
Johan Hedberg127178d2010-11-18 22:22:29 +02002142 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002143 conn->state = BT_CONNECTED;
2144 hci_proto_connect_cfm(conn, ev->status);
2145 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002146 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002147
Johan Hedbergccd556f2010-11-10 17:11:51 +02002148unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002149 hci_dev_unlock(hdev);
2150}
2151
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002152static void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002153{
2154 BT_DBG("%s", hdev->name);
2155}
2156
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002157static void hci_qos_setup_complete_evt(struct hci_dev *hdev,
2158 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002159{
2160 BT_DBG("%s", hdev->name);
2161}
2162
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002163static void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002164{
2165 struct hci_ev_cmd_complete *ev = (void *) skb->data;
2166 __u16 opcode;
2167
2168 skb_pull(skb, sizeof(*ev));
2169
2170 opcode = __le16_to_cpu(ev->opcode);
2171
2172 switch (opcode) {
2173 case HCI_OP_INQUIRY_CANCEL:
2174 hci_cc_inquiry_cancel(hdev, skb);
2175 break;
2176
Andre Guedes4d934832012-03-21 00:03:35 -03002177 case HCI_OP_PERIODIC_INQ:
2178 hci_cc_periodic_inq(hdev, skb);
2179 break;
2180
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002181 case HCI_OP_EXIT_PERIODIC_INQ:
2182 hci_cc_exit_periodic_inq(hdev, skb);
2183 break;
2184
2185 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2186 hci_cc_remote_name_req_cancel(hdev, skb);
2187 break;
2188
2189 case HCI_OP_ROLE_DISCOVERY:
2190 hci_cc_role_discovery(hdev, skb);
2191 break;
2192
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002193 case HCI_OP_READ_LINK_POLICY:
2194 hci_cc_read_link_policy(hdev, skb);
2195 break;
2196
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002197 case HCI_OP_WRITE_LINK_POLICY:
2198 hci_cc_write_link_policy(hdev, skb);
2199 break;
2200
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002201 case HCI_OP_READ_DEF_LINK_POLICY:
2202 hci_cc_read_def_link_policy(hdev, skb);
2203 break;
2204
2205 case HCI_OP_WRITE_DEF_LINK_POLICY:
2206 hci_cc_write_def_link_policy(hdev, skb);
2207 break;
2208
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002209 case HCI_OP_RESET:
2210 hci_cc_reset(hdev, skb);
2211 break;
2212
2213 case HCI_OP_WRITE_LOCAL_NAME:
2214 hci_cc_write_local_name(hdev, skb);
2215 break;
2216
2217 case HCI_OP_READ_LOCAL_NAME:
2218 hci_cc_read_local_name(hdev, skb);
2219 break;
2220
2221 case HCI_OP_WRITE_AUTH_ENABLE:
2222 hci_cc_write_auth_enable(hdev, skb);
2223 break;
2224
2225 case HCI_OP_WRITE_ENCRYPT_MODE:
2226 hci_cc_write_encrypt_mode(hdev, skb);
2227 break;
2228
2229 case HCI_OP_WRITE_SCAN_ENABLE:
2230 hci_cc_write_scan_enable(hdev, skb);
2231 break;
2232
2233 case HCI_OP_READ_CLASS_OF_DEV:
2234 hci_cc_read_class_of_dev(hdev, skb);
2235 break;
2236
2237 case HCI_OP_WRITE_CLASS_OF_DEV:
2238 hci_cc_write_class_of_dev(hdev, skb);
2239 break;
2240
2241 case HCI_OP_READ_VOICE_SETTING:
2242 hci_cc_read_voice_setting(hdev, skb);
2243 break;
2244
2245 case HCI_OP_WRITE_VOICE_SETTING:
2246 hci_cc_write_voice_setting(hdev, skb);
2247 break;
2248
2249 case HCI_OP_HOST_BUFFER_SIZE:
2250 hci_cc_host_buffer_size(hdev, skb);
2251 break;
2252
Marcel Holtmann333140b2008-07-14 20:13:48 +02002253 case HCI_OP_WRITE_SSP_MODE:
2254 hci_cc_write_ssp_mode(hdev, skb);
2255 break;
2256
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002257 case HCI_OP_READ_LOCAL_VERSION:
2258 hci_cc_read_local_version(hdev, skb);
2259 break;
2260
2261 case HCI_OP_READ_LOCAL_COMMANDS:
2262 hci_cc_read_local_commands(hdev, skb);
2263 break;
2264
2265 case HCI_OP_READ_LOCAL_FEATURES:
2266 hci_cc_read_local_features(hdev, skb);
2267 break;
2268
Andre Guedes971e3a42011-06-30 19:20:52 -03002269 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2270 hci_cc_read_local_ext_features(hdev, skb);
2271 break;
2272
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002273 case HCI_OP_READ_BUFFER_SIZE:
2274 hci_cc_read_buffer_size(hdev, skb);
2275 break;
2276
2277 case HCI_OP_READ_BD_ADDR:
2278 hci_cc_read_bd_addr(hdev, skb);
2279 break;
2280
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002281 case HCI_OP_READ_DATA_BLOCK_SIZE:
2282 hci_cc_read_data_block_size(hdev, skb);
2283 break;
2284
Johan Hedberg23bb5762010-12-21 23:01:27 +02002285 case HCI_OP_WRITE_CA_TIMEOUT:
2286 hci_cc_write_ca_timeout(hdev, skb);
2287 break;
2288
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002289 case HCI_OP_READ_FLOW_CONTROL_MODE:
2290 hci_cc_read_flow_control_mode(hdev, skb);
2291 break;
2292
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002293 case HCI_OP_READ_LOCAL_AMP_INFO:
2294 hci_cc_read_local_amp_info(hdev, skb);
2295 break;
2296
Johan Hedbergb0916ea2011-01-10 13:44:55 +02002297 case HCI_OP_DELETE_STORED_LINK_KEY:
2298 hci_cc_delete_stored_link_key(hdev, skb);
2299 break;
2300
Johan Hedbergd5859e22011-01-25 01:19:58 +02002301 case HCI_OP_SET_EVENT_MASK:
2302 hci_cc_set_event_mask(hdev, skb);
2303 break;
2304
2305 case HCI_OP_WRITE_INQUIRY_MODE:
2306 hci_cc_write_inquiry_mode(hdev, skb);
2307 break;
2308
2309 case HCI_OP_READ_INQ_RSP_TX_POWER:
2310 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2311 break;
2312
2313 case HCI_OP_SET_EVENT_FLT:
2314 hci_cc_set_event_flt(hdev, skb);
2315 break;
2316
Johan Hedberg980e1a52011-01-22 06:10:07 +02002317 case HCI_OP_PIN_CODE_REPLY:
2318 hci_cc_pin_code_reply(hdev, skb);
2319 break;
2320
2321 case HCI_OP_PIN_CODE_NEG_REPLY:
2322 hci_cc_pin_code_neg_reply(hdev, skb);
2323 break;
2324
Szymon Jancc35938b2011-03-22 13:12:21 +01002325 case HCI_OP_READ_LOCAL_OOB_DATA:
2326 hci_cc_read_local_oob_data_reply(hdev, skb);
2327 break;
2328
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002329 case HCI_OP_LE_READ_BUFFER_SIZE:
2330 hci_cc_le_read_buffer_size(hdev, skb);
2331 break;
2332
Johan Hedberga5c29682011-02-19 12:05:57 -03002333 case HCI_OP_USER_CONFIRM_REPLY:
2334 hci_cc_user_confirm_reply(hdev, skb);
2335 break;
2336
2337 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2338 hci_cc_user_confirm_neg_reply(hdev, skb);
2339 break;
2340
Brian Gix1143d452011-11-23 08:28:34 -08002341 case HCI_OP_USER_PASSKEY_REPLY:
2342 hci_cc_user_passkey_reply(hdev, skb);
2343 break;
2344
2345 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2346 hci_cc_user_passkey_neg_reply(hdev, skb);
Szymon Janc16cde992012-04-13 12:32:42 +02002347 break;
Andre Guedes07f7fa52011-12-02 21:13:31 +09002348
2349 case HCI_OP_LE_SET_SCAN_PARAM:
2350 hci_cc_le_set_scan_param(hdev, skb);
Brian Gix1143d452011-11-23 08:28:34 -08002351 break;
2352
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002353 case HCI_OP_LE_SET_SCAN_ENABLE:
2354 hci_cc_le_set_scan_enable(hdev, skb);
2355 break;
2356
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002357 case HCI_OP_LE_LTK_REPLY:
2358 hci_cc_le_ltk_reply(hdev, skb);
2359 break;
2360
2361 case HCI_OP_LE_LTK_NEG_REPLY:
2362 hci_cc_le_ltk_neg_reply(hdev, skb);
2363 break;
2364
Andre Guedesf9b49302011-06-30 19:20:53 -03002365 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2366 hci_cc_write_le_host_supported(hdev, skb);
2367 break;
2368
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002369 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002370 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002371 break;
2372 }
2373
Ville Tervo6bd32322011-02-16 16:32:41 +02002374 if (ev->opcode != HCI_OP_NOP)
2375 del_timer(&hdev->cmd_timer);
2376
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002377 if (ev->ncmd) {
2378 atomic_set(&hdev->cmd_cnt, 1);
2379 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002380 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002381 }
2382}
2383
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002384static void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002385{
2386 struct hci_ev_cmd_status *ev = (void *) skb->data;
2387 __u16 opcode;
2388
2389 skb_pull(skb, sizeof(*ev));
2390
2391 opcode = __le16_to_cpu(ev->opcode);
2392
2393 switch (opcode) {
2394 case HCI_OP_INQUIRY:
2395 hci_cs_inquiry(hdev, ev->status);
2396 break;
2397
2398 case HCI_OP_CREATE_CONN:
2399 hci_cs_create_conn(hdev, ev->status);
2400 break;
2401
2402 case HCI_OP_ADD_SCO:
2403 hci_cs_add_sco(hdev, ev->status);
2404 break;
2405
Marcel Holtmannf8558552008-07-14 20:13:49 +02002406 case HCI_OP_AUTH_REQUESTED:
2407 hci_cs_auth_requested(hdev, ev->status);
2408 break;
2409
2410 case HCI_OP_SET_CONN_ENCRYPT:
2411 hci_cs_set_conn_encrypt(hdev, ev->status);
2412 break;
2413
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002414 case HCI_OP_REMOTE_NAME_REQ:
2415 hci_cs_remote_name_req(hdev, ev->status);
2416 break;
2417
Marcel Holtmann769be972008-07-14 20:13:49 +02002418 case HCI_OP_READ_REMOTE_FEATURES:
2419 hci_cs_read_remote_features(hdev, ev->status);
2420 break;
2421
2422 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2423 hci_cs_read_remote_ext_features(hdev, ev->status);
2424 break;
2425
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002426 case HCI_OP_SETUP_SYNC_CONN:
2427 hci_cs_setup_sync_conn(hdev, ev->status);
2428 break;
2429
2430 case HCI_OP_SNIFF_MODE:
2431 hci_cs_sniff_mode(hdev, ev->status);
2432 break;
2433
2434 case HCI_OP_EXIT_SNIFF_MODE:
2435 hci_cs_exit_sniff_mode(hdev, ev->status);
2436 break;
2437
Johan Hedberg8962ee72011-01-20 12:40:27 +02002438 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002439 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002440 break;
2441
Ville Tervofcd89c02011-02-10 22:38:47 -03002442 case HCI_OP_LE_CREATE_CONN:
2443 hci_cs_le_create_conn(hdev, ev->status);
2444 break;
2445
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002446 case HCI_OP_LE_START_ENC:
2447 hci_cs_le_start_enc(hdev, ev->status);
2448 break;
2449
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002450 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002451 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002452 break;
2453 }
2454
Ville Tervo6bd32322011-02-16 16:32:41 +02002455 if (ev->opcode != HCI_OP_NOP)
2456 del_timer(&hdev->cmd_timer);
2457
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002458 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002459 atomic_set(&hdev->cmd_cnt, 1);
2460 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002461 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002462 }
2463}
2464
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002465static void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002466{
2467 struct hci_ev_role_change *ev = (void *) skb->data;
2468 struct hci_conn *conn;
2469
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002470 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002471
2472 hci_dev_lock(hdev);
2473
2474 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2475 if (conn) {
2476 if (!ev->status) {
2477 if (ev->role)
2478 conn->link_mode &= ~HCI_LM_MASTER;
2479 else
2480 conn->link_mode |= HCI_LM_MASTER;
2481 }
2482
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002483 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002484
2485 hci_role_switch_cfm(conn, ev->status, ev->role);
2486 }
2487
2488 hci_dev_unlock(hdev);
2489}
2490
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002491static void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002493 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 int i;
2495
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002496 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2497 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2498 return;
2499 }
2500
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002501 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002502 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 BT_DBG("%s bad parameters", hdev->name);
2504 return;
2505 }
2506
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002507 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2508
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002509 for (i = 0; i < ev->num_hndl; i++) {
2510 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 struct hci_conn *conn;
2512 __u16 handle, count;
2513
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002514 handle = __le16_to_cpu(info->handle);
2515 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
2517 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002518 if (!conn)
2519 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002521 conn->sent -= count;
2522
2523 switch (conn->type) {
2524 case ACL_LINK:
2525 hdev->acl_cnt += count;
2526 if (hdev->acl_cnt > hdev->acl_pkts)
2527 hdev->acl_cnt = hdev->acl_pkts;
2528 break;
2529
2530 case LE_LINK:
2531 if (hdev->le_pkts) {
2532 hdev->le_cnt += count;
2533 if (hdev->le_cnt > hdev->le_pkts)
2534 hdev->le_cnt = hdev->le_pkts;
2535 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002536 hdev->acl_cnt += count;
2537 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 hdev->acl_cnt = hdev->acl_pkts;
2539 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002540 break;
2541
2542 case SCO_LINK:
2543 hdev->sco_cnt += count;
2544 if (hdev->sco_cnt > hdev->sco_pkts)
2545 hdev->sco_cnt = hdev->sco_pkts;
2546 break;
2547
2548 default:
2549 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2550 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 }
2552 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002553
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002554 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555}
2556
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002557static void hci_num_comp_blocks_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002558{
2559 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2560 int i;
2561
2562 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2563 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2564 return;
2565 }
2566
2567 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002568 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002569 BT_DBG("%s bad parameters", hdev->name);
2570 return;
2571 }
2572
2573 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002574 ev->num_hndl);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002575
2576 for (i = 0; i < ev->num_hndl; i++) {
2577 struct hci_comp_blocks_info *info = &ev->handles[i];
2578 struct hci_conn *conn;
2579 __u16 handle, block_count;
2580
2581 handle = __le16_to_cpu(info->handle);
2582 block_count = __le16_to_cpu(info->blocks);
2583
2584 conn = hci_conn_hash_lookup_handle(hdev, handle);
2585 if (!conn)
2586 continue;
2587
2588 conn->sent -= block_count;
2589
2590 switch (conn->type) {
2591 case ACL_LINK:
2592 hdev->block_cnt += block_count;
2593 if (hdev->block_cnt > hdev->num_blocks)
2594 hdev->block_cnt = hdev->num_blocks;
2595 break;
2596
2597 default:
2598 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2599 break;
2600 }
2601 }
2602
2603 queue_work(hdev->workqueue, &hdev->tx_work);
2604}
2605
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002606static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002608 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002609 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002611 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
2613 hci_dev_lock(hdev);
2614
Marcel Holtmann04837f62006-07-03 10:02:33 +02002615 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2616 if (conn) {
2617 conn->mode = ev->mode;
2618 conn->interval = __le16_to_cpu(ev->interval);
2619
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002620 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
2621 &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02002622 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002623 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002624 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02002625 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002626 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002627
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002628 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002629 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002630 }
2631
2632 hci_dev_unlock(hdev);
2633}
2634
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002635static void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002637 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2638 struct hci_conn *conn;
2639
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002640 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002641
2642 hci_dev_lock(hdev);
2643
2644 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002645 if (!conn)
2646 goto unlock;
2647
2648 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002649 hci_conn_hold(conn);
2650 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2651 hci_conn_put(conn);
2652 }
2653
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002654 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02002655 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002656 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002657 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002658 u8 secure;
2659
2660 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2661 secure = 1;
2662 else
2663 secure = 0;
2664
Johan Hedberg744cf192011-11-08 20:40:14 +02002665 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002666 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002667
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002668unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002669 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670}
2671
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002672static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002674 struct hci_ev_link_key_req *ev = (void *) skb->data;
2675 struct hci_cp_link_key_reply cp;
2676 struct hci_conn *conn;
2677 struct link_key *key;
2678
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002679 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002680
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002681 if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002682 return;
2683
2684 hci_dev_lock(hdev);
2685
2686 key = hci_find_link_key(hdev, &ev->bdaddr);
2687 if (!key) {
2688 BT_DBG("%s link key not found for %s", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002689 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002690 goto not_found;
2691 }
2692
2693 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002694 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002695
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002696 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002697 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002698 BT_DBG("%s ignoring debug key", hdev->name);
2699 goto not_found;
2700 }
2701
2702 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002703 if (conn) {
2704 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002705 conn->auth_type != 0xff && (conn->auth_type & 0x01)) {
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002706 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2707 goto not_found;
2708 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002709
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002710 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002711 conn->pending_sec_level == BT_SECURITY_HIGH) {
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002712 BT_DBG("%s ignoring key unauthenticated for high security",
2713 hdev->name);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002714 goto not_found;
2715 }
2716
2717 conn->key_type = key->type;
2718 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002719 }
2720
2721 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03002722 memcpy(cp.link_key, key->val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002723
2724 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2725
2726 hci_dev_unlock(hdev);
2727
2728 return;
2729
2730not_found:
2731 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2732 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733}
2734
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002735static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002737 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2738 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002739 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002740
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002741 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002742
2743 hci_dev_lock(hdev);
2744
2745 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2746 if (conn) {
2747 hci_conn_hold(conn);
2748 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002749 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002750
2751 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2752 conn->key_type = ev->key_type;
2753
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002754 hci_conn_put(conn);
2755 }
2756
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002757 if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002758 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002759 ev->key_type, pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002760
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002761 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762}
2763
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002764static void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002765{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002766 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002767 struct hci_conn *conn;
2768
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002769 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002770
2771 hci_dev_lock(hdev);
2772
2773 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 if (conn && !ev->status) {
2775 struct inquiry_entry *ie;
2776
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002777 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2778 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 ie->data.clock_offset = ev->clock_offset;
2780 ie->timestamp = jiffies;
2781 }
2782 }
2783
2784 hci_dev_unlock(hdev);
2785}
2786
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002787static void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna8746412008-07-14 20:13:46 +02002788{
2789 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2790 struct hci_conn *conn;
2791
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002792 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna8746412008-07-14 20:13:46 +02002793
2794 hci_dev_lock(hdev);
2795
2796 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2797 if (conn && !ev->status)
2798 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2799
2800 hci_dev_unlock(hdev);
2801}
2802
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002803static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002804{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002805 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002806 struct inquiry_entry *ie;
2807
2808 BT_DBG("%s", hdev->name);
2809
2810 hci_dev_lock(hdev);
2811
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002812 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2813 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002814 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2815 ie->timestamp = jiffies;
2816 }
2817
2818 hci_dev_unlock(hdev);
2819}
2820
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002821static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
2822 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002823{
2824 struct inquiry_data data;
2825 int num_rsp = *((__u8 *) skb->data);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02002826 bool name_known, ssp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002827
2828 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2829
2830 if (!num_rsp)
2831 return;
2832
Andre Guedes1519cc12012-03-21 00:03:38 -03002833 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
2834 return;
2835
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002836 hci_dev_lock(hdev);
2837
2838 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002839 struct inquiry_info_with_rssi_and_pscan_mode *info;
2840 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002841
Johan Hedberge17acd42011-03-30 23:57:16 +03002842 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002843 bacpy(&data.bdaddr, &info->bdaddr);
2844 data.pscan_rep_mode = info->pscan_rep_mode;
2845 data.pscan_period_mode = info->pscan_period_mode;
2846 data.pscan_mode = info->pscan_mode;
2847 memcpy(data.dev_class, info->dev_class, 3);
2848 data.clock_offset = info->clock_offset;
2849 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002850 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002851
2852 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002853 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002854 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002855 info->dev_class, info->rssi,
2856 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002857 }
2858 } else {
2859 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2860
Johan Hedberge17acd42011-03-30 23:57:16 +03002861 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002862 bacpy(&data.bdaddr, &info->bdaddr);
2863 data.pscan_rep_mode = info->pscan_rep_mode;
2864 data.pscan_period_mode = info->pscan_period_mode;
2865 data.pscan_mode = 0x00;
2866 memcpy(data.dev_class, info->dev_class, 3);
2867 data.clock_offset = info->clock_offset;
2868 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002869 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002870 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002871 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002872 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002873 info->dev_class, info->rssi,
2874 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002875 }
2876 }
2877
2878 hci_dev_unlock(hdev);
2879}
2880
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002881static void hci_remote_ext_features_evt(struct hci_dev *hdev,
2882 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002883{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002884 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2885 struct hci_conn *conn;
2886
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002887 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002888
Marcel Holtmann41a96212008-07-14 20:13:48 +02002889 hci_dev_lock(hdev);
2890
2891 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002892 if (!conn)
2893 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002894
Johan Hedbergccd556f2010-11-10 17:11:51 +02002895 if (!ev->status && ev->page == 0x01) {
2896 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002897
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002898 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2899 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002900 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann769be972008-07-14 20:13:49 +02002901
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002902 if (ev->features[0] & LMP_HOST_SSP)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002903 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002904 }
2905
Johan Hedbergccd556f2010-11-10 17:11:51 +02002906 if (conn->state != BT_CONFIG)
2907 goto unlock;
2908
Johan Hedberg671267b2012-05-12 16:11:50 -03002909 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002910 struct hci_cp_remote_name_req cp;
2911 memset(&cp, 0, sizeof(cp));
2912 bacpy(&cp.bdaddr, &conn->dst);
2913 cp.pscan_rep_mode = 0x02;
2914 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002915 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2916 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002917 conn->dst_type, 0, NULL, 0,
2918 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002919
Johan Hedberg127178d2010-11-18 22:22:29 +02002920 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002921 conn->state = BT_CONNECTED;
2922 hci_proto_connect_cfm(conn, ev->status);
2923 hci_conn_put(conn);
2924 }
2925
2926unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002927 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002928}
2929
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002930static void hci_sync_conn_complete_evt(struct hci_dev *hdev,
2931 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002932{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002933 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2934 struct hci_conn *conn;
2935
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002936 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002937
2938 hci_dev_lock(hdev);
2939
2940 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02002941 if (!conn) {
2942 if (ev->link_type == ESCO_LINK)
2943 goto unlock;
2944
2945 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2946 if (!conn)
2947 goto unlock;
2948
2949 conn->type = SCO_LINK;
2950 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002951
Marcel Holtmann732547f2009-04-19 19:14:14 +02002952 switch (ev->status) {
2953 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002954 conn->handle = __le16_to_cpu(ev->handle);
2955 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002956
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07002957 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002958 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02002959 break;
2960
Stephen Coe705e5712010-02-16 11:29:44 -05002961 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002962 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08002963 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002964 case 0x1f: /* Unspecified error */
2965 if (conn->out && conn->attempt < 2) {
2966 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2967 (hdev->esco_type & EDR_ESCO_MASK);
2968 hci_setup_sync(conn, conn->link->handle);
2969 goto unlock;
2970 }
2971 /* fall through */
2972
2973 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002974 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002975 break;
2976 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002977
2978 hci_proto_connect_cfm(conn, ev->status);
2979 if (ev->status)
2980 hci_conn_del(conn);
2981
2982unlock:
2983 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002984}
2985
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002986static void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002987{
2988 BT_DBG("%s", hdev->name);
2989}
2990
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002991static void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002992{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002993 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002994
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002995 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002996}
2997
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002998static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
2999 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003000{
3001 struct inquiry_data data;
3002 struct extended_inquiry_info *info = (void *) (skb->data + 1);
3003 int num_rsp = *((__u8 *) skb->data);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303004 size_t eir_len;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003005
3006 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
3007
3008 if (!num_rsp)
3009 return;
3010
Andre Guedes1519cc12012-03-21 00:03:38 -03003011 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
3012 return;
3013
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003014 hci_dev_lock(hdev);
3015
Johan Hedberge17acd42011-03-30 23:57:16 +03003016 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003017 bool name_known, ssp;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003018
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003019 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01003020 data.pscan_rep_mode = info->pscan_rep_mode;
3021 data.pscan_period_mode = info->pscan_period_mode;
3022 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003023 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01003024 data.clock_offset = info->clock_offset;
3025 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003026 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003027
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003028 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02003029 name_known = eir_has_data_type(info->data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003030 sizeof(info->data),
3031 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003032 else
3033 name_known = true;
3034
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003035 name_known = hci_inquiry_cache_update(hdev, &data, name_known,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003036 &ssp);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303037 eir_len = eir_get_length(info->data, sizeof(info->data));
Johan Hedberg48264f02011-11-09 13:58:58 +02003038 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003039 info->dev_class, info->rssi, !name_known,
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303040 ssp, info->data, eir_len);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003041 }
3042
3043 hci_dev_unlock(hdev);
3044}
3045
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003046static void hci_key_refresh_complete_evt(struct hci_dev *hdev,
3047 struct sk_buff *skb)
3048{
3049 struct hci_ev_key_refresh_complete *ev = (void *) skb->data;
3050 struct hci_conn *conn;
3051
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003052 BT_DBG("%s status 0x%2.2x handle 0x%4.4x", hdev->name, ev->status,
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003053 __le16_to_cpu(ev->handle));
3054
3055 hci_dev_lock(hdev);
3056
3057 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3058 if (!conn)
3059 goto unlock;
3060
3061 if (!ev->status)
3062 conn->sec_level = conn->pending_sec_level;
3063
3064 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3065
3066 if (ev->status && conn->state == BT_CONNECTED) {
3067 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
3068 hci_conn_put(conn);
3069 goto unlock;
3070 }
3071
3072 if (conn->state == BT_CONFIG) {
3073 if (!ev->status)
3074 conn->state = BT_CONNECTED;
3075
3076 hci_proto_connect_cfm(conn, ev->status);
3077 hci_conn_put(conn);
3078 } else {
3079 hci_auth_cfm(conn, ev->status);
3080
3081 hci_conn_hold(conn);
3082 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
3083 hci_conn_put(conn);
3084 }
3085
3086unlock:
3087 hci_dev_unlock(hdev);
3088}
3089
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003090static u8 hci_get_auth_req(struct hci_conn *conn)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003091{
3092 /* If remote requests dedicated bonding follow that lead */
3093 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
3094 /* If both remote and local IO capabilities allow MITM
3095 * protection then require it, otherwise don't */
3096 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
3097 return 0x02;
3098 else
3099 return 0x03;
3100 }
3101
3102 /* If remote requests no-bonding follow that lead */
3103 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02003104 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003105
3106 return conn->auth_type;
3107}
3108
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003109static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003110{
3111 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3112 struct hci_conn *conn;
3113
3114 BT_DBG("%s", hdev->name);
3115
3116 hci_dev_lock(hdev);
3117
3118 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003119 if (!conn)
3120 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003121
Johan Hedberg03b555e2011-01-04 15:40:05 +02003122 hci_conn_hold(conn);
3123
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003124 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003125 goto unlock;
3126
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003127 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Gustavo Padovan807deac2012-05-17 00:36:24 -03003128 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003129 struct hci_cp_io_capability_reply cp;
3130
3131 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303132 /* Change the IO capability from KeyboardDisplay
3133 * to DisplayYesNo as it is not supported by BT spec. */
3134 cp.capability = (conn->io_capability == 0x04) ?
3135 0x01 : conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07003136 conn->auth_type = hci_get_auth_req(conn);
3137 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003138
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003139 if (hci_find_remote_oob_data(hdev, &conn->dst) &&
3140 (conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)))
Szymon Jancce85ee12011-03-22 13:12:23 +01003141 cp.oob_data = 0x01;
3142 else
3143 cp.oob_data = 0x00;
3144
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003145 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003146 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003147 } else {
3148 struct hci_cp_io_capability_neg_reply cp;
3149
3150 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003151 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003152
3153 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003154 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003155 }
3156
3157unlock:
3158 hci_dev_unlock(hdev);
3159}
3160
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003161static void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
Johan Hedberg03b555e2011-01-04 15:40:05 +02003162{
3163 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3164 struct hci_conn *conn;
3165
3166 BT_DBG("%s", hdev->name);
3167
3168 hci_dev_lock(hdev);
3169
3170 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3171 if (!conn)
3172 goto unlock;
3173
Johan Hedberg03b555e2011-01-04 15:40:05 +02003174 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003175 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003176 if (ev->oob_data)
3177 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003178
3179unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003180 hci_dev_unlock(hdev);
3181}
3182
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003183static void hci_user_confirm_request_evt(struct hci_dev *hdev,
3184 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03003185{
3186 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003187 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003188 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003189
3190 BT_DBG("%s", hdev->name);
3191
3192 hci_dev_lock(hdev);
3193
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003194 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003195 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003196
Johan Hedberg7a828902011-04-28 11:28:53 -07003197 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3198 if (!conn)
3199 goto unlock;
3200
3201 loc_mitm = (conn->auth_type & 0x01);
3202 rem_mitm = (conn->remote_auth & 0x01);
3203
3204 /* If we require MITM but the remote device can't provide that
3205 * (it has NoInputNoOutput) then reject the confirmation
3206 * request. The only exception is when we're dedicated bonding
3207 * initiators (connect_cfm_cb set) since then we always have the MITM
3208 * bit set. */
3209 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
3210 BT_DBG("Rejecting request: remote device can't provide MITM");
3211 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003212 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003213 goto unlock;
3214 }
3215
3216 /* If no side requires MITM protection; auto-accept */
3217 if ((!loc_mitm || conn->remote_cap == 0x03) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03003218 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003219
3220 /* If we're not the initiators request authorization to
3221 * proceed from user space (mgmt_user_confirm with
3222 * confirm_hint set to 1). */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003223 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003224 BT_DBG("Confirming auto-accept as acceptor");
3225 confirm_hint = 1;
3226 goto confirm;
3227 }
3228
Johan Hedberg9f616562011-04-28 11:28:54 -07003229 BT_DBG("Auto-accept of user confirmation with %ums delay",
Gustavo Padovan807deac2012-05-17 00:36:24 -03003230 hdev->auto_accept_delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003231
3232 if (hdev->auto_accept_delay > 0) {
3233 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
3234 mod_timer(&conn->auto_accept_timer, jiffies + delay);
3235 goto unlock;
3236 }
3237
Johan Hedberg7a828902011-04-28 11:28:53 -07003238 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003239 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003240 goto unlock;
3241 }
3242
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003243confirm:
Johan Hedberg272d90d2012-02-09 15:26:12 +02003244 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003245 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003246
3247unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003248 hci_dev_unlock(hdev);
3249}
3250
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003251static void hci_user_passkey_request_evt(struct hci_dev *hdev,
3252 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08003253{
3254 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3255
3256 BT_DBG("%s", hdev->name);
3257
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003258 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003259 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003260}
3261
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003262static void hci_simple_pair_complete_evt(struct hci_dev *hdev,
3263 struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003264{
3265 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3266 struct hci_conn *conn;
3267
3268 BT_DBG("%s", hdev->name);
3269
3270 hci_dev_lock(hdev);
3271
3272 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003273 if (!conn)
3274 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003275
Johan Hedberg2a611692011-02-19 12:06:00 -03003276 /* To avoid duplicate auth_failed events to user space we check
3277 * the HCI_CONN_AUTH_PEND flag which will be set if we
3278 * initiated the authentication. A traditional auth_complete
3279 * event gets always produced as initiator and is also mapped to
3280 * the mgmt_auth_failed event */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003281 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status != 0)
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003282 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003283 ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003284
3285 hci_conn_put(conn);
3286
3287unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003288 hci_dev_unlock(hdev);
3289}
3290
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003291static void hci_remote_host_features_evt(struct hci_dev *hdev,
3292 struct sk_buff *skb)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003293{
3294 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3295 struct inquiry_entry *ie;
3296
3297 BT_DBG("%s", hdev->name);
3298
3299 hci_dev_lock(hdev);
3300
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003301 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3302 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003303 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003304
3305 hci_dev_unlock(hdev);
3306}
3307
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003308static void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3309 struct sk_buff *skb)
Szymon Janc2763eda2011-03-22 13:12:22 +01003310{
3311 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3312 struct oob_data *data;
3313
3314 BT_DBG("%s", hdev->name);
3315
3316 hci_dev_lock(hdev);
3317
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003318 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003319 goto unlock;
3320
Szymon Janc2763eda2011-03-22 13:12:22 +01003321 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3322 if (data) {
3323 struct hci_cp_remote_oob_data_reply cp;
3324
3325 bacpy(&cp.bdaddr, &ev->bdaddr);
3326 memcpy(cp.hash, data->hash, sizeof(cp.hash));
3327 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
3328
3329 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003330 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003331 } else {
3332 struct hci_cp_remote_oob_data_neg_reply cp;
3333
3334 bacpy(&cp.bdaddr, &ev->bdaddr);
3335 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003336 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003337 }
3338
Szymon Jance1ba1f12011-04-06 13:01:59 +02003339unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003340 hci_dev_unlock(hdev);
3341}
3342
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003343static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003344{
3345 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3346 struct hci_conn *conn;
3347
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003348 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03003349
3350 hci_dev_lock(hdev);
3351
Andre Guedesb47a09b2012-07-27 15:10:15 -03003352 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
Ville Tervob62f3282011-02-10 22:38:50 -03003353 if (!conn) {
3354 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3355 if (!conn) {
3356 BT_ERR("No memory for new connection");
Andre Guedes230fd162012-07-27 15:10:10 -03003357 goto unlock;
Ville Tervob62f3282011-02-10 22:38:50 -03003358 }
Andre Guedes29b79882011-05-31 14:20:54 -03003359
3360 conn->dst_type = ev->bdaddr_type;
Andre Guedesb9b343d2012-07-27 15:10:11 -03003361
3362 if (ev->role == LE_CONN_ROLE_MASTER) {
3363 conn->out = true;
3364 conn->link_mode |= HCI_LM_MASTER;
3365 }
Ville Tervob62f3282011-02-10 22:38:50 -03003366 }
Ville Tervofcd89c02011-02-10 22:38:47 -03003367
Andre Guedescd17dec2012-07-27 15:10:16 -03003368 if (ev->status) {
3369 mgmt_connect_failed(hdev, &conn->dst, conn->type,
3370 conn->dst_type, ev->status);
3371 hci_proto_connect_cfm(conn, ev->status);
3372 conn->state = BT_CLOSED;
3373 hci_conn_del(conn);
3374 goto unlock;
3375 }
3376
Johan Hedbergb644ba32012-01-17 21:48:47 +02003377 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3378 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003379 conn->dst_type, 0, NULL, 0, NULL);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03003380
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03003381 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03003382 conn->handle = __le16_to_cpu(ev->handle);
3383 conn->state = BT_CONNECTED;
3384
3385 hci_conn_hold_device(conn);
3386 hci_conn_add_sysfs(conn);
3387
3388 hci_proto_connect_cfm(conn, ev->status);
3389
3390unlock:
3391 hci_dev_unlock(hdev);
3392}
3393
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003394static void hci_le_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andre Guedes9aa04c92011-05-26 16:23:51 -03003395{
Andre Guedese95beb42011-09-26 20:48:35 -03003396 u8 num_reports = skb->data[0];
3397 void *ptr = &skb->data[1];
Andre Guedes3c9e9192012-01-10 18:20:50 -03003398 s8 rssi;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003399
3400 hci_dev_lock(hdev);
3401
Andre Guedese95beb42011-09-26 20:48:35 -03003402 while (num_reports--) {
3403 struct hci_ev_le_advertising_info *ev = ptr;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003404
Andre Guedes3c9e9192012-01-10 18:20:50 -03003405 rssi = ev->data[ev->length];
3406 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003407 NULL, rssi, 0, 1, ev->data, ev->length);
Andre Guedes3c9e9192012-01-10 18:20:50 -03003408
Andre Guedese95beb42011-09-26 20:48:35 -03003409 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003410 }
3411
3412 hci_dev_unlock(hdev);
3413}
3414
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003415static void hci_le_ltk_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003416{
3417 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3418 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003419 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003420 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003421 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003422
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003423 BT_DBG("%s handle 0x%4.4x", hdev->name, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003424
3425 hci_dev_lock(hdev);
3426
3427 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003428 if (conn == NULL)
3429 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003430
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003431 ltk = hci_find_ltk(hdev, ev->ediv, ev->random);
3432 if (ltk == NULL)
3433 goto not_found;
3434
3435 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003436 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003437
3438 if (ltk->authenticated)
3439 conn->sec_level = BT_SECURITY_HIGH;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003440
3441 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3442
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003443 if (ltk->type & HCI_SMP_STK) {
3444 list_del(&ltk->list);
3445 kfree(ltk);
3446 }
3447
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003448 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003449
3450 return;
3451
3452not_found:
3453 neg.handle = ev->handle;
3454 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3455 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003456}
3457
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003458static void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003459{
3460 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3461
3462 skb_pull(skb, sizeof(*le_ev));
3463
3464 switch (le_ev->subevent) {
3465 case HCI_EV_LE_CONN_COMPLETE:
3466 hci_le_conn_complete_evt(hdev, skb);
3467 break;
3468
Andre Guedes9aa04c92011-05-26 16:23:51 -03003469 case HCI_EV_LE_ADVERTISING_REPORT:
3470 hci_le_adv_report_evt(hdev, skb);
3471 break;
3472
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003473 case HCI_EV_LE_LTK_REQ:
3474 hci_le_ltk_request_evt(hdev, skb);
3475 break;
3476
Ville Tervofcd89c02011-02-10 22:38:47 -03003477 default:
3478 break;
3479 }
3480}
3481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3483{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003484 struct hci_event_hdr *hdr = (void *) skb->data;
3485 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
3487 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3488
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003489 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 case HCI_EV_INQUIRY_COMPLETE:
3491 hci_inquiry_complete_evt(hdev, skb);
3492 break;
3493
3494 case HCI_EV_INQUIRY_RESULT:
3495 hci_inquiry_result_evt(hdev, skb);
3496 break;
3497
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003498 case HCI_EV_CONN_COMPLETE:
3499 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02003500 break;
3501
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 case HCI_EV_CONN_REQUEST:
3503 hci_conn_request_evt(hdev, skb);
3504 break;
3505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 case HCI_EV_DISCONN_COMPLETE:
3507 hci_disconn_complete_evt(hdev, skb);
3508 break;
3509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 case HCI_EV_AUTH_COMPLETE:
3511 hci_auth_complete_evt(hdev, skb);
3512 break;
3513
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003514 case HCI_EV_REMOTE_NAME:
3515 hci_remote_name_evt(hdev, skb);
3516 break;
3517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 case HCI_EV_ENCRYPT_CHANGE:
3519 hci_encrypt_change_evt(hdev, skb);
3520 break;
3521
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003522 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3523 hci_change_link_key_complete_evt(hdev, skb);
3524 break;
3525
3526 case HCI_EV_REMOTE_FEATURES:
3527 hci_remote_features_evt(hdev, skb);
3528 break;
3529
3530 case HCI_EV_REMOTE_VERSION:
3531 hci_remote_version_evt(hdev, skb);
3532 break;
3533
3534 case HCI_EV_QOS_SETUP_COMPLETE:
3535 hci_qos_setup_complete_evt(hdev, skb);
3536 break;
3537
3538 case HCI_EV_CMD_COMPLETE:
3539 hci_cmd_complete_evt(hdev, skb);
3540 break;
3541
3542 case HCI_EV_CMD_STATUS:
3543 hci_cmd_status_evt(hdev, skb);
3544 break;
3545
3546 case HCI_EV_ROLE_CHANGE:
3547 hci_role_change_evt(hdev, skb);
3548 break;
3549
3550 case HCI_EV_NUM_COMP_PKTS:
3551 hci_num_comp_pkts_evt(hdev, skb);
3552 break;
3553
3554 case HCI_EV_MODE_CHANGE:
3555 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 break;
3557
3558 case HCI_EV_PIN_CODE_REQ:
3559 hci_pin_code_request_evt(hdev, skb);
3560 break;
3561
3562 case HCI_EV_LINK_KEY_REQ:
3563 hci_link_key_request_evt(hdev, skb);
3564 break;
3565
3566 case HCI_EV_LINK_KEY_NOTIFY:
3567 hci_link_key_notify_evt(hdev, skb);
3568 break;
3569
3570 case HCI_EV_CLOCK_OFFSET:
3571 hci_clock_offset_evt(hdev, skb);
3572 break;
3573
Marcel Holtmanna8746412008-07-14 20:13:46 +02003574 case HCI_EV_PKT_TYPE_CHANGE:
3575 hci_pkt_type_change_evt(hdev, skb);
3576 break;
3577
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003578 case HCI_EV_PSCAN_REP_MODE:
3579 hci_pscan_rep_mode_evt(hdev, skb);
3580 break;
3581
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003582 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3583 hci_inquiry_result_with_rssi_evt(hdev, skb);
3584 break;
3585
3586 case HCI_EV_REMOTE_EXT_FEATURES:
3587 hci_remote_ext_features_evt(hdev, skb);
3588 break;
3589
3590 case HCI_EV_SYNC_CONN_COMPLETE:
3591 hci_sync_conn_complete_evt(hdev, skb);
3592 break;
3593
3594 case HCI_EV_SYNC_CONN_CHANGED:
3595 hci_sync_conn_changed_evt(hdev, skb);
3596 break;
3597
Marcel Holtmann04837f62006-07-03 10:02:33 +02003598 case HCI_EV_SNIFF_SUBRATE:
3599 hci_sniff_subrate_evt(hdev, skb);
3600 break;
3601
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003602 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3603 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 break;
3605
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003606 case HCI_EV_KEY_REFRESH_COMPLETE:
3607 hci_key_refresh_complete_evt(hdev, skb);
3608 break;
3609
Marcel Holtmann04936842008-07-14 20:13:48 +02003610 case HCI_EV_IO_CAPA_REQUEST:
3611 hci_io_capa_request_evt(hdev, skb);
3612 break;
3613
Johan Hedberg03b555e2011-01-04 15:40:05 +02003614 case HCI_EV_IO_CAPA_REPLY:
3615 hci_io_capa_reply_evt(hdev, skb);
3616 break;
3617
Johan Hedberga5c29682011-02-19 12:05:57 -03003618 case HCI_EV_USER_CONFIRM_REQUEST:
3619 hci_user_confirm_request_evt(hdev, skb);
3620 break;
3621
Brian Gix1143d452011-11-23 08:28:34 -08003622 case HCI_EV_USER_PASSKEY_REQUEST:
3623 hci_user_passkey_request_evt(hdev, skb);
3624 break;
3625
Marcel Holtmann04936842008-07-14 20:13:48 +02003626 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3627 hci_simple_pair_complete_evt(hdev, skb);
3628 break;
3629
Marcel Holtmann41a96212008-07-14 20:13:48 +02003630 case HCI_EV_REMOTE_HOST_FEATURES:
3631 hci_remote_host_features_evt(hdev, skb);
3632 break;
3633
Ville Tervofcd89c02011-02-10 22:38:47 -03003634 case HCI_EV_LE_META:
3635 hci_le_meta_evt(hdev, skb);
3636 break;
3637
Szymon Janc2763eda2011-03-22 13:12:22 +01003638 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3639 hci_remote_oob_data_request_evt(hdev, skb);
3640 break;
3641
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003642 case HCI_EV_NUM_COMP_BLOCKS:
3643 hci_num_comp_blocks_evt(hdev, skb);
3644 break;
3645
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003646 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003647 BT_DBG("%s event 0x%2.2x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 break;
3649 }
3650
3651 kfree_skb(skb);
3652 hdev->stat.evt_rx++;
3653}