blob: 41ff978a33f9078b3e23b7cc3fed67c78921b5c7 [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
516 if (hdev->features[5] & LMP_SNIFF_SUBR)
517 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
525 if (hdev->features[6] & LMP_NO_FLUSH)
526 events[7] |= 0x01; /* Enhanced Flush Complete */
527
528 if (hdev->features[7] & LMP_LSTO)
529 events[6] |= 0x80; /* Link Supervision Timeout Changed */
530
531 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
532 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
544 if (hdev->features[4] & LMP_LE)
545 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
626 if (hdev->features[0] & LMP_RSWITCH)
627 link_policy |= HCI_LP_RSWITCH;
628 if (hdev->features[0] & LMP_HOLD)
629 link_policy |= HCI_LP_HOLD;
630 if (hdev->features[0] & LMP_SNIFF)
631 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
689 if (hdev->features[3] & LMP_ESCO)
690 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
Johan Hedberg8f984df2012-02-28 01:07:22 +0200749 if (test_bit(HCI_INIT, &hdev->flags) && hdev->features[4] & LMP_LE)
750 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);
1368 if (hci_resolve_name(hdev, e) == 0) {
1369 e->name_state = NAME_PENDING;
1370 return true;
1371 }
1372
1373 return false;
1374}
1375
1376static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001377 bdaddr_t *bdaddr, u8 *name, u8 name_len)
Johan Hedbergb644ba32012-01-17 21:48:47 +02001378{
1379 struct discovery_state *discov = &hdev->discovery;
1380 struct inquiry_entry *e;
1381
1382 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001383 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00, 0, name,
1384 name_len, conn->dev_class);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001385
1386 if (discov->state == DISCOVERY_STOPPED)
1387 return;
1388
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001389 if (discov->state == DISCOVERY_STOPPING)
1390 goto discov_complete;
1391
1392 if (discov->state != DISCOVERY_RESOLVING)
1393 return;
1394
1395 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
1396 if (e) {
1397 e->name_state = NAME_KNOWN;
1398 list_del(&e->list);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001399 if (name)
1400 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001401 e->data.rssi, name, name_len);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001402 }
1403
Johan Hedbergb644ba32012-01-17 21:48:47 +02001404 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001405 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001406
1407discov_complete:
1408 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1409}
1410
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001411static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1412{
Johan Hedberg127178d2010-11-18 22:22:29 +02001413 struct hci_cp_remote_name_req *cp;
1414 struct hci_conn *conn;
1415
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001416 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001417
1418 /* If successful wait for the name req complete event before
1419 * checking for the need to do authentication */
1420 if (!status)
1421 return;
1422
1423 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1424 if (!cp)
1425 return;
1426
1427 hci_dev_lock(hdev);
1428
1429 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001430
1431 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1432 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1433
Johan Hedberg79c6c702011-04-28 11:28:55 -07001434 if (!conn)
1435 goto unlock;
1436
1437 if (!hci_outgoing_auth_needed(hdev, conn))
1438 goto unlock;
1439
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001440 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001441 struct hci_cp_auth_requested cp;
1442 cp.handle = __cpu_to_le16(conn->handle);
1443 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1444 }
1445
Johan Hedberg79c6c702011-04-28 11:28:55 -07001446unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001447 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001448}
1449
Marcel Holtmann769be972008-07-14 20:13:49 +02001450static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1451{
1452 struct hci_cp_read_remote_features *cp;
1453 struct hci_conn *conn;
1454
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001455 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001456
1457 if (!status)
1458 return;
1459
1460 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1461 if (!cp)
1462 return;
1463
1464 hci_dev_lock(hdev);
1465
1466 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1467 if (conn) {
1468 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001469 hci_proto_connect_cfm(conn, status);
1470 hci_conn_put(conn);
1471 }
1472 }
1473
1474 hci_dev_unlock(hdev);
1475}
1476
1477static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1478{
1479 struct hci_cp_read_remote_ext_features *cp;
1480 struct hci_conn *conn;
1481
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001482 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmann769be972008-07-14 20:13:49 +02001483
1484 if (!status)
1485 return;
1486
1487 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1488 if (!cp)
1489 return;
1490
1491 hci_dev_lock(hdev);
1492
1493 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1494 if (conn) {
1495 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001496 hci_proto_connect_cfm(conn, status);
1497 hci_conn_put(conn);
1498 }
1499 }
1500
1501 hci_dev_unlock(hdev);
1502}
1503
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001504static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1505{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001506 struct hci_cp_setup_sync_conn *cp;
1507 struct hci_conn *acl, *sco;
1508 __u16 handle;
1509
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001510 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001511
1512 if (!status)
1513 return;
1514
1515 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1516 if (!cp)
1517 return;
1518
1519 handle = __le16_to_cpu(cp->handle);
1520
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001521 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001522
1523 hci_dev_lock(hdev);
1524
1525 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001526 if (acl) {
1527 sco = acl->link;
1528 if (sco) {
1529 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001530
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001531 hci_proto_connect_cfm(sco, status);
1532 hci_conn_del(sco);
1533 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001534 }
1535
1536 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001537}
1538
1539static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1540{
1541 struct hci_cp_sniff_mode *cp;
1542 struct hci_conn *conn;
1543
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001544 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001545
1546 if (!status)
1547 return;
1548
1549 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1550 if (!cp)
1551 return;
1552
1553 hci_dev_lock(hdev);
1554
1555 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001556 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001557 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001558
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001559 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001560 hci_sco_setup(conn, status);
1561 }
1562
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001563 hci_dev_unlock(hdev);
1564}
1565
1566static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1567{
1568 struct hci_cp_exit_sniff_mode *cp;
1569 struct hci_conn *conn;
1570
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001571 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001572
1573 if (!status)
1574 return;
1575
1576 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1577 if (!cp)
1578 return;
1579
1580 hci_dev_lock(hdev);
1581
1582 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001583 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001584 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001585
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001586 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001587 hci_sco_setup(conn, status);
1588 }
1589
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001590 hci_dev_unlock(hdev);
1591}
1592
Johan Hedberg88c3df12012-02-09 14:27:38 +02001593static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1594{
1595 struct hci_cp_disconnect *cp;
1596 struct hci_conn *conn;
1597
1598 if (!status)
1599 return;
1600
1601 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1602 if (!cp)
1603 return;
1604
1605 hci_dev_lock(hdev);
1606
1607 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1608 if (conn)
1609 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001610 conn->dst_type, status);
Johan Hedberg88c3df12012-02-09 14:27:38 +02001611
1612 hci_dev_unlock(hdev);
1613}
1614
Ville Tervofcd89c02011-02-10 22:38:47 -03001615static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1616{
1617 struct hci_cp_le_create_conn *cp;
1618 struct hci_conn *conn;
1619
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001620 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Ville Tervofcd89c02011-02-10 22:38:47 -03001621
1622 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_CREATE_CONN);
1623 if (!cp)
1624 return;
1625
1626 hci_dev_lock(hdev);
1627
1628 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->peer_addr);
1629
1630 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->peer_addr),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001631 conn);
Ville Tervofcd89c02011-02-10 22:38:47 -03001632
1633 if (status) {
1634 if (conn && conn->state == BT_CONNECT) {
1635 conn->state = BT_CLOSED;
Hemant Gupta328c9242012-04-05 16:51:04 +05301636 mgmt_connect_failed(hdev, &cp->peer_addr, conn->type,
1637 conn->dst_type, status);
Ville Tervofcd89c02011-02-10 22:38:47 -03001638 hci_proto_connect_cfm(conn, status);
1639 hci_conn_del(conn);
1640 }
1641 } else {
1642 if (!conn) {
1643 conn = hci_conn_add(hdev, LE_LINK, &cp->peer_addr);
Andre Guedes29b79882011-05-31 14:20:54 -03001644 if (conn) {
1645 conn->dst_type = cp->peer_addr_type;
Johan Hedberga0c808b2012-01-16 09:49:58 +02001646 conn->out = true;
Andre Guedes29b79882011-05-31 14:20:54 -03001647 } else {
Ville Tervofcd89c02011-02-10 22:38:47 -03001648 BT_ERR("No memory for new connection");
Andre Guedes29b79882011-05-31 14:20:54 -03001649 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001650 }
1651 }
1652
1653 hci_dev_unlock(hdev);
1654}
1655
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001656static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1657{
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001658 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001659}
1660
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001661static void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001662{
1663 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001664 struct discovery_state *discov = &hdev->discovery;
1665 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001666
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001667 BT_DBG("%s status 0x%2.2x", hdev->name, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001668
Johan Hedberg23bb5762010-12-21 23:01:27 +02001669 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001670
1671 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001672
1673 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1674 return;
1675
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001676 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001677 return;
1678
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001679 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001680
Andre Guedes343f9352012-02-17 20:39:37 -03001681 if (discov->state != DISCOVERY_FINDING)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001682 goto unlock;
1683
1684 if (list_empty(&discov->resolve)) {
1685 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1686 goto unlock;
1687 }
1688
1689 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1690 if (e && hci_resolve_name(hdev, e) == 0) {
1691 e->name_state = NAME_PENDING;
1692 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1693 } else {
1694 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1695 }
1696
1697unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001698 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001699}
1700
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001701static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001703 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001704 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 int num_rsp = *((__u8 *) skb->data);
1706
1707 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1708
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001709 if (!num_rsp)
1710 return;
1711
Andre Guedes1519cc12012-03-21 00:03:38 -03001712 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
1713 return;
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001716
Johan Hedberge17acd42011-03-30 23:57:16 +03001717 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001718 bool name_known, ssp;
Johan Hedberg31754052012-01-04 13:39:52 +02001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 bacpy(&data.bdaddr, &info->bdaddr);
1721 data.pscan_rep_mode = info->pscan_rep_mode;
1722 data.pscan_period_mode = info->pscan_period_mode;
1723 data.pscan_mode = info->pscan_mode;
1724 memcpy(data.dev_class, info->dev_class, 3);
1725 data.clock_offset = info->clock_offset;
1726 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001727 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02001728
Johan Hedberg388fc8f2012-02-23 00:38:59 +02001729 name_known = hci_inquiry_cache_update(hdev, &data, false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02001730 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001731 info->dev_class, 0, !name_known, ssp, NULL,
1732 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 hci_dev_unlock(hdev);
1736}
1737
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001738static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001740 struct hci_ev_conn_complete *ev = (void *) skb->data;
1741 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001743 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001746
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001747 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001748 if (!conn) {
1749 if (ev->link_type != SCO_LINK)
1750 goto unlock;
1751
1752 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1753 if (!conn)
1754 goto unlock;
1755
1756 conn->type = SCO_LINK;
1757 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001758
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001759 if (!ev->status) {
1760 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001761
1762 if (conn->type == ACL_LINK) {
1763 conn->state = BT_CONFIG;
1764 hci_conn_hold(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001765 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02001766 } else
1767 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001768
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001769 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001770 hci_conn_add_sysfs(conn);
1771
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001772 if (test_bit(HCI_AUTH, &hdev->flags))
1773 conn->link_mode |= HCI_LM_AUTH;
1774
1775 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1776 conn->link_mode |= HCI_LM_ENCRYPT;
1777
1778 /* Get remote features */
1779 if (conn->type == ACL_LINK) {
1780 struct hci_cp_read_remote_features cp;
1781 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001782 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001783 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001784 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001785
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001786 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02001787 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001788 struct hci_cp_change_conn_ptype cp;
1789 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001790 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001791 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, sizeof(cp),
1792 &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001793 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001794 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001795 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001796 if (conn->type == ACL_LINK)
Johan Hedberg744cf192011-11-08 20:40:14 +02001797 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001798 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02001799 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001800
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001801 if (conn->type == ACL_LINK)
1802 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001803
Marcel Holtmann769be972008-07-14 20:13:49 +02001804 if (ev->status) {
1805 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001806 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001807 } else if (ev->link_type != ACL_LINK)
1808 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001809
1810unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001812
1813 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001816static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001818 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 int mask = hdev->link_mode;
1820
Gustavo Padovan807deac2012-05-17 00:36:24 -03001821 BT_DBG("%s bdaddr %s type 0x%x", hdev->name, batostr(&ev->bdaddr),
1822 ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1825
Szymon Janc138d22e2011-02-17 16:44:23 +01001826 if ((mask & HCI_LM_ACCEPT) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001827 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001829 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001833
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001834 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1835 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001836 memcpy(ie->data.dev_class, ev->dev_class, 3);
1837
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001838 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type,
1839 &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001841 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1842 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001843 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 hci_dev_unlock(hdev);
1845 return;
1846 }
1847 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 memcpy(conn->dev_class, ev->dev_class, 3);
1850 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 hci_dev_unlock(hdev);
1853
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001854 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1855 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001857 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001859 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1860 cp.role = 0x00; /* Become master */
1861 else
1862 cp.role = 0x01; /* Remain slave */
1863
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001864 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp),
1865 &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001866 } else {
1867 struct hci_cp_accept_sync_conn_req cp;
1868
1869 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001870 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001871
Andrei Emeltchenko82781e62012-05-25 11:38:27 +03001872 cp.tx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1873 cp.rx_bandwidth = __constant_cpu_to_le32(0x00001f40);
1874 cp.max_latency = __constant_cpu_to_le16(0xffff);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001875 cp.content_format = cpu_to_le16(hdev->voice_setting);
1876 cp.retrans_effort = 0xff;
1877
1878 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001879 sizeof(cp), &cp);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 } else {
1882 /* Connection rejected */
1883 struct hci_cp_reject_conn_req cp;
1884
1885 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02001886 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001887 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889}
1890
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001891static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001893 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001894 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001896 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 hci_dev_lock(hdev);
1899
Marcel Holtmann04837f62006-07-03 10:02:33 +02001900 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001901 if (!conn)
1902 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001903
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001904 if (ev->status == 0)
1905 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Johan Hedbergb644ba32012-01-17 21:48:47 +02001907 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001908 (conn->type == ACL_LINK || conn->type == LE_LINK)) {
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001909 if (ev->status != 0)
Johan Hedberg88c3df12012-02-09 14:27:38 +02001910 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03001911 conn->dst_type, ev->status);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001912 else
Johan Hedbergafc747a2012-01-15 18:11:07 +02001913 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001914 conn->dst_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001915 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001916
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001917 if (ev->status == 0) {
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05301918 if (conn->type == ACL_LINK && conn->flush_key)
1919 hci_remove_link_key(hdev, &conn->dst);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001920 hci_proto_disconn_cfm(conn, ev->reason);
1921 hci_conn_del(conn);
1922 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001923
1924unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 hci_dev_unlock(hdev);
1926}
1927
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001928static void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001929{
1930 struct hci_ev_auth_complete *ev = (void *) skb->data;
1931 struct hci_conn *conn;
1932
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03001933 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001934
1935 hci_dev_lock(hdev);
1936
1937 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001938 if (!conn)
1939 goto unlock;
1940
1941 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001942 if (!hci_conn_ssp_enabled(conn) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03001943 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001944 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03001945 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001946 conn->link_mode |= HCI_LM_AUTH;
1947 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03001948 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001949 } else {
Johan Hedbergbab73cb2012-02-09 16:07:29 +02001950 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001951 ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001952 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001953
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001954 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
1955 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001956
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001957 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001958 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001959 struct hci_cp_set_conn_encrypt cp;
1960 cp.handle = ev->handle;
1961 cp.encrypt = 0x01;
1962 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001963 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001964 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001965 conn->state = BT_CONNECTED;
1966 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001967 hci_conn_put(conn);
1968 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001969 } else {
1970 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001971
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001972 hci_conn_hold(conn);
1973 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
1974 hci_conn_put(conn);
1975 }
1976
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001977 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001978 if (!ev->status) {
1979 struct hci_cp_set_conn_encrypt cp;
1980 cp.handle = ev->handle;
1981 cp.encrypt = 0x01;
1982 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03001983 &cp);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001984 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001985 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001986 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001987 }
1988 }
1989
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001990unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001991 hci_dev_unlock(hdev);
1992}
1993
Gustavo Padovan6039aa732012-05-23 04:04:18 -03001994static void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001995{
Johan Hedberg127178d2010-11-18 22:22:29 +02001996 struct hci_ev_remote_name *ev = (void *) skb->data;
1997 struct hci_conn *conn;
1998
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001999 BT_DBG("%s", hdev->name);
2000
2001 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02002002
2003 hci_dev_lock(hdev);
2004
2005 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002006
2007 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2008 goto check_auth;
2009
2010 if (ev->status == 0)
2011 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002012 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
Johan Hedbergb644ba32012-01-17 21:48:47 +02002013 else
2014 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
2015
2016check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07002017 if (!conn)
2018 goto unlock;
2019
2020 if (!hci_outgoing_auth_needed(hdev, conn))
2021 goto unlock;
2022
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002023 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002024 struct hci_cp_auth_requested cp;
2025 cp.handle = __cpu_to_le16(conn->handle);
2026 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
2027 }
2028
Johan Hedberg79c6c702011-04-28 11:28:55 -07002029unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02002030 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002031}
2032
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002033static void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002034{
2035 struct hci_ev_encrypt_change *ev = (void *) skb->data;
2036 struct hci_conn *conn;
2037
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002038 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002039
2040 hci_dev_lock(hdev);
2041
2042 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2043 if (conn) {
2044 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02002045 if (ev->encrypt) {
2046 /* Encryption implies authentication */
2047 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002048 conn->link_mode |= HCI_LM_ENCRYPT;
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002049 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannae293192008-07-14 20:13:45 +02002050 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002051 conn->link_mode &= ~HCI_LM_ENCRYPT;
2052 }
2053
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002054 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002055
Gustavo Padovana7d77232012-05-13 03:20:07 -03002056 if (ev->status && conn->state == BT_CONNECTED) {
Gustavo Padovand839c812012-05-16 12:17:12 -03002057 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
Gustavo Padovana7d77232012-05-13 03:20:07 -03002058 hci_conn_put(conn);
2059 goto unlock;
2060 }
2061
Marcel Holtmannf8558552008-07-14 20:13:49 +02002062 if (conn->state == BT_CONFIG) {
2063 if (!ev->status)
2064 conn->state = BT_CONNECTED;
2065
2066 hci_proto_connect_cfm(conn, ev->status);
2067 hci_conn_put(conn);
2068 } else
2069 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002070 }
2071
Gustavo Padovana7d77232012-05-13 03:20:07 -03002072unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002073 hci_dev_unlock(hdev);
2074}
2075
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002076static void hci_change_link_key_complete_evt(struct hci_dev *hdev,
2077 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002078{
2079 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2080 struct hci_conn *conn;
2081
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002082 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002083
2084 hci_dev_lock(hdev);
2085
2086 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2087 if (conn) {
2088 if (!ev->status)
2089 conn->link_mode |= HCI_LM_SECURE;
2090
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002091 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002092
2093 hci_key_change_cfm(conn, ev->status);
2094 }
2095
2096 hci_dev_unlock(hdev);
2097}
2098
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002099static void hci_remote_features_evt(struct hci_dev *hdev,
2100 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002101{
2102 struct hci_ev_remote_features *ev = (void *) skb->data;
2103 struct hci_conn *conn;
2104
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002105 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002106
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002107 hci_dev_lock(hdev);
2108
2109 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002110 if (!conn)
2111 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002112
Johan Hedbergccd556f2010-11-10 17:11:51 +02002113 if (!ev->status)
2114 memcpy(conn->features, ev->features, 8);
2115
2116 if (conn->state != BT_CONFIG)
2117 goto unlock;
2118
2119 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2120 struct hci_cp_read_remote_ext_features cp;
2121 cp.handle = ev->handle;
2122 cp.page = 0x01;
2123 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002124 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002125 goto unlock;
2126 }
2127
Johan Hedberg671267b2012-05-12 16:11:50 -03002128 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002129 struct hci_cp_remote_name_req cp;
2130 memset(&cp, 0, sizeof(cp));
2131 bacpy(&cp.bdaddr, &conn->dst);
2132 cp.pscan_rep_mode = 0x02;
2133 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002134 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2135 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002136 conn->dst_type, 0, NULL, 0,
2137 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002138
Johan Hedberg127178d2010-11-18 22:22:29 +02002139 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002140 conn->state = BT_CONNECTED;
2141 hci_proto_connect_cfm(conn, ev->status);
2142 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002143 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002144
Johan Hedbergccd556f2010-11-10 17:11:51 +02002145unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002146 hci_dev_unlock(hdev);
2147}
2148
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002149static void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002150{
2151 BT_DBG("%s", hdev->name);
2152}
2153
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002154static void hci_qos_setup_complete_evt(struct hci_dev *hdev,
2155 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002156{
2157 BT_DBG("%s", hdev->name);
2158}
2159
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002160static void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002161{
2162 struct hci_ev_cmd_complete *ev = (void *) skb->data;
2163 __u16 opcode;
2164
2165 skb_pull(skb, sizeof(*ev));
2166
2167 opcode = __le16_to_cpu(ev->opcode);
2168
2169 switch (opcode) {
2170 case HCI_OP_INQUIRY_CANCEL:
2171 hci_cc_inquiry_cancel(hdev, skb);
2172 break;
2173
Andre Guedes4d934832012-03-21 00:03:35 -03002174 case HCI_OP_PERIODIC_INQ:
2175 hci_cc_periodic_inq(hdev, skb);
2176 break;
2177
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002178 case HCI_OP_EXIT_PERIODIC_INQ:
2179 hci_cc_exit_periodic_inq(hdev, skb);
2180 break;
2181
2182 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2183 hci_cc_remote_name_req_cancel(hdev, skb);
2184 break;
2185
2186 case HCI_OP_ROLE_DISCOVERY:
2187 hci_cc_role_discovery(hdev, skb);
2188 break;
2189
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002190 case HCI_OP_READ_LINK_POLICY:
2191 hci_cc_read_link_policy(hdev, skb);
2192 break;
2193
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002194 case HCI_OP_WRITE_LINK_POLICY:
2195 hci_cc_write_link_policy(hdev, skb);
2196 break;
2197
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002198 case HCI_OP_READ_DEF_LINK_POLICY:
2199 hci_cc_read_def_link_policy(hdev, skb);
2200 break;
2201
2202 case HCI_OP_WRITE_DEF_LINK_POLICY:
2203 hci_cc_write_def_link_policy(hdev, skb);
2204 break;
2205
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002206 case HCI_OP_RESET:
2207 hci_cc_reset(hdev, skb);
2208 break;
2209
2210 case HCI_OP_WRITE_LOCAL_NAME:
2211 hci_cc_write_local_name(hdev, skb);
2212 break;
2213
2214 case HCI_OP_READ_LOCAL_NAME:
2215 hci_cc_read_local_name(hdev, skb);
2216 break;
2217
2218 case HCI_OP_WRITE_AUTH_ENABLE:
2219 hci_cc_write_auth_enable(hdev, skb);
2220 break;
2221
2222 case HCI_OP_WRITE_ENCRYPT_MODE:
2223 hci_cc_write_encrypt_mode(hdev, skb);
2224 break;
2225
2226 case HCI_OP_WRITE_SCAN_ENABLE:
2227 hci_cc_write_scan_enable(hdev, skb);
2228 break;
2229
2230 case HCI_OP_READ_CLASS_OF_DEV:
2231 hci_cc_read_class_of_dev(hdev, skb);
2232 break;
2233
2234 case HCI_OP_WRITE_CLASS_OF_DEV:
2235 hci_cc_write_class_of_dev(hdev, skb);
2236 break;
2237
2238 case HCI_OP_READ_VOICE_SETTING:
2239 hci_cc_read_voice_setting(hdev, skb);
2240 break;
2241
2242 case HCI_OP_WRITE_VOICE_SETTING:
2243 hci_cc_write_voice_setting(hdev, skb);
2244 break;
2245
2246 case HCI_OP_HOST_BUFFER_SIZE:
2247 hci_cc_host_buffer_size(hdev, skb);
2248 break;
2249
Marcel Holtmann333140b2008-07-14 20:13:48 +02002250 case HCI_OP_WRITE_SSP_MODE:
2251 hci_cc_write_ssp_mode(hdev, skb);
2252 break;
2253
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002254 case HCI_OP_READ_LOCAL_VERSION:
2255 hci_cc_read_local_version(hdev, skb);
2256 break;
2257
2258 case HCI_OP_READ_LOCAL_COMMANDS:
2259 hci_cc_read_local_commands(hdev, skb);
2260 break;
2261
2262 case HCI_OP_READ_LOCAL_FEATURES:
2263 hci_cc_read_local_features(hdev, skb);
2264 break;
2265
Andre Guedes971e3a42011-06-30 19:20:52 -03002266 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2267 hci_cc_read_local_ext_features(hdev, skb);
2268 break;
2269
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002270 case HCI_OP_READ_BUFFER_SIZE:
2271 hci_cc_read_buffer_size(hdev, skb);
2272 break;
2273
2274 case HCI_OP_READ_BD_ADDR:
2275 hci_cc_read_bd_addr(hdev, skb);
2276 break;
2277
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002278 case HCI_OP_READ_DATA_BLOCK_SIZE:
2279 hci_cc_read_data_block_size(hdev, skb);
2280 break;
2281
Johan Hedberg23bb5762010-12-21 23:01:27 +02002282 case HCI_OP_WRITE_CA_TIMEOUT:
2283 hci_cc_write_ca_timeout(hdev, skb);
2284 break;
2285
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002286 case HCI_OP_READ_FLOW_CONTROL_MODE:
2287 hci_cc_read_flow_control_mode(hdev, skb);
2288 break;
2289
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002290 case HCI_OP_READ_LOCAL_AMP_INFO:
2291 hci_cc_read_local_amp_info(hdev, skb);
2292 break;
2293
Johan Hedbergb0916ea2011-01-10 13:44:55 +02002294 case HCI_OP_DELETE_STORED_LINK_KEY:
2295 hci_cc_delete_stored_link_key(hdev, skb);
2296 break;
2297
Johan Hedbergd5859e22011-01-25 01:19:58 +02002298 case HCI_OP_SET_EVENT_MASK:
2299 hci_cc_set_event_mask(hdev, skb);
2300 break;
2301
2302 case HCI_OP_WRITE_INQUIRY_MODE:
2303 hci_cc_write_inquiry_mode(hdev, skb);
2304 break;
2305
2306 case HCI_OP_READ_INQ_RSP_TX_POWER:
2307 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2308 break;
2309
2310 case HCI_OP_SET_EVENT_FLT:
2311 hci_cc_set_event_flt(hdev, skb);
2312 break;
2313
Johan Hedberg980e1a52011-01-22 06:10:07 +02002314 case HCI_OP_PIN_CODE_REPLY:
2315 hci_cc_pin_code_reply(hdev, skb);
2316 break;
2317
2318 case HCI_OP_PIN_CODE_NEG_REPLY:
2319 hci_cc_pin_code_neg_reply(hdev, skb);
2320 break;
2321
Szymon Jancc35938b2011-03-22 13:12:21 +01002322 case HCI_OP_READ_LOCAL_OOB_DATA:
2323 hci_cc_read_local_oob_data_reply(hdev, skb);
2324 break;
2325
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002326 case HCI_OP_LE_READ_BUFFER_SIZE:
2327 hci_cc_le_read_buffer_size(hdev, skb);
2328 break;
2329
Johan Hedberga5c29682011-02-19 12:05:57 -03002330 case HCI_OP_USER_CONFIRM_REPLY:
2331 hci_cc_user_confirm_reply(hdev, skb);
2332 break;
2333
2334 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2335 hci_cc_user_confirm_neg_reply(hdev, skb);
2336 break;
2337
Brian Gix1143d452011-11-23 08:28:34 -08002338 case HCI_OP_USER_PASSKEY_REPLY:
2339 hci_cc_user_passkey_reply(hdev, skb);
2340 break;
2341
2342 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2343 hci_cc_user_passkey_neg_reply(hdev, skb);
Szymon Janc16cde992012-04-13 12:32:42 +02002344 break;
Andre Guedes07f7fa52011-12-02 21:13:31 +09002345
2346 case HCI_OP_LE_SET_SCAN_PARAM:
2347 hci_cc_le_set_scan_param(hdev, skb);
Brian Gix1143d452011-11-23 08:28:34 -08002348 break;
2349
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002350 case HCI_OP_LE_SET_SCAN_ENABLE:
2351 hci_cc_le_set_scan_enable(hdev, skb);
2352 break;
2353
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002354 case HCI_OP_LE_LTK_REPLY:
2355 hci_cc_le_ltk_reply(hdev, skb);
2356 break;
2357
2358 case HCI_OP_LE_LTK_NEG_REPLY:
2359 hci_cc_le_ltk_neg_reply(hdev, skb);
2360 break;
2361
Andre Guedesf9b49302011-06-30 19:20:53 -03002362 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2363 hci_cc_write_le_host_supported(hdev, skb);
2364 break;
2365
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002366 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002367 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002368 break;
2369 }
2370
Ville Tervo6bd32322011-02-16 16:32:41 +02002371 if (ev->opcode != HCI_OP_NOP)
2372 del_timer(&hdev->cmd_timer);
2373
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002374 if (ev->ncmd) {
2375 atomic_set(&hdev->cmd_cnt, 1);
2376 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002377 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002378 }
2379}
2380
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002381static void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002382{
2383 struct hci_ev_cmd_status *ev = (void *) skb->data;
2384 __u16 opcode;
2385
2386 skb_pull(skb, sizeof(*ev));
2387
2388 opcode = __le16_to_cpu(ev->opcode);
2389
2390 switch (opcode) {
2391 case HCI_OP_INQUIRY:
2392 hci_cs_inquiry(hdev, ev->status);
2393 break;
2394
2395 case HCI_OP_CREATE_CONN:
2396 hci_cs_create_conn(hdev, ev->status);
2397 break;
2398
2399 case HCI_OP_ADD_SCO:
2400 hci_cs_add_sco(hdev, ev->status);
2401 break;
2402
Marcel Holtmannf8558552008-07-14 20:13:49 +02002403 case HCI_OP_AUTH_REQUESTED:
2404 hci_cs_auth_requested(hdev, ev->status);
2405 break;
2406
2407 case HCI_OP_SET_CONN_ENCRYPT:
2408 hci_cs_set_conn_encrypt(hdev, ev->status);
2409 break;
2410
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002411 case HCI_OP_REMOTE_NAME_REQ:
2412 hci_cs_remote_name_req(hdev, ev->status);
2413 break;
2414
Marcel Holtmann769be972008-07-14 20:13:49 +02002415 case HCI_OP_READ_REMOTE_FEATURES:
2416 hci_cs_read_remote_features(hdev, ev->status);
2417 break;
2418
2419 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2420 hci_cs_read_remote_ext_features(hdev, ev->status);
2421 break;
2422
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002423 case HCI_OP_SETUP_SYNC_CONN:
2424 hci_cs_setup_sync_conn(hdev, ev->status);
2425 break;
2426
2427 case HCI_OP_SNIFF_MODE:
2428 hci_cs_sniff_mode(hdev, ev->status);
2429 break;
2430
2431 case HCI_OP_EXIT_SNIFF_MODE:
2432 hci_cs_exit_sniff_mode(hdev, ev->status);
2433 break;
2434
Johan Hedberg8962ee72011-01-20 12:40:27 +02002435 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002436 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002437 break;
2438
Ville Tervofcd89c02011-02-10 22:38:47 -03002439 case HCI_OP_LE_CREATE_CONN:
2440 hci_cs_le_create_conn(hdev, ev->status);
2441 break;
2442
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002443 case HCI_OP_LE_START_ENC:
2444 hci_cs_le_start_enc(hdev, ev->status);
2445 break;
2446
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002447 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002448 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002449 break;
2450 }
2451
Ville Tervo6bd32322011-02-16 16:32:41 +02002452 if (ev->opcode != HCI_OP_NOP)
2453 del_timer(&hdev->cmd_timer);
2454
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002455 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002456 atomic_set(&hdev->cmd_cnt, 1);
2457 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002458 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002459 }
2460}
2461
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002462static void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002463{
2464 struct hci_ev_role_change *ev = (void *) skb->data;
2465 struct hci_conn *conn;
2466
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002467 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002468
2469 hci_dev_lock(hdev);
2470
2471 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2472 if (conn) {
2473 if (!ev->status) {
2474 if (ev->role)
2475 conn->link_mode &= ~HCI_LM_MASTER;
2476 else
2477 conn->link_mode |= HCI_LM_MASTER;
2478 }
2479
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002480 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002481
2482 hci_role_switch_cfm(conn, ev->status, ev->role);
2483 }
2484
2485 hci_dev_unlock(hdev);
2486}
2487
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002488static void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002490 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 int i;
2492
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002493 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2494 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2495 return;
2496 }
2497
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002498 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002499 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 BT_DBG("%s bad parameters", hdev->name);
2501 return;
2502 }
2503
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002504 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2505
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002506 for (i = 0; i < ev->num_hndl; i++) {
2507 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 struct hci_conn *conn;
2509 __u16 handle, count;
2510
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002511 handle = __le16_to_cpu(info->handle);
2512 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
2514 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002515 if (!conn)
2516 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002518 conn->sent -= count;
2519
2520 switch (conn->type) {
2521 case ACL_LINK:
2522 hdev->acl_cnt += count;
2523 if (hdev->acl_cnt > hdev->acl_pkts)
2524 hdev->acl_cnt = hdev->acl_pkts;
2525 break;
2526
2527 case LE_LINK:
2528 if (hdev->le_pkts) {
2529 hdev->le_cnt += count;
2530 if (hdev->le_cnt > hdev->le_pkts)
2531 hdev->le_cnt = hdev->le_pkts;
2532 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002533 hdev->acl_cnt += count;
2534 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 hdev->acl_cnt = hdev->acl_pkts;
2536 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002537 break;
2538
2539 case SCO_LINK:
2540 hdev->sco_cnt += count;
2541 if (hdev->sco_cnt > hdev->sco_pkts)
2542 hdev->sco_cnt = hdev->sco_pkts;
2543 break;
2544
2545 default:
2546 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2547 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
2549 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002550
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002551 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
2553
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002554static void hci_num_comp_blocks_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002555{
2556 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2557 int i;
2558
2559 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2560 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2561 return;
2562 }
2563
2564 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
Gustavo Padovan807deac2012-05-17 00:36:24 -03002565 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002566 BT_DBG("%s bad parameters", hdev->name);
2567 return;
2568 }
2569
2570 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002571 ev->num_hndl);
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002572
2573 for (i = 0; i < ev->num_hndl; i++) {
2574 struct hci_comp_blocks_info *info = &ev->handles[i];
2575 struct hci_conn *conn;
2576 __u16 handle, block_count;
2577
2578 handle = __le16_to_cpu(info->handle);
2579 block_count = __le16_to_cpu(info->blocks);
2580
2581 conn = hci_conn_hash_lookup_handle(hdev, handle);
2582 if (!conn)
2583 continue;
2584
2585 conn->sent -= block_count;
2586
2587 switch (conn->type) {
2588 case ACL_LINK:
2589 hdev->block_cnt += block_count;
2590 if (hdev->block_cnt > hdev->num_blocks)
2591 hdev->block_cnt = hdev->num_blocks;
2592 break;
2593
2594 default:
2595 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2596 break;
2597 }
2598 }
2599
2600 queue_work(hdev->workqueue, &hdev->tx_work);
2601}
2602
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002603static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002605 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002606 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002608 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 hci_dev_lock(hdev);
2611
Marcel Holtmann04837f62006-07-03 10:02:33 +02002612 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2613 if (conn) {
2614 conn->mode = ev->mode;
2615 conn->interval = __le16_to_cpu(ev->interval);
2616
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002617 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
2618 &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02002619 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002620 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002621 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02002622 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002623 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002624
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002625 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002626 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002627 }
2628
2629 hci_dev_unlock(hdev);
2630}
2631
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002632static void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002634 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2635 struct hci_conn *conn;
2636
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002637 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002638
2639 hci_dev_lock(hdev);
2640
2641 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002642 if (!conn)
2643 goto unlock;
2644
2645 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002646 hci_conn_hold(conn);
2647 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2648 hci_conn_put(conn);
2649 }
2650
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002651 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02002652 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002653 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002654 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002655 u8 secure;
2656
2657 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2658 secure = 1;
2659 else
2660 secure = 0;
2661
Johan Hedberg744cf192011-11-08 20:40:14 +02002662 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002663 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002664
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002665unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002666 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667}
2668
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002669static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002671 struct hci_ev_link_key_req *ev = (void *) skb->data;
2672 struct hci_cp_link_key_reply cp;
2673 struct hci_conn *conn;
2674 struct link_key *key;
2675
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002676 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002677
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002678 if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002679 return;
2680
2681 hci_dev_lock(hdev);
2682
2683 key = hci_find_link_key(hdev, &ev->bdaddr);
2684 if (!key) {
2685 BT_DBG("%s link key not found for %s", hdev->name,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002686 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002687 goto not_found;
2688 }
2689
2690 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002691 batostr(&ev->bdaddr));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002692
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002693 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002694 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002695 BT_DBG("%s ignoring debug key", hdev->name);
2696 goto not_found;
2697 }
2698
2699 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002700 if (conn) {
2701 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002702 conn->auth_type != 0xff && (conn->auth_type & 0x01)) {
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002703 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2704 goto not_found;
2705 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002706
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002707 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03002708 conn->pending_sec_level == BT_SECURITY_HIGH) {
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002709 BT_DBG("%s ignoring key unauthenticated for high security",
2710 hdev->name);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002711 goto not_found;
2712 }
2713
2714 conn->key_type = key->type;
2715 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002716 }
2717
2718 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03002719 memcpy(cp.link_key, key->val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002720
2721 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2722
2723 hci_dev_unlock(hdev);
2724
2725 return;
2726
2727not_found:
2728 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2729 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730}
2731
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002732static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002734 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2735 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002736 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002737
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002738 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002739
2740 hci_dev_lock(hdev);
2741
2742 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2743 if (conn) {
2744 hci_conn_hold(conn);
2745 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002746 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002747
2748 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2749 conn->key_type = ev->key_type;
2750
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002751 hci_conn_put(conn);
2752 }
2753
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002754 if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002755 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Gustavo Padovan807deac2012-05-17 00:36:24 -03002756 ev->key_type, pin_len);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002757
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002758 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759}
2760
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002761static void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002762{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002763 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002764 struct hci_conn *conn;
2765
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002766 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002767
2768 hci_dev_lock(hdev);
2769
2770 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (conn && !ev->status) {
2772 struct inquiry_entry *ie;
2773
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002774 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2775 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 ie->data.clock_offset = ev->clock_offset;
2777 ie->timestamp = jiffies;
2778 }
2779 }
2780
2781 hci_dev_unlock(hdev);
2782}
2783
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002784static void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna8746412008-07-14 20:13:46 +02002785{
2786 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2787 struct hci_conn *conn;
2788
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002789 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmanna8746412008-07-14 20:13:46 +02002790
2791 hci_dev_lock(hdev);
2792
2793 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2794 if (conn && !ev->status)
2795 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2796
2797 hci_dev_unlock(hdev);
2798}
2799
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002800static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002801{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002802 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002803 struct inquiry_entry *ie;
2804
2805 BT_DBG("%s", hdev->name);
2806
2807 hci_dev_lock(hdev);
2808
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002809 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2810 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002811 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2812 ie->timestamp = jiffies;
2813 }
2814
2815 hci_dev_unlock(hdev);
2816}
2817
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002818static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
2819 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002820{
2821 struct inquiry_data data;
2822 int num_rsp = *((__u8 *) skb->data);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02002823 bool name_known, ssp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002824
2825 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2826
2827 if (!num_rsp)
2828 return;
2829
Andre Guedes1519cc12012-03-21 00:03:38 -03002830 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
2831 return;
2832
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002833 hci_dev_lock(hdev);
2834
2835 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002836 struct inquiry_info_with_rssi_and_pscan_mode *info;
2837 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002838
Johan Hedberge17acd42011-03-30 23:57:16 +03002839 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002840 bacpy(&data.bdaddr, &info->bdaddr);
2841 data.pscan_rep_mode = info->pscan_rep_mode;
2842 data.pscan_period_mode = info->pscan_period_mode;
2843 data.pscan_mode = info->pscan_mode;
2844 memcpy(data.dev_class, info->dev_class, 3);
2845 data.clock_offset = info->clock_offset;
2846 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002847 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002848
2849 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002850 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002851 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002852 info->dev_class, info->rssi,
2853 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002854 }
2855 } else {
2856 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2857
Johan Hedberge17acd42011-03-30 23:57:16 +03002858 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002859 bacpy(&data.bdaddr, &info->bdaddr);
2860 data.pscan_rep_mode = info->pscan_rep_mode;
2861 data.pscan_period_mode = info->pscan_period_mode;
2862 data.pscan_mode = 0x00;
2863 memcpy(data.dev_class, info->dev_class, 3);
2864 data.clock_offset = info->clock_offset;
2865 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002866 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002867 name_known = hci_inquiry_cache_update(hdev, &data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002868 false, &ssp);
Johan Hedberg48264f02011-11-09 13:58:58 +02002869 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002870 info->dev_class, info->rssi,
2871 !name_known, ssp, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002872 }
2873 }
2874
2875 hci_dev_unlock(hdev);
2876}
2877
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002878static void hci_remote_ext_features_evt(struct hci_dev *hdev,
2879 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002880{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002881 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2882 struct hci_conn *conn;
2883
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002884 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002885
Marcel Holtmann41a96212008-07-14 20:13:48 +02002886 hci_dev_lock(hdev);
2887
2888 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002889 if (!conn)
2890 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002891
Johan Hedbergccd556f2010-11-10 17:11:51 +02002892 if (!ev->status && ev->page == 0x01) {
2893 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002894
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002895 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2896 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002897 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann769be972008-07-14 20:13:49 +02002898
Johan Hedberg02b7cc62012-02-28 02:28:43 +02002899 if (ev->features[0] & LMP_HOST_SSP)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002900 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002901 }
2902
Johan Hedbergccd556f2010-11-10 17:11:51 +02002903 if (conn->state != BT_CONFIG)
2904 goto unlock;
2905
Johan Hedberg671267b2012-05-12 16:11:50 -03002906 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02002907 struct hci_cp_remote_name_req cp;
2908 memset(&cp, 0, sizeof(cp));
2909 bacpy(&cp.bdaddr, &conn->dst);
2910 cp.pscan_rep_mode = 0x02;
2911 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002912 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2913 mgmt_device_connected(hdev, &conn->dst, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002914 conn->dst_type, 0, NULL, 0,
2915 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002916
Johan Hedberg127178d2010-11-18 22:22:29 +02002917 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002918 conn->state = BT_CONNECTED;
2919 hci_proto_connect_cfm(conn, ev->status);
2920 hci_conn_put(conn);
2921 }
2922
2923unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002924 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002925}
2926
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002927static void hci_sync_conn_complete_evt(struct hci_dev *hdev,
2928 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002929{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002930 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2931 struct hci_conn *conn;
2932
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002933 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002934
2935 hci_dev_lock(hdev);
2936
2937 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02002938 if (!conn) {
2939 if (ev->link_type == ESCO_LINK)
2940 goto unlock;
2941
2942 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2943 if (!conn)
2944 goto unlock;
2945
2946 conn->type = SCO_LINK;
2947 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002948
Marcel Holtmann732547f2009-04-19 19:14:14 +02002949 switch (ev->status) {
2950 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002951 conn->handle = __le16_to_cpu(ev->handle);
2952 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002953
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07002954 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002955 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02002956 break;
2957
Stephen Coe705e5712010-02-16 11:29:44 -05002958 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002959 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08002960 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002961 case 0x1f: /* Unspecified error */
2962 if (conn->out && conn->attempt < 2) {
2963 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2964 (hdev->esco_type & EDR_ESCO_MASK);
2965 hci_setup_sync(conn, conn->link->handle);
2966 goto unlock;
2967 }
2968 /* fall through */
2969
2970 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002971 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002972 break;
2973 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002974
2975 hci_proto_connect_cfm(conn, ev->status);
2976 if (ev->status)
2977 hci_conn_del(conn);
2978
2979unlock:
2980 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002981}
2982
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002983static void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002984{
2985 BT_DBG("%s", hdev->name);
2986}
2987
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002988static void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04837f62006-07-03 10:02:33 +02002989{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002990 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002991
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03002992 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002993}
2994
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002995static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
2996 struct sk_buff *skb)
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002997{
2998 struct inquiry_data data;
2999 struct extended_inquiry_info *info = (void *) (skb->data + 1);
3000 int num_rsp = *((__u8 *) skb->data);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303001 size_t eir_len;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003002
3003 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
3004
3005 if (!num_rsp)
3006 return;
3007
Andre Guedes1519cc12012-03-21 00:03:38 -03003008 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags))
3009 return;
3010
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003011 hci_dev_lock(hdev);
3012
Johan Hedberge17acd42011-03-30 23:57:16 +03003013 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003014 bool name_known, ssp;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003015
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003016 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01003017 data.pscan_rep_mode = info->pscan_rep_mode;
3018 data.pscan_period_mode = info->pscan_period_mode;
3019 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003020 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01003021 data.clock_offset = info->clock_offset;
3022 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02003023 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003024
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003025 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02003026 name_known = eir_has_data_type(info->data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003027 sizeof(info->data),
3028 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003029 else
3030 name_known = true;
3031
Johan Hedberg388fc8f2012-02-23 00:38:59 +02003032 name_known = hci_inquiry_cache_update(hdev, &data, name_known,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003033 &ssp);
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303034 eir_len = eir_get_length(info->data, sizeof(info->data));
Johan Hedberg48264f02011-11-09 13:58:58 +02003035 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003036 info->dev_class, info->rssi, !name_known,
Vishal Agarwal9d939d92012-04-26 19:19:56 +05303037 ssp, info->data, eir_len);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003038 }
3039
3040 hci_dev_unlock(hdev);
3041}
3042
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003043static void hci_key_refresh_complete_evt(struct hci_dev *hdev,
3044 struct sk_buff *skb)
3045{
3046 struct hci_ev_key_refresh_complete *ev = (void *) skb->data;
3047 struct hci_conn *conn;
3048
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003049 BT_DBG("%s status 0x%2.2x handle 0x%4.4x", hdev->name, ev->status,
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003050 __le16_to_cpu(ev->handle));
3051
3052 hci_dev_lock(hdev);
3053
3054 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3055 if (!conn)
3056 goto unlock;
3057
3058 if (!ev->status)
3059 conn->sec_level = conn->pending_sec_level;
3060
3061 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3062
3063 if (ev->status && conn->state == BT_CONNECTED) {
3064 hci_acl_disconn(conn, HCI_ERROR_AUTH_FAILURE);
3065 hci_conn_put(conn);
3066 goto unlock;
3067 }
3068
3069 if (conn->state == BT_CONFIG) {
3070 if (!ev->status)
3071 conn->state = BT_CONNECTED;
3072
3073 hci_proto_connect_cfm(conn, ev->status);
3074 hci_conn_put(conn);
3075 } else {
3076 hci_auth_cfm(conn, ev->status);
3077
3078 hci_conn_hold(conn);
3079 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
3080 hci_conn_put(conn);
3081 }
3082
3083unlock:
3084 hci_dev_unlock(hdev);
3085}
3086
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003087static u8 hci_get_auth_req(struct hci_conn *conn)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003088{
3089 /* If remote requests dedicated bonding follow that lead */
3090 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
3091 /* If both remote and local IO capabilities allow MITM
3092 * protection then require it, otherwise don't */
3093 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
3094 return 0x02;
3095 else
3096 return 0x03;
3097 }
3098
3099 /* If remote requests no-bonding follow that lead */
3100 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02003101 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003102
3103 return conn->auth_type;
3104}
3105
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003106static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003107{
3108 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3109 struct hci_conn *conn;
3110
3111 BT_DBG("%s", hdev->name);
3112
3113 hci_dev_lock(hdev);
3114
3115 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003116 if (!conn)
3117 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003118
Johan Hedberg03b555e2011-01-04 15:40:05 +02003119 hci_conn_hold(conn);
3120
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003121 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003122 goto unlock;
3123
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003124 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Gustavo Padovan807deac2012-05-17 00:36:24 -03003125 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003126 struct hci_cp_io_capability_reply cp;
3127
3128 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303129 /* Change the IO capability from KeyboardDisplay
3130 * to DisplayYesNo as it is not supported by BT spec. */
3131 cp.capability = (conn->io_capability == 0x04) ?
3132 0x01 : conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07003133 conn->auth_type = hci_get_auth_req(conn);
3134 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003135
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003136 if (hci_find_remote_oob_data(hdev, &conn->dst) &&
3137 (conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)))
Szymon Jancce85ee12011-03-22 13:12:23 +01003138 cp.oob_data = 0x01;
3139 else
3140 cp.oob_data = 0x00;
3141
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003142 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003143 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003144 } else {
3145 struct hci_cp_io_capability_neg_reply cp;
3146
3147 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003148 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003149
3150 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003151 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003152 }
3153
3154unlock:
3155 hci_dev_unlock(hdev);
3156}
3157
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003158static void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
Johan Hedberg03b555e2011-01-04 15:40:05 +02003159{
3160 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3161 struct hci_conn *conn;
3162
3163 BT_DBG("%s", hdev->name);
3164
3165 hci_dev_lock(hdev);
3166
3167 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3168 if (!conn)
3169 goto unlock;
3170
Johan Hedberg03b555e2011-01-04 15:40:05 +02003171 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003172 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003173 if (ev->oob_data)
3174 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003175
3176unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003177 hci_dev_unlock(hdev);
3178}
3179
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003180static void hci_user_confirm_request_evt(struct hci_dev *hdev,
3181 struct sk_buff *skb)
Johan Hedberga5c29682011-02-19 12:05:57 -03003182{
3183 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003184 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003185 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003186
3187 BT_DBG("%s", hdev->name);
3188
3189 hci_dev_lock(hdev);
3190
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003191 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003192 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003193
Johan Hedberg7a828902011-04-28 11:28:53 -07003194 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3195 if (!conn)
3196 goto unlock;
3197
3198 loc_mitm = (conn->auth_type & 0x01);
3199 rem_mitm = (conn->remote_auth & 0x01);
3200
3201 /* If we require MITM but the remote device can't provide that
3202 * (it has NoInputNoOutput) then reject the confirmation
3203 * request. The only exception is when we're dedicated bonding
3204 * initiators (connect_cfm_cb set) since then we always have the MITM
3205 * bit set. */
3206 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
3207 BT_DBG("Rejecting request: remote device can't provide MITM");
3208 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003209 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003210 goto unlock;
3211 }
3212
3213 /* If no side requires MITM protection; auto-accept */
3214 if ((!loc_mitm || conn->remote_cap == 0x03) &&
Gustavo Padovan807deac2012-05-17 00:36:24 -03003215 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003216
3217 /* If we're not the initiators request authorization to
3218 * proceed from user space (mgmt_user_confirm with
3219 * confirm_hint set to 1). */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003220 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003221 BT_DBG("Confirming auto-accept as acceptor");
3222 confirm_hint = 1;
3223 goto confirm;
3224 }
3225
Johan Hedberg9f616562011-04-28 11:28:54 -07003226 BT_DBG("Auto-accept of user confirmation with %ums delay",
Gustavo Padovan807deac2012-05-17 00:36:24 -03003227 hdev->auto_accept_delay);
Johan Hedberg9f616562011-04-28 11:28:54 -07003228
3229 if (hdev->auto_accept_delay > 0) {
3230 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
3231 mod_timer(&conn->auto_accept_timer, jiffies + delay);
3232 goto unlock;
3233 }
3234
Johan Hedberg7a828902011-04-28 11:28:53 -07003235 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
Gustavo Padovan807deac2012-05-17 00:36:24 -03003236 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg7a828902011-04-28 11:28:53 -07003237 goto unlock;
3238 }
3239
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003240confirm:
Johan Hedberg272d90d2012-02-09 15:26:12 +02003241 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003242 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003243
3244unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003245 hci_dev_unlock(hdev);
3246}
3247
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003248static void hci_user_passkey_request_evt(struct hci_dev *hdev,
3249 struct sk_buff *skb)
Brian Gix1143d452011-11-23 08:28:34 -08003250{
3251 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3252
3253 BT_DBG("%s", hdev->name);
3254
3255 hci_dev_lock(hdev);
3256
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003257 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003258 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003259
3260 hci_dev_unlock(hdev);
3261}
3262
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003263static void hci_simple_pair_complete_evt(struct hci_dev *hdev,
3264 struct sk_buff *skb)
Marcel Holtmann04936842008-07-14 20:13:48 +02003265{
3266 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3267 struct hci_conn *conn;
3268
3269 BT_DBG("%s", hdev->name);
3270
3271 hci_dev_lock(hdev);
3272
3273 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003274 if (!conn)
3275 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003276
Johan Hedberg2a611692011-02-19 12:06:00 -03003277 /* To avoid duplicate auth_failed events to user space we check
3278 * the HCI_CONN_AUTH_PEND flag which will be set if we
3279 * initiated the authentication. A traditional auth_complete
3280 * event gets always produced as initiator and is also mapped to
3281 * the mgmt_auth_failed event */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003282 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status != 0)
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003283 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003284 ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003285
3286 hci_conn_put(conn);
3287
3288unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003289 hci_dev_unlock(hdev);
3290}
3291
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003292static void hci_remote_host_features_evt(struct hci_dev *hdev,
3293 struct sk_buff *skb)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003294{
3295 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3296 struct inquiry_entry *ie;
3297
3298 BT_DBG("%s", hdev->name);
3299
3300 hci_dev_lock(hdev);
3301
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003302 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3303 if (ie)
Johan Hedberg02b7cc62012-02-28 02:28:43 +02003304 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
Marcel Holtmann41a96212008-07-14 20:13:48 +02003305
3306 hci_dev_unlock(hdev);
3307}
3308
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003309static void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3310 struct sk_buff *skb)
Szymon Janc2763eda2011-03-22 13:12:22 +01003311{
3312 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3313 struct oob_data *data;
3314
3315 BT_DBG("%s", hdev->name);
3316
3317 hci_dev_lock(hdev);
3318
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003319 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003320 goto unlock;
3321
Szymon Janc2763eda2011-03-22 13:12:22 +01003322 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3323 if (data) {
3324 struct hci_cp_remote_oob_data_reply cp;
3325
3326 bacpy(&cp.bdaddr, &ev->bdaddr);
3327 memcpy(cp.hash, data->hash, sizeof(cp.hash));
3328 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
3329
3330 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003331 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003332 } else {
3333 struct hci_cp_remote_oob_data_neg_reply cp;
3334
3335 bacpy(&cp.bdaddr, &ev->bdaddr);
3336 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
Gustavo Padovan807deac2012-05-17 00:36:24 -03003337 &cp);
Szymon Janc2763eda2011-03-22 13:12:22 +01003338 }
3339
Szymon Jance1ba1f12011-04-06 13:01:59 +02003340unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003341 hci_dev_unlock(hdev);
3342}
3343
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003344static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003345{
3346 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3347 struct hci_conn *conn;
3348
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003349 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03003350
3351 hci_dev_lock(hdev);
3352
Andrzej Kaczmarek4f72b322012-05-30 15:39:23 +02003353 if (ev->status) {
3354 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
3355 if (!conn)
3356 goto unlock;
3357
3358 mgmt_connect_failed(hdev, &conn->dst, conn->type,
3359 conn->dst_type, ev->status);
3360 hci_proto_connect_cfm(conn, ev->status);
3361 conn->state = BT_CLOSED;
3362 hci_conn_del(conn);
3363 goto unlock;
3364 }
3365
Ville Tervofcd89c02011-02-10 22:38:47 -03003366 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &ev->bdaddr);
Ville Tervob62f3282011-02-10 22:38:50 -03003367 if (!conn) {
3368 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3369 if (!conn) {
3370 BT_ERR("No memory for new connection");
3371 hci_dev_unlock(hdev);
3372 return;
3373 }
Andre Guedes29b79882011-05-31 14:20:54 -03003374
3375 conn->dst_type = ev->bdaddr_type;
Ville Tervob62f3282011-02-10 22:38:50 -03003376 }
Ville Tervofcd89c02011-02-10 22:38:47 -03003377
Johan Hedbergb644ba32012-01-17 21:48:47 +02003378 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3379 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003380 conn->dst_type, 0, NULL, 0, NULL);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03003381
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03003382 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03003383 conn->handle = __le16_to_cpu(ev->handle);
3384 conn->state = BT_CONNECTED;
3385
3386 hci_conn_hold_device(conn);
3387 hci_conn_add_sysfs(conn);
3388
3389 hci_proto_connect_cfm(conn, ev->status);
3390
3391unlock:
3392 hci_dev_unlock(hdev);
3393}
3394
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003395static void hci_le_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
Andre Guedes9aa04c92011-05-26 16:23:51 -03003396{
Andre Guedese95beb42011-09-26 20:48:35 -03003397 u8 num_reports = skb->data[0];
3398 void *ptr = &skb->data[1];
Andre Guedes3c9e9192012-01-10 18:20:50 -03003399 s8 rssi;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003400
3401 hci_dev_lock(hdev);
3402
Andre Guedese95beb42011-09-26 20:48:35 -03003403 while (num_reports--) {
3404 struct hci_ev_le_advertising_info *ev = ptr;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003405
Andre Guedes3c9e9192012-01-10 18:20:50 -03003406 rssi = ev->data[ev->length];
3407 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003408 NULL, rssi, 0, 1, ev->data, ev->length);
Andre Guedes3c9e9192012-01-10 18:20:50 -03003409
Andre Guedese95beb42011-09-26 20:48:35 -03003410 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003411 }
3412
3413 hci_dev_unlock(hdev);
3414}
3415
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003416static void hci_le_ltk_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003417{
3418 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3419 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003420 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003421 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003422 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003423
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003424 BT_DBG("%s handle 0x%4.4x", hdev->name, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003425
3426 hci_dev_lock(hdev);
3427
3428 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003429 if (conn == NULL)
3430 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003431
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003432 ltk = hci_find_ltk(hdev, ev->ediv, ev->random);
3433 if (ltk == NULL)
3434 goto not_found;
3435
3436 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003437 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003438
3439 if (ltk->authenticated)
3440 conn->sec_level = BT_SECURITY_HIGH;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003441
3442 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3443
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003444 if (ltk->type & HCI_SMP_STK) {
3445 list_del(&ltk->list);
3446 kfree(ltk);
3447 }
3448
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003449 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003450
3451 return;
3452
3453not_found:
3454 neg.handle = ev->handle;
3455 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3456 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003457}
3458
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003459static void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
Ville Tervofcd89c02011-02-10 22:38:47 -03003460{
3461 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3462
3463 skb_pull(skb, sizeof(*le_ev));
3464
3465 switch (le_ev->subevent) {
3466 case HCI_EV_LE_CONN_COMPLETE:
3467 hci_le_conn_complete_evt(hdev, skb);
3468 break;
3469
Andre Guedes9aa04c92011-05-26 16:23:51 -03003470 case HCI_EV_LE_ADVERTISING_REPORT:
3471 hci_le_adv_report_evt(hdev, skb);
3472 break;
3473
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003474 case HCI_EV_LE_LTK_REQ:
3475 hci_le_ltk_request_evt(hdev, skb);
3476 break;
3477
Ville Tervofcd89c02011-02-10 22:38:47 -03003478 default:
3479 break;
3480 }
3481}
3482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3484{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003485 struct hci_event_hdr *hdr = (void *) skb->data;
3486 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
3488 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3489
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003490 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 case HCI_EV_INQUIRY_COMPLETE:
3492 hci_inquiry_complete_evt(hdev, skb);
3493 break;
3494
3495 case HCI_EV_INQUIRY_RESULT:
3496 hci_inquiry_result_evt(hdev, skb);
3497 break;
3498
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003499 case HCI_EV_CONN_COMPLETE:
3500 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02003501 break;
3502
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 case HCI_EV_CONN_REQUEST:
3504 hci_conn_request_evt(hdev, skb);
3505 break;
3506
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 case HCI_EV_DISCONN_COMPLETE:
3508 hci_disconn_complete_evt(hdev, skb);
3509 break;
3510
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 case HCI_EV_AUTH_COMPLETE:
3512 hci_auth_complete_evt(hdev, skb);
3513 break;
3514
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003515 case HCI_EV_REMOTE_NAME:
3516 hci_remote_name_evt(hdev, skb);
3517 break;
3518
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 case HCI_EV_ENCRYPT_CHANGE:
3520 hci_encrypt_change_evt(hdev, skb);
3521 break;
3522
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003523 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3524 hci_change_link_key_complete_evt(hdev, skb);
3525 break;
3526
3527 case HCI_EV_REMOTE_FEATURES:
3528 hci_remote_features_evt(hdev, skb);
3529 break;
3530
3531 case HCI_EV_REMOTE_VERSION:
3532 hci_remote_version_evt(hdev, skb);
3533 break;
3534
3535 case HCI_EV_QOS_SETUP_COMPLETE:
3536 hci_qos_setup_complete_evt(hdev, skb);
3537 break;
3538
3539 case HCI_EV_CMD_COMPLETE:
3540 hci_cmd_complete_evt(hdev, skb);
3541 break;
3542
3543 case HCI_EV_CMD_STATUS:
3544 hci_cmd_status_evt(hdev, skb);
3545 break;
3546
3547 case HCI_EV_ROLE_CHANGE:
3548 hci_role_change_evt(hdev, skb);
3549 break;
3550
3551 case HCI_EV_NUM_COMP_PKTS:
3552 hci_num_comp_pkts_evt(hdev, skb);
3553 break;
3554
3555 case HCI_EV_MODE_CHANGE:
3556 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 break;
3558
3559 case HCI_EV_PIN_CODE_REQ:
3560 hci_pin_code_request_evt(hdev, skb);
3561 break;
3562
3563 case HCI_EV_LINK_KEY_REQ:
3564 hci_link_key_request_evt(hdev, skb);
3565 break;
3566
3567 case HCI_EV_LINK_KEY_NOTIFY:
3568 hci_link_key_notify_evt(hdev, skb);
3569 break;
3570
3571 case HCI_EV_CLOCK_OFFSET:
3572 hci_clock_offset_evt(hdev, skb);
3573 break;
3574
Marcel Holtmanna8746412008-07-14 20:13:46 +02003575 case HCI_EV_PKT_TYPE_CHANGE:
3576 hci_pkt_type_change_evt(hdev, skb);
3577 break;
3578
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003579 case HCI_EV_PSCAN_REP_MODE:
3580 hci_pscan_rep_mode_evt(hdev, skb);
3581 break;
3582
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003583 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3584 hci_inquiry_result_with_rssi_evt(hdev, skb);
3585 break;
3586
3587 case HCI_EV_REMOTE_EXT_FEATURES:
3588 hci_remote_ext_features_evt(hdev, skb);
3589 break;
3590
3591 case HCI_EV_SYNC_CONN_COMPLETE:
3592 hci_sync_conn_complete_evt(hdev, skb);
3593 break;
3594
3595 case HCI_EV_SYNC_CONN_CHANGED:
3596 hci_sync_conn_changed_evt(hdev, skb);
3597 break;
3598
Marcel Holtmann04837f62006-07-03 10:02:33 +02003599 case HCI_EV_SNIFF_SUBRATE:
3600 hci_sniff_subrate_evt(hdev, skb);
3601 break;
3602
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003603 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3604 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 break;
3606
Johan Hedberg1c2e0042012-06-08 23:31:13 +08003607 case HCI_EV_KEY_REFRESH_COMPLETE:
3608 hci_key_refresh_complete_evt(hdev, skb);
3609 break;
3610
Marcel Holtmann04936842008-07-14 20:13:48 +02003611 case HCI_EV_IO_CAPA_REQUEST:
3612 hci_io_capa_request_evt(hdev, skb);
3613 break;
3614
Johan Hedberg03b555e2011-01-04 15:40:05 +02003615 case HCI_EV_IO_CAPA_REPLY:
3616 hci_io_capa_reply_evt(hdev, skb);
3617 break;
3618
Johan Hedberga5c29682011-02-19 12:05:57 -03003619 case HCI_EV_USER_CONFIRM_REQUEST:
3620 hci_user_confirm_request_evt(hdev, skb);
3621 break;
3622
Brian Gix1143d452011-11-23 08:28:34 -08003623 case HCI_EV_USER_PASSKEY_REQUEST:
3624 hci_user_passkey_request_evt(hdev, skb);
3625 break;
3626
Marcel Holtmann04936842008-07-14 20:13:48 +02003627 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3628 hci_simple_pair_complete_evt(hdev, skb);
3629 break;
3630
Marcel Holtmann41a96212008-07-14 20:13:48 +02003631 case HCI_EV_REMOTE_HOST_FEATURES:
3632 hci_remote_host_features_evt(hdev, skb);
3633 break;
3634
Ville Tervofcd89c02011-02-10 22:38:47 -03003635 case HCI_EV_LE_META:
3636 hci_le_meta_evt(hdev, skb);
3637 break;
3638
Szymon Janc2763eda2011-03-22 13:12:22 +01003639 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3640 hci_remote_oob_data_request_evt(hdev, skb);
3641 break;
3642
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003643 case HCI_EV_NUM_COMP_BLOCKS:
3644 hci_num_comp_blocks_evt(hdev, skb);
3645 break;
3646
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003647 default:
Andrei Emeltchenko9f1db002012-07-11 14:32:43 +03003648 BT_DBG("%s event 0x%2.2x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 break;
3650 }
3651
3652 kfree_skb(skb);
3653 hdev->stat.evt_rx++;
3654}