blob: 692bce50eb8426d0b42dc3ac487013a3e1b77391 [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>
38#include <linux/notifier.h>
39#include <net/sock.h>
40
41#include <asm/system.h>
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020042#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/unaligned.h>
44
45#include <net/bluetooth/bluetooth.h>
46#include <net/bluetooth/hci_core.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* Handle HCI Event packets */
49
Marcel Holtmanna9de9242007-10-20 13:33:56 +020050static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020052 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Marcel Holtmanna9de9242007-10-20 13:33:56 +020054 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Marcel Holtmanna9de9242007-10-20 13:33:56 +020056 if (status)
57 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Johan Hedberg314b2382011-04-27 10:29:57 -040059 if (test_bit(HCI_MGMT, &hdev->flags) &&
60 test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
61 mgmt_discovering(hdev->id, 0);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010062
Johan Hedberg23bb5762010-12-21 23:01:27 +020063 hci_req_complete(hdev, HCI_OP_INQUIRY_CANCEL, status);
Marcel Holtmann6bd57412006-11-18 22:14:22 +010064
Marcel Holtmanna9de9242007-10-20 13:33:56 +020065 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Marcel Holtmanna9de9242007-10-20 13:33:56 +020068static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Marcel Holtmanna9de9242007-10-20 13:33:56 +020070 __u8 status = *((__u8 *) skb->data);
71
72 BT_DBG("%s status 0x%x", hdev->name, status);
73
74 if (status)
75 return;
76
Johan Hedberg314b2382011-04-27 10:29:57 -040077 if (test_bit(HCI_MGMT, &hdev->flags) &&
78 test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
79 mgmt_discovering(hdev->id, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +020080
81 hci_conn_check_pending(hdev);
82}
83
84static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev, struct sk_buff *skb)
85{
86 BT_DBG("%s", hdev->name);
87}
88
89static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
90{
91 struct hci_rp_role_discovery *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Marcel Holtmanna9de9242007-10-20 13:33:56 +020094 BT_DBG("%s status 0x%x", hdev->name, rp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Marcel Holtmanna9de9242007-10-20 13:33:56 +020096 if (rp->status)
97 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Marcel Holtmanna9de9242007-10-20 13:33:56 +020099 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200101 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
102 if (conn) {
103 if (rp->role)
104 conn->link_mode &= ~HCI_LM_MASTER;
105 else
106 conn->link_mode |= HCI_LM_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200108
109 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200112static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
113{
114 struct hci_rp_read_link_policy *rp = (void *) skb->data;
115 struct hci_conn *conn;
116
117 BT_DBG("%s status 0x%x", hdev->name, rp->status);
118
119 if (rp->status)
120 return;
121
122 hci_dev_lock(hdev);
123
124 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
125 if (conn)
126 conn->link_policy = __le16_to_cpu(rp->policy);
127
128 hci_dev_unlock(hdev);
129}
130
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200131static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200133 struct hci_rp_write_link_policy *rp = (void *) skb->data;
134 struct hci_conn *conn;
135 void *sent;
136
137 BT_DBG("%s status 0x%x", hdev->name, rp->status);
138
139 if (rp->status)
140 return;
141
142 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
143 if (!sent)
144 return;
145
146 hci_dev_lock(hdev);
147
148 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200149 if (conn)
Harvey Harrison83985312008-05-02 16:25:46 -0700150 conn->link_policy = get_unaligned_le16(sent + 2);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200151
152 hci_dev_unlock(hdev);
153}
154
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200155static void hci_cc_read_def_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
156{
157 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
158
159 BT_DBG("%s status 0x%x", hdev->name, rp->status);
160
161 if (rp->status)
162 return;
163
164 hdev->link_policy = __le16_to_cpu(rp->policy);
165}
166
167static void hci_cc_write_def_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
168{
169 __u8 status = *((__u8 *) skb->data);
170 void *sent;
171
172 BT_DBG("%s status 0x%x", hdev->name, status);
173
174 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
175 if (!sent)
176 return;
177
178 if (!status)
179 hdev->link_policy = get_unaligned_le16(sent);
180
Johan Hedberg23bb5762010-12-21 23:01:27 +0200181 hci_req_complete(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, status);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200182}
183
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200184static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
185{
186 __u8 status = *((__u8 *) skb->data);
187
188 BT_DBG("%s status 0x%x", hdev->name, status);
189
Gustavo F. Padovan10572132011-03-16 15:36:29 -0300190 clear_bit(HCI_RESET, &hdev->flags);
191
Johan Hedberg23bb5762010-12-21 23:01:27 +0200192 hci_req_complete(hdev, HCI_OP_RESET, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200193}
194
195static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
196{
197 __u8 status = *((__u8 *) skb->data);
198 void *sent;
199
200 BT_DBG("%s status 0x%x", hdev->name, status);
201
202 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
203 if (!sent)
204 return;
205
Johan Hedbergb312b1612011-03-16 14:29:37 +0200206 if (test_bit(HCI_MGMT, &hdev->flags))
207 mgmt_set_local_name_complete(hdev->id, sent, status);
208
209 if (status)
210 return;
211
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200212 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200213}
214
215static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
216{
217 struct hci_rp_read_local_name *rp = (void *) skb->data;
218
219 BT_DBG("%s status 0x%x", hdev->name, rp->status);
220
221 if (rp->status)
222 return;
223
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200224 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200225}
226
227static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
228{
229 __u8 status = *((__u8 *) skb->data);
230 void *sent;
231
232 BT_DBG("%s status 0x%x", hdev->name, status);
233
234 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
235 if (!sent)
236 return;
237
238 if (!status) {
239 __u8 param = *((__u8 *) sent);
240
241 if (param == AUTH_ENABLED)
242 set_bit(HCI_AUTH, &hdev->flags);
243 else
244 clear_bit(HCI_AUTH, &hdev->flags);
245 }
246
Johan Hedberg23bb5762010-12-21 23:01:27 +0200247 hci_req_complete(hdev, HCI_OP_WRITE_AUTH_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200248}
249
250static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
251{
252 __u8 status = *((__u8 *) skb->data);
253 void *sent;
254
255 BT_DBG("%s status 0x%x", hdev->name, status);
256
257 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
258 if (!sent)
259 return;
260
261 if (!status) {
262 __u8 param = *((__u8 *) sent);
263
264 if (param)
265 set_bit(HCI_ENCRYPT, &hdev->flags);
266 else
267 clear_bit(HCI_ENCRYPT, &hdev->flags);
268 }
269
Johan Hedberg23bb5762010-12-21 23:01:27 +0200270 hci_req_complete(hdev, HCI_OP_WRITE_ENCRYPT_MODE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200271}
272
273static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
274{
275 __u8 status = *((__u8 *) skb->data);
276 void *sent;
277
278 BT_DBG("%s status 0x%x", hdev->name, status);
279
280 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
281 if (!sent)
282 return;
283
284 if (!status) {
285 __u8 param = *((__u8 *) sent);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +0200286 int old_pscan, old_iscan;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200287
Johan Hedberg9fbcbb42010-12-30 00:18:33 +0200288 old_pscan = test_and_clear_bit(HCI_PSCAN, &hdev->flags);
289 old_iscan = test_and_clear_bit(HCI_ISCAN, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200290
Johan Hedberg73f22f62010-12-29 16:00:25 +0200291 if (param & SCAN_INQUIRY) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200292 set_bit(HCI_ISCAN, &hdev->flags);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +0200293 if (!old_iscan)
294 mgmt_discoverable(hdev->id, 1);
295 } else if (old_iscan)
Johan Hedberg73f22f62010-12-29 16:00:25 +0200296 mgmt_discoverable(hdev->id, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200297
Johan Hedberg9fbcbb42010-12-30 00:18:33 +0200298 if (param & SCAN_PAGE) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200299 set_bit(HCI_PSCAN, &hdev->flags);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +0200300 if (!old_pscan)
301 mgmt_connectable(hdev->id, 1);
302 } else if (old_pscan)
303 mgmt_connectable(hdev->id, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200304 }
305
Johan Hedberg23bb5762010-12-21 23:01:27 +0200306 hci_req_complete(hdev, HCI_OP_WRITE_SCAN_ENABLE, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200307}
308
309static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
310{
311 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
312
313 BT_DBG("%s status 0x%x", hdev->name, rp->status);
314
315 if (rp->status)
316 return;
317
318 memcpy(hdev->dev_class, rp->dev_class, 3);
319
320 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
321 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
322}
323
324static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
325{
326 __u8 status = *((__u8 *) skb->data);
327 void *sent;
328
329 BT_DBG("%s status 0x%x", hdev->name, status);
330
Marcel Holtmannf383f272008-07-14 20:13:47 +0200331 if (status)
332 return;
333
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200334 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
335 if (!sent)
336 return;
337
Marcel Holtmannf383f272008-07-14 20:13:47 +0200338 memcpy(hdev->dev_class, sent, 3);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200339}
340
341static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
342{
343 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 __u16 setting;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200345
346 BT_DBG("%s status 0x%x", hdev->name, rp->status);
347
348 if (rp->status)
349 return;
350
351 setting = __le16_to_cpu(rp->voice_setting);
352
Marcel Holtmannf383f272008-07-14 20:13:47 +0200353 if (hdev->voice_setting == setting)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200354 return;
355
356 hdev->voice_setting = setting;
357
358 BT_DBG("%s voice setting 0x%04x", hdev->name, setting);
359
360 if (hdev->notify) {
361 tasklet_disable(&hdev->tx_task);
362 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
363 tasklet_enable(&hdev->tx_task);
364 }
365}
366
367static void hci_cc_write_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
368{
369 __u8 status = *((__u8 *) skb->data);
Marcel Holtmannf383f272008-07-14 20:13:47 +0200370 __u16 setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 void *sent;
372
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200373 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Marcel Holtmannf383f272008-07-14 20:13:47 +0200375 if (status)
376 return;
377
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200378 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
379 if (!sent)
380 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Marcel Holtmannf383f272008-07-14 20:13:47 +0200382 setting = get_unaligned_le16(sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Marcel Holtmannf383f272008-07-14 20:13:47 +0200384 if (hdev->voice_setting == setting)
385 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Marcel Holtmannf383f272008-07-14 20:13:47 +0200387 hdev->voice_setting = setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Marcel Holtmannf383f272008-07-14 20:13:47 +0200389 BT_DBG("%s voice setting 0x%04x", hdev->name, setting);
390
391 if (hdev->notify) {
392 tasklet_disable(&hdev->tx_task);
393 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
394 tasklet_enable(&hdev->tx_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396}
397
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200398static void hci_cc_host_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200400 __u8 status = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200402 BT_DBG("%s status 0x%x", hdev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Johan Hedberg23bb5762010-12-21 23:01:27 +0200404 hci_req_complete(hdev, HCI_OP_HOST_BUFFER_SIZE, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Marcel Holtmann333140b2008-07-14 20:13:48 +0200407static void hci_cc_read_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
408{
409 struct hci_rp_read_ssp_mode *rp = (void *) skb->data;
410
411 BT_DBG("%s status 0x%x", hdev->name, rp->status);
412
413 if (rp->status)
414 return;
415
416 hdev->ssp_mode = rp->mode;
417}
418
419static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
420{
421 __u8 status = *((__u8 *) skb->data);
422 void *sent;
423
424 BT_DBG("%s status 0x%x", hdev->name, status);
425
426 if (status)
427 return;
428
429 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
430 if (!sent)
431 return;
432
433 hdev->ssp_mode = *((__u8 *) sent);
434}
435
Johan Hedbergd5859e22011-01-25 01:19:58 +0200436static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
437{
438 if (hdev->features[6] & LMP_EXT_INQ)
439 return 2;
440
441 if (hdev->features[3] & LMP_RSSI_INQ)
442 return 1;
443
444 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
445 hdev->lmp_subver == 0x0757)
446 return 1;
447
448 if (hdev->manufacturer == 15) {
449 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
450 return 1;
451 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
452 return 1;
453 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
454 return 1;
455 }
456
457 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
458 hdev->lmp_subver == 0x1805)
459 return 1;
460
461 return 0;
462}
463
464static void hci_setup_inquiry_mode(struct hci_dev *hdev)
465{
466 u8 mode;
467
468 mode = hci_get_inquiry_mode(hdev);
469
470 hci_send_cmd(hdev, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
471}
472
473static void hci_setup_event_mask(struct hci_dev *hdev)
474{
475 /* The second byte is 0xff instead of 0x9f (two reserved bits
476 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
477 * command otherwise */
478 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
479
Ville Tervo7f4f0572011-05-27 11:16:21 +0300480 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
481 * any event mask for pre 1.2 devices */
482 if (hdev->lmp_ver <= 1)
483 return;
484
485 events[4] |= 0x01; /* Flow Specification Complete */
486 events[4] |= 0x02; /* Inquiry Result with RSSI */
487 events[4] |= 0x04; /* Read Remote Extended Features Complete */
488 events[5] |= 0x08; /* Synchronous Connection Complete */
489 events[5] |= 0x10; /* Synchronous Connection Changed */
Johan Hedbergd5859e22011-01-25 01:19:58 +0200490
491 if (hdev->features[3] & LMP_RSSI_INQ)
492 events[4] |= 0x04; /* Inquiry Result with RSSI */
493
494 if (hdev->features[5] & LMP_SNIFF_SUBR)
495 events[5] |= 0x20; /* Sniff Subrating */
496
497 if (hdev->features[5] & LMP_PAUSE_ENC)
498 events[5] |= 0x80; /* Encryption Key Refresh Complete */
499
500 if (hdev->features[6] & LMP_EXT_INQ)
501 events[5] |= 0x40; /* Extended Inquiry Result */
502
503 if (hdev->features[6] & LMP_NO_FLUSH)
504 events[7] |= 0x01; /* Enhanced Flush Complete */
505
506 if (hdev->features[7] & LMP_LSTO)
507 events[6] |= 0x80; /* Link Supervision Timeout Changed */
508
509 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
510 events[6] |= 0x01; /* IO Capability Request */
511 events[6] |= 0x02; /* IO Capability Response */
512 events[6] |= 0x04; /* User Confirmation Request */
513 events[6] |= 0x08; /* User Passkey Request */
514 events[6] |= 0x10; /* Remote OOB Data Request */
515 events[6] |= 0x20; /* Simple Pairing Complete */
516 events[7] |= 0x04; /* User Passkey Notification */
517 events[7] |= 0x08; /* Keypress Notification */
518 events[7] |= 0x10; /* Remote Host Supported
519 * Features Notification */
520 }
521
522 if (hdev->features[4] & LMP_LE)
523 events[7] |= 0x20; /* LE Meta-Event */
524
525 hci_send_cmd(hdev, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
526}
527
528static void hci_setup(struct hci_dev *hdev)
529{
530 hci_setup_event_mask(hdev);
531
532 if (hdev->lmp_ver > 1)
533 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
534
535 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
536 u8 mode = 0x01;
537 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
538 }
539
540 if (hdev->features[3] & LMP_RSSI_INQ)
541 hci_setup_inquiry_mode(hdev);
542
543 if (hdev->features[7] & LMP_INQ_TX_PWR)
544 hci_send_cmd(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
545}
546
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200547static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
548{
549 struct hci_rp_read_local_version *rp = (void *) skb->data;
550
551 BT_DBG("%s status 0x%x", hdev->name, rp->status);
552
553 if (rp->status)
554 return;
555
556 hdev->hci_ver = rp->hci_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200557 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200558 hdev->lmp_ver = rp->lmp_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200559 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200560 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200561
562 BT_DBG("%s manufacturer %d hci ver %d:%d", hdev->name,
563 hdev->manufacturer,
564 hdev->hci_ver, hdev->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200565
566 if (test_bit(HCI_INIT, &hdev->flags))
567 hci_setup(hdev);
568}
569
570static void hci_setup_link_policy(struct hci_dev *hdev)
571{
572 u16 link_policy = 0;
573
574 if (hdev->features[0] & LMP_RSWITCH)
575 link_policy |= HCI_LP_RSWITCH;
576 if (hdev->features[0] & LMP_HOLD)
577 link_policy |= HCI_LP_HOLD;
578 if (hdev->features[0] & LMP_SNIFF)
579 link_policy |= HCI_LP_SNIFF;
580 if (hdev->features[1] & LMP_PARK)
581 link_policy |= HCI_LP_PARK;
582
583 link_policy = cpu_to_le16(link_policy);
584 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY,
585 sizeof(link_policy), &link_policy);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200586}
587
588static void hci_cc_read_local_commands(struct hci_dev *hdev, struct sk_buff *skb)
589{
590 struct hci_rp_read_local_commands *rp = (void *) skb->data;
591
592 BT_DBG("%s status 0x%x", hdev->name, rp->status);
593
594 if (rp->status)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200595 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200596
597 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Johan Hedbergd5859e22011-01-25 01:19:58 +0200598
599 if (test_bit(HCI_INIT, &hdev->flags) && (hdev->commands[5] & 0x10))
600 hci_setup_link_policy(hdev);
601
602done:
603 hci_req_complete(hdev, HCI_OP_READ_LOCAL_COMMANDS, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200604}
605
606static void hci_cc_read_local_features(struct hci_dev *hdev, struct sk_buff *skb)
607{
608 struct hci_rp_read_local_features *rp = (void *) skb->data;
609
610 BT_DBG("%s status 0x%x", hdev->name, rp->status);
611
612 if (rp->status)
613 return;
614
615 memcpy(hdev->features, rp->features, 8);
616
617 /* Adjust default settings according to features
618 * supported by device. */
619
620 if (hdev->features[0] & LMP_3SLOT)
621 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
622
623 if (hdev->features[0] & LMP_5SLOT)
624 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
625
626 if (hdev->features[1] & LMP_HV2) {
627 hdev->pkt_type |= (HCI_HV2);
628 hdev->esco_type |= (ESCO_HV2);
629 }
630
631 if (hdev->features[1] & LMP_HV3) {
632 hdev->pkt_type |= (HCI_HV3);
633 hdev->esco_type |= (ESCO_HV3);
634 }
635
636 if (hdev->features[3] & LMP_ESCO)
637 hdev->esco_type |= (ESCO_EV3);
638
639 if (hdev->features[4] & LMP_EV4)
640 hdev->esco_type |= (ESCO_EV4);
641
642 if (hdev->features[4] & LMP_EV5)
643 hdev->esco_type |= (ESCO_EV5);
644
Marcel Holtmannefc76882009-02-06 09:13:37 +0100645 if (hdev->features[5] & LMP_EDR_ESCO_2M)
646 hdev->esco_type |= (ESCO_2EV3);
647
648 if (hdev->features[5] & LMP_EDR_ESCO_3M)
649 hdev->esco_type |= (ESCO_3EV3);
650
651 if (hdev->features[5] & LMP_EDR_3S_ESCO)
652 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
653
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200654 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name,
655 hdev->features[0], hdev->features[1],
656 hdev->features[2], hdev->features[3],
657 hdev->features[4], hdev->features[5],
658 hdev->features[6], hdev->features[7]);
659}
660
661static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
662{
663 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
664
665 BT_DBG("%s status 0x%x", hdev->name, rp->status);
666
667 if (rp->status)
668 return;
669
670 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
671 hdev->sco_mtu = rp->sco_mtu;
672 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
673 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
674
675 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
676 hdev->sco_mtu = 64;
677 hdev->sco_pkts = 8;
678 }
679
680 hdev->acl_cnt = hdev->acl_pkts;
681 hdev->sco_cnt = hdev->sco_pkts;
682
683 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name,
684 hdev->acl_mtu, hdev->acl_pkts,
685 hdev->sco_mtu, hdev->sco_pkts);
686}
687
688static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
689{
690 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
691
692 BT_DBG("%s status 0x%x", hdev->name, rp->status);
693
694 if (!rp->status)
695 bacpy(&hdev->bdaddr, &rp->bdaddr);
696
Johan Hedberg23bb5762010-12-21 23:01:27 +0200697 hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
698}
699
700static void hci_cc_write_ca_timeout(struct hci_dev *hdev, struct sk_buff *skb)
701{
702 __u8 status = *((__u8 *) skb->data);
703
704 BT_DBG("%s status 0x%x", hdev->name, status);
705
706 hci_req_complete(hdev, HCI_OP_WRITE_CA_TIMEOUT, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200707}
708
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200709static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
710 struct sk_buff *skb)
711{
712 __u8 status = *((__u8 *) skb->data);
713
714 BT_DBG("%s status 0x%x", hdev->name, status);
715
716 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
717}
718
Johan Hedbergd5859e22011-01-25 01:19:58 +0200719static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
720{
721 __u8 status = *((__u8 *) skb->data);
722
723 BT_DBG("%s status 0x%x", hdev->name, status);
724
725 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
726}
727
728static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
729 struct sk_buff *skb)
730{
731 __u8 status = *((__u8 *) skb->data);
732
733 BT_DBG("%s status 0x%x", hdev->name, status);
734
735 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
736}
737
738static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
739 struct sk_buff *skb)
740{
741 __u8 status = *((__u8 *) skb->data);
742
743 BT_DBG("%s status 0x%x", hdev->name, status);
744
745 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, status);
746}
747
748static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
749{
750 __u8 status = *((__u8 *) skb->data);
751
752 BT_DBG("%s status 0x%x", hdev->name, status);
753
754 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
755}
756
Johan Hedberg980e1a52011-01-22 06:10:07 +0200757static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
758{
759 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
760 struct hci_cp_pin_code_reply *cp;
761 struct hci_conn *conn;
762
763 BT_DBG("%s status 0x%x", hdev->name, rp->status);
764
765 if (test_bit(HCI_MGMT, &hdev->flags))
766 mgmt_pin_code_reply_complete(hdev->id, &rp->bdaddr, rp->status);
767
768 if (rp->status != 0)
769 return;
770
771 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
772 if (!cp)
773 return;
774
775 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
776 if (conn)
777 conn->pin_length = cp->pin_len;
778}
779
780static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
781{
782 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
783
784 BT_DBG("%s status 0x%x", hdev->name, rp->status);
785
786 if (test_bit(HCI_MGMT, &hdev->flags))
787 mgmt_pin_code_neg_reply_complete(hdev->id, &rp->bdaddr,
788 rp->status);
789}
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300790static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
791 struct sk_buff *skb)
792{
793 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
794
795 BT_DBG("%s status 0x%x", hdev->name, rp->status);
796
797 if (rp->status)
798 return;
799
800 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
801 hdev->le_pkts = rp->le_max_pkt;
802
803 hdev->le_cnt = hdev->le_pkts;
804
805 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
806
807 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
808}
Johan Hedberg980e1a52011-01-22 06:10:07 +0200809
Johan Hedberga5c29682011-02-19 12:05:57 -0300810static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
811{
812 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
813
814 BT_DBG("%s status 0x%x", hdev->name, rp->status);
815
816 if (test_bit(HCI_MGMT, &hdev->flags))
817 mgmt_user_confirm_reply_complete(hdev->id, &rp->bdaddr,
818 rp->status);
819}
820
821static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
822 struct sk_buff *skb)
823{
824 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
825
826 BT_DBG("%s status 0x%x", hdev->name, rp->status);
827
828 if (test_bit(HCI_MGMT, &hdev->flags))
829 mgmt_user_confirm_neg_reply_complete(hdev->id, &rp->bdaddr,
830 rp->status);
831}
832
Szymon Jancc35938b2011-03-22 13:12:21 +0100833static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
834 struct sk_buff *skb)
835{
836 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
837
838 BT_DBG("%s status 0x%x", hdev->name, rp->status);
839
840 mgmt_read_local_oob_data_reply_complete(hdev->id, rp->hash,
841 rp->randomizer, rp->status);
842}
843
Andre Guedes726e1332011-05-26 16:23:52 -0300844static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
845 struct sk_buff *skb)
846{
847 struct hci_cp_le_set_scan_enable *cp;
848 __u8 status = *((__u8 *) skb->data);
849
850 BT_DBG("%s status 0x%x", hdev->name, status);
851
852 if (status)
853 return;
854
855 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
856 if (!cp)
857 return;
858
859 hci_dev_lock(hdev);
860
Andre Guedes45e600f2011-05-26 16:23:53 -0300861 if (cp->enable == 0x01) {
862 del_timer(&hdev->adv_timer);
Andre Guedes726e1332011-05-26 16:23:52 -0300863 hci_adv_entries_clear(hdev);
Andre Guedes45e600f2011-05-26 16:23:53 -0300864 } else if (cp->enable == 0x00) {
865 mod_timer(&hdev->adv_timer, jiffies + ADV_CLEAR_TIMEOUT);
866 }
Andre Guedes726e1332011-05-26 16:23:52 -0300867
868 hci_dev_unlock(hdev);
869}
870
Vinicius Costa Gomes735038c2011-06-09 18:50:47 -0300871static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
872{
873 struct hci_rp_le_ltk_reply *rp = (void *) skb->data;
874
875 BT_DBG("%s status 0x%x", hdev->name, rp->status);
876
877 if (rp->status)
878 return;
879
880 hci_req_complete(hdev, HCI_OP_LE_LTK_REPLY, rp->status);
881}
882
883static void hci_cc_le_ltk_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
884{
885 struct hci_rp_le_ltk_neg_reply *rp = (void *) skb->data;
886
887 BT_DBG("%s status 0x%x", hdev->name, rp->status);
888
889 if (rp->status)
890 return;
891
892 hci_req_complete(hdev, HCI_OP_LE_LTK_NEG_REPLY, rp->status);
893}
894
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200895static inline void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
896{
897 BT_DBG("%s status 0x%x", hdev->name, status);
898
899 if (status) {
Johan Hedberg23bb5762010-12-21 23:01:27 +0200900 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200901 hci_conn_check_pending(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -0400902 return;
903 }
904
905 if (test_bit(HCI_MGMT, &hdev->flags) &&
906 !test_and_set_bit(HCI_INQUIRY,
907 &hdev->flags))
908 mgmt_discovering(hdev->id, 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200909}
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911static inline void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
912{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200913 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200916 BT_DBG("%s status 0x%x", hdev->name, status);
917
918 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (!cp)
920 return;
921
922 hci_dev_lock(hdev);
923
924 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
925
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200926 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->bdaddr), conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 if (status) {
929 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200930 if (status != 0x0c || conn->attempt > 2) {
931 conn->state = BT_CLOSED;
932 hci_proto_connect_cfm(conn, status);
933 hci_conn_del(conn);
934 } else
935 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 } else {
938 if (!conn) {
Nick Pellybbcda3b2010-02-11 11:54:28 -0800939 conn = hci_conn_add(hdev, ACL_LINK, 0, &cp->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (conn) {
941 conn->out = 1;
942 conn->link_mode |= HCI_LM_MASTER;
943 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -0300944 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946 }
947
948 hci_dev_unlock(hdev);
949}
950
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200951static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200953 struct hci_cp_add_sco *cp;
954 struct hci_conn *acl, *sco;
955 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200957 BT_DBG("%s status 0x%x", hdev->name, status);
958
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200959 if (!status)
960 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200962 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
963 if (!cp)
964 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200966 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200968 BT_DBG("%s handle %d", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +0100969
970 hci_dev_lock(hdev);
971
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200972 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200973 if (acl) {
974 sco = acl->link;
975 if (sco) {
976 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200977
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200978 hci_proto_connect_cfm(sco, status);
979 hci_conn_del(sco);
980 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200981 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +0100982
983 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
Marcel Holtmannf8558552008-07-14 20:13:49 +0200986static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
987{
988 struct hci_cp_auth_requested *cp;
989 struct hci_conn *conn;
990
991 BT_DBG("%s status 0x%x", hdev->name, status);
992
993 if (!status)
994 return;
995
996 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
997 if (!cp)
998 return;
999
1000 hci_dev_lock(hdev);
1001
1002 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1003 if (conn) {
1004 if (conn->state == BT_CONFIG) {
1005 hci_proto_connect_cfm(conn, status);
1006 hci_conn_put(conn);
1007 }
1008 }
1009
1010 hci_dev_unlock(hdev);
1011}
1012
1013static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1014{
1015 struct hci_cp_set_conn_encrypt *cp;
1016 struct hci_conn *conn;
1017
1018 BT_DBG("%s status 0x%x", hdev->name, status);
1019
1020 if (!status)
1021 return;
1022
1023 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1024 if (!cp)
1025 return;
1026
1027 hci_dev_lock(hdev);
1028
1029 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1030 if (conn) {
1031 if (conn->state == BT_CONFIG) {
1032 hci_proto_connect_cfm(conn, status);
1033 hci_conn_put(conn);
1034 }
1035 }
1036
1037 hci_dev_unlock(hdev);
1038}
1039
Johan Hedberg127178d2010-11-18 22:22:29 +02001040static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Szymon Janc138d22e2011-02-17 16:44:23 +01001041 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001042{
Johan Hedberg392599b2010-11-18 22:22:28 +02001043 if (conn->state != BT_CONFIG || !conn->out)
1044 return 0;
1045
Johan Hedberg765c2a92011-01-19 12:06:52 +05301046 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001047 return 0;
1048
1049 /* Only request authentication for SSP connections or non-SSP
1050 * devices with sec_level HIGH */
1051 if (!(hdev->ssp_mode > 0 && conn->ssp_mode > 0) &&
Johan Hedberg765c2a92011-01-19 12:06:52 +05301052 conn->pending_sec_level != BT_SECURITY_HIGH)
Johan Hedberg392599b2010-11-18 22:22:28 +02001053 return 0;
1054
Johan Hedberg392599b2010-11-18 22:22:28 +02001055 return 1;
1056}
1057
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001058static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1059{
Johan Hedberg127178d2010-11-18 22:22:29 +02001060 struct hci_cp_remote_name_req *cp;
1061 struct hci_conn *conn;
1062
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001063 BT_DBG("%s status 0x%x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001064
1065 /* If successful wait for the name req complete event before
1066 * checking for the need to do authentication */
1067 if (!status)
1068 return;
1069
1070 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1071 if (!cp)
1072 return;
1073
1074 hci_dev_lock(hdev);
1075
1076 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedberg79c6c702011-04-28 11:28:55 -07001077 if (!conn)
1078 goto unlock;
1079
1080 if (!hci_outgoing_auth_needed(hdev, conn))
1081 goto unlock;
1082
1083 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001084 struct hci_cp_auth_requested cp;
1085 cp.handle = __cpu_to_le16(conn->handle);
1086 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1087 }
1088
Johan Hedberg79c6c702011-04-28 11:28:55 -07001089unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001090 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001091}
1092
Marcel Holtmann769be972008-07-14 20:13:49 +02001093static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1094{
1095 struct hci_cp_read_remote_features *cp;
1096 struct hci_conn *conn;
1097
1098 BT_DBG("%s status 0x%x", hdev->name, status);
1099
1100 if (!status)
1101 return;
1102
1103 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1104 if (!cp)
1105 return;
1106
1107 hci_dev_lock(hdev);
1108
1109 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1110 if (conn) {
1111 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001112 hci_proto_connect_cfm(conn, status);
1113 hci_conn_put(conn);
1114 }
1115 }
1116
1117 hci_dev_unlock(hdev);
1118}
1119
1120static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1121{
1122 struct hci_cp_read_remote_ext_features *cp;
1123 struct hci_conn *conn;
1124
1125 BT_DBG("%s status 0x%x", hdev->name, status);
1126
1127 if (!status)
1128 return;
1129
1130 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1131 if (!cp)
1132 return;
1133
1134 hci_dev_lock(hdev);
1135
1136 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1137 if (conn) {
1138 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001139 hci_proto_connect_cfm(conn, status);
1140 hci_conn_put(conn);
1141 }
1142 }
1143
1144 hci_dev_unlock(hdev);
1145}
1146
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001147static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1148{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001149 struct hci_cp_setup_sync_conn *cp;
1150 struct hci_conn *acl, *sco;
1151 __u16 handle;
1152
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001153 BT_DBG("%s status 0x%x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001154
1155 if (!status)
1156 return;
1157
1158 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1159 if (!cp)
1160 return;
1161
1162 handle = __le16_to_cpu(cp->handle);
1163
1164 BT_DBG("%s handle %d", hdev->name, handle);
1165
1166 hci_dev_lock(hdev);
1167
1168 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001169 if (acl) {
1170 sco = acl->link;
1171 if (sco) {
1172 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001173
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001174 hci_proto_connect_cfm(sco, status);
1175 hci_conn_del(sco);
1176 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001177 }
1178
1179 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001180}
1181
1182static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1183{
1184 struct hci_cp_sniff_mode *cp;
1185 struct hci_conn *conn;
1186
1187 BT_DBG("%s status 0x%x", hdev->name, status);
1188
1189 if (!status)
1190 return;
1191
1192 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1193 if (!cp)
1194 return;
1195
1196 hci_dev_lock(hdev);
1197
1198 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001199 if (conn) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001200 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend);
1201
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001202 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->pend))
1203 hci_sco_setup(conn, status);
1204 }
1205
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001206 hci_dev_unlock(hdev);
1207}
1208
1209static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1210{
1211 struct hci_cp_exit_sniff_mode *cp;
1212 struct hci_conn *conn;
1213
1214 BT_DBG("%s status 0x%x", hdev->name, status);
1215
1216 if (!status)
1217 return;
1218
1219 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1220 if (!cp)
1221 return;
1222
1223 hci_dev_lock(hdev);
1224
1225 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001226 if (conn) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001227 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend);
1228
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001229 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->pend))
1230 hci_sco_setup(conn, status);
1231 }
1232
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001233 hci_dev_unlock(hdev);
1234}
1235
Ville Tervofcd89c02011-02-10 22:38:47 -03001236static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1237{
1238 struct hci_cp_le_create_conn *cp;
1239 struct hci_conn *conn;
1240
1241 BT_DBG("%s status 0x%x", hdev->name, status);
1242
1243 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_CREATE_CONN);
1244 if (!cp)
1245 return;
1246
1247 hci_dev_lock(hdev);
1248
1249 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->peer_addr);
1250
1251 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->peer_addr),
1252 conn);
1253
1254 if (status) {
1255 if (conn && conn->state == BT_CONNECT) {
1256 conn->state = BT_CLOSED;
1257 hci_proto_connect_cfm(conn, status);
1258 hci_conn_del(conn);
1259 }
1260 } else {
1261 if (!conn) {
Nick Pellybbcda3b2010-02-11 11:54:28 -08001262 conn = hci_conn_add(hdev, LE_LINK, 0, &cp->peer_addr);
Andre Guedes149c0972011-05-31 14:20:54 -03001263 if (conn) {
1264 conn->dst_type = cp->peer_addr_type;
Ville Tervofcd89c02011-02-10 22:38:47 -03001265 conn->out = 1;
Andre Guedes149c0972011-05-31 14:20:54 -03001266 } else {
Ville Tervofcd89c02011-02-10 22:38:47 -03001267 BT_ERR("No memory for new connection");
Andre Guedes149c0972011-05-31 14:20:54 -03001268 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001269 }
1270 }
1271
1272 hci_dev_unlock(hdev);
1273}
1274
Vinicius Costa Gomes735038c2011-06-09 18:50:47 -03001275static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1276{
1277 BT_DBG("%s status 0x%x", hdev->name, status);
1278}
1279
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001280static inline void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1281{
1282 __u8 status = *((__u8 *) skb->data);
1283
1284 BT_DBG("%s status %d", hdev->name, status);
1285
Johan Hedberg314b2382011-04-27 10:29:57 -04001286 if (test_bit(HCI_MGMT, &hdev->flags) &&
1287 test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1288 mgmt_discovering(hdev->id, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001289
Johan Hedberg23bb5762010-12-21 23:01:27 +02001290 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001291
1292 hci_conn_check_pending(hdev);
1293}
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295static inline void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
1296{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001297 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001298 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 int num_rsp = *((__u8 *) skb->data);
1300
1301 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1302
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001303 if (!num_rsp)
1304 return;
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001307
Johan Hedberg314b2382011-04-27 10:29:57 -04001308 if (!test_and_set_bit(HCI_INQUIRY, &hdev->flags)) {
1309
1310 if (test_bit(HCI_MGMT, &hdev->flags))
1311 mgmt_discovering(hdev->id, 1);
1312 }
1313
Johan Hedberge17acd42011-03-30 23:57:16 +03001314 for (; num_rsp; num_rsp--, info++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 bacpy(&data.bdaddr, &info->bdaddr);
1316 data.pscan_rep_mode = info->pscan_rep_mode;
1317 data.pscan_period_mode = info->pscan_period_mode;
1318 data.pscan_mode = info->pscan_mode;
1319 memcpy(data.dev_class, info->dev_class, 3);
1320 data.clock_offset = info->clock_offset;
1321 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001322 data.ssp_mode = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 hci_inquiry_cache_update(hdev, &data);
Johan Hedberge17acd42011-03-30 23:57:16 +03001324 mgmt_device_found(hdev->id, &info->bdaddr, info->dev_class, 0,
1325 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 hci_dev_unlock(hdev);
1329}
1330
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001331static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001333 struct hci_ev_conn_complete *ev = (void *) skb->data;
1334 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001336 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001339
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001340 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001341 if (!conn) {
1342 if (ev->link_type != SCO_LINK)
1343 goto unlock;
1344
1345 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1346 if (!conn)
1347 goto unlock;
1348
1349 conn->type = SCO_LINK;
1350 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001351
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001352 if (!ev->status) {
1353 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001354
1355 if (conn->type == ACL_LINK) {
1356 conn->state = BT_CONFIG;
1357 hci_conn_hold(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001358 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedbergf7520542011-01-20 12:34:39 +02001359 mgmt_connected(hdev->id, &ev->bdaddr);
Marcel Holtmann769be972008-07-14 20:13:49 +02001360 } else
1361 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001362
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001363 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001364 hci_conn_add_sysfs(conn);
1365
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001366 if (test_bit(HCI_AUTH, &hdev->flags))
1367 conn->link_mode |= HCI_LM_AUTH;
1368
1369 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1370 conn->link_mode |= HCI_LM_ENCRYPT;
1371
1372 /* Get remote features */
1373 if (conn->type == ACL_LINK) {
1374 struct hci_cp_read_remote_features cp;
1375 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001376 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
1377 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001378 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001379
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001380 /* Set packet type for incoming connection */
Marcel Holtmanna8746412008-07-14 20:13:46 +02001381 if (!conn->out && hdev->hci_ver < 3) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001382 struct hci_cp_change_conn_ptype cp;
1383 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001384 cp.pkt_type = cpu_to_le16(conn->pkt_type);
1385 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE,
1386 sizeof(cp), &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001387 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001388 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001389 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001390 if (conn->type == ACL_LINK)
1391 mgmt_connect_failed(hdev->id, &ev->bdaddr, ev->status);
1392 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001393
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001394 if (conn->type == ACL_LINK)
1395 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001396
Marcel Holtmann769be972008-07-14 20:13:49 +02001397 if (ev->status) {
1398 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001399 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001400 } else if (ev->link_type != ACL_LINK)
1401 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001402
1403unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001405
1406 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409static inline void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
1410{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001411 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 int mask = hdev->link_mode;
1413
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001414 BT_DBG("%s bdaddr %s type 0x%x", hdev->name,
1415 batostr(&ev->bdaddr), ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1418
Szymon Janc138d22e2011-02-17 16:44:23 +01001419 if ((mask & HCI_LM_ACCEPT) &&
1420 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001422 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001426
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001427 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1428 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001429 memcpy(ie->data.dev_class, ev->dev_class, 3);
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
1432 if (!conn) {
Nick Pellybbcda3b2010-02-11 11:54:28 -08001433 /* pkt_type not yet used for incoming connections */
1434 conn = hci_conn_add(hdev, ev->link_type, 0, &ev->bdaddr);
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001435 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001436 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 hci_dev_unlock(hdev);
1438 return;
1439 }
1440 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 memcpy(conn->dev_class, ev->dev_class, 3);
1443 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 hci_dev_unlock(hdev);
1446
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001447 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1448 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001450 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001452 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1453 cp.role = 0x00; /* Become master */
1454 else
1455 cp.role = 0x01; /* Remain slave */
1456
1457 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ,
1458 sizeof(cp), &cp);
1459 } else {
1460 struct hci_cp_accept_sync_conn_req cp;
1461
1462 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001463 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001464
1465 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
1466 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
1467 cp.max_latency = cpu_to_le16(0xffff);
1468 cp.content_format = cpu_to_le16(hdev->voice_setting);
1469 cp.retrans_effort = 0xff;
1470
1471 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
1472 sizeof(cp), &cp);
1473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 } else {
1475 /* Connection rejected */
1476 struct hci_cp_reject_conn_req cp;
1477
1478 bacpy(&cp.bdaddr, &ev->bdaddr);
1479 cp.reason = 0x0f;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001480 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
1482}
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484static inline void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1485{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001486 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001487 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 BT_DBG("%s status %d", hdev->name, ev->status);
1490
Johan Hedberg8962ee72011-01-20 12:40:27 +02001491 if (ev->status) {
1492 mgmt_disconnect_failed(hdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 hci_dev_lock(hdev);
1497
Marcel Holtmann04837f62006-07-03 10:02:33 +02001498 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001499 if (!conn)
1500 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001501
Johan Hedbergf7520542011-01-20 12:34:39 +02001502 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03001504 if (conn->type == ACL_LINK || conn->type == LE_LINK)
Johan Hedbergf7520542011-01-20 12:34:39 +02001505 mgmt_disconnected(hdev->id, &conn->dst);
1506
1507 hci_proto_disconn_cfm(conn, ev->reason);
1508 hci_conn_del(conn);
1509
1510unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 hci_dev_unlock(hdev);
1512}
1513
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001514static inline void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1515{
1516 struct hci_ev_auth_complete *ev = (void *) skb->data;
1517 struct hci_conn *conn;
1518
1519 BT_DBG("%s status %d", hdev->name, ev->status);
1520
1521 hci_dev_lock(hdev);
1522
1523 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001524 if (!conn)
1525 goto unlock;
1526
1527 if (!ev->status) {
1528 if (!(conn->ssp_mode > 0 && hdev->ssp_mode > 0) &&
1529 test_bit(HCI_CONN_REAUTH_PEND, &conn->pend)) {
1530 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03001531 } else {
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001532 conn->link_mode |= HCI_LM_AUTH;
1533 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03001534 }
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001535 } else {
1536 mgmt_auth_failed(hdev->id, &conn->dst, ev->status);
1537 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001538
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001539 clear_bit(HCI_CONN_AUTH_PEND, &conn->pend);
1540 clear_bit(HCI_CONN_REAUTH_PEND, &conn->pend);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001541
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001542 if (conn->state == BT_CONFIG) {
1543 if (!ev->status && hdev->ssp_mode > 0 && conn->ssp_mode > 0) {
1544 struct hci_cp_set_conn_encrypt cp;
1545 cp.handle = ev->handle;
1546 cp.encrypt = 0x01;
1547 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1548 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001549 } else {
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001550 conn->state = BT_CONNECTED;
1551 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001552 hci_conn_put(conn);
1553 }
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001554 } else {
1555 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001556
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001557 hci_conn_hold(conn);
1558 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
1559 hci_conn_put(conn);
1560 }
1561
1562 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend)) {
1563 if (!ev->status) {
1564 struct hci_cp_set_conn_encrypt cp;
1565 cp.handle = ev->handle;
1566 cp.encrypt = 0x01;
1567 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1568 &cp);
1569 } else {
1570 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend);
1571 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001572 }
1573 }
1574
Waldemar Rymarkiewicz54444292011-05-31 15:49:26 +02001575unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001576 hci_dev_unlock(hdev);
1577}
1578
1579static inline void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
1580{
Johan Hedberg127178d2010-11-18 22:22:29 +02001581 struct hci_ev_remote_name *ev = (void *) skb->data;
1582 struct hci_conn *conn;
1583
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001584 BT_DBG("%s", hdev->name);
1585
1586 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02001587
1588 hci_dev_lock(hdev);
1589
Johan Hedberga88a9652011-03-30 13:18:12 +03001590 if (ev->status == 0 && test_bit(HCI_MGMT, &hdev->flags))
1591 mgmt_remote_name(hdev->id, &ev->bdaddr, ev->name);
1592
Johan Hedberg127178d2010-11-18 22:22:29 +02001593 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg79c6c702011-04-28 11:28:55 -07001594 if (!conn)
1595 goto unlock;
1596
1597 if (!hci_outgoing_auth_needed(hdev, conn))
1598 goto unlock;
1599
1600 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001601 struct hci_cp_auth_requested cp;
1602 cp.handle = __cpu_to_le16(conn->handle);
1603 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1604 }
1605
Johan Hedberg79c6c702011-04-28 11:28:55 -07001606unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001607 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001608}
1609
1610static inline void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
1611{
1612 struct hci_ev_encrypt_change *ev = (void *) skb->data;
1613 struct hci_conn *conn;
1614
1615 BT_DBG("%s status %d", hdev->name, ev->status);
1616
1617 hci_dev_lock(hdev);
1618
1619 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
1620 if (conn) {
1621 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02001622 if (ev->encrypt) {
1623 /* Encryption implies authentication */
1624 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001625 conn->link_mode |= HCI_LM_ENCRYPT;
Vinicius Costa Gomes64532ec2011-06-09 18:50:53 -03001626 conn->sec_level = conn->pending_sec_level;
Marcel Holtmannae293192008-07-14 20:13:45 +02001627 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001628 conn->link_mode &= ~HCI_LM_ENCRYPT;
1629 }
1630
1631 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend);
1632
Marcel Holtmannf8558552008-07-14 20:13:49 +02001633 if (conn->state == BT_CONFIG) {
1634 if (!ev->status)
1635 conn->state = BT_CONNECTED;
1636
1637 hci_proto_connect_cfm(conn, ev->status);
1638 hci_conn_put(conn);
1639 } else
1640 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001641 }
1642
1643 hci_dev_unlock(hdev);
1644}
1645
1646static inline void hci_change_link_key_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1647{
1648 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
1649 struct hci_conn *conn;
1650
1651 BT_DBG("%s status %d", hdev->name, ev->status);
1652
1653 hci_dev_lock(hdev);
1654
1655 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
1656 if (conn) {
1657 if (!ev->status)
1658 conn->link_mode |= HCI_LM_SECURE;
1659
1660 clear_bit(HCI_CONN_AUTH_PEND, &conn->pend);
1661
1662 hci_key_change_cfm(conn, ev->status);
1663 }
1664
1665 hci_dev_unlock(hdev);
1666}
1667
1668static inline void hci_remote_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
1669{
1670 struct hci_ev_remote_features *ev = (void *) skb->data;
1671 struct hci_conn *conn;
1672
1673 BT_DBG("%s status %d", hdev->name, ev->status);
1674
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001675 hci_dev_lock(hdev);
1676
1677 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02001678 if (!conn)
1679 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02001680
Johan Hedbergccd556f2010-11-10 17:11:51 +02001681 if (!ev->status)
1682 memcpy(conn->features, ev->features, 8);
1683
1684 if (conn->state != BT_CONFIG)
1685 goto unlock;
1686
1687 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
1688 struct hci_cp_read_remote_ext_features cp;
1689 cp.handle = ev->handle;
1690 cp.page = 0x01;
1691 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Marcel Holtmann769be972008-07-14 20:13:49 +02001692 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02001693 goto unlock;
1694 }
1695
Johan Hedberg127178d2010-11-18 22:22:29 +02001696 if (!ev->status) {
1697 struct hci_cp_remote_name_req cp;
1698 memset(&cp, 0, sizeof(cp));
1699 bacpy(&cp.bdaddr, &conn->dst);
1700 cp.pscan_rep_mode = 0x02;
1701 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1702 }
Johan Hedberg392599b2010-11-18 22:22:28 +02001703
Johan Hedberg127178d2010-11-18 22:22:29 +02001704 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02001705 conn->state = BT_CONNECTED;
1706 hci_proto_connect_cfm(conn, ev->status);
1707 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02001708 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001709
Johan Hedbergccd556f2010-11-10 17:11:51 +02001710unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001711 hci_dev_unlock(hdev);
1712}
1713
1714static inline void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
1715{
1716 BT_DBG("%s", hdev->name);
1717}
1718
1719static inline void hci_qos_setup_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1720{
1721 BT_DBG("%s", hdev->name);
1722}
1723
1724static inline void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1725{
1726 struct hci_ev_cmd_complete *ev = (void *) skb->data;
1727 __u16 opcode;
1728
1729 skb_pull(skb, sizeof(*ev));
1730
1731 opcode = __le16_to_cpu(ev->opcode);
1732
1733 switch (opcode) {
1734 case HCI_OP_INQUIRY_CANCEL:
1735 hci_cc_inquiry_cancel(hdev, skb);
1736 break;
1737
1738 case HCI_OP_EXIT_PERIODIC_INQ:
1739 hci_cc_exit_periodic_inq(hdev, skb);
1740 break;
1741
1742 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
1743 hci_cc_remote_name_req_cancel(hdev, skb);
1744 break;
1745
1746 case HCI_OP_ROLE_DISCOVERY:
1747 hci_cc_role_discovery(hdev, skb);
1748 break;
1749
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001750 case HCI_OP_READ_LINK_POLICY:
1751 hci_cc_read_link_policy(hdev, skb);
1752 break;
1753
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001754 case HCI_OP_WRITE_LINK_POLICY:
1755 hci_cc_write_link_policy(hdev, skb);
1756 break;
1757
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001758 case HCI_OP_READ_DEF_LINK_POLICY:
1759 hci_cc_read_def_link_policy(hdev, skb);
1760 break;
1761
1762 case HCI_OP_WRITE_DEF_LINK_POLICY:
1763 hci_cc_write_def_link_policy(hdev, skb);
1764 break;
1765
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001766 case HCI_OP_RESET:
1767 hci_cc_reset(hdev, skb);
1768 break;
1769
1770 case HCI_OP_WRITE_LOCAL_NAME:
1771 hci_cc_write_local_name(hdev, skb);
1772 break;
1773
1774 case HCI_OP_READ_LOCAL_NAME:
1775 hci_cc_read_local_name(hdev, skb);
1776 break;
1777
1778 case HCI_OP_WRITE_AUTH_ENABLE:
1779 hci_cc_write_auth_enable(hdev, skb);
1780 break;
1781
1782 case HCI_OP_WRITE_ENCRYPT_MODE:
1783 hci_cc_write_encrypt_mode(hdev, skb);
1784 break;
1785
1786 case HCI_OP_WRITE_SCAN_ENABLE:
1787 hci_cc_write_scan_enable(hdev, skb);
1788 break;
1789
1790 case HCI_OP_READ_CLASS_OF_DEV:
1791 hci_cc_read_class_of_dev(hdev, skb);
1792 break;
1793
1794 case HCI_OP_WRITE_CLASS_OF_DEV:
1795 hci_cc_write_class_of_dev(hdev, skb);
1796 break;
1797
1798 case HCI_OP_READ_VOICE_SETTING:
1799 hci_cc_read_voice_setting(hdev, skb);
1800 break;
1801
1802 case HCI_OP_WRITE_VOICE_SETTING:
1803 hci_cc_write_voice_setting(hdev, skb);
1804 break;
1805
1806 case HCI_OP_HOST_BUFFER_SIZE:
1807 hci_cc_host_buffer_size(hdev, skb);
1808 break;
1809
Marcel Holtmann333140b2008-07-14 20:13:48 +02001810 case HCI_OP_READ_SSP_MODE:
1811 hci_cc_read_ssp_mode(hdev, skb);
1812 break;
1813
1814 case HCI_OP_WRITE_SSP_MODE:
1815 hci_cc_write_ssp_mode(hdev, skb);
1816 break;
1817
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001818 case HCI_OP_READ_LOCAL_VERSION:
1819 hci_cc_read_local_version(hdev, skb);
1820 break;
1821
1822 case HCI_OP_READ_LOCAL_COMMANDS:
1823 hci_cc_read_local_commands(hdev, skb);
1824 break;
1825
1826 case HCI_OP_READ_LOCAL_FEATURES:
1827 hci_cc_read_local_features(hdev, skb);
1828 break;
1829
1830 case HCI_OP_READ_BUFFER_SIZE:
1831 hci_cc_read_buffer_size(hdev, skb);
1832 break;
1833
1834 case HCI_OP_READ_BD_ADDR:
1835 hci_cc_read_bd_addr(hdev, skb);
1836 break;
1837
Johan Hedberg23bb5762010-12-21 23:01:27 +02001838 case HCI_OP_WRITE_CA_TIMEOUT:
1839 hci_cc_write_ca_timeout(hdev, skb);
1840 break;
1841
Johan Hedbergb0916ea2011-01-10 13:44:55 +02001842 case HCI_OP_DELETE_STORED_LINK_KEY:
1843 hci_cc_delete_stored_link_key(hdev, skb);
1844 break;
1845
Johan Hedbergd5859e22011-01-25 01:19:58 +02001846 case HCI_OP_SET_EVENT_MASK:
1847 hci_cc_set_event_mask(hdev, skb);
1848 break;
1849
1850 case HCI_OP_WRITE_INQUIRY_MODE:
1851 hci_cc_write_inquiry_mode(hdev, skb);
1852 break;
1853
1854 case HCI_OP_READ_INQ_RSP_TX_POWER:
1855 hci_cc_read_inq_rsp_tx_power(hdev, skb);
1856 break;
1857
1858 case HCI_OP_SET_EVENT_FLT:
1859 hci_cc_set_event_flt(hdev, skb);
1860 break;
1861
Johan Hedberg980e1a52011-01-22 06:10:07 +02001862 case HCI_OP_PIN_CODE_REPLY:
1863 hci_cc_pin_code_reply(hdev, skb);
1864 break;
1865
1866 case HCI_OP_PIN_CODE_NEG_REPLY:
1867 hci_cc_pin_code_neg_reply(hdev, skb);
1868 break;
1869
Szymon Jancc35938b2011-03-22 13:12:21 +01001870 case HCI_OP_READ_LOCAL_OOB_DATA:
1871 hci_cc_read_local_oob_data_reply(hdev, skb);
1872 break;
1873
Ville Tervo6ed58ec2011-02-10 22:38:48 -03001874 case HCI_OP_LE_READ_BUFFER_SIZE:
1875 hci_cc_le_read_buffer_size(hdev, skb);
1876 break;
1877
Johan Hedberga5c29682011-02-19 12:05:57 -03001878 case HCI_OP_USER_CONFIRM_REPLY:
1879 hci_cc_user_confirm_reply(hdev, skb);
1880 break;
1881
1882 case HCI_OP_USER_CONFIRM_NEG_REPLY:
1883 hci_cc_user_confirm_neg_reply(hdev, skb);
1884 break;
1885
Andre Guedes726e1332011-05-26 16:23:52 -03001886 case HCI_OP_LE_SET_SCAN_ENABLE:
1887 hci_cc_le_set_scan_enable(hdev, skb);
1888 break;
1889
Vinicius Costa Gomes735038c2011-06-09 18:50:47 -03001890 case HCI_OP_LE_LTK_REPLY:
1891 hci_cc_le_ltk_reply(hdev, skb);
1892 break;
1893
1894 case HCI_OP_LE_LTK_NEG_REPLY:
1895 hci_cc_le_ltk_neg_reply(hdev, skb);
1896 break;
1897
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001898 default:
1899 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
1900 break;
1901 }
1902
Ville Tervo6bd32322011-02-16 16:32:41 +02001903 if (ev->opcode != HCI_OP_NOP)
1904 del_timer(&hdev->cmd_timer);
1905
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001906 if (ev->ncmd) {
1907 atomic_set(&hdev->cmd_cnt, 1);
1908 if (!skb_queue_empty(&hdev->cmd_q))
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001909 tasklet_schedule(&hdev->cmd_task);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001910 }
1911}
1912
1913static inline void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
1914{
1915 struct hci_ev_cmd_status *ev = (void *) skb->data;
1916 __u16 opcode;
1917
1918 skb_pull(skb, sizeof(*ev));
1919
1920 opcode = __le16_to_cpu(ev->opcode);
1921
1922 switch (opcode) {
1923 case HCI_OP_INQUIRY:
1924 hci_cs_inquiry(hdev, ev->status);
1925 break;
1926
1927 case HCI_OP_CREATE_CONN:
1928 hci_cs_create_conn(hdev, ev->status);
1929 break;
1930
1931 case HCI_OP_ADD_SCO:
1932 hci_cs_add_sco(hdev, ev->status);
1933 break;
1934
Marcel Holtmannf8558552008-07-14 20:13:49 +02001935 case HCI_OP_AUTH_REQUESTED:
1936 hci_cs_auth_requested(hdev, ev->status);
1937 break;
1938
1939 case HCI_OP_SET_CONN_ENCRYPT:
1940 hci_cs_set_conn_encrypt(hdev, ev->status);
1941 break;
1942
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001943 case HCI_OP_REMOTE_NAME_REQ:
1944 hci_cs_remote_name_req(hdev, ev->status);
1945 break;
1946
Marcel Holtmann769be972008-07-14 20:13:49 +02001947 case HCI_OP_READ_REMOTE_FEATURES:
1948 hci_cs_read_remote_features(hdev, ev->status);
1949 break;
1950
1951 case HCI_OP_READ_REMOTE_EXT_FEATURES:
1952 hci_cs_read_remote_ext_features(hdev, ev->status);
1953 break;
1954
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001955 case HCI_OP_SETUP_SYNC_CONN:
1956 hci_cs_setup_sync_conn(hdev, ev->status);
1957 break;
1958
1959 case HCI_OP_SNIFF_MODE:
1960 hci_cs_sniff_mode(hdev, ev->status);
1961 break;
1962
1963 case HCI_OP_EXIT_SNIFF_MODE:
1964 hci_cs_exit_sniff_mode(hdev, ev->status);
1965 break;
1966
Johan Hedberg8962ee72011-01-20 12:40:27 +02001967 case HCI_OP_DISCONNECT:
1968 if (ev->status != 0)
1969 mgmt_disconnect_failed(hdev->id);
1970 break;
1971
Ville Tervofcd89c02011-02-10 22:38:47 -03001972 case HCI_OP_LE_CREATE_CONN:
1973 hci_cs_le_create_conn(hdev, ev->status);
1974 break;
1975
Vinicius Costa Gomes735038c2011-06-09 18:50:47 -03001976 case HCI_OP_LE_START_ENC:
1977 hci_cs_le_start_enc(hdev, ev->status);
1978 break;
1979
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001980 default:
1981 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
1982 break;
1983 }
1984
Ville Tervo6bd32322011-02-16 16:32:41 +02001985 if (ev->opcode != HCI_OP_NOP)
1986 del_timer(&hdev->cmd_timer);
1987
Gustavo F. Padovan10572132011-03-16 15:36:29 -03001988 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001989 atomic_set(&hdev->cmd_cnt, 1);
1990 if (!skb_queue_empty(&hdev->cmd_q))
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001991 tasklet_schedule(&hdev->cmd_task);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001992 }
1993}
1994
1995static inline void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
1996{
1997 struct hci_ev_role_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_ba(hdev, ACL_LINK, &ev->bdaddr);
2005 if (conn) {
2006 if (!ev->status) {
2007 if (ev->role)
2008 conn->link_mode &= ~HCI_LM_MASTER;
2009 else
2010 conn->link_mode |= HCI_LM_MASTER;
2011 }
2012
2013 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->pend);
2014
2015 hci_role_switch_cfm(conn, ev->status, ev->role);
2016 }
2017
2018 hci_dev_unlock(hdev);
2019}
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021static inline void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
2022{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002023 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08002024 __le16 *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 int i;
2026
2027 skb_pull(skb, sizeof(*ev));
2028
2029 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2030
2031 if (skb->len < ev->num_hndl * 4) {
2032 BT_DBG("%s bad parameters", hdev->name);
2033 return;
2034 }
2035
2036 tasklet_disable(&hdev->tx_task);
2037
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08002038 for (i = 0, ptr = (__le16 *) skb->data; i < ev->num_hndl; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 struct hci_conn *conn;
2040 __u16 handle, count;
2041
Harvey Harrison83985312008-05-02 16:25:46 -07002042 handle = get_unaligned_le16(ptr++);
2043 count = get_unaligned_le16(ptr++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045 conn = hci_conn_hash_lookup_handle(hdev, handle);
2046 if (conn) {
2047 conn->sent -= count;
2048
Marcel Holtmann5b7f9902007-07-11 09:51:55 +02002049 if (conn->type == ACL_LINK) {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002050 hdev->acl_cnt += count;
2051 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 hdev->acl_cnt = hdev->acl_pkts;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002053 } else if (conn->type == LE_LINK) {
2054 if (hdev->le_pkts) {
2055 hdev->le_cnt += count;
2056 if (hdev->le_cnt > hdev->le_pkts)
2057 hdev->le_cnt = hdev->le_pkts;
2058 } else {
2059 hdev->acl_cnt += count;
2060 if (hdev->acl_cnt > hdev->acl_pkts)
2061 hdev->acl_cnt = hdev->acl_pkts;
2062 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +02002063 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002064 hdev->sco_cnt += count;
2065 if (hdev->sco_cnt > hdev->sco_pkts)
Marcel Holtmann5b7f9902007-07-11 09:51:55 +02002066 hdev->sco_cnt = hdev->sco_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068 }
2069 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002070
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002071 tasklet_schedule(&hdev->tx_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 tasklet_enable(&hdev->tx_task);
2074}
2075
Marcel Holtmann04837f62006-07-03 10:02:33 +02002076static inline void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002078 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002079 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 BT_DBG("%s status %d", hdev->name, ev->status);
2082
2083 hci_dev_lock(hdev);
2084
Marcel Holtmann04837f62006-07-03 10:02:33 +02002085 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2086 if (conn) {
2087 conn->mode = ev->mode;
2088 conn->interval = __le16_to_cpu(ev->interval);
2089
2090 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) {
2091 if (conn->mode == HCI_CM_ACTIVE)
2092 conn->power_save = 1;
2093 else
2094 conn->power_save = 0;
2095 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002096
2097 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->pend))
2098 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002099 }
2100
2101 hci_dev_unlock(hdev);
2102}
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104static inline void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2105{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002106 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2107 struct hci_conn *conn;
2108
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002109 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002110
2111 hci_dev_lock(hdev);
2112
2113 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Marcel Holtmann3d7a9d12009-05-09 12:09:21 -07002114 if (conn && conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002115 hci_conn_hold(conn);
2116 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2117 hci_conn_put(conn);
2118 }
2119
Johan Hedberg03b555e2011-01-04 15:40:05 +02002120 if (!test_bit(HCI_PAIRABLE, &hdev->flags))
2121 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
2122 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg582fbe92011-04-28 11:28:58 -07002123 else if (test_bit(HCI_MGMT, &hdev->flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002124 u8 secure;
2125
2126 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2127 secure = 1;
2128 else
2129 secure = 0;
2130
2131 mgmt_pin_code_request(hdev->id, &ev->bdaddr, secure);
2132 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002133
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002134 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2138{
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002139 struct hci_ev_link_key_req *ev = (void *) skb->data;
2140 struct hci_cp_link_key_reply cp;
2141 struct hci_conn *conn;
2142 struct link_key *key;
2143
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002144 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002145
2146 if (!test_bit(HCI_LINK_KEYS, &hdev->flags))
2147 return;
2148
2149 hci_dev_lock(hdev);
2150
2151 key = hci_find_link_key(hdev, &ev->bdaddr);
2152 if (!key) {
2153 BT_DBG("%s link key not found for %s", hdev->name,
2154 batostr(&ev->bdaddr));
2155 goto not_found;
2156 }
2157
2158 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
2159 batostr(&ev->bdaddr));
2160
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02002161 if (!test_bit(HCI_DEBUG_KEYS, &hdev->flags) &&
2162 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002163 BT_DBG("%s ignoring debug key", hdev->name);
2164 goto not_found;
2165 }
2166
2167 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002168 if (conn) {
2169 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
2170 conn->auth_type != 0xff &&
2171 (conn->auth_type & 0x01)) {
2172 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2173 goto not_found;
2174 }
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002175
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002176 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
2177 conn->pending_sec_level == BT_SECURITY_HIGH) {
2178 BT_DBG("%s ignoring key unauthenticated for high \
2179 security", hdev->name);
2180 goto not_found;
2181 }
2182
2183 conn->key_type = key->type;
2184 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002185 }
2186
2187 bacpy(&cp.bdaddr, &ev->bdaddr);
2188 memcpy(cp.link_key, key->val, 16);
2189
2190 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2191
2192 hci_dev_unlock(hdev);
2193
2194 return;
2195
2196not_found:
2197 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2198 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199}
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201static inline void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
2202{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002203 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2204 struct hci_conn *conn;
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002205 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002206
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002207 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002208
2209 hci_dev_lock(hdev);
2210
2211 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2212 if (conn) {
2213 hci_conn_hold(conn);
2214 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002215 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002216
2217 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2218 conn->key_type = ev->key_type;
2219
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002220 hci_conn_put(conn);
2221 }
2222
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002223 if (test_bit(HCI_LINK_KEYS, &hdev->flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002224 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Johan Hedberg55ed8ca2011-01-17 14:41:05 +02002225 ev->key_type, pin_len);
2226
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002227 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
Marcel Holtmann04837f62006-07-03 10:02:33 +02002230static inline void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
2231{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002232 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002233 struct hci_conn *conn;
2234
2235 BT_DBG("%s status %d", hdev->name, ev->status);
2236
2237 hci_dev_lock(hdev);
2238
2239 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (conn && !ev->status) {
2241 struct inquiry_entry *ie;
2242
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002243 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2244 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 ie->data.clock_offset = ev->clock_offset;
2246 ie->timestamp = jiffies;
2247 }
2248 }
2249
2250 hci_dev_unlock(hdev);
2251}
2252
Marcel Holtmanna8746412008-07-14 20:13:46 +02002253static inline void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
2254{
2255 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2256 struct hci_conn *conn;
2257
2258 BT_DBG("%s status %d", hdev->name, ev->status);
2259
2260 hci_dev_lock(hdev);
2261
2262 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2263 if (conn && !ev->status)
2264 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2265
2266 hci_dev_unlock(hdev);
2267}
2268
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002269static inline void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
2270{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002271 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002272 struct inquiry_entry *ie;
2273
2274 BT_DBG("%s", hdev->name);
2275
2276 hci_dev_lock(hdev);
2277
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002278 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2279 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002280 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2281 ie->timestamp = jiffies;
2282 }
2283
2284 hci_dev_unlock(hdev);
2285}
2286
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002287static inline void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev, struct sk_buff *skb)
2288{
2289 struct inquiry_data data;
2290 int num_rsp = *((__u8 *) skb->data);
2291
2292 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2293
2294 if (!num_rsp)
2295 return;
2296
2297 hci_dev_lock(hdev);
2298
Johan Hedberg314b2382011-04-27 10:29:57 -04002299 if (!test_and_set_bit(HCI_INQUIRY, &hdev->flags)) {
2300
2301 if (test_bit(HCI_MGMT, &hdev->flags))
2302 mgmt_discovering(hdev->id, 1);
2303 }
2304
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002305 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002306 struct inquiry_info_with_rssi_and_pscan_mode *info;
2307 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002308
Johan Hedberge17acd42011-03-30 23:57:16 +03002309 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002310 bacpy(&data.bdaddr, &info->bdaddr);
2311 data.pscan_rep_mode = info->pscan_rep_mode;
2312 data.pscan_period_mode = info->pscan_period_mode;
2313 data.pscan_mode = info->pscan_mode;
2314 memcpy(data.dev_class, info->dev_class, 3);
2315 data.clock_offset = info->clock_offset;
2316 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002317 data.ssp_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002318 hci_inquiry_cache_update(hdev, &data);
Johan Hedberge17acd42011-03-30 23:57:16 +03002319 mgmt_device_found(hdev->id, &info->bdaddr,
2320 info->dev_class, info->rssi,
2321 NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002322 }
2323 } else {
2324 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2325
Johan Hedberge17acd42011-03-30 23:57:16 +03002326 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002327 bacpy(&data.bdaddr, &info->bdaddr);
2328 data.pscan_rep_mode = info->pscan_rep_mode;
2329 data.pscan_period_mode = info->pscan_period_mode;
2330 data.pscan_mode = 0x00;
2331 memcpy(data.dev_class, info->dev_class, 3);
2332 data.clock_offset = info->clock_offset;
2333 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002334 data.ssp_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002335 hci_inquiry_cache_update(hdev, &data);
Johan Hedberge17acd42011-03-30 23:57:16 +03002336 mgmt_device_found(hdev->id, &info->bdaddr,
2337 info->dev_class, info->rssi,
2338 NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002339 }
2340 }
2341
2342 hci_dev_unlock(hdev);
2343}
2344
2345static inline void hci_remote_ext_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2346{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002347 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2348 struct hci_conn *conn;
2349
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002350 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002351
Marcel Holtmann41a96212008-07-14 20:13:48 +02002352 hci_dev_lock(hdev);
2353
2354 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002355 if (!conn)
2356 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002357
Johan Hedbergccd556f2010-11-10 17:11:51 +02002358 if (!ev->status && ev->page == 0x01) {
2359 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002360
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002361 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2362 if (ie)
Johan Hedbergccd556f2010-11-10 17:11:51 +02002363 ie->data.ssp_mode = (ev->features[0] & 0x01);
Marcel Holtmann769be972008-07-14 20:13:49 +02002364
Johan Hedbergccd556f2010-11-10 17:11:51 +02002365 conn->ssp_mode = (ev->features[0] & 0x01);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002366 }
2367
Johan Hedbergccd556f2010-11-10 17:11:51 +02002368 if (conn->state != BT_CONFIG)
2369 goto unlock;
2370
Johan Hedberg127178d2010-11-18 22:22:29 +02002371 if (!ev->status) {
2372 struct hci_cp_remote_name_req cp;
2373 memset(&cp, 0, sizeof(cp));
2374 bacpy(&cp.bdaddr, &conn->dst);
2375 cp.pscan_rep_mode = 0x02;
2376 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
2377 }
Johan Hedberg392599b2010-11-18 22:22:28 +02002378
Johan Hedberg127178d2010-11-18 22:22:29 +02002379 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002380 conn->state = BT_CONNECTED;
2381 hci_proto_connect_cfm(conn, ev->status);
2382 hci_conn_put(conn);
2383 }
2384
2385unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002386 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002387}
2388
2389static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2390{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002391 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2392 struct hci_conn *conn;
2393
2394 BT_DBG("%s status %d", hdev->name, ev->status);
2395
2396 hci_dev_lock(hdev);
2397
2398 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02002399 if (!conn) {
2400 if (ev->link_type == ESCO_LINK)
2401 goto unlock;
2402
2403 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2404 if (!conn)
2405 goto unlock;
2406
2407 conn->type = SCO_LINK;
2408 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002409
Marcel Holtmann732547f2009-04-19 19:14:14 +02002410 switch (ev->status) {
2411 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002412 conn->handle = __le16_to_cpu(ev->handle);
2413 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002414
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07002415 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002416 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02002417 break;
2418
Nick Pelly5c9b4de2009-09-22 15:19:46 -07002419 case 0x10: /* Connection Accept Timeout */
Stephen Coe705e5712010-02-16 11:29:44 -05002420 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002421 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08002422 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002423 case 0x1f: /* Unspecified error */
2424 if (conn->out && conn->attempt < 2) {
2425 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2426 (hdev->esco_type & EDR_ESCO_MASK);
2427 hci_setup_sync(conn, conn->link->handle);
2428 goto unlock;
2429 }
2430 /* fall through */
2431
2432 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002433 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002434 break;
2435 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002436
2437 hci_proto_connect_cfm(conn, ev->status);
2438 if (ev->status)
2439 hci_conn_del(conn);
2440
2441unlock:
2442 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002443}
2444
2445static inline void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
2446{
2447 BT_DBG("%s", hdev->name);
2448}
2449
Marcel Holtmann04837f62006-07-03 10:02:33 +02002450static inline void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
2451{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002452 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002453
2454 BT_DBG("%s status %d", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002455}
2456
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002457static inline void hci_extended_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
2458{
2459 struct inquiry_data data;
2460 struct extended_inquiry_info *info = (void *) (skb->data + 1);
2461 int num_rsp = *((__u8 *) skb->data);
2462
2463 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2464
2465 if (!num_rsp)
2466 return;
2467
Johan Hedberg314b2382011-04-27 10:29:57 -04002468 if (!test_and_set_bit(HCI_INQUIRY, &hdev->flags)) {
2469
2470 if (test_bit(HCI_MGMT, &hdev->flags))
2471 mgmt_discovering(hdev->id, 1);
2472 }
2473
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002474 hci_dev_lock(hdev);
2475
Johan Hedberge17acd42011-03-30 23:57:16 +03002476 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002477 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01002478 data.pscan_rep_mode = info->pscan_rep_mode;
2479 data.pscan_period_mode = info->pscan_period_mode;
2480 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002481 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01002482 data.clock_offset = info->clock_offset;
2483 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002484 data.ssp_mode = 0x01;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002485 hci_inquiry_cache_update(hdev, &data);
Johan Hedberge17acd42011-03-30 23:57:16 +03002486 mgmt_device_found(hdev->id, &info->bdaddr, info->dev_class,
2487 info->rssi, info->data);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002488 }
2489
2490 hci_dev_unlock(hdev);
2491}
2492
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002493static inline u8 hci_get_auth_req(struct hci_conn *conn)
2494{
2495 /* If remote requests dedicated bonding follow that lead */
2496 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
2497 /* If both remote and local IO capabilities allow MITM
2498 * protection then require it, otherwise don't */
2499 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
2500 return 0x02;
2501 else
2502 return 0x03;
2503 }
2504
2505 /* If remote requests no-bonding follow that lead */
2506 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02002507 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002508
2509 return conn->auth_type;
2510}
2511
Marcel Holtmann04936842008-07-14 20:13:48 +02002512static inline void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2513{
2514 struct hci_ev_io_capa_request *ev = (void *) skb->data;
2515 struct hci_conn *conn;
2516
2517 BT_DBG("%s", hdev->name);
2518
2519 hci_dev_lock(hdev);
2520
2521 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02002522 if (!conn)
2523 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02002524
Johan Hedberg03b555e2011-01-04 15:40:05 +02002525 hci_conn_hold(conn);
2526
2527 if (!test_bit(HCI_MGMT, &hdev->flags))
2528 goto unlock;
2529
2530 if (test_bit(HCI_PAIRABLE, &hdev->flags) ||
2531 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002532 struct hci_cp_io_capability_reply cp;
2533
2534 bacpy(&cp.bdaddr, &ev->bdaddr);
2535 cp.capability = conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07002536 conn->auth_type = hci_get_auth_req(conn);
2537 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002538
Szymon Jancce85ee12011-03-22 13:12:23 +01002539 if ((conn->out == 0x01 || conn->remote_oob == 0x01) &&
2540 hci_find_remote_oob_data(hdev, &conn->dst))
2541 cp.oob_data = 0x01;
2542 else
2543 cp.oob_data = 0x00;
2544
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002545 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
2546 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02002547 } else {
2548 struct hci_cp_io_capability_neg_reply cp;
2549
2550 bacpy(&cp.bdaddr, &ev->bdaddr);
Johan Hedbergbe771592011-04-28 11:28:57 -07002551 cp.reason = 0x18; /* Pairing not allowed */
Johan Hedberg03b555e2011-01-04 15:40:05 +02002552
2553 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
2554 sizeof(cp), &cp);
2555 }
2556
2557unlock:
2558 hci_dev_unlock(hdev);
2559}
2560
2561static inline void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
2562{
2563 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
2564 struct hci_conn *conn;
2565
2566 BT_DBG("%s", hdev->name);
2567
2568 hci_dev_lock(hdev);
2569
2570 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2571 if (!conn)
2572 goto unlock;
2573
Johan Hedberg03b555e2011-01-04 15:40:05 +02002574 conn->remote_cap = ev->capability;
2575 conn->remote_oob = ev->oob_data;
2576 conn->remote_auth = ev->authentication;
2577
2578unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02002579 hci_dev_unlock(hdev);
2580}
2581
Johan Hedberga5c29682011-02-19 12:05:57 -03002582static inline void hci_user_confirm_request_evt(struct hci_dev *hdev,
2583 struct sk_buff *skb)
2584{
2585 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07002586 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07002587 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03002588
2589 BT_DBG("%s", hdev->name);
2590
2591 hci_dev_lock(hdev);
2592
Johan Hedberg7a828902011-04-28 11:28:53 -07002593 if (!test_bit(HCI_MGMT, &hdev->flags))
2594 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03002595
Johan Hedberg7a828902011-04-28 11:28:53 -07002596 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2597 if (!conn)
2598 goto unlock;
2599
2600 loc_mitm = (conn->auth_type & 0x01);
2601 rem_mitm = (conn->remote_auth & 0x01);
2602
2603 /* If we require MITM but the remote device can't provide that
2604 * (it has NoInputNoOutput) then reject the confirmation
2605 * request. The only exception is when we're dedicated bonding
2606 * initiators (connect_cfm_cb set) since then we always have the MITM
2607 * bit set. */
2608 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
2609 BT_DBG("Rejecting request: remote device can't provide MITM");
2610 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
2611 sizeof(ev->bdaddr), &ev->bdaddr);
2612 goto unlock;
2613 }
2614
2615 /* If no side requires MITM protection; auto-accept */
2616 if ((!loc_mitm || conn->remote_cap == 0x03) &&
2617 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07002618
2619 /* If we're not the initiators request authorization to
2620 * proceed from user space (mgmt_user_confirm with
2621 * confirm_hint set to 1). */
2622 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
2623 BT_DBG("Confirming auto-accept as acceptor");
2624 confirm_hint = 1;
2625 goto confirm;
2626 }
2627
Johan Hedberg9f616562011-04-28 11:28:54 -07002628 BT_DBG("Auto-accept of user confirmation with %ums delay",
2629 hdev->auto_accept_delay);
2630
2631 if (hdev->auto_accept_delay > 0) {
2632 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
2633 mod_timer(&conn->auto_accept_timer, jiffies + delay);
2634 goto unlock;
2635 }
2636
Johan Hedberg7a828902011-04-28 11:28:53 -07002637 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
2638 sizeof(ev->bdaddr), &ev->bdaddr);
2639 goto unlock;
2640 }
2641
Johan Hedberg55bc1a32011-04-28 11:28:56 -07002642confirm:
2643 mgmt_user_confirm_request(hdev->id, &ev->bdaddr, ev->passkey,
2644 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07002645
2646unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03002647 hci_dev_unlock(hdev);
2648}
2649
Marcel Holtmann04936842008-07-14 20:13:48 +02002650static inline void hci_simple_pair_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2651{
2652 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
2653 struct hci_conn *conn;
2654
2655 BT_DBG("%s", hdev->name);
2656
2657 hci_dev_lock(hdev);
2658
2659 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03002660 if (!conn)
2661 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02002662
Johan Hedberg2a611692011-02-19 12:06:00 -03002663 /* To avoid duplicate auth_failed events to user space we check
2664 * the HCI_CONN_AUTH_PEND flag which will be set if we
2665 * initiated the authentication. A traditional auth_complete
2666 * event gets always produced as initiator and is also mapped to
2667 * the mgmt_auth_failed event */
2668 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->pend) && ev->status != 0)
2669 mgmt_auth_failed(hdev->id, &conn->dst, ev->status);
2670
2671 hci_conn_put(conn);
2672
2673unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02002674 hci_dev_unlock(hdev);
2675}
2676
Marcel Holtmann41a96212008-07-14 20:13:48 +02002677static inline void hci_remote_host_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2678{
2679 struct hci_ev_remote_host_features *ev = (void *) skb->data;
2680 struct inquiry_entry *ie;
2681
2682 BT_DBG("%s", hdev->name);
2683
2684 hci_dev_lock(hdev);
2685
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002686 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2687 if (ie)
Marcel Holtmann41a96212008-07-14 20:13:48 +02002688 ie->data.ssp_mode = (ev->features[0] & 0x01);
2689
2690 hci_dev_unlock(hdev);
2691}
2692
Szymon Janc2763eda2011-03-22 13:12:22 +01002693static inline void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
2694 struct sk_buff *skb)
2695{
2696 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
2697 struct oob_data *data;
2698
2699 BT_DBG("%s", hdev->name);
2700
2701 hci_dev_lock(hdev);
2702
Szymon Jance1ba1f12011-04-06 13:01:59 +02002703 if (!test_bit(HCI_MGMT, &hdev->flags))
2704 goto unlock;
2705
Szymon Janc2763eda2011-03-22 13:12:22 +01002706 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
2707 if (data) {
2708 struct hci_cp_remote_oob_data_reply cp;
2709
2710 bacpy(&cp.bdaddr, &ev->bdaddr);
2711 memcpy(cp.hash, data->hash, sizeof(cp.hash));
2712 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
2713
2714 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
2715 &cp);
2716 } else {
2717 struct hci_cp_remote_oob_data_neg_reply cp;
2718
2719 bacpy(&cp.bdaddr, &ev->bdaddr);
2720 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
2721 &cp);
2722 }
2723
Szymon Jance1ba1f12011-04-06 13:01:59 +02002724unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01002725 hci_dev_unlock(hdev);
2726}
2727
Ville Tervofcd89c02011-02-10 22:38:47 -03002728static inline void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2729{
2730 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
2731 struct hci_conn *conn;
2732
2733 BT_DBG("%s status %d", hdev->name, ev->status);
2734
2735 hci_dev_lock(hdev);
2736
2737 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &ev->bdaddr);
Ville Tervob62f3282011-02-10 22:38:50 -03002738 if (!conn) {
Nick Pellybbcda3b2010-02-11 11:54:28 -08002739 conn = hci_conn_add(hdev, LE_LINK, 0, &ev->bdaddr);
Ville Tervob62f3282011-02-10 22:38:50 -03002740 if (!conn) {
2741 BT_ERR("No memory for new connection");
2742 hci_dev_unlock(hdev);
2743 return;
2744 }
Andre Guedes149c0972011-05-31 14:20:54 -03002745
2746 conn->dst_type = ev->bdaddr_type;
Ville Tervob62f3282011-02-10 22:38:50 -03002747 }
Ville Tervofcd89c02011-02-10 22:38:47 -03002748
2749 if (ev->status) {
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03002750 mgmt_connect_failed(hdev->id, &ev->bdaddr, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03002751 hci_proto_connect_cfm(conn, ev->status);
2752 conn->state = BT_CLOSED;
2753 hci_conn_del(conn);
2754 goto unlock;
2755 }
2756
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03002757 mgmt_connected(hdev->id, &ev->bdaddr);
2758
Vinicius Costa Gomes403d2c82011-06-09 18:50:50 -03002759 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -03002760 conn->handle = __le16_to_cpu(ev->handle);
2761 conn->state = BT_CONNECTED;
2762
2763 hci_conn_hold_device(conn);
2764 hci_conn_add_sysfs(conn);
2765
2766 hci_proto_connect_cfm(conn, ev->status);
2767
2768unlock:
2769 hci_dev_unlock(hdev);
2770}
2771
Andre Guedes5df108f2011-05-26 16:23:51 -03002772static inline void hci_le_adv_report_evt(struct hci_dev *hdev,
2773 struct sk_buff *skb)
2774{
2775 struct hci_ev_le_advertising_info *ev;
2776 u8 num_reports;
2777
2778 num_reports = skb->data[0];
2779 ev = (void *) &skb->data[1];
2780
2781 hci_dev_lock(hdev);
2782
2783 hci_add_adv_entry(hdev, ev);
2784
2785 while (--num_reports) {
2786 ev = (void *) (ev->data + ev->length + 1);
2787 hci_add_adv_entry(hdev, ev);
2788 }
2789
2790 hci_dev_unlock(hdev);
2791}
2792
Vinicius Costa Gomes735038c2011-06-09 18:50:47 -03002793static inline void hci_le_ltk_request_evt(struct hci_dev *hdev,
2794 struct sk_buff *skb)
2795{
2796 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
2797 struct hci_cp_le_ltk_reply cp;
2798 struct hci_conn *conn;
2799
2800 BT_DBG("%s handle %d", hdev->name, cpu_to_le16(ev->handle));
2801
2802 hci_dev_lock(hdev);
2803
2804 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2805
2806 memset(&cp, 0, sizeof(cp));
2807 cp.handle = cpu_to_le16(conn->handle);
2808 memcpy(cp.ltk, conn->ltk, sizeof(conn->ltk));
2809
2810 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
2811
2812 hci_dev_unlock(hdev);
2813}
2814
Ville Tervofcd89c02011-02-10 22:38:47 -03002815static inline void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
2816{
2817 struct hci_ev_le_meta *le_ev = (void *) skb->data;
2818
2819 skb_pull(skb, sizeof(*le_ev));
2820
2821 switch (le_ev->subevent) {
2822 case HCI_EV_LE_CONN_COMPLETE:
2823 hci_le_conn_complete_evt(hdev, skb);
2824 break;
2825
Andre Guedes5df108f2011-05-26 16:23:51 -03002826 case HCI_EV_LE_ADVERTISING_REPORT:
2827 hci_le_adv_report_evt(hdev, skb);
2828 break;
2829
Vinicius Costa Gomes735038c2011-06-09 18:50:47 -03002830 case HCI_EV_LE_LTK_REQ:
2831 hci_le_ltk_request_evt(hdev, skb);
2832 break;
2833
Ville Tervofcd89c02011-02-10 22:38:47 -03002834 default:
2835 break;
2836 }
2837}
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
2840{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002841 struct hci_event_hdr *hdr = (void *) skb->data;
2842 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
2844 skb_pull(skb, HCI_EVENT_HDR_SIZE);
2845
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002846 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 case HCI_EV_INQUIRY_COMPLETE:
2848 hci_inquiry_complete_evt(hdev, skb);
2849 break;
2850
2851 case HCI_EV_INQUIRY_RESULT:
2852 hci_inquiry_result_evt(hdev, skb);
2853 break;
2854
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002855 case HCI_EV_CONN_COMPLETE:
2856 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02002857 break;
2858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 case HCI_EV_CONN_REQUEST:
2860 hci_conn_request_evt(hdev, skb);
2861 break;
2862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 case HCI_EV_DISCONN_COMPLETE:
2864 hci_disconn_complete_evt(hdev, skb);
2865 break;
2866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 case HCI_EV_AUTH_COMPLETE:
2868 hci_auth_complete_evt(hdev, skb);
2869 break;
2870
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002871 case HCI_EV_REMOTE_NAME:
2872 hci_remote_name_evt(hdev, skb);
2873 break;
2874
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 case HCI_EV_ENCRYPT_CHANGE:
2876 hci_encrypt_change_evt(hdev, skb);
2877 break;
2878
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002879 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
2880 hci_change_link_key_complete_evt(hdev, skb);
2881 break;
2882
2883 case HCI_EV_REMOTE_FEATURES:
2884 hci_remote_features_evt(hdev, skb);
2885 break;
2886
2887 case HCI_EV_REMOTE_VERSION:
2888 hci_remote_version_evt(hdev, skb);
2889 break;
2890
2891 case HCI_EV_QOS_SETUP_COMPLETE:
2892 hci_qos_setup_complete_evt(hdev, skb);
2893 break;
2894
2895 case HCI_EV_CMD_COMPLETE:
2896 hci_cmd_complete_evt(hdev, skb);
2897 break;
2898
2899 case HCI_EV_CMD_STATUS:
2900 hci_cmd_status_evt(hdev, skb);
2901 break;
2902
2903 case HCI_EV_ROLE_CHANGE:
2904 hci_role_change_evt(hdev, skb);
2905 break;
2906
2907 case HCI_EV_NUM_COMP_PKTS:
2908 hci_num_comp_pkts_evt(hdev, skb);
2909 break;
2910
2911 case HCI_EV_MODE_CHANGE:
2912 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 break;
2914
2915 case HCI_EV_PIN_CODE_REQ:
2916 hci_pin_code_request_evt(hdev, skb);
2917 break;
2918
2919 case HCI_EV_LINK_KEY_REQ:
2920 hci_link_key_request_evt(hdev, skb);
2921 break;
2922
2923 case HCI_EV_LINK_KEY_NOTIFY:
2924 hci_link_key_notify_evt(hdev, skb);
2925 break;
2926
2927 case HCI_EV_CLOCK_OFFSET:
2928 hci_clock_offset_evt(hdev, skb);
2929 break;
2930
Marcel Holtmanna8746412008-07-14 20:13:46 +02002931 case HCI_EV_PKT_TYPE_CHANGE:
2932 hci_pkt_type_change_evt(hdev, skb);
2933 break;
2934
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002935 case HCI_EV_PSCAN_REP_MODE:
2936 hci_pscan_rep_mode_evt(hdev, skb);
2937 break;
2938
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002939 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
2940 hci_inquiry_result_with_rssi_evt(hdev, skb);
2941 break;
2942
2943 case HCI_EV_REMOTE_EXT_FEATURES:
2944 hci_remote_ext_features_evt(hdev, skb);
2945 break;
2946
2947 case HCI_EV_SYNC_CONN_COMPLETE:
2948 hci_sync_conn_complete_evt(hdev, skb);
2949 break;
2950
2951 case HCI_EV_SYNC_CONN_CHANGED:
2952 hci_sync_conn_changed_evt(hdev, skb);
2953 break;
2954
Marcel Holtmann04837f62006-07-03 10:02:33 +02002955 case HCI_EV_SNIFF_SUBRATE:
2956 hci_sniff_subrate_evt(hdev, skb);
2957 break;
2958
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002959 case HCI_EV_EXTENDED_INQUIRY_RESULT:
2960 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 break;
2962
Marcel Holtmann04936842008-07-14 20:13:48 +02002963 case HCI_EV_IO_CAPA_REQUEST:
2964 hci_io_capa_request_evt(hdev, skb);
2965 break;
2966
Johan Hedberg03b555e2011-01-04 15:40:05 +02002967 case HCI_EV_IO_CAPA_REPLY:
2968 hci_io_capa_reply_evt(hdev, skb);
2969 break;
2970
Johan Hedberga5c29682011-02-19 12:05:57 -03002971 case HCI_EV_USER_CONFIRM_REQUEST:
2972 hci_user_confirm_request_evt(hdev, skb);
2973 break;
2974
Marcel Holtmann04936842008-07-14 20:13:48 +02002975 case HCI_EV_SIMPLE_PAIR_COMPLETE:
2976 hci_simple_pair_complete_evt(hdev, skb);
2977 break;
2978
Marcel Holtmann41a96212008-07-14 20:13:48 +02002979 case HCI_EV_REMOTE_HOST_FEATURES:
2980 hci_remote_host_features_evt(hdev, skb);
2981 break;
2982
Ville Tervofcd89c02011-02-10 22:38:47 -03002983 case HCI_EV_LE_META:
2984 hci_le_meta_evt(hdev, skb);
2985 break;
2986
Szymon Janc2763eda2011-03-22 13:12:22 +01002987 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
2988 hci_remote_oob_data_request_evt(hdev, skb);
2989 break;
2990
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002991 default:
2992 BT_DBG("%s event 0x%x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 break;
2994 }
2995
2996 kfree_skb(skb);
2997 hdev->stat.evt_rx++;
2998}
2999
3000/* Generate internal stack event */
3001void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data)
3002{
3003 struct hci_event_hdr *hdr;
3004 struct hci_ev_stack_internal *ev;
3005 struct sk_buff *skb;
3006
3007 skb = bt_skb_alloc(HCI_EVENT_HDR_SIZE + sizeof(*ev) + dlen, GFP_ATOMIC);
3008 if (!skb)
3009 return;
3010
3011 hdr = (void *) skb_put(skb, HCI_EVENT_HDR_SIZE);
3012 hdr->evt = HCI_EV_STACK_INTERNAL;
3013 hdr->plen = sizeof(*ev) + dlen;
3014
3015 ev = (void *) skb_put(skb, sizeof(*ev) + dlen);
3016 ev->type = type;
3017 memcpy(ev->data, data, dlen);
3018
Marcel Holtmann576c7d82005-08-06 12:36:54 +02003019 bt_cb(skb)->incoming = 1;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07003020 __net_timestamp(skb);
Marcel Holtmann576c7d82005-08-06 12:36:54 +02003021
Marcel Holtmann0d48d932005-08-09 20:30:28 -07003022 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 skb->dev = (void *) hdev;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02003024 hci_send_to_sock(hdev, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 kfree_skb(skb);
3026}