blob: 2a5d05c05e35a6b98f4ddbc2aab330167293da8f [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
28
29#include <linux/types.h>
30#include <linux/errno.h>
31#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
33#include <linux/poll.h>
34#include <linux/fcntl.h>
35#include <linux/init.h>
36#include <linux/skbuff.h>
37#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <net/sock.h>
39
40#include <asm/system.h>
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020041#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/unaligned.h>
43
44#include <net/bluetooth/bluetooth.h>
45#include <net/bluetooth/hci_core.h>
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* Handle HCI Event packets */
48
Marcel Holtmanna9de9242007-10-20 13:33:56 +020049static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020051 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Marcel Holtmanna9de9242007-10-20 13:33:56 +020053 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Andre Guedese6d465c2011-11-09 17:14:26 -030055 if (status) {
56 hci_dev_lock(hdev);
57 mgmt_stop_discovery_failed(hdev, status);
58 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020059 return;
Andre Guedese6d465c2011-11-09 17:14:26 -030060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Andre Guedes89352e72011-11-04 14:16:53 -030062 clear_bit(HCI_INQUIRY, &hdev->flags);
63
Johan Hedberg56e5cb82011-11-08 20:40:16 +020064 hci_dev_lock(hdev);
Johan Hedbergff9ef572012-01-04 14:23:45 +020065 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Johan Hedberg56e5cb82011-11-08 20:40:16 +020066 hci_dev_unlock(hdev);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010067
Johan Hedberg23bb5762010-12-21 23:01:27 +020068 hci_req_complete(hdev, HCI_OP_INQUIRY_CANCEL, status);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010069
Marcel Holtmanna9de9242007-10-20 13:33:56 +020070 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
Marcel Holtmanna9de9242007-10-20 13:33:56 +020073static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020075 __u8 status = *((__u8 *) skb->data);
76
77 BT_DBG("%s status 0x%x", hdev->name, status);
78
79 if (status)
80 return;
81
Marcel Holtmanna9de9242007-10-20 13:33:56 +020082 hci_conn_check_pending(hdev);
83}
84
85static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev, struct sk_buff *skb)
86{
87 BT_DBG("%s", hdev->name);
88}
89
90static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
91{
92 struct hci_rp_role_discovery *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Marcel Holtmanna9de9242007-10-20 13:33:56 +020095 BT_DBG("%s status 0x%x", hdev->name, rp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Marcel Holtmanna9de9242007-10-20 13:33:56 +020097 if (rp->status)
98 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200100 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200102 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
103 if (conn) {
104 if (rp->role)
105 conn->link_mode &= ~HCI_LM_MASTER;
106 else
107 conn->link_mode |= HCI_LM_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200109
110 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200113static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
114{
115 struct hci_rp_read_link_policy *rp = (void *) skb->data;
116 struct hci_conn *conn;
117
118 BT_DBG("%s status 0x%x", hdev->name, rp->status);
119
120 if (rp->status)
121 return;
122
123 hci_dev_lock(hdev);
124
125 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
126 if (conn)
127 conn->link_policy = __le16_to_cpu(rp->policy);
128
129 hci_dev_unlock(hdev);
130}
131
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200132static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200134 struct hci_rp_write_link_policy *rp = (void *) skb->data;
135 struct hci_conn *conn;
136 void *sent;
137
138 BT_DBG("%s status 0x%x", hdev->name, rp->status);
139
140 if (rp->status)
141 return;
142
143 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
144 if (!sent)
145 return;
146
147 hci_dev_lock(hdev);
148
149 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200150 if (conn)
Harvey Harrison83985312008-05-02 16:25:46 -0700151 conn->link_policy = get_unaligned_le16(sent + 2);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200152
153 hci_dev_unlock(hdev);
154}
155
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200156static void hci_cc_read_def_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
157{
158 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
159
160 BT_DBG("%s status 0x%x", hdev->name, rp->status);
161
162 if (rp->status)
163 return;
164
165 hdev->link_policy = __le16_to_cpu(rp->policy);
166}
167
168static void hci_cc_write_def_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
169{
170 __u8 status = *((__u8 *) skb->data);
171 void *sent;
172
173 BT_DBG("%s status 0x%x", hdev->name, status);
174
175 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
176 if (!sent)
177 return;
178
179 if (!status)
180 hdev->link_policy = get_unaligned_le16(sent);
181
Johan Hedberg23bb5762010-12-21 23:01:27 +0200182 hci_req_complete(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200183}
184
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200185static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
186{
187 __u8 status = *((__u8 *) skb->data);
188
189 BT_DBG("%s status 0x%x", hdev->name, status);
190
Gustavo F. Padovan10572132011-03-16 15:36:29 -0300191 clear_bit(HCI_RESET, &hdev->flags);
192
Johan Hedberg23bb5762010-12-21 23:01:27 +0200193 hci_req_complete(hdev, HCI_OP_RESET, status);
Andre Guedesd23264a2011-11-25 20:53:38 -0300194
Johan Hedberga297e972012-02-21 17:55:47 +0200195 /* Reset all non-persistent flags */
196 hdev->dev_flags &= ~(BIT(HCI_LE_SCAN));
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200197}
198
199static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
200{
201 __u8 status = *((__u8 *) skb->data);
202 void *sent;
203
204 BT_DBG("%s status 0x%x", hdev->name, status);
205
206 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
207 if (!sent)
208 return;
209
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200210 hci_dev_lock(hdev);
211
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200212 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200213 mgmt_set_local_name_complete(hdev, sent, status);
Johan Hedbergb312b1612011-03-16 14:29:37 +0200214
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200215 if (status == 0)
216 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +0200217
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200218 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200219}
220
221static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
222{
223 struct hci_rp_read_local_name *rp = (void *) skb->data;
224
225 BT_DBG("%s status 0x%x", hdev->name, rp->status);
226
227 if (rp->status)
228 return;
229
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200230 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200231}
232
233static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
234{
235 __u8 status = *((__u8 *) skb->data);
236 void *sent;
237
238 BT_DBG("%s status 0x%x", hdev->name, status);
239
240 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
241 if (!sent)
242 return;
243
244 if (!status) {
245 __u8 param = *((__u8 *) sent);
246
247 if (param == AUTH_ENABLED)
248 set_bit(HCI_AUTH, &hdev->flags);
249 else
250 clear_bit(HCI_AUTH, &hdev->flags);
251 }
252
Johan Hedberg33ef95e2012-02-16 23:56:27 +0200253 if (test_bit(HCI_MGMT, &hdev->dev_flags))
254 mgmt_auth_enable_complete(hdev, status);
255
Johan Hedberg23bb5762010-12-21 23:01:27 +0200256 hci_req_complete(hdev, HCI_OP_WRITE_AUTH_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200257}
258
259static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
260{
261 __u8 status = *((__u8 *) skb->data);
262 void *sent;
263
264 BT_DBG("%s status 0x%x", hdev->name, status);
265
266 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
267 if (!sent)
268 return;
269
270 if (!status) {
271 __u8 param = *((__u8 *) sent);
272
273 if (param)
274 set_bit(HCI_ENCRYPT, &hdev->flags);
275 else
276 clear_bit(HCI_ENCRYPT, &hdev->flags);
277 }
278
Johan Hedberg23bb5762010-12-21 23:01:27 +0200279 hci_req_complete(hdev, HCI_OP_WRITE_ENCRYPT_MODE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200280}
281
282static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
283{
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200284 __u8 param, status = *((__u8 *) skb->data);
285 int old_pscan, old_iscan;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200286 void *sent;
287
288 BT_DBG("%s status 0x%x", hdev->name, status);
289
290 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
291 if (!sent)
292 return;
293
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200294 param = *((__u8 *) sent);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200295
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200296 hci_dev_lock(hdev);
297
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200298 if (status != 0) {
Johan Hedberg744cf192011-11-08 20:40:14 +0200299 mgmt_write_scan_failed(hdev, param, status);
Johan Hedberg2d7cee52011-11-07 22:16:03 +0200300 hdev->discov_timeout = 0;
301 goto done;
302 }
303
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200304 old_pscan = test_and_clear_bit(HCI_PSCAN, &hdev->flags);
305 old_iscan = test_and_clear_bit(HCI_ISCAN, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200306
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200307 if (param & SCAN_INQUIRY) {
308 set_bit(HCI_ISCAN, &hdev->flags);
309 if (!old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200310 mgmt_discoverable(hdev, 1);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200311 if (hdev->discov_timeout > 0) {
312 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
313 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
314 to);
315 }
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200316 } else if (old_iscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200317 mgmt_discoverable(hdev, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200318
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200319 if (param & SCAN_PAGE) {
320 set_bit(HCI_PSCAN, &hdev->flags);
321 if (!old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200322 mgmt_connectable(hdev, 1);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200323 } else if (old_pscan)
Johan Hedberg744cf192011-11-08 20:40:14 +0200324 mgmt_connectable(hdev, 0);
Johan Hedberg36f7fc72011-11-04 00:17:45 +0200325
326done:
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200327 hci_dev_unlock(hdev);
Johan Hedberg23bb5762010-12-21 23:01:27 +0200328 hci_req_complete(hdev, HCI_OP_WRITE_SCAN_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200329}
330
331static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
332{
333 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
334
335 BT_DBG("%s status 0x%x", hdev->name, rp->status);
336
337 if (rp->status)
338 return;
339
340 memcpy(hdev->dev_class, rp->dev_class, 3);
341
342 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
343 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
344}
345
346static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
347{
348 __u8 status = *((__u8 *) skb->data);
349 void *sent;
350
351 BT_DBG("%s status 0x%x", hdev->name, status);
352
Marcel Holtmannf383f272008-07-14 20:13:47 +0200353 if (status)
354 return;
355
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200356 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
357 if (!sent)
358 return;
359
Marcel Holtmannf383f272008-07-14 20:13:47 +0200360 memcpy(hdev->dev_class, sent, 3);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200361}
362
363static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
364{
365 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 __u16 setting;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200367
368 BT_DBG("%s status 0x%x", hdev->name, rp->status);
369
370 if (rp->status)
371 return;
372
373 setting = __le16_to_cpu(rp->voice_setting);
374
Marcel Holtmannf383f272008-07-14 20:13:47 +0200375 if (hdev->voice_setting == setting)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200376 return;
377
378 hdev->voice_setting = setting;
379
380 BT_DBG("%s voice setting 0x%04x", hdev->name, setting);
381
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200382 if (hdev->notify)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200383 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200384}
385
386static void hci_cc_write_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
387{
388 __u8 status = *((__u8 *) skb->data);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200389 __u16 setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 void *sent;
391
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200392 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Marcel Holtmannf383f272008-07-14 20:13:47 +0200394 if (status)
395 return;
396
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200397 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
398 if (!sent)
399 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Marcel Holtmannf383f272008-07-14 20:13:47 +0200401 setting = get_unaligned_le16(sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Marcel Holtmannf383f272008-07-14 20:13:47 +0200403 if (hdev->voice_setting == setting)
404 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Marcel Holtmannf383f272008-07-14 20:13:47 +0200406 hdev->voice_setting = setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Marcel Holtmannf383f272008-07-14 20:13:47 +0200408 BT_DBG("%s voice setting 0x%04x", hdev->name, setting);
409
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200410 if (hdev->notify)
Marcel Holtmannf383f272008-07-14 20:13:47 +0200411 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200414static void hci_cc_host_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200416 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200418 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Johan Hedberg23bb5762010-12-21 23:01:27 +0200420 hci_req_complete(hdev, HCI_OP_HOST_BUFFER_SIZE, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
Marcel Holtmann333140b2008-07-14 20:13:48 +0200423static void hci_cc_read_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
424{
425 struct hci_rp_read_ssp_mode *rp = (void *) skb->data;
426
427 BT_DBG("%s status 0x%x", hdev->name, rp->status);
428
429 if (rp->status)
430 return;
431
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200432 if (rp->mode)
433 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
434 else
435 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200436}
437
438static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
439{
440 __u8 status = *((__u8 *) skb->data);
441 void *sent;
442
443 BT_DBG("%s status 0x%x", hdev->name, status);
444
445 if (status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +0200446 goto done;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200447
448 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
449 if (!sent)
450 return;
451
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200452 if (*((u8 *) sent))
453 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
454 else
455 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
Johan Hedberged2c4ee2012-02-17 00:56:28 +0200456
457done:
458 if (test_bit(HCI_MGMT, &hdev->dev_flags))
459 mgmt_ssp_enable_complete(hdev, status);
Marcel Holtmann333140b2008-07-14 20:13:48 +0200460}
461
Johan Hedbergd5859e22011-01-25 01:19:58 +0200462static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
463{
464 if (hdev->features[6] & LMP_EXT_INQ)
465 return 2;
466
467 if (hdev->features[3] & LMP_RSSI_INQ)
468 return 1;
469
470 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
471 hdev->lmp_subver == 0x0757)
472 return 1;
473
474 if (hdev->manufacturer == 15) {
475 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
476 return 1;
477 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
478 return 1;
479 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
480 return 1;
481 }
482
483 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
484 hdev->lmp_subver == 0x1805)
485 return 1;
486
487 return 0;
488}
489
490static void hci_setup_inquiry_mode(struct hci_dev *hdev)
491{
492 u8 mode;
493
494 mode = hci_get_inquiry_mode(hdev);
495
496 hci_send_cmd(hdev, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
497}
498
499static void hci_setup_event_mask(struct hci_dev *hdev)
500{
501 /* The second byte is 0xff instead of 0x9f (two reserved bits
502 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
503 * command otherwise */
504 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
505
Ville Tervo6de6c182011-05-27 11:16:21 +0300506 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
507 * any event mask for pre 1.2 devices */
Andrei Emeltchenko5a13b092011-12-01 14:33:28 +0200508 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
Ville Tervo6de6c182011-05-27 11:16:21 +0300509 return;
510
511 events[4] |= 0x01; /* Flow Specification Complete */
512 events[4] |= 0x02; /* Inquiry Result with RSSI */
513 events[4] |= 0x04; /* Read Remote Extended Features Complete */
514 events[5] |= 0x08; /* Synchronous Connection Complete */
515 events[5] |= 0x10; /* Synchronous Connection Changed */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200516
517 if (hdev->features[3] & LMP_RSSI_INQ)
518 events[4] |= 0x04; /* Inquiry Result with RSSI */
519
520 if (hdev->features[5] & LMP_SNIFF_SUBR)
521 events[5] |= 0x20; /* Sniff Subrating */
522
523 if (hdev->features[5] & LMP_PAUSE_ENC)
524 events[5] |= 0x80; /* Encryption Key Refresh Complete */
525
526 if (hdev->features[6] & LMP_EXT_INQ)
527 events[5] |= 0x40; /* Extended Inquiry Result */
528
529 if (hdev->features[6] & LMP_NO_FLUSH)
530 events[7] |= 0x01; /* Enhanced Flush Complete */
531
532 if (hdev->features[7] & LMP_LSTO)
533 events[6] |= 0x80; /* Link Supervision Timeout Changed */
534
535 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
536 events[6] |= 0x01; /* IO Capability Request */
537 events[6] |= 0x02; /* IO Capability Response */
538 events[6] |= 0x04; /* User Confirmation Request */
539 events[6] |= 0x08; /* User Passkey Request */
540 events[6] |= 0x10; /* Remote OOB Data Request */
541 events[6] |= 0x20; /* Simple Pairing Complete */
542 events[7] |= 0x04; /* User Passkey Notification */
543 events[7] |= 0x08; /* Keypress Notification */
544 events[7] |= 0x10; /* Remote Host Supported
545 * Features Notification */
546 }
547
548 if (hdev->features[4] & LMP_LE)
549 events[7] |= 0x20; /* LE Meta-Event */
550
551 hci_send_cmd(hdev, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
552}
553
Andre Guedese6100a22011-06-30 19:20:54 -0300554static void hci_set_le_support(struct hci_dev *hdev)
555{
556 struct hci_cp_write_le_host_supported cp;
557
558 memset(&cp, 0, sizeof(cp));
559
560 if (enable_le) {
561 cp.le = 1;
562 cp.simul = !!(hdev->features[6] & LMP_SIMUL_LE_BR);
563 }
564
565 hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp), &cp);
566}
567
Johan Hedbergd5859e22011-01-25 01:19:58 +0200568static void hci_setup(struct hci_dev *hdev)
569{
Andrei Emeltchenkoe61ef492011-12-19 16:31:27 +0200570 if (hdev->dev_type != HCI_BREDR)
571 return;
572
Johan Hedbergd5859e22011-01-25 01:19:58 +0200573 hci_setup_event_mask(hdev);
574
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +0200575 if (hdev->hci_ver > BLUETOOTH_VER_1_1)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200576 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
577
578 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
579 u8 mode = 0x01;
580 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
581 }
582
583 if (hdev->features[3] & LMP_RSSI_INQ)
584 hci_setup_inquiry_mode(hdev);
585
586 if (hdev->features[7] & LMP_INQ_TX_PWR)
587 hci_send_cmd(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
Andre Guedes971e3a42011-06-30 19:20:52 -0300588
589 if (hdev->features[7] & LMP_EXTFEATURES) {
590 struct hci_cp_read_local_ext_features cp;
591
592 cp.page = 0x01;
593 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES,
594 sizeof(cp), &cp);
595 }
Andre Guedese6100a22011-06-30 19:20:54 -0300596
597 if (hdev->features[4] & LMP_LE)
598 hci_set_le_support(hdev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200599}
600
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200601static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
602{
603 struct hci_rp_read_local_version *rp = (void *) skb->data;
604
605 BT_DBG("%s status 0x%x", hdev->name, rp->status);
606
607 if (rp->status)
608 return;
609
610 hdev->hci_ver = rp->hci_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200611 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200612 hdev->lmp_ver = rp->lmp_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200613 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200614 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200615
616 BT_DBG("%s manufacturer %d hci ver %d:%d", hdev->name,
617 hdev->manufacturer,
618 hdev->hci_ver, hdev->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200619
620 if (test_bit(HCI_INIT, &hdev->flags))
621 hci_setup(hdev);
622}
623
624static void hci_setup_link_policy(struct hci_dev *hdev)
625{
626 u16 link_policy = 0;
627
628 if (hdev->features[0] & LMP_RSWITCH)
629 link_policy |= HCI_LP_RSWITCH;
630 if (hdev->features[0] & LMP_HOLD)
631 link_policy |= HCI_LP_HOLD;
632 if (hdev->features[0] & LMP_SNIFF)
633 link_policy |= HCI_LP_SNIFF;
634 if (hdev->features[1] & LMP_PARK)
635 link_policy |= HCI_LP_PARK;
636
637 link_policy = cpu_to_le16(link_policy);
638 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY,
639 sizeof(link_policy), &link_policy);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200640}
641
642static void hci_cc_read_local_commands(struct hci_dev *hdev, struct sk_buff *skb)
643{
644 struct hci_rp_read_local_commands *rp = (void *) skb->data;
645
646 BT_DBG("%s status 0x%x", hdev->name, rp->status);
647
648 if (rp->status)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200649 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200650
651 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Johan Hedbergd5859e22011-01-25 01:19:58 +0200652
653 if (test_bit(HCI_INIT, &hdev->flags) && (hdev->commands[5] & 0x10))
654 hci_setup_link_policy(hdev);
655
656done:
657 hci_req_complete(hdev, HCI_OP_READ_LOCAL_COMMANDS, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200658}
659
660static void hci_cc_read_local_features(struct hci_dev *hdev, struct sk_buff *skb)
661{
662 struct hci_rp_read_local_features *rp = (void *) skb->data;
663
664 BT_DBG("%s status 0x%x", hdev->name, rp->status);
665
666 if (rp->status)
667 return;
668
669 memcpy(hdev->features, rp->features, 8);
670
671 /* Adjust default settings according to features
672 * supported by device. */
673
674 if (hdev->features[0] & LMP_3SLOT)
675 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
676
677 if (hdev->features[0] & LMP_5SLOT)
678 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
679
680 if (hdev->features[1] & LMP_HV2) {
681 hdev->pkt_type |= (HCI_HV2);
682 hdev->esco_type |= (ESCO_HV2);
683 }
684
685 if (hdev->features[1] & LMP_HV3) {
686 hdev->pkt_type |= (HCI_HV3);
687 hdev->esco_type |= (ESCO_HV3);
688 }
689
690 if (hdev->features[3] & LMP_ESCO)
691 hdev->esco_type |= (ESCO_EV3);
692
693 if (hdev->features[4] & LMP_EV4)
694 hdev->esco_type |= (ESCO_EV4);
695
696 if (hdev->features[4] & LMP_EV5)
697 hdev->esco_type |= (ESCO_EV5);
698
Marcel Holtmannefc76882009-02-06 09:13:37 +0100699 if (hdev->features[5] & LMP_EDR_ESCO_2M)
700 hdev->esco_type |= (ESCO_2EV3);
701
702 if (hdev->features[5] & LMP_EDR_ESCO_3M)
703 hdev->esco_type |= (ESCO_3EV3);
704
705 if (hdev->features[5] & LMP_EDR_3S_ESCO)
706 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
707
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200708 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name,
709 hdev->features[0], hdev->features[1],
710 hdev->features[2], hdev->features[3],
711 hdev->features[4], hdev->features[5],
712 hdev->features[6], hdev->features[7]);
713}
714
Andre Guedes971e3a42011-06-30 19:20:52 -0300715static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
716 struct sk_buff *skb)
717{
718 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
719
720 BT_DBG("%s status 0x%x", hdev->name, rp->status);
721
722 if (rp->status)
723 return;
724
Andre Guedesb5b32b62011-12-30 10:34:04 -0300725 switch (rp->page) {
726 case 0:
727 memcpy(hdev->features, rp->features, 8);
728 break;
729 case 1:
730 memcpy(hdev->host_features, rp->features, 8);
731 break;
732 }
Andre Guedes971e3a42011-06-30 19:20:52 -0300733
734 hci_req_complete(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, rp->status);
735}
736
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200737static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
738 struct sk_buff *skb)
739{
740 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
741
742 BT_DBG("%s status 0x%x", hdev->name, rp->status);
743
744 if (rp->status)
745 return;
746
747 hdev->flow_ctl_mode = rp->mode;
748
749 hci_req_complete(hdev, HCI_OP_READ_FLOW_CONTROL_MODE, rp->status);
750}
751
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200752static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
753{
754 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
755
756 BT_DBG("%s status 0x%x", hdev->name, rp->status);
757
758 if (rp->status)
759 return;
760
761 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
762 hdev->sco_mtu = rp->sco_mtu;
763 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
764 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
765
766 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
767 hdev->sco_mtu = 64;
768 hdev->sco_pkts = 8;
769 }
770
771 hdev->acl_cnt = hdev->acl_pkts;
772 hdev->sco_cnt = hdev->sco_pkts;
773
774 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name,
775 hdev->acl_mtu, hdev->acl_pkts,
776 hdev->sco_mtu, hdev->sco_pkts);
777}
778
779static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
780{
781 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
782
783 BT_DBG("%s status 0x%x", hdev->name, rp->status);
784
785 if (!rp->status)
786 bacpy(&hdev->bdaddr, &rp->bdaddr);
787
Johan Hedberg23bb5762010-12-21 23:01:27 +0200788 hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
789}
790
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200791static void hci_cc_read_data_block_size(struct hci_dev *hdev,
792 struct sk_buff *skb)
793{
794 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
795
796 BT_DBG("%s status 0x%x", hdev->name, rp->status);
797
798 if (rp->status)
799 return;
800
801 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
802 hdev->block_len = __le16_to_cpu(rp->block_len);
803 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
804
805 hdev->block_cnt = hdev->num_blocks;
806
807 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
808 hdev->block_cnt, hdev->block_len);
809
810 hci_req_complete(hdev, HCI_OP_READ_DATA_BLOCK_SIZE, rp->status);
811}
812
Johan Hedberg23bb5762010-12-21 23:01:27 +0200813static void hci_cc_write_ca_timeout(struct hci_dev *hdev, struct sk_buff *skb)
814{
815 __u8 status = *((__u8 *) skb->data);
816
817 BT_DBG("%s status 0x%x", hdev->name, status);
818
819 hci_req_complete(hdev, HCI_OP_WRITE_CA_TIMEOUT, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200820}
821
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300822static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
823 struct sk_buff *skb)
824{
825 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
826
827 BT_DBG("%s status 0x%x", hdev->name, rp->status);
828
829 if (rp->status)
830 return;
831
832 hdev->amp_status = rp->amp_status;
833 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
834 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
835 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
836 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
837 hdev->amp_type = rp->amp_type;
838 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
839 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
840 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
841 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
842
843 hci_req_complete(hdev, HCI_OP_READ_LOCAL_AMP_INFO, rp->status);
844}
845
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200846static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
847 struct sk_buff *skb)
848{
849 __u8 status = *((__u8 *) skb->data);
850
851 BT_DBG("%s status 0x%x", hdev->name, status);
852
853 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
854}
855
Johan Hedbergd5859e22011-01-25 01:19:58 +0200856static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
857{
858 __u8 status = *((__u8 *) skb->data);
859
860 BT_DBG("%s status 0x%x", hdev->name, status);
861
862 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
863}
864
865static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
866 struct sk_buff *skb)
867{
868 __u8 status = *((__u8 *) skb->data);
869
870 BT_DBG("%s status 0x%x", hdev->name, status);
871
872 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
873}
874
875static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
876 struct sk_buff *skb)
877{
878 __u8 status = *((__u8 *) skb->data);
879
880 BT_DBG("%s status 0x%x", hdev->name, status);
881
882 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, status);
883}
884
885static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
886{
887 __u8 status = *((__u8 *) skb->data);
888
889 BT_DBG("%s status 0x%x", hdev->name, status);
890
891 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
892}
893
Johan Hedberg980e1a52011-01-22 06:10:07 +0200894static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
895{
896 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
897 struct hci_cp_pin_code_reply *cp;
898 struct hci_conn *conn;
899
900 BT_DBG("%s status 0x%x", hdev->name, rp->status);
901
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200902 hci_dev_lock(hdev);
903
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200904 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200905 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200906
907 if (rp->status != 0)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200908 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200909
910 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
911 if (!cp)
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200912 goto unlock;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200913
914 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
915 if (conn)
916 conn->pin_length = cp->pin_len;
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200917
918unlock:
919 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200920}
921
922static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
923{
924 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
925
926 BT_DBG("%s status 0x%x", hdev->name, rp->status);
927
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200928 hci_dev_lock(hdev);
929
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200930 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200931 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
Johan Hedberg980e1a52011-01-22 06:10:07 +0200932 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200933
934 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +0200935}
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200936
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300937static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
938 struct sk_buff *skb)
939{
940 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
941
942 BT_DBG("%s status 0x%x", hdev->name, rp->status);
943
944 if (rp->status)
945 return;
946
947 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
948 hdev->le_pkts = rp->le_max_pkt;
949
950 hdev->le_cnt = hdev->le_pkts;
951
952 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
953
954 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
955}
Johan Hedberg980e1a52011-01-22 06:10:07 +0200956
Johan Hedberga5c29682011-02-19 12:05:57 -0300957static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
958{
959 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
960
961 BT_DBG("%s status 0x%x", hdev->name, rp->status);
962
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200963 hci_dev_lock(hdev);
964
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200965 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +0200966 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
967 0, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200968
969 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300970}
971
972static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
973 struct sk_buff *skb)
974{
975 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
976
977 BT_DBG("%s status 0x%x", hdev->name, rp->status);
978
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200979 hci_dev_lock(hdev);
980
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200981 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200982 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
Johan Hedberg272d90d2012-02-09 15:26:12 +0200983 ACL_LINK, 0,
Johan Hedberga5c29682011-02-19 12:05:57 -0300984 rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200985
986 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -0300987}
988
Brian Gix1143d452011-11-23 08:28:34 -0800989static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
990{
991 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
992
993 BT_DBG("%s status 0x%x", hdev->name, rp->status);
994
995 hci_dev_lock(hdev);
996
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200997 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +0200998 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
999 0, rp->status);
Brian Gix1143d452011-11-23 08:28:34 -08001000
1001 hci_dev_unlock(hdev);
1002}
1003
1004static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
1005 struct sk_buff *skb)
1006{
1007 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1008
1009 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1010
1011 hci_dev_lock(hdev);
1012
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001013 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Brian Gix1143d452011-11-23 08:28:34 -08001014 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
Johan Hedberg272d90d2012-02-09 15:26:12 +02001015 ACL_LINK, 0,
Brian Gix1143d452011-11-23 08:28:34 -08001016 rp->status);
1017
1018 hci_dev_unlock(hdev);
1019}
1020
Szymon Jancc35938b2011-03-22 13:12:21 +01001021static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
1022 struct sk_buff *skb)
1023{
1024 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
1025
1026 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1027
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001028 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001029 mgmt_read_local_oob_data_reply_complete(hdev, rp->hash,
Szymon Jancc35938b2011-03-22 13:12:21 +01001030 rp->randomizer, rp->status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001031 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01001032}
1033
Andre Guedes07f7fa52011-12-02 21:13:31 +09001034static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1035{
1036 __u8 status = *((__u8 *) skb->data);
1037
1038 BT_DBG("%s status 0x%x", hdev->name, status);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001039
1040 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_PARAM, status);
Andre Guedes3fd24152012-02-03 17:48:01 -03001041
1042 if (status) {
1043 hci_dev_lock(hdev);
1044 mgmt_start_discovery_failed(hdev, status);
1045 hci_dev_unlock(hdev);
1046 return;
1047 }
Andre Guedes07f7fa52011-12-02 21:13:31 +09001048}
1049
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001050static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
1051 struct sk_buff *skb)
1052{
1053 struct hci_cp_le_set_scan_enable *cp;
1054 __u8 status = *((__u8 *) skb->data);
1055
1056 BT_DBG("%s status 0x%x", hdev->name, status);
1057
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001058 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1059 if (!cp)
1060 return;
1061
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001062 switch (cp->enable) {
1063 case LE_SCANNING_ENABLED:
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001064 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_ENABLE, status);
1065
Andre Guedes3fd24152012-02-03 17:48:01 -03001066 if (status) {
1067 hci_dev_lock(hdev);
1068 mgmt_start_discovery_failed(hdev, status);
1069 hci_dev_unlock(hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001070 return;
Andre Guedes3fd24152012-02-03 17:48:01 -03001071 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001072
Andre Guedesd23264a2011-11-25 20:53:38 -03001073 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
1074
Gustavo F. Padovandb323f22011-06-20 16:39:29 -03001075 cancel_delayed_work_sync(&hdev->adv_work);
Andre Guedesa8f13c82011-09-09 18:56:24 -03001076
1077 hci_dev_lock(hdev);
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001078 hci_adv_entries_clear(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001079 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedesa8f13c82011-09-09 18:56:24 -03001080 hci_dev_unlock(hdev);
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001081 break;
1082
1083 case LE_SCANNING_DISABLED:
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001084 if (status)
1085 return;
1086
Andre Guedesd23264a2011-11-25 20:53:38 -03001087 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
1088
Andre Guedesd0843292012-01-02 19:18:11 -03001089 schedule_delayed_work(&hdev->adv_work, ADV_CLEAR_TIMEOUT);
Andre Guedes5e0452c2012-02-17 20:39:38 -03001090
1091 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED) {
1092 mgmt_interleaved_discovery(hdev);
1093 } else {
1094 hci_dev_lock(hdev);
1095 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1096 hci_dev_unlock(hdev);
1097 }
1098
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +02001099 break;
1100
1101 default:
1102 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1103 break;
Andre Guedes35815082011-05-26 16:23:53 -03001104 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001105}
1106
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001107static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
1108{
1109 struct hci_rp_le_ltk_reply *rp = (void *) skb->data;
1110
1111 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1112
1113 if (rp->status)
1114 return;
1115
1116 hci_req_complete(hdev, HCI_OP_LE_LTK_REPLY, rp->status);
1117}
1118
1119static void hci_cc_le_ltk_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
1120{
1121 struct hci_rp_le_ltk_neg_reply *rp = (void *) skb->data;
1122
1123 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1124
1125 if (rp->status)
1126 return;
1127
1128 hci_req_complete(hdev, HCI_OP_LE_LTK_NEG_REPLY, rp->status);
1129}
1130
Andre Guedesf9b49302011-06-30 19:20:53 -03001131static inline void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1132 struct sk_buff *skb)
1133{
1134 struct hci_cp_read_local_ext_features cp;
1135 __u8 status = *((__u8 *) skb->data);
1136
1137 BT_DBG("%s status 0x%x", hdev->name, status);
1138
1139 if (status)
1140 return;
1141
1142 cp.page = 0x01;
1143 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, sizeof(cp), &cp);
1144}
1145
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001146static inline void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
1147{
1148 BT_DBG("%s status 0x%x", hdev->name, status);
1149
1150 if (status) {
Johan Hedberg23bb5762010-12-21 23:01:27 +02001151 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001152 hci_conn_check_pending(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001153 hci_dev_lock(hdev);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001154 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Andre Guedes7a135102011-11-09 17:14:25 -03001155 mgmt_start_discovery_failed(hdev, status);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001156 hci_dev_unlock(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -04001157 return;
1158 }
1159
Andre Guedes89352e72011-11-04 14:16:53 -03001160 set_bit(HCI_INQUIRY, &hdev->flags);
1161
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001162 hci_dev_lock(hdev);
Andre Guedes343f9352012-02-17 20:39:37 -03001163 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001164 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001165}
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167static inline void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
1168{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001169 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001172 BT_DBG("%s status 0x%x", hdev->name, status);
1173
1174 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (!cp)
1176 return;
1177
1178 hci_dev_lock(hdev);
1179
1180 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1181
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001182 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->bdaddr), conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 if (status) {
1185 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +02001186 if (status != 0x0c || conn->attempt > 2) {
1187 conn->state = BT_CLOSED;
1188 hci_proto_connect_cfm(conn, status);
1189 hci_conn_del(conn);
1190 } else
1191 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 } else {
1194 if (!conn) {
1195 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1196 if (conn) {
Johan Hedberga0c808b2012-01-16 09:49:58 +02001197 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 conn->link_mode |= HCI_LM_MASTER;
1199 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001200 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202 }
1203
1204 hci_dev_unlock(hdev);
1205}
1206
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001207static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001209 struct hci_cp_add_sco *cp;
1210 struct hci_conn *acl, *sco;
1211 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001213 BT_DBG("%s status 0x%x", hdev->name, status);
1214
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001215 if (!status)
1216 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001218 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1219 if (!cp)
1220 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001222 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001224 BT_DBG("%s handle %d", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001225
1226 hci_dev_lock(hdev);
1227
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001228 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001229 if (acl) {
1230 sco = acl->link;
1231 if (sco) {
1232 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001233
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001234 hci_proto_connect_cfm(sco, status);
1235 hci_conn_del(sco);
1236 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001237 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +01001238
1239 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
Marcel Holtmannf8558552008-07-14 20:13:49 +02001242static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1243{
1244 struct hci_cp_auth_requested *cp;
1245 struct hci_conn *conn;
1246
1247 BT_DBG("%s status 0x%x", hdev->name, status);
1248
1249 if (!status)
1250 return;
1251
1252 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1253 if (!cp)
1254 return;
1255
1256 hci_dev_lock(hdev);
1257
1258 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1259 if (conn) {
1260 if (conn->state == BT_CONFIG) {
1261 hci_proto_connect_cfm(conn, status);
1262 hci_conn_put(conn);
1263 }
1264 }
1265
1266 hci_dev_unlock(hdev);
1267}
1268
1269static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1270{
1271 struct hci_cp_set_conn_encrypt *cp;
1272 struct hci_conn *conn;
1273
1274 BT_DBG("%s status 0x%x", hdev->name, status);
1275
1276 if (!status)
1277 return;
1278
1279 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1280 if (!cp)
1281 return;
1282
1283 hci_dev_lock(hdev);
1284
1285 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1286 if (conn) {
1287 if (conn->state == BT_CONFIG) {
1288 hci_proto_connect_cfm(conn, status);
1289 hci_conn_put(conn);
1290 }
1291 }
1292
1293 hci_dev_unlock(hdev);
1294}
1295
Johan Hedberg127178d2010-11-18 22:22:29 +02001296static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Szymon Janc138d22e2011-02-17 16:44:23 +01001297 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001298{
Johan Hedberg392599b2010-11-18 22:22:28 +02001299 if (conn->state != BT_CONFIG || !conn->out)
1300 return 0;
1301
Johan Hedberg765c2a92011-01-19 12:06:52 +05301302 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001303 return 0;
1304
1305 /* Only request authentication for SSP connections or non-SSP
Vinicius Costa Gomese9bf2bf2011-09-02 14:51:20 -03001306 * devices with sec_level HIGH or if MITM protection is requested */
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001307 if (!hci_conn_ssp_enabled(conn) &&
Vinicius Costa Gomese9bf2bf2011-09-02 14:51:20 -03001308 conn->pending_sec_level != BT_SECURITY_HIGH &&
1309 !(conn->auth_type & 0x01))
Johan Hedberg392599b2010-11-18 22:22:28 +02001310 return 0;
1311
Johan Hedberg392599b2010-11-18 22:22:28 +02001312 return 1;
1313}
1314
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001315static inline int hci_resolve_name(struct hci_dev *hdev, struct inquiry_entry *e)
1316{
1317 struct hci_cp_remote_name_req cp;
1318
1319 memset(&cp, 0, sizeof(cp));
1320
1321 bacpy(&cp.bdaddr, &e->data.bdaddr);
1322 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1323 cp.pscan_mode = e->data.pscan_mode;
1324 cp.clock_offset = e->data.clock_offset;
1325
1326 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1327}
1328
Johan Hedbergb644ba32012-01-17 21:48:47 +02001329static bool hci_resolve_next_name(struct hci_dev *hdev)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001330{
1331 struct discovery_state *discov = &hdev->discovery;
1332 struct inquiry_entry *e;
1333
Johan Hedbergb644ba32012-01-17 21:48:47 +02001334 if (list_empty(&discov->resolve))
1335 return false;
1336
1337 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1338 if (hci_resolve_name(hdev, e) == 0) {
1339 e->name_state = NAME_PENDING;
1340 return true;
1341 }
1342
1343 return false;
1344}
1345
1346static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
1347 bdaddr_t *bdaddr, u8 *name, u8 name_len)
1348{
1349 struct discovery_state *discov = &hdev->discovery;
1350 struct inquiry_entry *e;
1351
1352 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
1353 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00,
1354 name, name_len, conn->dev_class);
1355
1356 if (discov->state == DISCOVERY_STOPPED)
1357 return;
1358
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001359 if (discov->state == DISCOVERY_STOPPING)
1360 goto discov_complete;
1361
1362 if (discov->state != DISCOVERY_RESOLVING)
1363 return;
1364
1365 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
1366 if (e) {
1367 e->name_state = NAME_KNOWN;
1368 list_del(&e->list);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001369 if (name)
1370 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
1371 e->data.rssi, name, name_len);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001372 }
1373
Johan Hedbergb644ba32012-01-17 21:48:47 +02001374 if (hci_resolve_next_name(hdev))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001375 return;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001376
1377discov_complete:
1378 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1379}
1380
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001381static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1382{
Johan Hedberg127178d2010-11-18 22:22:29 +02001383 struct hci_cp_remote_name_req *cp;
1384 struct hci_conn *conn;
1385
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001386 BT_DBG("%s status 0x%x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001387
1388 /* If successful wait for the name req complete event before
1389 * checking for the need to do authentication */
1390 if (!status)
1391 return;
1392
1393 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1394 if (!cp)
1395 return;
1396
1397 hci_dev_lock(hdev);
1398
1399 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001400
1401 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1402 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
1403
Johan Hedberg79c6c702011-04-28 11:28:55 -07001404 if (!conn)
1405 goto unlock;
1406
1407 if (!hci_outgoing_auth_needed(hdev, conn))
1408 goto unlock;
1409
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001410 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001411 struct hci_cp_auth_requested cp;
1412 cp.handle = __cpu_to_le16(conn->handle);
1413 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1414 }
1415
Johan Hedberg79c6c702011-04-28 11:28:55 -07001416unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001417 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001418}
1419
Marcel Holtmann769be972008-07-14 20:13:49 +02001420static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1421{
1422 struct hci_cp_read_remote_features *cp;
1423 struct hci_conn *conn;
1424
1425 BT_DBG("%s status 0x%x", hdev->name, status);
1426
1427 if (!status)
1428 return;
1429
1430 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1431 if (!cp)
1432 return;
1433
1434 hci_dev_lock(hdev);
1435
1436 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1437 if (conn) {
1438 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001439 hci_proto_connect_cfm(conn, status);
1440 hci_conn_put(conn);
1441 }
1442 }
1443
1444 hci_dev_unlock(hdev);
1445}
1446
1447static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1448{
1449 struct hci_cp_read_remote_ext_features *cp;
1450 struct hci_conn *conn;
1451
1452 BT_DBG("%s status 0x%x", hdev->name, status);
1453
1454 if (!status)
1455 return;
1456
1457 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1458 if (!cp)
1459 return;
1460
1461 hci_dev_lock(hdev);
1462
1463 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1464 if (conn) {
1465 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001466 hci_proto_connect_cfm(conn, status);
1467 hci_conn_put(conn);
1468 }
1469 }
1470
1471 hci_dev_unlock(hdev);
1472}
1473
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001474static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1475{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001476 struct hci_cp_setup_sync_conn *cp;
1477 struct hci_conn *acl, *sco;
1478 __u16 handle;
1479
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001480 BT_DBG("%s status 0x%x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001481
1482 if (!status)
1483 return;
1484
1485 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1486 if (!cp)
1487 return;
1488
1489 handle = __le16_to_cpu(cp->handle);
1490
1491 BT_DBG("%s handle %d", hdev->name, handle);
1492
1493 hci_dev_lock(hdev);
1494
1495 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001496 if (acl) {
1497 sco = acl->link;
1498 if (sco) {
1499 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001500
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001501 hci_proto_connect_cfm(sco, status);
1502 hci_conn_del(sco);
1503 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001504 }
1505
1506 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001507}
1508
1509static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1510{
1511 struct hci_cp_sniff_mode *cp;
1512 struct hci_conn *conn;
1513
1514 BT_DBG("%s status 0x%x", hdev->name, status);
1515
1516 if (!status)
1517 return;
1518
1519 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1520 if (!cp)
1521 return;
1522
1523 hci_dev_lock(hdev);
1524
1525 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001526 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001527 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001528
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001529 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001530 hci_sco_setup(conn, status);
1531 }
1532
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001533 hci_dev_unlock(hdev);
1534}
1535
1536static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1537{
1538 struct hci_cp_exit_sniff_mode *cp;
1539 struct hci_conn *conn;
1540
1541 BT_DBG("%s status 0x%x", hdev->name, status);
1542
1543 if (!status)
1544 return;
1545
1546 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1547 if (!cp)
1548 return;
1549
1550 hci_dev_lock(hdev);
1551
1552 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001553 if (conn) {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001554 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001555
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001556 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001557 hci_sco_setup(conn, status);
1558 }
1559
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001560 hci_dev_unlock(hdev);
1561}
1562
Johan Hedberg88c3df12012-02-09 14:27:38 +02001563static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1564{
1565 struct hci_cp_disconnect *cp;
1566 struct hci_conn *conn;
1567
1568 if (!status)
1569 return;
1570
1571 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1572 if (!cp)
1573 return;
1574
1575 hci_dev_lock(hdev);
1576
1577 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1578 if (conn)
1579 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
1580 conn->dst_type, status);
1581
1582 hci_dev_unlock(hdev);
1583}
1584
Ville Tervofcd89c02011-02-10 22:38:47 -03001585static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1586{
1587 struct hci_cp_le_create_conn *cp;
1588 struct hci_conn *conn;
1589
1590 BT_DBG("%s status 0x%x", hdev->name, status);
1591
1592 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_CREATE_CONN);
1593 if (!cp)
1594 return;
1595
1596 hci_dev_lock(hdev);
1597
1598 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->peer_addr);
1599
1600 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->peer_addr),
1601 conn);
1602
1603 if (status) {
1604 if (conn && conn->state == BT_CONNECT) {
1605 conn->state = BT_CLOSED;
1606 hci_proto_connect_cfm(conn, status);
1607 hci_conn_del(conn);
1608 }
1609 } else {
1610 if (!conn) {
1611 conn = hci_conn_add(hdev, LE_LINK, &cp->peer_addr);
Andre Guedes29b79882011-05-31 14:20:54 -03001612 if (conn) {
1613 conn->dst_type = cp->peer_addr_type;
Johan Hedberga0c808b2012-01-16 09:49:58 +02001614 conn->out = true;
Andre Guedes29b79882011-05-31 14:20:54 -03001615 } else {
Ville Tervofcd89c02011-02-10 22:38:47 -03001616 BT_ERR("No memory for new connection");
Andre Guedes29b79882011-05-31 14:20:54 -03001617 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001618 }
1619 }
1620
1621 hci_dev_unlock(hdev);
1622}
1623
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001624static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1625{
1626 BT_DBG("%s status 0x%x", hdev->name, status);
1627}
1628
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001629static inline void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1630{
1631 __u8 status = *((__u8 *) skb->data);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001632 struct discovery_state *discov = &hdev->discovery;
1633 struct inquiry_entry *e;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001634
1635 BT_DBG("%s status %d", hdev->name, status);
1636
Johan Hedberg23bb5762010-12-21 23:01:27 +02001637 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001638
1639 hci_conn_check_pending(hdev);
Andre Guedes89352e72011-11-04 14:16:53 -03001640
1641 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1642 return;
1643
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001644 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001645 return;
1646
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001647 hci_dev_lock(hdev);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001648
Andre Guedes343f9352012-02-17 20:39:37 -03001649 if (discov->state != DISCOVERY_FINDING)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001650 goto unlock;
1651
1652 if (list_empty(&discov->resolve)) {
1653 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1654 goto unlock;
1655 }
1656
1657 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1658 if (e && hci_resolve_name(hdev, e) == 0) {
1659 e->name_state = NAME_PENDING;
1660 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1661 } else {
1662 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1663 }
1664
1665unlock:
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001666 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001667}
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669static inline void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
1670{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001671 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001672 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 int num_rsp = *((__u8 *) skb->data);
1674
1675 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1676
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001677 if (!num_rsp)
1678 return;
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001681
Johan Hedberge17acd42011-03-30 23:57:16 +03001682 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg31754052012-01-04 13:39:52 +02001683 bool name_known;
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 bacpy(&data.bdaddr, &info->bdaddr);
1686 data.pscan_rep_mode = info->pscan_rep_mode;
1687 data.pscan_period_mode = info->pscan_period_mode;
1688 data.pscan_mode = info->pscan_mode;
1689 memcpy(data.dev_class, info->dev_class, 3);
1690 data.clock_offset = info->clock_offset;
1691 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001692 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02001693
1694 name_known = hci_inquiry_cache_update(hdev, &data, false);
Johan Hedberg48264f02011-11-09 13:58:58 +02001695 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Andre Guedes7d262f82012-01-10 18:20:49 -03001696 info->dev_class, 0, !name_known,
1697 NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 hci_dev_unlock(hdev);
1701}
1702
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001703static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001705 struct hci_ev_conn_complete *ev = (void *) skb->data;
1706 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001708 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001711
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001712 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001713 if (!conn) {
1714 if (ev->link_type != SCO_LINK)
1715 goto unlock;
1716
1717 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1718 if (!conn)
1719 goto unlock;
1720
1721 conn->type = SCO_LINK;
1722 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001723
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001724 if (!ev->status) {
1725 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001726
1727 if (conn->type == ACL_LINK) {
1728 conn->state = BT_CONFIG;
1729 hci_conn_hold(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001730 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann769be972008-07-14 20:13:49 +02001731 } else
1732 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001733
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001734 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001735 hci_conn_add_sysfs(conn);
1736
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001737 if (test_bit(HCI_AUTH, &hdev->flags))
1738 conn->link_mode |= HCI_LM_AUTH;
1739
1740 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1741 conn->link_mode |= HCI_LM_ENCRYPT;
1742
1743 /* Get remote features */
1744 if (conn->type == ACL_LINK) {
1745 struct hci_cp_read_remote_features cp;
1746 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001747 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
1748 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001749 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001750
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001751 /* Set packet type for incoming connection */
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +02001752 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001753 struct hci_cp_change_conn_ptype cp;
1754 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001755 cp.pkt_type = cpu_to_le16(conn->pkt_type);
1756 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE,
1757 sizeof(cp), &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001758 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001759 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001760 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001761 if (conn->type == ACL_LINK)
Johan Hedberg744cf192011-11-08 20:40:14 +02001762 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
Johan Hedberg48264f02011-11-09 13:58:58 +02001763 conn->dst_type, ev->status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02001764 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001765
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001766 if (conn->type == ACL_LINK)
1767 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001768
Marcel Holtmann769be972008-07-14 20:13:49 +02001769 if (ev->status) {
1770 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001771 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001772 } else if (ev->link_type != ACL_LINK)
1773 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001774
1775unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001777
1778 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781static inline void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
1782{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001783 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 int mask = hdev->link_mode;
1785
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001786 BT_DBG("%s bdaddr %s type 0x%x", hdev->name,
1787 batostr(&ev->bdaddr), ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1790
Szymon Janc138d22e2011-02-17 16:44:23 +01001791 if ((mask & HCI_LM_ACCEPT) &&
1792 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001794 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001798
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001799 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1800 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001801 memcpy(ie->data.dev_class, ev->dev_class, 3);
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
1804 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001805 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1806 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001807 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 hci_dev_unlock(hdev);
1809 return;
1810 }
1811 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 memcpy(conn->dev_class, ev->dev_class, 3);
1814 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 hci_dev_unlock(hdev);
1817
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001818 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1819 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001821 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001823 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1824 cp.role = 0x00; /* Become master */
1825 else
1826 cp.role = 0x01; /* Remain slave */
1827
1828 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ,
1829 sizeof(cp), &cp);
1830 } else {
1831 struct hci_cp_accept_sync_conn_req cp;
1832
1833 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001834 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001835
1836 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
1837 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
1838 cp.max_latency = cpu_to_le16(0xffff);
1839 cp.content_format = cpu_to_le16(hdev->voice_setting);
1840 cp.retrans_effort = 0xff;
1841
1842 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
1843 sizeof(cp), &cp);
1844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 } else {
1846 /* Connection rejected */
1847 struct hci_cp_reject_conn_req cp;
1848
1849 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02001850 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001851 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853}
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855static inline void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1856{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001857 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001858 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 BT_DBG("%s status %d", hdev->name, ev->status);
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 hci_dev_lock(hdev);
1863
Marcel Holtmann04837f62006-07-03 10:02:33 +02001864 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001865 if (!conn)
1866 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001867
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001868 if (ev->status == 0)
1869 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Johan Hedbergb644ba32012-01-17 21:48:47 +02001871 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags) &&
1872 (conn->type == ACL_LINK || conn->type == LE_LINK)) {
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001873 if (ev->status != 0)
Johan Hedberg88c3df12012-02-09 14:27:38 +02001874 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
1875 conn->dst_type, ev->status);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001876 else
Johan Hedbergafc747a2012-01-15 18:11:07 +02001877 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
Johan Hedberg48264f02011-11-09 13:58:58 +02001878 conn->dst_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001879 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001880
Johan Hedberg37d9ef72011-11-10 15:54:39 +02001881 if (ev->status == 0) {
1882 hci_proto_disconn_cfm(conn, ev->reason);
1883 hci_conn_del(conn);
1884 }
Johan Hedbergf7520542011-01-20 12:34:39 +02001885
1886unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 hci_dev_unlock(hdev);
1888}
1889
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001890static inline void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1891{
1892 struct hci_ev_auth_complete *ev = (void *) skb->data;
1893 struct hci_conn *conn;
1894
1895 BT_DBG("%s status %d", hdev->name, ev->status);
1896
1897 hci_dev_lock(hdev);
1898
1899 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001900 if (!conn)
1901 goto unlock;
1902
1903 if (!ev->status) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001904 if (!hci_conn_ssp_enabled(conn) &&
1905 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001906 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03001907 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001908 conn->link_mode |= HCI_LM_AUTH;
1909 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03001910 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001911 } else {
Johan Hedbergbab73cb2012-02-09 16:07:29 +02001912 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
1913 ev->status);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001914 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001915
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001916 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
1917 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001918
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001919 if (conn->state == BT_CONFIG) {
Johan Hedbergaa64a8b2012-01-18 21:33:12 +02001920 if (!ev->status && hci_conn_ssp_enabled(conn)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001921 struct hci_cp_set_conn_encrypt cp;
1922 cp.handle = ev->handle;
1923 cp.encrypt = 0x01;
1924 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1925 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001926 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001927 conn->state = BT_CONNECTED;
1928 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001929 hci_conn_put(conn);
1930 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001931 } else {
1932 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001933
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001934 hci_conn_hold(conn);
1935 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
1936 hci_conn_put(conn);
1937 }
1938
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001939 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001940 if (!ev->status) {
1941 struct hci_cp_set_conn_encrypt cp;
1942 cp.handle = ev->handle;
1943 cp.encrypt = 0x01;
1944 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1945 &cp);
1946 } else {
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001947 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001948 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001949 }
1950 }
1951
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001952unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001953 hci_dev_unlock(hdev);
1954}
1955
1956static inline void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
1957{
Johan Hedberg127178d2010-11-18 22:22:29 +02001958 struct hci_ev_remote_name *ev = (void *) skb->data;
1959 struct hci_conn *conn;
1960
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001961 BT_DBG("%s", hdev->name);
1962
1963 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02001964
1965 hci_dev_lock(hdev);
1966
1967 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedbergb644ba32012-01-17 21:48:47 +02001968
1969 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1970 goto check_auth;
1971
1972 if (ev->status == 0)
1973 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
1974 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
1975 else
1976 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
1977
1978check_auth:
Johan Hedberg79c6c702011-04-28 11:28:55 -07001979 if (!conn)
1980 goto unlock;
1981
1982 if (!hci_outgoing_auth_needed(hdev, conn))
1983 goto unlock;
1984
Johan Hedberg51a8efd2012-01-16 06:10:31 +02001985 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001986 struct hci_cp_auth_requested cp;
1987 cp.handle = __cpu_to_le16(conn->handle);
1988 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1989 }
1990
Johan Hedberg79c6c702011-04-28 11:28:55 -07001991unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001992 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001993}
1994
1995static inline void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
1996{
1997 struct hci_ev_encrypt_change *ev = (void *) skb->data;
1998 struct hci_conn *conn;
1999
2000 BT_DBG("%s status %d", hdev->name, ev->status);
2001
2002 hci_dev_lock(hdev);
2003
2004 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2005 if (conn) {
2006 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02002007 if (ev->encrypt) {
2008 /* Encryption implies authentication */
2009 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002010 conn->link_mode |= HCI_LM_ENCRYPT;
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002011 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannae293192008-07-14 20:13:45 +02002012 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002013 conn->link_mode &= ~HCI_LM_ENCRYPT;
2014 }
2015
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002016 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002017
Marcel Holtmannf8558552008-07-14 20:13:49 +02002018 if (conn->state == BT_CONFIG) {
2019 if (!ev->status)
2020 conn->state = BT_CONNECTED;
2021
2022 hci_proto_connect_cfm(conn, ev->status);
2023 hci_conn_put(conn);
2024 } else
2025 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002026 }
2027
2028 hci_dev_unlock(hdev);
2029}
2030
2031static inline void hci_change_link_key_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2032{
2033 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
2034 struct hci_conn *conn;
2035
2036 BT_DBG("%s status %d", hdev->name, ev->status);
2037
2038 hci_dev_lock(hdev);
2039
2040 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2041 if (conn) {
2042 if (!ev->status)
2043 conn->link_mode |= HCI_LM_SECURE;
2044
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002045 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002046
2047 hci_key_change_cfm(conn, ev->status);
2048 }
2049
2050 hci_dev_unlock(hdev);
2051}
2052
2053static inline void hci_remote_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2054{
2055 struct hci_ev_remote_features *ev = (void *) skb->data;
2056 struct hci_conn *conn;
2057
2058 BT_DBG("%s status %d", hdev->name, ev->status);
2059
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002060 hci_dev_lock(hdev);
2061
2062 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002063 if (!conn)
2064 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02002065
Johan Hedbergccd556f2010-11-10 17:11:51 +02002066 if (!ev->status)
2067 memcpy(conn->features, ev->features, 8);
2068
2069 if (conn->state != BT_CONFIG)
2070 goto unlock;
2071
2072 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2073 struct hci_cp_read_remote_ext_features cp;
2074 cp.handle = ev->handle;
2075 cp.page = 0x01;
2076 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Marcel Holtmann769be972008-07-14 20:13:49 +02002077 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02002078 goto unlock;
2079 }
2080
Johan Hedberg127178d2010-11-18 22:22:29 +02002081 if (!ev->status) {
2082 struct hci_cp_remote_name_req cp;
2083 memset(&cp, 0, sizeof(cp));
2084 bacpy(&cp.bdaddr, &conn->dst);
2085 cp.pscan_rep_mode = 0x02;
2086 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002087 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2088 mgmt_device_connected(hdev, &conn->dst, conn->type,
2089 conn->dst_type, NULL, 0,
2090 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002091
Johan Hedberg127178d2010-11-18 22:22:29 +02002092 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002093 conn->state = BT_CONNECTED;
2094 hci_proto_connect_cfm(conn, ev->status);
2095 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02002096 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002097
Johan Hedbergccd556f2010-11-10 17:11:51 +02002098unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002099 hci_dev_unlock(hdev);
2100}
2101
2102static inline void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
2103{
2104 BT_DBG("%s", hdev->name);
2105}
2106
2107static inline void hci_qos_setup_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2108{
2109 BT_DBG("%s", hdev->name);
2110}
2111
2112static inline void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2113{
2114 struct hci_ev_cmd_complete *ev = (void *) skb->data;
2115 __u16 opcode;
2116
2117 skb_pull(skb, sizeof(*ev));
2118
2119 opcode = __le16_to_cpu(ev->opcode);
2120
2121 switch (opcode) {
2122 case HCI_OP_INQUIRY_CANCEL:
2123 hci_cc_inquiry_cancel(hdev, skb);
2124 break;
2125
2126 case HCI_OP_EXIT_PERIODIC_INQ:
2127 hci_cc_exit_periodic_inq(hdev, skb);
2128 break;
2129
2130 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2131 hci_cc_remote_name_req_cancel(hdev, skb);
2132 break;
2133
2134 case HCI_OP_ROLE_DISCOVERY:
2135 hci_cc_role_discovery(hdev, skb);
2136 break;
2137
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002138 case HCI_OP_READ_LINK_POLICY:
2139 hci_cc_read_link_policy(hdev, skb);
2140 break;
2141
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002142 case HCI_OP_WRITE_LINK_POLICY:
2143 hci_cc_write_link_policy(hdev, skb);
2144 break;
2145
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002146 case HCI_OP_READ_DEF_LINK_POLICY:
2147 hci_cc_read_def_link_policy(hdev, skb);
2148 break;
2149
2150 case HCI_OP_WRITE_DEF_LINK_POLICY:
2151 hci_cc_write_def_link_policy(hdev, skb);
2152 break;
2153
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002154 case HCI_OP_RESET:
2155 hci_cc_reset(hdev, skb);
2156 break;
2157
2158 case HCI_OP_WRITE_LOCAL_NAME:
2159 hci_cc_write_local_name(hdev, skb);
2160 break;
2161
2162 case HCI_OP_READ_LOCAL_NAME:
2163 hci_cc_read_local_name(hdev, skb);
2164 break;
2165
2166 case HCI_OP_WRITE_AUTH_ENABLE:
2167 hci_cc_write_auth_enable(hdev, skb);
2168 break;
2169
2170 case HCI_OP_WRITE_ENCRYPT_MODE:
2171 hci_cc_write_encrypt_mode(hdev, skb);
2172 break;
2173
2174 case HCI_OP_WRITE_SCAN_ENABLE:
2175 hci_cc_write_scan_enable(hdev, skb);
2176 break;
2177
2178 case HCI_OP_READ_CLASS_OF_DEV:
2179 hci_cc_read_class_of_dev(hdev, skb);
2180 break;
2181
2182 case HCI_OP_WRITE_CLASS_OF_DEV:
2183 hci_cc_write_class_of_dev(hdev, skb);
2184 break;
2185
2186 case HCI_OP_READ_VOICE_SETTING:
2187 hci_cc_read_voice_setting(hdev, skb);
2188 break;
2189
2190 case HCI_OP_WRITE_VOICE_SETTING:
2191 hci_cc_write_voice_setting(hdev, skb);
2192 break;
2193
2194 case HCI_OP_HOST_BUFFER_SIZE:
2195 hci_cc_host_buffer_size(hdev, skb);
2196 break;
2197
Marcel Holtmann333140b2008-07-14 20:13:48 +02002198 case HCI_OP_READ_SSP_MODE:
2199 hci_cc_read_ssp_mode(hdev, skb);
2200 break;
2201
2202 case HCI_OP_WRITE_SSP_MODE:
2203 hci_cc_write_ssp_mode(hdev, skb);
2204 break;
2205
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002206 case HCI_OP_READ_LOCAL_VERSION:
2207 hci_cc_read_local_version(hdev, skb);
2208 break;
2209
2210 case HCI_OP_READ_LOCAL_COMMANDS:
2211 hci_cc_read_local_commands(hdev, skb);
2212 break;
2213
2214 case HCI_OP_READ_LOCAL_FEATURES:
2215 hci_cc_read_local_features(hdev, skb);
2216 break;
2217
Andre Guedes971e3a42011-06-30 19:20:52 -03002218 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2219 hci_cc_read_local_ext_features(hdev, skb);
2220 break;
2221
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002222 case HCI_OP_READ_BUFFER_SIZE:
2223 hci_cc_read_buffer_size(hdev, skb);
2224 break;
2225
2226 case HCI_OP_READ_BD_ADDR:
2227 hci_cc_read_bd_addr(hdev, skb);
2228 break;
2229
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +02002230 case HCI_OP_READ_DATA_BLOCK_SIZE:
2231 hci_cc_read_data_block_size(hdev, skb);
2232 break;
2233
Johan Hedberg23bb5762010-12-21 23:01:27 +02002234 case HCI_OP_WRITE_CA_TIMEOUT:
2235 hci_cc_write_ca_timeout(hdev, skb);
2236 break;
2237
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +02002238 case HCI_OP_READ_FLOW_CONTROL_MODE:
2239 hci_cc_read_flow_control_mode(hdev, skb);
2240 break;
2241
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +03002242 case HCI_OP_READ_LOCAL_AMP_INFO:
2243 hci_cc_read_local_amp_info(hdev, skb);
2244 break;
2245
Johan Hedbergb0916ea2011-01-10 13:44:55 +02002246 case HCI_OP_DELETE_STORED_LINK_KEY:
2247 hci_cc_delete_stored_link_key(hdev, skb);
2248 break;
2249
Johan Hedbergd5859e22011-01-25 01:19:58 +02002250 case HCI_OP_SET_EVENT_MASK:
2251 hci_cc_set_event_mask(hdev, skb);
2252 break;
2253
2254 case HCI_OP_WRITE_INQUIRY_MODE:
2255 hci_cc_write_inquiry_mode(hdev, skb);
2256 break;
2257
2258 case HCI_OP_READ_INQ_RSP_TX_POWER:
2259 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2260 break;
2261
2262 case HCI_OP_SET_EVENT_FLT:
2263 hci_cc_set_event_flt(hdev, skb);
2264 break;
2265
Johan Hedberg980e1a52011-01-22 06:10:07 +02002266 case HCI_OP_PIN_CODE_REPLY:
2267 hci_cc_pin_code_reply(hdev, skb);
2268 break;
2269
2270 case HCI_OP_PIN_CODE_NEG_REPLY:
2271 hci_cc_pin_code_neg_reply(hdev, skb);
2272 break;
2273
Szymon Jancc35938b2011-03-22 13:12:21 +01002274 case HCI_OP_READ_LOCAL_OOB_DATA:
2275 hci_cc_read_local_oob_data_reply(hdev, skb);
2276 break;
2277
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002278 case HCI_OP_LE_READ_BUFFER_SIZE:
2279 hci_cc_le_read_buffer_size(hdev, skb);
2280 break;
2281
Johan Hedberga5c29682011-02-19 12:05:57 -03002282 case HCI_OP_USER_CONFIRM_REPLY:
2283 hci_cc_user_confirm_reply(hdev, skb);
2284 break;
2285
2286 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2287 hci_cc_user_confirm_neg_reply(hdev, skb);
2288 break;
2289
Brian Gix1143d452011-11-23 08:28:34 -08002290 case HCI_OP_USER_PASSKEY_REPLY:
2291 hci_cc_user_passkey_reply(hdev, skb);
2292 break;
2293
2294 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2295 hci_cc_user_passkey_neg_reply(hdev, skb);
Andre Guedes07f7fa52011-12-02 21:13:31 +09002296
2297 case HCI_OP_LE_SET_SCAN_PARAM:
2298 hci_cc_le_set_scan_param(hdev, skb);
Brian Gix1143d452011-11-23 08:28:34 -08002299 break;
2300
Andre Guedeseb9d91f2011-05-26 16:23:52 -03002301 case HCI_OP_LE_SET_SCAN_ENABLE:
2302 hci_cc_le_set_scan_enable(hdev, skb);
2303 break;
2304
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002305 case HCI_OP_LE_LTK_REPLY:
2306 hci_cc_le_ltk_reply(hdev, skb);
2307 break;
2308
2309 case HCI_OP_LE_LTK_NEG_REPLY:
2310 hci_cc_le_ltk_neg_reply(hdev, skb);
2311 break;
2312
Andre Guedesf9b49302011-06-30 19:20:53 -03002313 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2314 hci_cc_write_le_host_supported(hdev, skb);
2315 break;
2316
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002317 default:
2318 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
2319 break;
2320 }
2321
Ville Tervo6bd32322011-02-16 16:32:41 +02002322 if (ev->opcode != HCI_OP_NOP)
2323 del_timer(&hdev->cmd_timer);
2324
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002325 if (ev->ncmd) {
2326 atomic_set(&hdev->cmd_cnt, 1);
2327 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002328 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002329 }
2330}
2331
2332static inline void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
2333{
2334 struct hci_ev_cmd_status *ev = (void *) skb->data;
2335 __u16 opcode;
2336
2337 skb_pull(skb, sizeof(*ev));
2338
2339 opcode = __le16_to_cpu(ev->opcode);
2340
2341 switch (opcode) {
2342 case HCI_OP_INQUIRY:
2343 hci_cs_inquiry(hdev, ev->status);
2344 break;
2345
2346 case HCI_OP_CREATE_CONN:
2347 hci_cs_create_conn(hdev, ev->status);
2348 break;
2349
2350 case HCI_OP_ADD_SCO:
2351 hci_cs_add_sco(hdev, ev->status);
2352 break;
2353
Marcel Holtmannf8558552008-07-14 20:13:49 +02002354 case HCI_OP_AUTH_REQUESTED:
2355 hci_cs_auth_requested(hdev, ev->status);
2356 break;
2357
2358 case HCI_OP_SET_CONN_ENCRYPT:
2359 hci_cs_set_conn_encrypt(hdev, ev->status);
2360 break;
2361
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002362 case HCI_OP_REMOTE_NAME_REQ:
2363 hci_cs_remote_name_req(hdev, ev->status);
2364 break;
2365
Marcel Holtmann769be972008-07-14 20:13:49 +02002366 case HCI_OP_READ_REMOTE_FEATURES:
2367 hci_cs_read_remote_features(hdev, ev->status);
2368 break;
2369
2370 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2371 hci_cs_read_remote_ext_features(hdev, ev->status);
2372 break;
2373
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002374 case HCI_OP_SETUP_SYNC_CONN:
2375 hci_cs_setup_sync_conn(hdev, ev->status);
2376 break;
2377
2378 case HCI_OP_SNIFF_MODE:
2379 hci_cs_sniff_mode(hdev, ev->status);
2380 break;
2381
2382 case HCI_OP_EXIT_SNIFF_MODE:
2383 hci_cs_exit_sniff_mode(hdev, ev->status);
2384 break;
2385
Johan Hedberg8962ee72011-01-20 12:40:27 +02002386 case HCI_OP_DISCONNECT:
Johan Hedberg88c3df12012-02-09 14:27:38 +02002387 hci_cs_disconnect(hdev, ev->status);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002388 break;
2389
Ville Tervofcd89c02011-02-10 22:38:47 -03002390 case HCI_OP_LE_CREATE_CONN:
2391 hci_cs_le_create_conn(hdev, ev->status);
2392 break;
2393
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03002394 case HCI_OP_LE_START_ENC:
2395 hci_cs_le_start_enc(hdev, ev->status);
2396 break;
2397
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002398 default:
2399 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
2400 break;
2401 }
2402
Ville Tervo6bd32322011-02-16 16:32:41 +02002403 if (ev->opcode != HCI_OP_NOP)
2404 del_timer(&hdev->cmd_timer);
2405
Gustavo F. Padovan10572132011-03-16 15:36:29 -03002406 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002407 atomic_set(&hdev->cmd_cnt, 1);
2408 if (!skb_queue_empty(&hdev->cmd_q))
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002409 queue_work(hdev->workqueue, &hdev->cmd_work);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002410 }
2411}
2412
2413static inline void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
2414{
2415 struct hci_ev_role_change *ev = (void *) skb->data;
2416 struct hci_conn *conn;
2417
2418 BT_DBG("%s status %d", hdev->name, ev->status);
2419
2420 hci_dev_lock(hdev);
2421
2422 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2423 if (conn) {
2424 if (!ev->status) {
2425 if (ev->role)
2426 conn->link_mode &= ~HCI_LM_MASTER;
2427 else
2428 conn->link_mode |= HCI_LM_MASTER;
2429 }
2430
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002431 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002432
2433 hci_role_switch_cfm(conn, ev->status, ev->role);
2434 }
2435
2436 hci_dev_unlock(hdev);
2437}
2438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439static inline void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
2440{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002441 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 int i;
2443
Andrei Emeltchenko32ac5b92011-12-19 16:31:29 +02002444 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2445 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2446 return;
2447 }
2448
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002449 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
2450 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 BT_DBG("%s bad parameters", hdev->name);
2452 return;
2453 }
2454
Andrei Emeltchenkoc5993de2011-12-30 12:07:47 +02002455 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2456
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002457 for (i = 0; i < ev->num_hndl; i++) {
2458 struct hci_comp_pkts_info *info = &ev->handles[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 struct hci_conn *conn;
2460 __u16 handle, count;
2461
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02002462 handle = __le16_to_cpu(info->handle);
2463 count = __le16_to_cpu(info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 conn = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002466 if (!conn)
2467 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002469 conn->sent -= count;
2470
2471 switch (conn->type) {
2472 case ACL_LINK:
2473 hdev->acl_cnt += count;
2474 if (hdev->acl_cnt > hdev->acl_pkts)
2475 hdev->acl_cnt = hdev->acl_pkts;
2476 break;
2477
2478 case LE_LINK:
2479 if (hdev->le_pkts) {
2480 hdev->le_cnt += count;
2481 if (hdev->le_cnt > hdev->le_pkts)
2482 hdev->le_cnt = hdev->le_pkts;
2483 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002484 hdev->acl_cnt += count;
2485 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 hdev->acl_cnt = hdev->acl_pkts;
2487 }
Andrei Emeltchenkof4280912011-12-07 15:56:52 +02002488 break;
2489
2490 case SCO_LINK:
2491 hdev->sco_cnt += count;
2492 if (hdev->sco_cnt > hdev->sco_pkts)
2493 hdev->sco_cnt = hdev->sco_pkts;
2494 break;
2495
2496 default:
2497 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2498 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 }
2500 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002501
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002502 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503}
2504
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02002505static inline void hci_num_comp_blocks_evt(struct hci_dev *hdev,
2506 struct sk_buff *skb)
2507{
2508 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2509 int i;
2510
2511 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2512 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2513 return;
2514 }
2515
2516 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
2517 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
2518 BT_DBG("%s bad parameters", hdev->name);
2519 return;
2520 }
2521
2522 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
2523 ev->num_hndl);
2524
2525 for (i = 0; i < ev->num_hndl; i++) {
2526 struct hci_comp_blocks_info *info = &ev->handles[i];
2527 struct hci_conn *conn;
2528 __u16 handle, block_count;
2529
2530 handle = __le16_to_cpu(info->handle);
2531 block_count = __le16_to_cpu(info->blocks);
2532
2533 conn = hci_conn_hash_lookup_handle(hdev, handle);
2534 if (!conn)
2535 continue;
2536
2537 conn->sent -= block_count;
2538
2539 switch (conn->type) {
2540 case ACL_LINK:
2541 hdev->block_cnt += block_count;
2542 if (hdev->block_cnt > hdev->num_blocks)
2543 hdev->block_cnt = hdev->num_blocks;
2544 break;
2545
2546 default:
2547 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2548 break;
2549 }
2550 }
2551
2552 queue_work(hdev->workqueue, &hdev->tx_work);
2553}
2554
Marcel Holtmann04837f62006-07-03 10:02:33 +02002555static inline void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002557 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002558 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
2560 BT_DBG("%s status %d", hdev->name, ev->status);
2561
2562 hci_dev_lock(hdev);
2563
Marcel Holtmann04837f62006-07-03 10:02:33 +02002564 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2565 if (conn) {
2566 conn->mode = ev->mode;
2567 conn->interval = __le16_to_cpu(ev->interval);
2568
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002569 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +02002570 if (conn->mode == HCI_CM_ACTIVE)
Johan Hedberg58a681e2012-01-16 06:47:28 +02002571 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002572 else
Johan Hedberg58a681e2012-01-16 06:47:28 +02002573 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002574 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002575
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002576 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002577 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002578 }
2579
2580 hci_dev_unlock(hdev);
2581}
2582
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583static inline void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2584{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002585 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2586 struct hci_conn *conn;
2587
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002588 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002589
2590 hci_dev_lock(hdev);
2591
2592 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002593 if (!conn)
2594 goto unlock;
2595
2596 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002597 hci_conn_hold(conn);
2598 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2599 hci_conn_put(conn);
2600 }
2601
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002602 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02002603 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
2604 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002605 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002606 u8 secure;
2607
2608 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2609 secure = 1;
2610 else
2611 secure = 0;
2612
Johan Hedberg744cf192011-11-08 20:40:14 +02002613 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002614 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002615
Waldemar Rymarkiewiczb6f98042011-09-23 10:01:30 +02002616unlock:
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002617 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2621{
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002622 struct hci_ev_link_key_req *ev = (void *) skb->data;
2623 struct hci_cp_link_key_reply cp;
2624 struct hci_conn *conn;
2625 struct link_key *key;
2626
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002627 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002628
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002629 if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002630 return;
2631
2632 hci_dev_lock(hdev);
2633
2634 key = hci_find_link_key(hdev, &ev->bdaddr);
2635 if (!key) {
2636 BT_DBG("%s link key not found for %s", hdev->name,
2637 batostr(&ev->bdaddr));
2638 goto not_found;
2639 }
2640
2641 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
2642 batostr(&ev->bdaddr));
2643
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002644 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02002645 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002646 BT_DBG("%s ignoring debug key", hdev->name);
2647 goto not_found;
2648 }
2649
2650 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002651 if (conn) {
2652 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
2653 conn->auth_type != 0xff &&
2654 (conn->auth_type & 0x01)) {
2655 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2656 goto not_found;
2657 }
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002658
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002659 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
2660 conn->pending_sec_level == BT_SECURITY_HIGH) {
2661 BT_DBG("%s ignoring key unauthenticated for high \
2662 security", hdev->name);
2663 goto not_found;
2664 }
2665
2666 conn->key_type = key->type;
2667 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002668 }
2669
2670 bacpy(&cp.bdaddr, &ev->bdaddr);
2671 memcpy(cp.link_key, key->val, 16);
2672
2673 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2674
2675 hci_dev_unlock(hdev);
2676
2677 return;
2678
2679not_found:
2680 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2681 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682}
2683
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684static inline void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
2685{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002686 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2687 struct hci_conn *conn;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002688 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002689
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002690 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002691
2692 hci_dev_lock(hdev);
2693
2694 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2695 if (conn) {
2696 hci_conn_hold(conn);
2697 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002698 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002699
2700 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2701 conn->key_type = ev->key_type;
2702
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002703 hci_conn_put(conn);
2704 }
2705
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002706 if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002707 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002708 ev->key_type, pin_len);
2709
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002710 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711}
2712
Marcel Holtmann04837f62006-07-03 10:02:33 +02002713static inline void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
2714{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002715 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002716 struct hci_conn *conn;
2717
2718 BT_DBG("%s status %d", hdev->name, ev->status);
2719
2720 hci_dev_lock(hdev);
2721
2722 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 if (conn && !ev->status) {
2724 struct inquiry_entry *ie;
2725
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002726 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2727 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 ie->data.clock_offset = ev->clock_offset;
2729 ie->timestamp = jiffies;
2730 }
2731 }
2732
2733 hci_dev_unlock(hdev);
2734}
2735
Marcel Holtmanna8746412008-07-14 20:13:46 +02002736static inline void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
2737{
2738 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2739 struct hci_conn *conn;
2740
2741 BT_DBG("%s status %d", hdev->name, ev->status);
2742
2743 hci_dev_lock(hdev);
2744
2745 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2746 if (conn && !ev->status)
2747 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2748
2749 hci_dev_unlock(hdev);
2750}
2751
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002752static inline void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
2753{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002754 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002755 struct inquiry_entry *ie;
2756
2757 BT_DBG("%s", hdev->name);
2758
2759 hci_dev_lock(hdev);
2760
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002761 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2762 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002763 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2764 ie->timestamp = jiffies;
2765 }
2766
2767 hci_dev_unlock(hdev);
2768}
2769
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002770static inline void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev, struct sk_buff *skb)
2771{
2772 struct inquiry_data data;
2773 int num_rsp = *((__u8 *) skb->data);
Johan Hedberg31754052012-01-04 13:39:52 +02002774 bool name_known;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002775
2776 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2777
2778 if (!num_rsp)
2779 return;
2780
2781 hci_dev_lock(hdev);
2782
2783 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002784 struct inquiry_info_with_rssi_and_pscan_mode *info;
2785 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002786
Johan Hedberge17acd42011-03-30 23:57:16 +03002787 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002788 bacpy(&data.bdaddr, &info->bdaddr);
2789 data.pscan_rep_mode = info->pscan_rep_mode;
2790 data.pscan_period_mode = info->pscan_period_mode;
2791 data.pscan_mode = info->pscan_mode;
2792 memcpy(data.dev_class, info->dev_class, 3);
2793 data.clock_offset = info->clock_offset;
2794 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002795 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002796
2797 name_known = hci_inquiry_cache_update(hdev, &data,
2798 false);
Johan Hedberg48264f02011-11-09 13:58:58 +02002799 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Johan Hedberge17acd42011-03-30 23:57:16 +03002800 info->dev_class, info->rssi,
Andre Guedes7d262f82012-01-10 18:20:49 -03002801 !name_known, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002802 }
2803 } else {
2804 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2805
Johan Hedberge17acd42011-03-30 23:57:16 +03002806 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002807 bacpy(&data.bdaddr, &info->bdaddr);
2808 data.pscan_rep_mode = info->pscan_rep_mode;
2809 data.pscan_period_mode = info->pscan_period_mode;
2810 data.pscan_mode = 0x00;
2811 memcpy(data.dev_class, info->dev_class, 3);
2812 data.clock_offset = info->clock_offset;
2813 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002814 data.ssp_mode = 0x00;
Johan Hedberg31754052012-01-04 13:39:52 +02002815 name_known = hci_inquiry_cache_update(hdev, &data,
2816 false);
Johan Hedberg48264f02011-11-09 13:58:58 +02002817 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Johan Hedberge17acd42011-03-30 23:57:16 +03002818 info->dev_class, info->rssi,
Andre Guedes7d262f82012-01-10 18:20:49 -03002819 !name_known, NULL, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002820 }
2821 }
2822
2823 hci_dev_unlock(hdev);
2824}
2825
2826static inline void hci_remote_ext_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2827{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002828 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2829 struct hci_conn *conn;
2830
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002831 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002832
Marcel Holtmann41a96212008-07-14 20:13:48 +02002833 hci_dev_lock(hdev);
2834
2835 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002836 if (!conn)
2837 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002838
Johan Hedbergccd556f2010-11-10 17:11:51 +02002839 if (!ev->status && ev->page == 0x01) {
2840 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002841
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002842 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2843 if (ie)
Johan Hedbergccd556f2010-11-10 17:11:51 +02002844 ie->data.ssp_mode = (ev->features[0] & 0x01);
Marcel Holtmann769be972008-07-14 20:13:49 +02002845
Johan Hedberg58a681e2012-01-16 06:47:28 +02002846 if (ev->features[0] & 0x01)
2847 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002848 }
2849
Johan Hedbergccd556f2010-11-10 17:11:51 +02002850 if (conn->state != BT_CONFIG)
2851 goto unlock;
2852
Johan Hedberg127178d2010-11-18 22:22:29 +02002853 if (!ev->status) {
2854 struct hci_cp_remote_name_req cp;
2855 memset(&cp, 0, sizeof(cp));
2856 bacpy(&cp.bdaddr, &conn->dst);
2857 cp.pscan_rep_mode = 0x02;
2858 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
Johan Hedbergb644ba32012-01-17 21:48:47 +02002859 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2860 mgmt_device_connected(hdev, &conn->dst, conn->type,
2861 conn->dst_type, NULL, 0,
2862 conn->dev_class);
Johan Hedberg392599b2010-11-18 22:22:28 +02002863
Johan Hedberg127178d2010-11-18 22:22:29 +02002864 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002865 conn->state = BT_CONNECTED;
2866 hci_proto_connect_cfm(conn, ev->status);
2867 hci_conn_put(conn);
2868 }
2869
2870unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002871 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002872}
2873
2874static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2875{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002876 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2877 struct hci_conn *conn;
2878
2879 BT_DBG("%s status %d", hdev->name, ev->status);
2880
2881 hci_dev_lock(hdev);
2882
2883 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02002884 if (!conn) {
2885 if (ev->link_type == ESCO_LINK)
2886 goto unlock;
2887
2888 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2889 if (!conn)
2890 goto unlock;
2891
2892 conn->type = SCO_LINK;
2893 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002894
Marcel Holtmann732547f2009-04-19 19:14:14 +02002895 switch (ev->status) {
2896 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002897 conn->handle = __le16_to_cpu(ev->handle);
2898 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002899
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07002900 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002901 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02002902 break;
2903
Stephen Coe705e5712010-02-16 11:29:44 -05002904 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002905 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08002906 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002907 case 0x1f: /* Unspecified error */
2908 if (conn->out && conn->attempt < 2) {
2909 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2910 (hdev->esco_type & EDR_ESCO_MASK);
2911 hci_setup_sync(conn, conn->link->handle);
2912 goto unlock;
2913 }
2914 /* fall through */
2915
2916 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002917 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002918 break;
2919 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002920
2921 hci_proto_connect_cfm(conn, ev->status);
2922 if (ev->status)
2923 hci_conn_del(conn);
2924
2925unlock:
2926 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002927}
2928
2929static inline void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
2930{
2931 BT_DBG("%s", hdev->name);
2932}
2933
Marcel Holtmann04837f62006-07-03 10:02:33 +02002934static inline void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
2935{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002936 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002937
2938 BT_DBG("%s status %d", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002939}
2940
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002941static inline void hci_extended_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
2942{
2943 struct inquiry_data data;
2944 struct extended_inquiry_info *info = (void *) (skb->data + 1);
2945 int num_rsp = *((__u8 *) skb->data);
2946
2947 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2948
2949 if (!num_rsp)
2950 return;
2951
2952 hci_dev_lock(hdev);
2953
Johan Hedberge17acd42011-03-30 23:57:16 +03002954 for (; num_rsp; num_rsp--, info++) {
Johan Hedberg561aafb2012-01-04 13:31:59 +02002955 bool name_known;
2956
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002957 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01002958 data.pscan_rep_mode = info->pscan_rep_mode;
2959 data.pscan_period_mode = info->pscan_period_mode;
2960 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002961 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01002962 data.clock_offset = info->clock_offset;
2963 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002964 data.ssp_mode = 0x01;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002965
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002966 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg4ddb1932012-01-15 20:04:43 +02002967 name_known = eir_has_data_type(info->data,
2968 sizeof(info->data),
2969 EIR_NAME_COMPLETE);
Johan Hedberg561aafb2012-01-04 13:31:59 +02002970 else
2971 name_known = true;
2972
Johan Hedberg31754052012-01-04 13:39:52 +02002973 name_known = hci_inquiry_cache_update(hdev, &data, name_known);
Johan Hedberg48264f02011-11-09 13:58:58 +02002974 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
Johan Hedberg561aafb2012-01-04 13:31:59 +02002975 info->dev_class, info->rssi,
Andre Guedes7d262f82012-01-10 18:20:49 -03002976 !name_known, info->data,
2977 sizeof(info->data));
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002978 }
2979
2980 hci_dev_unlock(hdev);
2981}
2982
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002983static inline u8 hci_get_auth_req(struct hci_conn *conn)
2984{
2985 /* If remote requests dedicated bonding follow that lead */
2986 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
2987 /* If both remote and local IO capabilities allow MITM
2988 * protection then require it, otherwise don't */
2989 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
2990 return 0x02;
2991 else
2992 return 0x03;
2993 }
2994
2995 /* If remote requests no-bonding follow that lead */
2996 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02002997 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002998
2999 return conn->auth_type;
3000}
3001
Marcel Holtmann04936842008-07-14 20:13:48 +02003002static inline void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
3003{
3004 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3005 struct hci_conn *conn;
3006
3007 BT_DBG("%s", hdev->name);
3008
3009 hci_dev_lock(hdev);
3010
3011 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003012 if (!conn)
3013 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003014
Johan Hedberg03b555e2011-01-04 15:40:05 +02003015 hci_conn_hold(conn);
3016
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003017 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg03b555e2011-01-04 15:40:05 +02003018 goto unlock;
3019
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003020 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
Johan Hedberg03b555e2011-01-04 15:40:05 +02003021 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003022 struct hci_cp_io_capability_reply cp;
3023
3024 bacpy(&cp.bdaddr, &ev->bdaddr);
Hemant Gupta7a7f1e72012-01-16 13:34:29 +05303025 /* Change the IO capability from KeyboardDisplay
3026 * to DisplayYesNo as it is not supported by BT spec. */
3027 cp.capability = (conn->io_capability == 0x04) ?
3028 0x01 : conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07003029 conn->auth_type = hci_get_auth_req(conn);
3030 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003031
Johan Hedberg58a681e2012-01-16 06:47:28 +02003032 if ((conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)) &&
Szymon Jancce85ee12011-03-22 13:12:23 +01003033 hci_find_remote_oob_data(hdev, &conn->dst))
3034 cp.oob_data = 0x01;
3035 else
3036 cp.oob_data = 0x00;
3037
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003038 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
3039 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003040 } else {
3041 struct hci_cp_io_capability_neg_reply cp;
3042
3043 bacpy(&cp.bdaddr, &ev->bdaddr);
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +02003044 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003045
3046 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
3047 sizeof(cp), &cp);
3048 }
3049
3050unlock:
3051 hci_dev_unlock(hdev);
3052}
3053
3054static inline void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
3055{
3056 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3057 struct hci_conn *conn;
3058
3059 BT_DBG("%s", hdev->name);
3060
3061 hci_dev_lock(hdev);
3062
3063 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3064 if (!conn)
3065 goto unlock;
3066
Johan Hedberg03b555e2011-01-04 15:40:05 +02003067 conn->remote_cap = ev->capability;
Johan Hedberg03b555e2011-01-04 15:40:05 +02003068 conn->remote_auth = ev->authentication;
Johan Hedberg58a681e2012-01-16 06:47:28 +02003069 if (ev->oob_data)
3070 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
Johan Hedberg03b555e2011-01-04 15:40:05 +02003071
3072unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003073 hci_dev_unlock(hdev);
3074}
3075
Johan Hedberga5c29682011-02-19 12:05:57 -03003076static inline void hci_user_confirm_request_evt(struct hci_dev *hdev,
3077 struct sk_buff *skb)
3078{
3079 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003080 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07003081 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003082
3083 BT_DBG("%s", hdev->name);
3084
3085 hci_dev_lock(hdev);
3086
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003087 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg7a828902011-04-28 11:28:53 -07003088 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03003089
Johan Hedberg7a828902011-04-28 11:28:53 -07003090 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3091 if (!conn)
3092 goto unlock;
3093
3094 loc_mitm = (conn->auth_type & 0x01);
3095 rem_mitm = (conn->remote_auth & 0x01);
3096
3097 /* If we require MITM but the remote device can't provide that
3098 * (it has NoInputNoOutput) then reject the confirmation
3099 * request. The only exception is when we're dedicated bonding
3100 * initiators (connect_cfm_cb set) since then we always have the MITM
3101 * bit set. */
3102 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
3103 BT_DBG("Rejecting request: remote device can't provide MITM");
3104 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
3105 sizeof(ev->bdaddr), &ev->bdaddr);
3106 goto unlock;
3107 }
3108
3109 /* If no side requires MITM protection; auto-accept */
3110 if ((!loc_mitm || conn->remote_cap == 0x03) &&
3111 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003112
3113 /* If we're not the initiators request authorization to
3114 * proceed from user space (mgmt_user_confirm with
3115 * confirm_hint set to 1). */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003116 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003117 BT_DBG("Confirming auto-accept as acceptor");
3118 confirm_hint = 1;
3119 goto confirm;
3120 }
3121
Johan Hedberg9f616562011-04-28 11:28:54 -07003122 BT_DBG("Auto-accept of user confirmation with %ums delay",
3123 hdev->auto_accept_delay);
3124
3125 if (hdev->auto_accept_delay > 0) {
3126 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
3127 mod_timer(&conn->auto_accept_timer, jiffies + delay);
3128 goto unlock;
3129 }
3130
Johan Hedberg7a828902011-04-28 11:28:53 -07003131 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
3132 sizeof(ev->bdaddr), &ev->bdaddr);
3133 goto unlock;
3134 }
3135
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003136confirm:
Johan Hedberg272d90d2012-02-09 15:26:12 +02003137 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
Johan Hedberg55bc1a32011-04-28 11:28:56 -07003138 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07003139
3140unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03003141 hci_dev_unlock(hdev);
3142}
3143
Brian Gix1143d452011-11-23 08:28:34 -08003144static inline void hci_user_passkey_request_evt(struct hci_dev *hdev,
3145 struct sk_buff *skb)
3146{
3147 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3148
3149 BT_DBG("%s", hdev->name);
3150
3151 hci_dev_lock(hdev);
3152
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003153 if (test_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg272d90d2012-02-09 15:26:12 +02003154 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
Brian Gix1143d452011-11-23 08:28:34 -08003155
3156 hci_dev_unlock(hdev);
3157}
3158
Marcel Holtmann04936842008-07-14 20:13:48 +02003159static inline void hci_simple_pair_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
3160{
3161 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3162 struct hci_conn *conn;
3163
3164 BT_DBG("%s", hdev->name);
3165
3166 hci_dev_lock(hdev);
3167
3168 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03003169 if (!conn)
3170 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02003171
Johan Hedberg2a611692011-02-19 12:06:00 -03003172 /* To avoid duplicate auth_failed events to user space we check
3173 * the HCI_CONN_AUTH_PEND flag which will be set if we
3174 * initiated the authentication. A traditional auth_complete
3175 * event gets always produced as initiator and is also mapped to
3176 * the mgmt_auth_failed event */
Johan Hedberg51a8efd2012-01-16 06:10:31 +02003177 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status != 0)
Johan Hedbergbab73cb2012-02-09 16:07:29 +02003178 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
3179 ev->status);
Johan Hedberg2a611692011-02-19 12:06:00 -03003180
3181 hci_conn_put(conn);
3182
3183unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02003184 hci_dev_unlock(hdev);
3185}
3186
Marcel Holtmann41a96212008-07-14 20:13:48 +02003187static inline void hci_remote_host_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
3188{
3189 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3190 struct inquiry_entry *ie;
3191
3192 BT_DBG("%s", hdev->name);
3193
3194 hci_dev_lock(hdev);
3195
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02003196 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3197 if (ie)
Marcel Holtmann41a96212008-07-14 20:13:48 +02003198 ie->data.ssp_mode = (ev->features[0] & 0x01);
3199
3200 hci_dev_unlock(hdev);
3201}
3202
Szymon Janc2763eda2011-03-22 13:12:22 +01003203static inline void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3204 struct sk_buff *skb)
3205{
3206 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3207 struct oob_data *data;
3208
3209 BT_DBG("%s", hdev->name);
3210
3211 hci_dev_lock(hdev);
3212
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003213 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
Szymon Jance1ba1f12011-04-06 13:01:59 +02003214 goto unlock;
3215
Szymon Janc2763eda2011-03-22 13:12:22 +01003216 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3217 if (data) {
3218 struct hci_cp_remote_oob_data_reply cp;
3219
3220 bacpy(&cp.bdaddr, &ev->bdaddr);
3221 memcpy(cp.hash, data->hash, sizeof(cp.hash));
3222 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
3223
3224 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
3225 &cp);
3226 } else {
3227 struct hci_cp_remote_oob_data_neg_reply cp;
3228
3229 bacpy(&cp.bdaddr, &ev->bdaddr);
3230 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
3231 &cp);
3232 }
3233
Szymon Jance1ba1f12011-04-06 13:01:59 +02003234unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01003235 hci_dev_unlock(hdev);
3236}
3237
Ville Tervofcd89c02011-02-10 22:38:47 -03003238static inline void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
3239{
3240 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3241 struct hci_conn *conn;
3242
3243 BT_DBG("%s status %d", hdev->name, ev->status);
3244
3245 hci_dev_lock(hdev);
3246
3247 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &ev->bdaddr);
Ville Tervob62f3282011-02-10 22:38:50 -03003248 if (!conn) {
3249 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3250 if (!conn) {
3251 BT_ERR("No memory for new connection");
3252 hci_dev_unlock(hdev);
3253 return;
3254 }
Andre Guedes29b79882011-05-31 14:20:54 -03003255
3256 conn->dst_type = ev->bdaddr_type;
Ville Tervob62f3282011-02-10 22:38:50 -03003257 }
Ville Tervofcd89c02011-02-10 22:38:47 -03003258
3259 if (ev->status) {
Johan Hedberg48264f02011-11-09 13:58:58 +02003260 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
3261 conn->dst_type, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03003262 hci_proto_connect_cfm(conn, ev->status);
3263 conn->state = BT_CLOSED;
3264 hci_conn_del(conn);
3265 goto unlock;
3266 }
3267
Johan Hedbergb644ba32012-01-17 21:48:47 +02003268 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3269 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
3270 conn->dst_type, NULL, 0, 0);
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03003271
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -03003272 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03003273 conn->handle = __le16_to_cpu(ev->handle);
3274 conn->state = BT_CONNECTED;
3275
3276 hci_conn_hold_device(conn);
3277 hci_conn_add_sysfs(conn);
3278
3279 hci_proto_connect_cfm(conn, ev->status);
3280
3281unlock:
3282 hci_dev_unlock(hdev);
3283}
3284
Andre Guedes9aa04c92011-05-26 16:23:51 -03003285static inline void hci_le_adv_report_evt(struct hci_dev *hdev,
3286 struct sk_buff *skb)
3287{
Andre Guedese95beb42011-09-26 20:48:35 -03003288 u8 num_reports = skb->data[0];
3289 void *ptr = &skb->data[1];
Andre Guedes3c9e9192012-01-10 18:20:50 -03003290 s8 rssi;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003291
3292 hci_dev_lock(hdev);
3293
Andre Guedese95beb42011-09-26 20:48:35 -03003294 while (num_reports--) {
3295 struct hci_ev_le_advertising_info *ev = ptr;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003296
Andre Guedes9aa04c92011-05-26 16:23:51 -03003297 hci_add_adv_entry(hdev, ev);
Andre Guedese95beb42011-09-26 20:48:35 -03003298
Andre Guedes3c9e9192012-01-10 18:20:50 -03003299 rssi = ev->data[ev->length];
3300 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
3301 NULL, rssi, 0, ev->data, ev->length);
3302
Andre Guedese95beb42011-09-26 20:48:35 -03003303 ptr += sizeof(*ev) + ev->length + 1;
Andre Guedes9aa04c92011-05-26 16:23:51 -03003304 }
3305
3306 hci_dev_unlock(hdev);
3307}
3308
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003309static inline void hci_le_ltk_request_evt(struct hci_dev *hdev,
3310 struct sk_buff *skb)
3311{
3312 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3313 struct hci_cp_le_ltk_reply cp;
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003314 struct hci_cp_le_ltk_neg_reply neg;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003315 struct hci_conn *conn;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003316 struct smp_ltk *ltk;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003317
3318 BT_DBG("%s handle %d", hdev->name, cpu_to_le16(ev->handle));
3319
3320 hci_dev_lock(hdev);
3321
3322 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003323 if (conn == NULL)
3324 goto not_found;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003325
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003326 ltk = hci_find_ltk(hdev, ev->ediv, ev->random);
3327 if (ltk == NULL)
3328 goto not_found;
3329
3330 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003331 cp.handle = cpu_to_le16(conn->handle);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003332
3333 if (ltk->authenticated)
3334 conn->sec_level = BT_SECURITY_HIGH;
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003335
3336 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3337
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003338 if (ltk->type & HCI_SMP_STK) {
3339 list_del(&ltk->list);
3340 kfree(ltk);
3341 }
3342
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003343 hci_dev_unlock(hdev);
Vinicius Costa Gomesbea710f2011-07-07 18:59:37 -03003344
3345 return;
3346
3347not_found:
3348 neg.handle = ev->handle;
3349 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3350 hci_dev_unlock(hdev);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003351}
3352
Ville Tervofcd89c02011-02-10 22:38:47 -03003353static inline void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
3354{
3355 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3356
3357 skb_pull(skb, sizeof(*le_ev));
3358
3359 switch (le_ev->subevent) {
3360 case HCI_EV_LE_CONN_COMPLETE:
3361 hci_le_conn_complete_evt(hdev, skb);
3362 break;
3363
Andre Guedes9aa04c92011-05-26 16:23:51 -03003364 case HCI_EV_LE_ADVERTISING_REPORT:
3365 hci_le_adv_report_evt(hdev, skb);
3366 break;
3367
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03003368 case HCI_EV_LE_LTK_REQ:
3369 hci_le_ltk_request_evt(hdev, skb);
3370 break;
3371
Ville Tervofcd89c02011-02-10 22:38:47 -03003372 default:
3373 break;
3374 }
3375}
3376
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3378{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003379 struct hci_event_hdr *hdr = (void *) skb->data;
3380 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
3382 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3383
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003384 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 case HCI_EV_INQUIRY_COMPLETE:
3386 hci_inquiry_complete_evt(hdev, skb);
3387 break;
3388
3389 case HCI_EV_INQUIRY_RESULT:
3390 hci_inquiry_result_evt(hdev, skb);
3391 break;
3392
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003393 case HCI_EV_CONN_COMPLETE:
3394 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02003395 break;
3396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 case HCI_EV_CONN_REQUEST:
3398 hci_conn_request_evt(hdev, skb);
3399 break;
3400
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 case HCI_EV_DISCONN_COMPLETE:
3402 hci_disconn_complete_evt(hdev, skb);
3403 break;
3404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 case HCI_EV_AUTH_COMPLETE:
3406 hci_auth_complete_evt(hdev, skb);
3407 break;
3408
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003409 case HCI_EV_REMOTE_NAME:
3410 hci_remote_name_evt(hdev, skb);
3411 break;
3412
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 case HCI_EV_ENCRYPT_CHANGE:
3414 hci_encrypt_change_evt(hdev, skb);
3415 break;
3416
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003417 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3418 hci_change_link_key_complete_evt(hdev, skb);
3419 break;
3420
3421 case HCI_EV_REMOTE_FEATURES:
3422 hci_remote_features_evt(hdev, skb);
3423 break;
3424
3425 case HCI_EV_REMOTE_VERSION:
3426 hci_remote_version_evt(hdev, skb);
3427 break;
3428
3429 case HCI_EV_QOS_SETUP_COMPLETE:
3430 hci_qos_setup_complete_evt(hdev, skb);
3431 break;
3432
3433 case HCI_EV_CMD_COMPLETE:
3434 hci_cmd_complete_evt(hdev, skb);
3435 break;
3436
3437 case HCI_EV_CMD_STATUS:
3438 hci_cmd_status_evt(hdev, skb);
3439 break;
3440
3441 case HCI_EV_ROLE_CHANGE:
3442 hci_role_change_evt(hdev, skb);
3443 break;
3444
3445 case HCI_EV_NUM_COMP_PKTS:
3446 hci_num_comp_pkts_evt(hdev, skb);
3447 break;
3448
3449 case HCI_EV_MODE_CHANGE:
3450 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 break;
3452
3453 case HCI_EV_PIN_CODE_REQ:
3454 hci_pin_code_request_evt(hdev, skb);
3455 break;
3456
3457 case HCI_EV_LINK_KEY_REQ:
3458 hci_link_key_request_evt(hdev, skb);
3459 break;
3460
3461 case HCI_EV_LINK_KEY_NOTIFY:
3462 hci_link_key_notify_evt(hdev, skb);
3463 break;
3464
3465 case HCI_EV_CLOCK_OFFSET:
3466 hci_clock_offset_evt(hdev, skb);
3467 break;
3468
Marcel Holtmanna8746412008-07-14 20:13:46 +02003469 case HCI_EV_PKT_TYPE_CHANGE:
3470 hci_pkt_type_change_evt(hdev, skb);
3471 break;
3472
Marcel Holtmann85a1e932005-08-09 20:28:02 -07003473 case HCI_EV_PSCAN_REP_MODE:
3474 hci_pscan_rep_mode_evt(hdev, skb);
3475 break;
3476
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003477 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3478 hci_inquiry_result_with_rssi_evt(hdev, skb);
3479 break;
3480
3481 case HCI_EV_REMOTE_EXT_FEATURES:
3482 hci_remote_ext_features_evt(hdev, skb);
3483 break;
3484
3485 case HCI_EV_SYNC_CONN_COMPLETE:
3486 hci_sync_conn_complete_evt(hdev, skb);
3487 break;
3488
3489 case HCI_EV_SYNC_CONN_CHANGED:
3490 hci_sync_conn_changed_evt(hdev, skb);
3491 break;
3492
Marcel Holtmann04837f62006-07-03 10:02:33 +02003493 case HCI_EV_SNIFF_SUBRATE:
3494 hci_sniff_subrate_evt(hdev, skb);
3495 break;
3496
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003497 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3498 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 break;
3500
Marcel Holtmann04936842008-07-14 20:13:48 +02003501 case HCI_EV_IO_CAPA_REQUEST:
3502 hci_io_capa_request_evt(hdev, skb);
3503 break;
3504
Johan Hedberg03b555e2011-01-04 15:40:05 +02003505 case HCI_EV_IO_CAPA_REPLY:
3506 hci_io_capa_reply_evt(hdev, skb);
3507 break;
3508
Johan Hedberga5c29682011-02-19 12:05:57 -03003509 case HCI_EV_USER_CONFIRM_REQUEST:
3510 hci_user_confirm_request_evt(hdev, skb);
3511 break;
3512
Brian Gix1143d452011-11-23 08:28:34 -08003513 case HCI_EV_USER_PASSKEY_REQUEST:
3514 hci_user_passkey_request_evt(hdev, skb);
3515 break;
3516
Marcel Holtmann04936842008-07-14 20:13:48 +02003517 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3518 hci_simple_pair_complete_evt(hdev, skb);
3519 break;
3520
Marcel Holtmann41a96212008-07-14 20:13:48 +02003521 case HCI_EV_REMOTE_HOST_FEATURES:
3522 hci_remote_host_features_evt(hdev, skb);
3523 break;
3524
Ville Tervofcd89c02011-02-10 22:38:47 -03003525 case HCI_EV_LE_META:
3526 hci_le_meta_evt(hdev, skb);
3527 break;
3528
Szymon Janc2763eda2011-03-22 13:12:22 +01003529 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3530 hci_remote_oob_data_request_evt(hdev, skb);
3531 break;
3532
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02003533 case HCI_EV_NUM_COMP_BLOCKS:
3534 hci_num_comp_blocks_evt(hdev, skb);
3535 break;
3536
Marcel Holtmanna9de9242007-10-20 13:33:56 +02003537 default:
3538 BT_DBG("%s event 0x%x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 break;
3540 }
3541
3542 kfree_skb(skb);
3543 hdev->stat.evt_rx++;
3544}