blob: afee4ac1008b1111ab792f9803a90d3d87ec842e [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
480 /* Events for 1.2 and newer controllers */
481 if (hdev->lmp_ver > 1) {
482 events[4] |= 0x01; /* Flow Specification Complete */
483 events[4] |= 0x02; /* Inquiry Result with RSSI */
484 events[4] |= 0x04; /* Read Remote Extended Features Complete */
485 events[5] |= 0x08; /* Synchronous Connection Complete */
486 events[5] |= 0x10; /* Synchronous Connection Changed */
487 }
488
489 if (hdev->features[3] & LMP_RSSI_INQ)
490 events[4] |= 0x04; /* Inquiry Result with RSSI */
491
492 if (hdev->features[5] & LMP_SNIFF_SUBR)
493 events[5] |= 0x20; /* Sniff Subrating */
494
495 if (hdev->features[5] & LMP_PAUSE_ENC)
496 events[5] |= 0x80; /* Encryption Key Refresh Complete */
497
498 if (hdev->features[6] & LMP_EXT_INQ)
499 events[5] |= 0x40; /* Extended Inquiry Result */
500
501 if (hdev->features[6] & LMP_NO_FLUSH)
502 events[7] |= 0x01; /* Enhanced Flush Complete */
503
504 if (hdev->features[7] & LMP_LSTO)
505 events[6] |= 0x80; /* Link Supervision Timeout Changed */
506
507 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
508 events[6] |= 0x01; /* IO Capability Request */
509 events[6] |= 0x02; /* IO Capability Response */
510 events[6] |= 0x04; /* User Confirmation Request */
511 events[6] |= 0x08; /* User Passkey Request */
512 events[6] |= 0x10; /* Remote OOB Data Request */
513 events[6] |= 0x20; /* Simple Pairing Complete */
514 events[7] |= 0x04; /* User Passkey Notification */
515 events[7] |= 0x08; /* Keypress Notification */
516 events[7] |= 0x10; /* Remote Host Supported
517 * Features Notification */
518 }
519
520 if (hdev->features[4] & LMP_LE)
521 events[7] |= 0x20; /* LE Meta-Event */
522
523 hci_send_cmd(hdev, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
524}
525
526static void hci_setup(struct hci_dev *hdev)
527{
528 hci_setup_event_mask(hdev);
529
530 if (hdev->lmp_ver > 1)
531 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
532
533 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
534 u8 mode = 0x01;
535 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
536 }
537
538 if (hdev->features[3] & LMP_RSSI_INQ)
539 hci_setup_inquiry_mode(hdev);
540
541 if (hdev->features[7] & LMP_INQ_TX_PWR)
542 hci_send_cmd(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
543}
544
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200545static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
546{
547 struct hci_rp_read_local_version *rp = (void *) skb->data;
548
549 BT_DBG("%s status 0x%x", hdev->name, rp->status);
550
551 if (rp->status)
552 return;
553
554 hdev->hci_ver = rp->hci_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200555 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200556 hdev->lmp_ver = rp->lmp_ver;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200557 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200558 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200559
560 BT_DBG("%s manufacturer %d hci ver %d:%d", hdev->name,
561 hdev->manufacturer,
562 hdev->hci_ver, hdev->hci_rev);
Johan Hedbergd5859e22011-01-25 01:19:58 +0200563
564 if (test_bit(HCI_INIT, &hdev->flags))
565 hci_setup(hdev);
566}
567
568static void hci_setup_link_policy(struct hci_dev *hdev)
569{
570 u16 link_policy = 0;
571
572 if (hdev->features[0] & LMP_RSWITCH)
573 link_policy |= HCI_LP_RSWITCH;
574 if (hdev->features[0] & LMP_HOLD)
575 link_policy |= HCI_LP_HOLD;
576 if (hdev->features[0] & LMP_SNIFF)
577 link_policy |= HCI_LP_SNIFF;
578 if (hdev->features[1] & LMP_PARK)
579 link_policy |= HCI_LP_PARK;
580
581 link_policy = cpu_to_le16(link_policy);
582 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY,
583 sizeof(link_policy), &link_policy);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200584}
585
586static void hci_cc_read_local_commands(struct hci_dev *hdev, struct sk_buff *skb)
587{
588 struct hci_rp_read_local_commands *rp = (void *) skb->data;
589
590 BT_DBG("%s status 0x%x", hdev->name, rp->status);
591
592 if (rp->status)
Johan Hedbergd5859e22011-01-25 01:19:58 +0200593 goto done;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200594
595 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
Johan Hedbergd5859e22011-01-25 01:19:58 +0200596
597 if (test_bit(HCI_INIT, &hdev->flags) && (hdev->commands[5] & 0x10))
598 hci_setup_link_policy(hdev);
599
600done:
601 hci_req_complete(hdev, HCI_OP_READ_LOCAL_COMMANDS, rp->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200602}
603
604static void hci_cc_read_local_features(struct hci_dev *hdev, struct sk_buff *skb)
605{
606 struct hci_rp_read_local_features *rp = (void *) skb->data;
607
608 BT_DBG("%s status 0x%x", hdev->name, rp->status);
609
610 if (rp->status)
611 return;
612
613 memcpy(hdev->features, rp->features, 8);
614
615 /* Adjust default settings according to features
616 * supported by device. */
617
618 if (hdev->features[0] & LMP_3SLOT)
619 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
620
621 if (hdev->features[0] & LMP_5SLOT)
622 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
623
624 if (hdev->features[1] & LMP_HV2) {
625 hdev->pkt_type |= (HCI_HV2);
626 hdev->esco_type |= (ESCO_HV2);
627 }
628
629 if (hdev->features[1] & LMP_HV3) {
630 hdev->pkt_type |= (HCI_HV3);
631 hdev->esco_type |= (ESCO_HV3);
632 }
633
634 if (hdev->features[3] & LMP_ESCO)
635 hdev->esco_type |= (ESCO_EV3);
636
637 if (hdev->features[4] & LMP_EV4)
638 hdev->esco_type |= (ESCO_EV4);
639
640 if (hdev->features[4] & LMP_EV5)
641 hdev->esco_type |= (ESCO_EV5);
642
Marcel Holtmannefc76882009-02-06 09:13:37 +0100643 if (hdev->features[5] & LMP_EDR_ESCO_2M)
644 hdev->esco_type |= (ESCO_2EV3);
645
646 if (hdev->features[5] & LMP_EDR_ESCO_3M)
647 hdev->esco_type |= (ESCO_3EV3);
648
649 if (hdev->features[5] & LMP_EDR_3S_ESCO)
650 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
651
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200652 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name,
653 hdev->features[0], hdev->features[1],
654 hdev->features[2], hdev->features[3],
655 hdev->features[4], hdev->features[5],
656 hdev->features[6], hdev->features[7]);
657}
658
659static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
660{
661 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
662
663 BT_DBG("%s status 0x%x", hdev->name, rp->status);
664
665 if (rp->status)
666 return;
667
668 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
669 hdev->sco_mtu = rp->sco_mtu;
670 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
671 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
672
673 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
674 hdev->sco_mtu = 64;
675 hdev->sco_pkts = 8;
676 }
677
678 hdev->acl_cnt = hdev->acl_pkts;
679 hdev->sco_cnt = hdev->sco_pkts;
680
681 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name,
682 hdev->acl_mtu, hdev->acl_pkts,
683 hdev->sco_mtu, hdev->sco_pkts);
684}
685
686static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
687{
688 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
689
690 BT_DBG("%s status 0x%x", hdev->name, rp->status);
691
692 if (!rp->status)
693 bacpy(&hdev->bdaddr, &rp->bdaddr);
694
Johan Hedberg23bb5762010-12-21 23:01:27 +0200695 hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
696}
697
698static void hci_cc_write_ca_timeout(struct hci_dev *hdev, struct sk_buff *skb)
699{
700 __u8 status = *((__u8 *) skb->data);
701
702 BT_DBG("%s status 0x%x", hdev->name, status);
703
704 hci_req_complete(hdev, HCI_OP_WRITE_CA_TIMEOUT, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200705}
706
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200707static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
708 struct sk_buff *skb)
709{
710 __u8 status = *((__u8 *) skb->data);
711
712 BT_DBG("%s status 0x%x", hdev->name, status);
713
714 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
715}
716
Johan Hedbergd5859e22011-01-25 01:19:58 +0200717static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
718{
719 __u8 status = *((__u8 *) skb->data);
720
721 BT_DBG("%s status 0x%x", hdev->name, status);
722
723 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
724}
725
726static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
727 struct sk_buff *skb)
728{
729 __u8 status = *((__u8 *) skb->data);
730
731 BT_DBG("%s status 0x%x", hdev->name, status);
732
733 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
734}
735
736static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
737 struct sk_buff *skb)
738{
739 __u8 status = *((__u8 *) skb->data);
740
741 BT_DBG("%s status 0x%x", hdev->name, status);
742
743 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, status);
744}
745
746static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
747{
748 __u8 status = *((__u8 *) skb->data);
749
750 BT_DBG("%s status 0x%x", hdev->name, status);
751
752 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
753}
754
Johan Hedberg980e1a52011-01-22 06:10:07 +0200755static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
756{
757 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
758 struct hci_cp_pin_code_reply *cp;
759 struct hci_conn *conn;
760
761 BT_DBG("%s status 0x%x", hdev->name, rp->status);
762
763 if (test_bit(HCI_MGMT, &hdev->flags))
764 mgmt_pin_code_reply_complete(hdev->id, &rp->bdaddr, rp->status);
765
766 if (rp->status != 0)
767 return;
768
769 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
770 if (!cp)
771 return;
772
773 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
774 if (conn)
775 conn->pin_length = cp->pin_len;
776}
777
778static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
779{
780 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
781
782 BT_DBG("%s status 0x%x", hdev->name, rp->status);
783
784 if (test_bit(HCI_MGMT, &hdev->flags))
785 mgmt_pin_code_neg_reply_complete(hdev->id, &rp->bdaddr,
786 rp->status);
787}
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300788static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
789 struct sk_buff *skb)
790{
791 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
792
793 BT_DBG("%s status 0x%x", hdev->name, rp->status);
794
795 if (rp->status)
796 return;
797
798 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
799 hdev->le_pkts = rp->le_max_pkt;
800
801 hdev->le_cnt = hdev->le_pkts;
802
803 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
804
805 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
806}
Johan Hedberg980e1a52011-01-22 06:10:07 +0200807
Johan Hedberga5c29682011-02-19 12:05:57 -0300808static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
809{
810 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
811
812 BT_DBG("%s status 0x%x", hdev->name, rp->status);
813
814 if (test_bit(HCI_MGMT, &hdev->flags))
815 mgmt_user_confirm_reply_complete(hdev->id, &rp->bdaddr,
816 rp->status);
817}
818
819static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
820 struct sk_buff *skb)
821{
822 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
823
824 BT_DBG("%s status 0x%x", hdev->name, rp->status);
825
826 if (test_bit(HCI_MGMT, &hdev->flags))
827 mgmt_user_confirm_neg_reply_complete(hdev->id, &rp->bdaddr,
828 rp->status);
829}
830
Szymon Jancc35938b2011-03-22 13:12:21 +0100831static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
832 struct sk_buff *skb)
833{
834 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
835
836 BT_DBG("%s status 0x%x", hdev->name, rp->status);
837
838 mgmt_read_local_oob_data_reply_complete(hdev->id, rp->hash,
839 rp->randomizer, rp->status);
840}
841
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300842static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
843 struct sk_buff *skb)
844{
845 struct hci_cp_le_set_scan_enable *cp;
846 __u8 status = *((__u8 *) skb->data);
847
848 BT_DBG("%s status 0x%x", hdev->name, status);
849
850 if (status)
851 return;
852
853 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
854 if (!cp)
855 return;
856
857 hci_dev_lock(hdev);
858
Andre Guedes35815082011-05-26 16:23:53 -0300859 if (cp->enable == 0x01) {
860 del_timer(&hdev->adv_timer);
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300861 hci_adv_entries_clear(hdev);
Andre Guedes35815082011-05-26 16:23:53 -0300862 } else if (cp->enable == 0x00) {
863 mod_timer(&hdev->adv_timer, jiffies + ADV_CLEAR_TIMEOUT);
864 }
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300865
866 hci_dev_unlock(hdev);
867}
868
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200869static inline void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
870{
871 BT_DBG("%s status 0x%x", hdev->name, status);
872
873 if (status) {
Johan Hedberg23bb5762010-12-21 23:01:27 +0200874 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200875 hci_conn_check_pending(hdev);
Johan Hedberg314b2382011-04-27 10:29:57 -0400876 return;
877 }
878
879 if (test_bit(HCI_MGMT, &hdev->flags) &&
880 !test_and_set_bit(HCI_INQUIRY,
881 &hdev->flags))
882 mgmt_discovering(hdev->id, 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200883}
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885static inline void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
886{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200887 struct hci_cp_create_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200890 BT_DBG("%s status 0x%x", hdev->name, status);
891
892 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!cp)
894 return;
895
896 hci_dev_lock(hdev);
897
898 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
899
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200900 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->bdaddr), conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 if (status) {
903 if (conn && conn->state == BT_CONNECT) {
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200904 if (status != 0x0c || conn->attempt > 2) {
905 conn->state = BT_CLOSED;
906 hci_proto_connect_cfm(conn, status);
907 hci_conn_del(conn);
908 } else
909 conn->state = BT_CONNECT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911 } else {
912 if (!conn) {
913 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
914 if (conn) {
915 conn->out = 1;
916 conn->link_mode |= HCI_LM_MASTER;
917 } else
Gustavo F. Padovan893ef972010-07-18 15:13:37 -0300918 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
920 }
921
922 hci_dev_unlock(hdev);
923}
924
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200925static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200927 struct hci_cp_add_sco *cp;
928 struct hci_conn *acl, *sco;
929 __u16 handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200931 BT_DBG("%s status 0x%x", hdev->name, status);
932
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200933 if (!status)
934 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200936 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
937 if (!cp)
938 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200940 handle = __le16_to_cpu(cp->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200942 BT_DBG("%s handle %d", hdev->name, handle);
Marcel Holtmann6bd57412006-11-18 22:14:22 +0100943
944 hci_dev_lock(hdev);
945
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200946 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200947 if (acl) {
948 sco = acl->link;
949 if (sco) {
950 sco->state = BT_CLOSED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200951
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200952 hci_proto_connect_cfm(sco, status);
953 hci_conn_del(sco);
954 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200955 }
Marcel Holtmann6bd57412006-11-18 22:14:22 +0100956
957 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
Marcel Holtmannf8558552008-07-14 20:13:49 +0200960static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
961{
962 struct hci_cp_auth_requested *cp;
963 struct hci_conn *conn;
964
965 BT_DBG("%s status 0x%x", hdev->name, status);
966
967 if (!status)
968 return;
969
970 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
971 if (!cp)
972 return;
973
974 hci_dev_lock(hdev);
975
976 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
977 if (conn) {
978 if (conn->state == BT_CONFIG) {
979 hci_proto_connect_cfm(conn, status);
980 hci_conn_put(conn);
981 }
982 }
983
984 hci_dev_unlock(hdev);
985}
986
987static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
988{
989 struct hci_cp_set_conn_encrypt *cp;
990 struct hci_conn *conn;
991
992 BT_DBG("%s status 0x%x", hdev->name, status);
993
994 if (!status)
995 return;
996
997 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
998 if (!cp)
999 return;
1000
1001 hci_dev_lock(hdev);
1002
1003 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1004 if (conn) {
1005 if (conn->state == BT_CONFIG) {
1006 hci_proto_connect_cfm(conn, status);
1007 hci_conn_put(conn);
1008 }
1009 }
1010
1011 hci_dev_unlock(hdev);
1012}
1013
Johan Hedberg127178d2010-11-18 22:22:29 +02001014static int hci_outgoing_auth_needed(struct hci_dev *hdev,
Szymon Janc138d22e2011-02-17 16:44:23 +01001015 struct hci_conn *conn)
Johan Hedberg392599b2010-11-18 22:22:28 +02001016{
Johan Hedberg392599b2010-11-18 22:22:28 +02001017 if (conn->state != BT_CONFIG || !conn->out)
1018 return 0;
1019
Johan Hedberg765c2a92011-01-19 12:06:52 +05301020 if (conn->pending_sec_level == BT_SECURITY_SDP)
Johan Hedberg392599b2010-11-18 22:22:28 +02001021 return 0;
1022
1023 /* Only request authentication for SSP connections or non-SSP
1024 * devices with sec_level HIGH */
1025 if (!(hdev->ssp_mode > 0 && conn->ssp_mode > 0) &&
Johan Hedberg765c2a92011-01-19 12:06:52 +05301026 conn->pending_sec_level != BT_SECURITY_HIGH)
Johan Hedberg392599b2010-11-18 22:22:28 +02001027 return 0;
1028
Johan Hedberg392599b2010-11-18 22:22:28 +02001029 return 1;
1030}
1031
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001032static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1033{
Johan Hedberg127178d2010-11-18 22:22:29 +02001034 struct hci_cp_remote_name_req *cp;
1035 struct hci_conn *conn;
1036
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001037 BT_DBG("%s status 0x%x", hdev->name, status);
Johan Hedberg127178d2010-11-18 22:22:29 +02001038
1039 /* If successful wait for the name req complete event before
1040 * checking for the need to do authentication */
1041 if (!status)
1042 return;
1043
1044 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1045 if (!cp)
1046 return;
1047
1048 hci_dev_lock(hdev);
1049
1050 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
Johan Hedberg79c6c702011-04-28 11:28:55 -07001051 if (!conn)
1052 goto unlock;
1053
1054 if (!hci_outgoing_auth_needed(hdev, conn))
1055 goto unlock;
1056
1057 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001058 struct hci_cp_auth_requested cp;
1059 cp.handle = __cpu_to_le16(conn->handle);
1060 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1061 }
1062
Johan Hedberg79c6c702011-04-28 11:28:55 -07001063unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001064 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001065}
1066
Marcel Holtmann769be972008-07-14 20:13:49 +02001067static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1068{
1069 struct hci_cp_read_remote_features *cp;
1070 struct hci_conn *conn;
1071
1072 BT_DBG("%s status 0x%x", hdev->name, status);
1073
1074 if (!status)
1075 return;
1076
1077 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1078 if (!cp)
1079 return;
1080
1081 hci_dev_lock(hdev);
1082
1083 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1084 if (conn) {
1085 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001086 hci_proto_connect_cfm(conn, status);
1087 hci_conn_put(conn);
1088 }
1089 }
1090
1091 hci_dev_unlock(hdev);
1092}
1093
1094static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1095{
1096 struct hci_cp_read_remote_ext_features *cp;
1097 struct hci_conn *conn;
1098
1099 BT_DBG("%s status 0x%x", hdev->name, status);
1100
1101 if (!status)
1102 return;
1103
1104 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1105 if (!cp)
1106 return;
1107
1108 hci_dev_lock(hdev);
1109
1110 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1111 if (conn) {
1112 if (conn->state == BT_CONFIG) {
Marcel Holtmann769be972008-07-14 20:13:49 +02001113 hci_proto_connect_cfm(conn, status);
1114 hci_conn_put(conn);
1115 }
1116 }
1117
1118 hci_dev_unlock(hdev);
1119}
1120
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001121static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1122{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001123 struct hci_cp_setup_sync_conn *cp;
1124 struct hci_conn *acl, *sco;
1125 __u16 handle;
1126
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001127 BT_DBG("%s status 0x%x", hdev->name, status);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001128
1129 if (!status)
1130 return;
1131
1132 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1133 if (!cp)
1134 return;
1135
1136 handle = __le16_to_cpu(cp->handle);
1137
1138 BT_DBG("%s handle %d", hdev->name, handle);
1139
1140 hci_dev_lock(hdev);
1141
1142 acl = hci_conn_hash_lookup_handle(hdev, handle);
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001143 if (acl) {
1144 sco = acl->link;
1145 if (sco) {
1146 sco->state = BT_CLOSED;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001147
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001148 hci_proto_connect_cfm(sco, status);
1149 hci_conn_del(sco);
1150 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001151 }
1152
1153 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001154}
1155
1156static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1157{
1158 struct hci_cp_sniff_mode *cp;
1159 struct hci_conn *conn;
1160
1161 BT_DBG("%s status 0x%x", hdev->name, status);
1162
1163 if (!status)
1164 return;
1165
1166 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1167 if (!cp)
1168 return;
1169
1170 hci_dev_lock(hdev);
1171
1172 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001173 if (conn) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001174 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend);
1175
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001176 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->pend))
1177 hci_sco_setup(conn, status);
1178 }
1179
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001180 hci_dev_unlock(hdev);
1181}
1182
1183static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1184{
1185 struct hci_cp_exit_sniff_mode *cp;
1186 struct hci_conn *conn;
1187
1188 BT_DBG("%s status 0x%x", hdev->name, status);
1189
1190 if (!status)
1191 return;
1192
1193 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1194 if (!cp)
1195 return;
1196
1197 hci_dev_lock(hdev);
1198
1199 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001200 if (conn) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001201 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend);
1202
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001203 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->pend))
1204 hci_sco_setup(conn, status);
1205 }
1206
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001207 hci_dev_unlock(hdev);
1208}
1209
Ville Tervofcd89c02011-02-10 22:38:47 -03001210static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1211{
1212 struct hci_cp_le_create_conn *cp;
1213 struct hci_conn *conn;
1214
1215 BT_DBG("%s status 0x%x", hdev->name, status);
1216
1217 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_CREATE_CONN);
1218 if (!cp)
1219 return;
1220
1221 hci_dev_lock(hdev);
1222
1223 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->peer_addr);
1224
1225 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->peer_addr),
1226 conn);
1227
1228 if (status) {
1229 if (conn && conn->state == BT_CONNECT) {
1230 conn->state = BT_CLOSED;
1231 hci_proto_connect_cfm(conn, status);
1232 hci_conn_del(conn);
1233 }
1234 } else {
1235 if (!conn) {
1236 conn = hci_conn_add(hdev, LE_LINK, &cp->peer_addr);
Andre Guedes29b79882011-05-31 14:20:54 -03001237 if (conn) {
1238 conn->dst_type = cp->peer_addr_type;
Ville Tervofcd89c02011-02-10 22:38:47 -03001239 conn->out = 1;
Andre Guedes29b79882011-05-31 14:20:54 -03001240 } else {
Ville Tervofcd89c02011-02-10 22:38:47 -03001241 BT_ERR("No memory for new connection");
Andre Guedes29b79882011-05-31 14:20:54 -03001242 }
Ville Tervofcd89c02011-02-10 22:38:47 -03001243 }
1244 }
1245
1246 hci_dev_unlock(hdev);
1247}
1248
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001249static inline void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1250{
1251 __u8 status = *((__u8 *) skb->data);
1252
1253 BT_DBG("%s status %d", hdev->name, status);
1254
Johan Hedberg314b2382011-04-27 10:29:57 -04001255 if (test_bit(HCI_MGMT, &hdev->flags) &&
1256 test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1257 mgmt_discovering(hdev->id, 0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001258
Johan Hedberg23bb5762010-12-21 23:01:27 +02001259 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001260
1261 hci_conn_check_pending(hdev);
1262}
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264static inline void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
1265{
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001266 struct inquiry_data data;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001267 struct inquiry_info *info = (void *) (skb->data + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 int num_rsp = *((__u8 *) skb->data);
1269
1270 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1271
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001272 if (!num_rsp)
1273 return;
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001276
Johan Hedberg314b2382011-04-27 10:29:57 -04001277 if (!test_and_set_bit(HCI_INQUIRY, &hdev->flags)) {
1278
1279 if (test_bit(HCI_MGMT, &hdev->flags))
1280 mgmt_discovering(hdev->id, 1);
1281 }
1282
Johan Hedberge17acd42011-03-30 23:57:16 +03001283 for (; num_rsp; num_rsp--, info++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 bacpy(&data.bdaddr, &info->bdaddr);
1285 data.pscan_rep_mode = info->pscan_rep_mode;
1286 data.pscan_period_mode = info->pscan_period_mode;
1287 data.pscan_mode = info->pscan_mode;
1288 memcpy(data.dev_class, info->dev_class, 3);
1289 data.clock_offset = info->clock_offset;
1290 data.rssi = 0x00;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001291 data.ssp_mode = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 hci_inquiry_cache_update(hdev, &data);
Johan Hedberge17acd42011-03-30 23:57:16 +03001293 mgmt_device_found(hdev->id, &info->bdaddr, info->dev_class, 0,
1294 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 hci_dev_unlock(hdev);
1298}
1299
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001300static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001302 struct hci_ev_conn_complete *ev = (void *) skb->data;
1303 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001305 BT_DBG("%s", hdev->name);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 hci_dev_lock(hdev);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001308
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001309 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann94992372009-04-19 19:30:03 +02001310 if (!conn) {
1311 if (ev->link_type != SCO_LINK)
1312 goto unlock;
1313
1314 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1315 if (!conn)
1316 goto unlock;
1317
1318 conn->type = SCO_LINK;
1319 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001320
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001321 if (!ev->status) {
1322 conn->handle = __le16_to_cpu(ev->handle);
Marcel Holtmann769be972008-07-14 20:13:49 +02001323
1324 if (conn->type == ACL_LINK) {
1325 conn->state = BT_CONFIG;
1326 hci_conn_hold(conn);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001327 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedbergf7520542011-01-20 12:34:39 +02001328 mgmt_connected(hdev->id, &ev->bdaddr);
Marcel Holtmann769be972008-07-14 20:13:49 +02001329 } else
1330 conn->state = BT_CONNECTED;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001331
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07001332 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001333 hci_conn_add_sysfs(conn);
1334
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001335 if (test_bit(HCI_AUTH, &hdev->flags))
1336 conn->link_mode |= HCI_LM_AUTH;
1337
1338 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1339 conn->link_mode |= HCI_LM_ENCRYPT;
1340
1341 /* Get remote features */
1342 if (conn->type == ACL_LINK) {
1343 struct hci_cp_read_remote_features cp;
1344 cp.handle = ev->handle;
Marcel Holtmann769be972008-07-14 20:13:49 +02001345 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
1346 sizeof(cp), &cp);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001347 }
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001348
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001349 /* Set packet type for incoming connection */
Marcel Holtmanna8746412008-07-14 20:13:46 +02001350 if (!conn->out && hdev->hci_ver < 3) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001351 struct hci_cp_change_conn_ptype cp;
1352 cp.handle = ev->handle;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001353 cp.pkt_type = cpu_to_le16(conn->pkt_type);
1354 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE,
1355 sizeof(cp), &cp);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001356 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02001357 } else {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001358 conn->state = BT_CLOSED;
Johan Hedberg17d5c042011-01-22 06:09:08 +02001359 if (conn->type == ACL_LINK)
1360 mgmt_connect_failed(hdev->id, &ev->bdaddr, ev->status);
1361 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001362
Marcel Holtmanne73439d2010-07-26 10:06:00 -04001363 if (conn->type == ACL_LINK)
1364 hci_sco_setup(conn, ev->status);
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001365
Marcel Holtmann769be972008-07-14 20:13:49 +02001366 if (ev->status) {
1367 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001368 hci_conn_del(conn);
Marcel Holtmannc89b6e62009-01-15 21:57:03 +01001369 } else if (ev->link_type != ACL_LINK)
1370 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001371
1372unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001374
1375 hci_conn_check_pending(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378static inline void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
1379{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001380 struct hci_ev_conn_request *ev = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 int mask = hdev->link_mode;
1382
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001383 BT_DBG("%s bdaddr %s type 0x%x", hdev->name,
1384 batostr(&ev->bdaddr), ev->link_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1387
Szymon Janc138d22e2011-02-17 16:44:23 +01001388 if ((mask & HCI_LM_ACCEPT) &&
1389 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /* Connection accepted */
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001391 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 hci_dev_lock(hdev);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001395
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001396 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1397 if (ie)
Marcel Holtmannc7bdd502008-07-14 20:13:47 +02001398 memcpy(ie->data.dev_class, ev->dev_class, 3);
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
1401 if (!conn) {
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02001402 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1403 if (!conn) {
Gustavo F. Padovan893ef972010-07-18 15:13:37 -03001404 BT_ERR("No memory for new connection");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 hci_dev_unlock(hdev);
1406 return;
1407 }
1408 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 memcpy(conn->dev_class, ev->dev_class, 3);
1411 conn->state = BT_CONNECT;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 hci_dev_unlock(hdev);
1414
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001415 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1416 struct hci_cp_accept_conn_req cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001418 bacpy(&cp.bdaddr, &ev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001420 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1421 cp.role = 0x00; /* Become master */
1422 else
1423 cp.role = 0x01; /* Remain slave */
1424
1425 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ,
1426 sizeof(cp), &cp);
1427 } else {
1428 struct hci_cp_accept_sync_conn_req cp;
1429
1430 bacpy(&cp.bdaddr, &ev->bdaddr);
Marcel Holtmanna8746412008-07-14 20:13:46 +02001431 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02001432
1433 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
1434 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
1435 cp.max_latency = cpu_to_le16(0xffff);
1436 cp.content_format = cpu_to_le16(hdev->voice_setting);
1437 cp.retrans_effort = 0xff;
1438
1439 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
1440 sizeof(cp), &cp);
1441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 } else {
1443 /* Connection rejected */
1444 struct hci_cp_reject_conn_req cp;
1445
1446 bacpy(&cp.bdaddr, &ev->bdaddr);
1447 cp.reason = 0x0f;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001448 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450}
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452static inline void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1453{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001454 struct hci_ev_disconn_complete *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02001455 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 BT_DBG("%s status %d", hdev->name, ev->status);
1458
Johan Hedberg8962ee72011-01-20 12:40:27 +02001459 if (ev->status) {
1460 mgmt_disconnect_failed(hdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02001462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 hci_dev_lock(hdev);
1465
Marcel Holtmann04837f62006-07-03 10:02:33 +02001466 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergf7520542011-01-20 12:34:39 +02001467 if (!conn)
1468 goto unlock;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02001469
Johan Hedbergf7520542011-01-20 12:34:39 +02001470 conn->state = BT_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03001472 if (conn->type == ACL_LINK || conn->type == LE_LINK)
Johan Hedbergf7520542011-01-20 12:34:39 +02001473 mgmt_disconnected(hdev->id, &conn->dst);
1474
1475 hci_proto_disconn_cfm(conn, ev->reason);
1476 hci_conn_del(conn);
1477
1478unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 hci_dev_unlock(hdev);
1480}
1481
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001482static inline void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1483{
1484 struct hci_ev_auth_complete *ev = (void *) skb->data;
1485 struct hci_conn *conn;
1486
1487 BT_DBG("%s status %d", hdev->name, ev->status);
1488
1489 hci_dev_lock(hdev);
1490
1491 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001492 if (!conn)
1493 goto unlock;
1494
1495 if (!ev->status) {
1496 if (!(conn->ssp_mode > 0 && hdev->ssp_mode > 0) &&
1497 test_bit(HCI_CONN_REAUTH_PEND, &conn->pend)) {
1498 BT_INFO("re-auth of legacy device is not possible.");
Johan Hedberg2a611692011-02-19 12:06:00 -03001499 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001500 conn->link_mode |= HCI_LM_AUTH;
1501 conn->sec_level = conn->pending_sec_level;
Johan Hedberg2a611692011-02-19 12:06:00 -03001502 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001503 } else {
1504 mgmt_auth_failed(hdev->id, &conn->dst, ev->status);
1505 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001506
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001507 clear_bit(HCI_CONN_AUTH_PEND, &conn->pend);
1508 clear_bit(HCI_CONN_REAUTH_PEND, &conn->pend);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001509
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001510 if (conn->state == BT_CONFIG) {
1511 if (!ev->status && hdev->ssp_mode > 0 && conn->ssp_mode > 0) {
1512 struct hci_cp_set_conn_encrypt cp;
1513 cp.handle = ev->handle;
1514 cp.encrypt = 0x01;
1515 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1516 &cp);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001517 } else {
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001518 conn->state = BT_CONNECTED;
1519 hci_proto_connect_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001520 hci_conn_put(conn);
1521 }
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001522 } else {
1523 hci_auth_cfm(conn, ev->status);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02001524
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001525 hci_conn_hold(conn);
1526 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
1527 hci_conn_put(conn);
1528 }
1529
1530 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend)) {
1531 if (!ev->status) {
1532 struct hci_cp_set_conn_encrypt cp;
1533 cp.handle = ev->handle;
1534 cp.encrypt = 0x01;
1535 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1536 &cp);
1537 } else {
1538 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend);
1539 hci_encrypt_cfm(conn, ev->status, 0x00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001540 }
1541 }
1542
Waldemar Rymarkiewiczd7556e22011-05-31 15:49:26 +02001543unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001544 hci_dev_unlock(hdev);
1545}
1546
1547static inline void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
1548{
Johan Hedberg127178d2010-11-18 22:22:29 +02001549 struct hci_ev_remote_name *ev = (void *) skb->data;
1550 struct hci_conn *conn;
1551
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001552 BT_DBG("%s", hdev->name);
1553
1554 hci_conn_check_pending(hdev);
Johan Hedberg127178d2010-11-18 22:22:29 +02001555
1556 hci_dev_lock(hdev);
1557
Johan Hedberga88a9652011-03-30 13:18:12 +03001558 if (ev->status == 0 && test_bit(HCI_MGMT, &hdev->flags))
1559 mgmt_remote_name(hdev->id, &ev->bdaddr, ev->name);
1560
Johan Hedberg127178d2010-11-18 22:22:29 +02001561 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg79c6c702011-04-28 11:28:55 -07001562 if (!conn)
1563 goto unlock;
1564
1565 if (!hci_outgoing_auth_needed(hdev, conn))
1566 goto unlock;
1567
1568 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
Johan Hedberg127178d2010-11-18 22:22:29 +02001569 struct hci_cp_auth_requested cp;
1570 cp.handle = __cpu_to_le16(conn->handle);
1571 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1572 }
1573
Johan Hedberg79c6c702011-04-28 11:28:55 -07001574unlock:
Johan Hedberg127178d2010-11-18 22:22:29 +02001575 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001576}
1577
1578static inline void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
1579{
1580 struct hci_ev_encrypt_change *ev = (void *) skb->data;
1581 struct hci_conn *conn;
1582
1583 BT_DBG("%s status %d", hdev->name, ev->status);
1584
1585 hci_dev_lock(hdev);
1586
1587 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
1588 if (conn) {
1589 if (!ev->status) {
Marcel Holtmannae293192008-07-14 20:13:45 +02001590 if (ev->encrypt) {
1591 /* Encryption implies authentication */
1592 conn->link_mode |= HCI_LM_AUTH;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001593 conn->link_mode |= HCI_LM_ENCRYPT;
Marcel Holtmannae293192008-07-14 20:13:45 +02001594 } else
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001595 conn->link_mode &= ~HCI_LM_ENCRYPT;
1596 }
1597
1598 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend);
1599
Marcel Holtmannf8558552008-07-14 20:13:49 +02001600 if (conn->state == BT_CONFIG) {
1601 if (!ev->status)
1602 conn->state = BT_CONNECTED;
1603
1604 hci_proto_connect_cfm(conn, ev->status);
1605 hci_conn_put(conn);
1606 } else
1607 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001608 }
1609
1610 hci_dev_unlock(hdev);
1611}
1612
1613static inline void hci_change_link_key_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1614{
1615 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
1616 struct hci_conn *conn;
1617
1618 BT_DBG("%s status %d", hdev->name, ev->status);
1619
1620 hci_dev_lock(hdev);
1621
1622 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
1623 if (conn) {
1624 if (!ev->status)
1625 conn->link_mode |= HCI_LM_SECURE;
1626
1627 clear_bit(HCI_CONN_AUTH_PEND, &conn->pend);
1628
1629 hci_key_change_cfm(conn, ev->status);
1630 }
1631
1632 hci_dev_unlock(hdev);
1633}
1634
1635static inline void hci_remote_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
1636{
1637 struct hci_ev_remote_features *ev = (void *) skb->data;
1638 struct hci_conn *conn;
1639
1640 BT_DBG("%s status %d", hdev->name, ev->status);
1641
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001642 hci_dev_lock(hdev);
1643
1644 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02001645 if (!conn)
1646 goto unlock;
Marcel Holtmann769be972008-07-14 20:13:49 +02001647
Johan Hedbergccd556f2010-11-10 17:11:51 +02001648 if (!ev->status)
1649 memcpy(conn->features, ev->features, 8);
1650
1651 if (conn->state != BT_CONFIG)
1652 goto unlock;
1653
1654 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
1655 struct hci_cp_read_remote_ext_features cp;
1656 cp.handle = ev->handle;
1657 cp.page = 0x01;
1658 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
Marcel Holtmann769be972008-07-14 20:13:49 +02001659 sizeof(cp), &cp);
Johan Hedberg392599b2010-11-18 22:22:28 +02001660 goto unlock;
1661 }
1662
Johan Hedberg127178d2010-11-18 22:22:29 +02001663 if (!ev->status) {
1664 struct hci_cp_remote_name_req cp;
1665 memset(&cp, 0, sizeof(cp));
1666 bacpy(&cp.bdaddr, &conn->dst);
1667 cp.pscan_rep_mode = 0x02;
1668 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1669 }
Johan Hedberg392599b2010-11-18 22:22:28 +02001670
Johan Hedberg127178d2010-11-18 22:22:29 +02001671 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02001672 conn->state = BT_CONNECTED;
1673 hci_proto_connect_cfm(conn, ev->status);
1674 hci_conn_put(conn);
Marcel Holtmann769be972008-07-14 20:13:49 +02001675 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001676
Johan Hedbergccd556f2010-11-10 17:11:51 +02001677unlock:
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001678 hci_dev_unlock(hdev);
1679}
1680
1681static inline void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
1682{
1683 BT_DBG("%s", hdev->name);
1684}
1685
1686static inline void hci_qos_setup_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1687{
1688 BT_DBG("%s", hdev->name);
1689}
1690
1691static inline void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1692{
1693 struct hci_ev_cmd_complete *ev = (void *) skb->data;
1694 __u16 opcode;
1695
1696 skb_pull(skb, sizeof(*ev));
1697
1698 opcode = __le16_to_cpu(ev->opcode);
1699
1700 switch (opcode) {
1701 case HCI_OP_INQUIRY_CANCEL:
1702 hci_cc_inquiry_cancel(hdev, skb);
1703 break;
1704
1705 case HCI_OP_EXIT_PERIODIC_INQ:
1706 hci_cc_exit_periodic_inq(hdev, skb);
1707 break;
1708
1709 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
1710 hci_cc_remote_name_req_cancel(hdev, skb);
1711 break;
1712
1713 case HCI_OP_ROLE_DISCOVERY:
1714 hci_cc_role_discovery(hdev, skb);
1715 break;
1716
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001717 case HCI_OP_READ_LINK_POLICY:
1718 hci_cc_read_link_policy(hdev, skb);
1719 break;
1720
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001721 case HCI_OP_WRITE_LINK_POLICY:
1722 hci_cc_write_link_policy(hdev, skb);
1723 break;
1724
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001725 case HCI_OP_READ_DEF_LINK_POLICY:
1726 hci_cc_read_def_link_policy(hdev, skb);
1727 break;
1728
1729 case HCI_OP_WRITE_DEF_LINK_POLICY:
1730 hci_cc_write_def_link_policy(hdev, skb);
1731 break;
1732
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001733 case HCI_OP_RESET:
1734 hci_cc_reset(hdev, skb);
1735 break;
1736
1737 case HCI_OP_WRITE_LOCAL_NAME:
1738 hci_cc_write_local_name(hdev, skb);
1739 break;
1740
1741 case HCI_OP_READ_LOCAL_NAME:
1742 hci_cc_read_local_name(hdev, skb);
1743 break;
1744
1745 case HCI_OP_WRITE_AUTH_ENABLE:
1746 hci_cc_write_auth_enable(hdev, skb);
1747 break;
1748
1749 case HCI_OP_WRITE_ENCRYPT_MODE:
1750 hci_cc_write_encrypt_mode(hdev, skb);
1751 break;
1752
1753 case HCI_OP_WRITE_SCAN_ENABLE:
1754 hci_cc_write_scan_enable(hdev, skb);
1755 break;
1756
1757 case HCI_OP_READ_CLASS_OF_DEV:
1758 hci_cc_read_class_of_dev(hdev, skb);
1759 break;
1760
1761 case HCI_OP_WRITE_CLASS_OF_DEV:
1762 hci_cc_write_class_of_dev(hdev, skb);
1763 break;
1764
1765 case HCI_OP_READ_VOICE_SETTING:
1766 hci_cc_read_voice_setting(hdev, skb);
1767 break;
1768
1769 case HCI_OP_WRITE_VOICE_SETTING:
1770 hci_cc_write_voice_setting(hdev, skb);
1771 break;
1772
1773 case HCI_OP_HOST_BUFFER_SIZE:
1774 hci_cc_host_buffer_size(hdev, skb);
1775 break;
1776
Marcel Holtmann333140b2008-07-14 20:13:48 +02001777 case HCI_OP_READ_SSP_MODE:
1778 hci_cc_read_ssp_mode(hdev, skb);
1779 break;
1780
1781 case HCI_OP_WRITE_SSP_MODE:
1782 hci_cc_write_ssp_mode(hdev, skb);
1783 break;
1784
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001785 case HCI_OP_READ_LOCAL_VERSION:
1786 hci_cc_read_local_version(hdev, skb);
1787 break;
1788
1789 case HCI_OP_READ_LOCAL_COMMANDS:
1790 hci_cc_read_local_commands(hdev, skb);
1791 break;
1792
1793 case HCI_OP_READ_LOCAL_FEATURES:
1794 hci_cc_read_local_features(hdev, skb);
1795 break;
1796
1797 case HCI_OP_READ_BUFFER_SIZE:
1798 hci_cc_read_buffer_size(hdev, skb);
1799 break;
1800
1801 case HCI_OP_READ_BD_ADDR:
1802 hci_cc_read_bd_addr(hdev, skb);
1803 break;
1804
Johan Hedberg23bb5762010-12-21 23:01:27 +02001805 case HCI_OP_WRITE_CA_TIMEOUT:
1806 hci_cc_write_ca_timeout(hdev, skb);
1807 break;
1808
Johan Hedbergb0916ea2011-01-10 13:44:55 +02001809 case HCI_OP_DELETE_STORED_LINK_KEY:
1810 hci_cc_delete_stored_link_key(hdev, skb);
1811 break;
1812
Johan Hedbergd5859e22011-01-25 01:19:58 +02001813 case HCI_OP_SET_EVENT_MASK:
1814 hci_cc_set_event_mask(hdev, skb);
1815 break;
1816
1817 case HCI_OP_WRITE_INQUIRY_MODE:
1818 hci_cc_write_inquiry_mode(hdev, skb);
1819 break;
1820
1821 case HCI_OP_READ_INQ_RSP_TX_POWER:
1822 hci_cc_read_inq_rsp_tx_power(hdev, skb);
1823 break;
1824
1825 case HCI_OP_SET_EVENT_FLT:
1826 hci_cc_set_event_flt(hdev, skb);
1827 break;
1828
Johan Hedberg980e1a52011-01-22 06:10:07 +02001829 case HCI_OP_PIN_CODE_REPLY:
1830 hci_cc_pin_code_reply(hdev, skb);
1831 break;
1832
1833 case HCI_OP_PIN_CODE_NEG_REPLY:
1834 hci_cc_pin_code_neg_reply(hdev, skb);
1835 break;
1836
Szymon Jancc35938b2011-03-22 13:12:21 +01001837 case HCI_OP_READ_LOCAL_OOB_DATA:
1838 hci_cc_read_local_oob_data_reply(hdev, skb);
1839 break;
1840
Ville Tervo6ed58ec2011-02-10 22:38:48 -03001841 case HCI_OP_LE_READ_BUFFER_SIZE:
1842 hci_cc_le_read_buffer_size(hdev, skb);
1843 break;
1844
Johan Hedberga5c29682011-02-19 12:05:57 -03001845 case HCI_OP_USER_CONFIRM_REPLY:
1846 hci_cc_user_confirm_reply(hdev, skb);
1847 break;
1848
1849 case HCI_OP_USER_CONFIRM_NEG_REPLY:
1850 hci_cc_user_confirm_neg_reply(hdev, skb);
1851 break;
1852
Andre Guedeseb9d91f2011-05-26 16:23:52 -03001853 case HCI_OP_LE_SET_SCAN_ENABLE:
1854 hci_cc_le_set_scan_enable(hdev, skb);
1855 break;
1856
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001857 default:
1858 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
1859 break;
1860 }
1861
Ville Tervo6bd32322011-02-16 16:32:41 +02001862 if (ev->opcode != HCI_OP_NOP)
1863 del_timer(&hdev->cmd_timer);
1864
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001865 if (ev->ncmd) {
1866 atomic_set(&hdev->cmd_cnt, 1);
1867 if (!skb_queue_empty(&hdev->cmd_q))
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001868 tasklet_schedule(&hdev->cmd_task);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001869 }
1870}
1871
1872static inline void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
1873{
1874 struct hci_ev_cmd_status *ev = (void *) skb->data;
1875 __u16 opcode;
1876
1877 skb_pull(skb, sizeof(*ev));
1878
1879 opcode = __le16_to_cpu(ev->opcode);
1880
1881 switch (opcode) {
1882 case HCI_OP_INQUIRY:
1883 hci_cs_inquiry(hdev, ev->status);
1884 break;
1885
1886 case HCI_OP_CREATE_CONN:
1887 hci_cs_create_conn(hdev, ev->status);
1888 break;
1889
1890 case HCI_OP_ADD_SCO:
1891 hci_cs_add_sco(hdev, ev->status);
1892 break;
1893
Marcel Holtmannf8558552008-07-14 20:13:49 +02001894 case HCI_OP_AUTH_REQUESTED:
1895 hci_cs_auth_requested(hdev, ev->status);
1896 break;
1897
1898 case HCI_OP_SET_CONN_ENCRYPT:
1899 hci_cs_set_conn_encrypt(hdev, ev->status);
1900 break;
1901
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001902 case HCI_OP_REMOTE_NAME_REQ:
1903 hci_cs_remote_name_req(hdev, ev->status);
1904 break;
1905
Marcel Holtmann769be972008-07-14 20:13:49 +02001906 case HCI_OP_READ_REMOTE_FEATURES:
1907 hci_cs_read_remote_features(hdev, ev->status);
1908 break;
1909
1910 case HCI_OP_READ_REMOTE_EXT_FEATURES:
1911 hci_cs_read_remote_ext_features(hdev, ev->status);
1912 break;
1913
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001914 case HCI_OP_SETUP_SYNC_CONN:
1915 hci_cs_setup_sync_conn(hdev, ev->status);
1916 break;
1917
1918 case HCI_OP_SNIFF_MODE:
1919 hci_cs_sniff_mode(hdev, ev->status);
1920 break;
1921
1922 case HCI_OP_EXIT_SNIFF_MODE:
1923 hci_cs_exit_sniff_mode(hdev, ev->status);
1924 break;
1925
Johan Hedberg8962ee72011-01-20 12:40:27 +02001926 case HCI_OP_DISCONNECT:
1927 if (ev->status != 0)
1928 mgmt_disconnect_failed(hdev->id);
1929 break;
1930
Ville Tervofcd89c02011-02-10 22:38:47 -03001931 case HCI_OP_LE_CREATE_CONN:
1932 hci_cs_le_create_conn(hdev, ev->status);
1933 break;
1934
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001935 default:
1936 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
1937 break;
1938 }
1939
Ville Tervo6bd32322011-02-16 16:32:41 +02001940 if (ev->opcode != HCI_OP_NOP)
1941 del_timer(&hdev->cmd_timer);
1942
Gustavo F. Padovan10572132011-03-16 15:36:29 -03001943 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001944 atomic_set(&hdev->cmd_cnt, 1);
1945 if (!skb_queue_empty(&hdev->cmd_q))
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001946 tasklet_schedule(&hdev->cmd_task);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001947 }
1948}
1949
1950static inline void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
1951{
1952 struct hci_ev_role_change *ev = (void *) skb->data;
1953 struct hci_conn *conn;
1954
1955 BT_DBG("%s status %d", hdev->name, ev->status);
1956
1957 hci_dev_lock(hdev);
1958
1959 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
1960 if (conn) {
1961 if (!ev->status) {
1962 if (ev->role)
1963 conn->link_mode &= ~HCI_LM_MASTER;
1964 else
1965 conn->link_mode |= HCI_LM_MASTER;
1966 }
1967
1968 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->pend);
1969
1970 hci_role_switch_cfm(conn, ev->status, ev->role);
1971 }
1972
1973 hci_dev_unlock(hdev);
1974}
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976static inline void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
1977{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001978 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001979 __le16 *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 int i;
1981
1982 skb_pull(skb, sizeof(*ev));
1983
1984 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
1985
1986 if (skb->len < ev->num_hndl * 4) {
1987 BT_DBG("%s bad parameters", hdev->name);
1988 return;
1989 }
1990
1991 tasklet_disable(&hdev->tx_task);
1992
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001993 for (i = 0, ptr = (__le16 *) skb->data; i < ev->num_hndl; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 struct hci_conn *conn;
1995 __u16 handle, count;
1996
Harvey Harrison83985312008-05-02 16:25:46 -07001997 handle = get_unaligned_le16(ptr++);
1998 count = get_unaligned_le16(ptr++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 conn = hci_conn_hash_lookup_handle(hdev, handle);
2001 if (conn) {
2002 conn->sent -= count;
2003
Marcel Holtmann5b7f9902007-07-11 09:51:55 +02002004 if (conn->type == ACL_LINK) {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002005 hdev->acl_cnt += count;
2006 if (hdev->acl_cnt > hdev->acl_pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 hdev->acl_cnt = hdev->acl_pkts;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002008 } else if (conn->type == LE_LINK) {
2009 if (hdev->le_pkts) {
2010 hdev->le_cnt += count;
2011 if (hdev->le_cnt > hdev->le_pkts)
2012 hdev->le_cnt = hdev->le_pkts;
2013 } else {
2014 hdev->acl_cnt += count;
2015 if (hdev->acl_cnt > hdev->acl_pkts)
2016 hdev->acl_cnt = hdev->acl_pkts;
2017 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +02002018 } else {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002019 hdev->sco_cnt += count;
2020 if (hdev->sco_cnt > hdev->sco_pkts)
Marcel Holtmann5b7f9902007-07-11 09:51:55 +02002021 hdev->sco_cnt = hdev->sco_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 }
2023 }
2024 }
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002025
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002026 tasklet_schedule(&hdev->tx_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 tasklet_enable(&hdev->tx_task);
2029}
2030
Marcel Holtmann04837f62006-07-03 10:02:33 +02002031static inline void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002033 struct hci_ev_mode_change *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002034 struct hci_conn *conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 BT_DBG("%s status %d", hdev->name, ev->status);
2037
2038 hci_dev_lock(hdev);
2039
Marcel Holtmann04837f62006-07-03 10:02:33 +02002040 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2041 if (conn) {
2042 conn->mode = ev->mode;
2043 conn->interval = __le16_to_cpu(ev->interval);
2044
2045 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) {
2046 if (conn->mode == HCI_CM_ACTIVE)
2047 conn->power_save = 1;
2048 else
2049 conn->power_save = 0;
2050 }
Marcel Holtmanne73439d2010-07-26 10:06:00 -04002051
2052 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->pend))
2053 hci_sco_setup(conn, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002054 }
2055
2056 hci_dev_unlock(hdev);
2057}
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059static inline void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2060{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002061 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2062 struct hci_conn *conn;
2063
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002064 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002065
2066 hci_dev_lock(hdev);
2067
2068 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Marcel Holtmann3d7a9d12009-05-09 12:09:21 -07002069 if (conn && conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002070 hci_conn_hold(conn);
2071 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2072 hci_conn_put(conn);
2073 }
2074
Johan Hedberg03b555e2011-01-04 15:40:05 +02002075 if (!test_bit(HCI_PAIRABLE, &hdev->flags))
2076 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
2077 sizeof(ev->bdaddr), &ev->bdaddr);
Johan Hedberg582fbe92011-04-28 11:28:58 -07002078 else if (test_bit(HCI_MGMT, &hdev->flags)) {
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02002079 u8 secure;
2080
2081 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2082 secure = 1;
2083 else
2084 secure = 0;
2085
2086 mgmt_pin_code_request(hdev->id, &ev->bdaddr, secure);
2087 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002088
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002089 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2093{
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002094 struct hci_ev_link_key_req *ev = (void *) skb->data;
2095 struct hci_cp_link_key_reply cp;
2096 struct hci_conn *conn;
2097 struct link_key *key;
2098
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002099 BT_DBG("%s", hdev->name);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002100
2101 if (!test_bit(HCI_LINK_KEYS, &hdev->flags))
2102 return;
2103
2104 hci_dev_lock(hdev);
2105
2106 key = hci_find_link_key(hdev, &ev->bdaddr);
2107 if (!key) {
2108 BT_DBG("%s link key not found for %s", hdev->name,
2109 batostr(&ev->bdaddr));
2110 goto not_found;
2111 }
2112
2113 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
2114 batostr(&ev->bdaddr));
2115
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02002116 if (!test_bit(HCI_DEBUG_KEYS, &hdev->flags) &&
2117 key->type == HCI_LK_DEBUG_COMBINATION) {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002118 BT_DBG("%s ignoring debug key", hdev->name);
2119 goto not_found;
2120 }
2121
2122 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002123 if (conn) {
2124 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
2125 conn->auth_type != 0xff &&
2126 (conn->auth_type & 0x01)) {
2127 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2128 goto not_found;
2129 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002130
Waldemar Rymarkiewicz60b83f52011-04-28 12:07:56 +02002131 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
2132 conn->pending_sec_level == BT_SECURITY_HIGH) {
2133 BT_DBG("%s ignoring key unauthenticated for high \
2134 security", hdev->name);
2135 goto not_found;
2136 }
2137
2138 conn->key_type = key->type;
2139 conn->pin_length = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002140 }
2141
2142 bacpy(&cp.bdaddr, &ev->bdaddr);
2143 memcpy(cp.link_key, key->val, 16);
2144
2145 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2146
2147 hci_dev_unlock(hdev);
2148
2149 return;
2150
2151not_found:
2152 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2153 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154}
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156static inline void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
2157{
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002158 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2159 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002160 u8 pin_len = 0;
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002161
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002162 BT_DBG("%s", hdev->name);
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002163
2164 hci_dev_lock(hdev);
2165
2166 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2167 if (conn) {
2168 hci_conn_hold(conn);
2169 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002170 pin_len = conn->pin_length;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +02002171
2172 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2173 conn->key_type = ev->key_type;
2174
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002175 hci_conn_put(conn);
2176 }
2177
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002178 if (test_bit(HCI_LINK_KEYS, &hdev->flags))
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002179 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002180 ev->key_type, pin_len);
2181
Marcel Holtmann052b30b2009-04-26 20:01:22 +02002182 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183}
2184
Marcel Holtmann04837f62006-07-03 10:02:33 +02002185static inline void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
2186{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002187 struct hci_ev_clock_offset *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002188 struct hci_conn *conn;
2189
2190 BT_DBG("%s status %d", hdev->name, ev->status);
2191
2192 hci_dev_lock(hdev);
2193
2194 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (conn && !ev->status) {
2196 struct inquiry_entry *ie;
2197
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002198 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2199 if (ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 ie->data.clock_offset = ev->clock_offset;
2201 ie->timestamp = jiffies;
2202 }
2203 }
2204
2205 hci_dev_unlock(hdev);
2206}
2207
Marcel Holtmanna8746412008-07-14 20:13:46 +02002208static inline void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
2209{
2210 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2211 struct hci_conn *conn;
2212
2213 BT_DBG("%s status %d", hdev->name, ev->status);
2214
2215 hci_dev_lock(hdev);
2216
2217 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2218 if (conn && !ev->status)
2219 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2220
2221 hci_dev_unlock(hdev);
2222}
2223
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002224static inline void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
2225{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002226 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002227 struct inquiry_entry *ie;
2228
2229 BT_DBG("%s", hdev->name);
2230
2231 hci_dev_lock(hdev);
2232
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002233 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2234 if (ie) {
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002235 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2236 ie->timestamp = jiffies;
2237 }
2238
2239 hci_dev_unlock(hdev);
2240}
2241
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002242static inline void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev, struct sk_buff *skb)
2243{
2244 struct inquiry_data data;
2245 int num_rsp = *((__u8 *) skb->data);
2246
2247 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2248
2249 if (!num_rsp)
2250 return;
2251
2252 hci_dev_lock(hdev);
2253
Johan Hedberg314b2382011-04-27 10:29:57 -04002254 if (!test_and_set_bit(HCI_INQUIRY, &hdev->flags)) {
2255
2256 if (test_bit(HCI_MGMT, &hdev->flags))
2257 mgmt_discovering(hdev->id, 1);
2258 }
2259
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002260 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
Szymon Janc138d22e2011-02-17 16:44:23 +01002261 struct inquiry_info_with_rssi_and_pscan_mode *info;
2262 info = (void *) (skb->data + 1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002263
Johan Hedberge17acd42011-03-30 23:57:16 +03002264 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002265 bacpy(&data.bdaddr, &info->bdaddr);
2266 data.pscan_rep_mode = info->pscan_rep_mode;
2267 data.pscan_period_mode = info->pscan_period_mode;
2268 data.pscan_mode = info->pscan_mode;
2269 memcpy(data.dev_class, info->dev_class, 3);
2270 data.clock_offset = info->clock_offset;
2271 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002272 data.ssp_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002273 hci_inquiry_cache_update(hdev, &data);
Johan Hedberge17acd42011-03-30 23:57:16 +03002274 mgmt_device_found(hdev->id, &info->bdaddr,
2275 info->dev_class, info->rssi,
2276 NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002277 }
2278 } else {
2279 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2280
Johan Hedberge17acd42011-03-30 23:57:16 +03002281 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002282 bacpy(&data.bdaddr, &info->bdaddr);
2283 data.pscan_rep_mode = info->pscan_rep_mode;
2284 data.pscan_period_mode = info->pscan_period_mode;
2285 data.pscan_mode = 0x00;
2286 memcpy(data.dev_class, info->dev_class, 3);
2287 data.clock_offset = info->clock_offset;
2288 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002289 data.ssp_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002290 hci_inquiry_cache_update(hdev, &data);
Johan Hedberge17acd42011-03-30 23:57:16 +03002291 mgmt_device_found(hdev->id, &info->bdaddr,
2292 info->dev_class, info->rssi,
2293 NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002294 }
2295 }
2296
2297 hci_dev_unlock(hdev);
2298}
2299
2300static inline void hci_remote_ext_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2301{
Marcel Holtmann41a96212008-07-14 20:13:48 +02002302 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2303 struct hci_conn *conn;
2304
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002305 BT_DBG("%s", hdev->name);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002306
Marcel Holtmann41a96212008-07-14 20:13:48 +02002307 hci_dev_lock(hdev);
2308
2309 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
Johan Hedbergccd556f2010-11-10 17:11:51 +02002310 if (!conn)
2311 goto unlock;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002312
Johan Hedbergccd556f2010-11-10 17:11:51 +02002313 if (!ev->status && ev->page == 0x01) {
2314 struct inquiry_entry *ie;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002315
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002316 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2317 if (ie)
Johan Hedbergccd556f2010-11-10 17:11:51 +02002318 ie->data.ssp_mode = (ev->features[0] & 0x01);
Marcel Holtmann769be972008-07-14 20:13:49 +02002319
Johan Hedbergccd556f2010-11-10 17:11:51 +02002320 conn->ssp_mode = (ev->features[0] & 0x01);
Marcel Holtmann41a96212008-07-14 20:13:48 +02002321 }
2322
Johan Hedbergccd556f2010-11-10 17:11:51 +02002323 if (conn->state != BT_CONFIG)
2324 goto unlock;
2325
Johan Hedberg127178d2010-11-18 22:22:29 +02002326 if (!ev->status) {
2327 struct hci_cp_remote_name_req cp;
2328 memset(&cp, 0, sizeof(cp));
2329 bacpy(&cp.bdaddr, &conn->dst);
2330 cp.pscan_rep_mode = 0x02;
2331 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
2332 }
Johan Hedberg392599b2010-11-18 22:22:28 +02002333
Johan Hedberg127178d2010-11-18 22:22:29 +02002334 if (!hci_outgoing_auth_needed(hdev, conn)) {
Johan Hedbergccd556f2010-11-10 17:11:51 +02002335 conn->state = BT_CONNECTED;
2336 hci_proto_connect_cfm(conn, ev->status);
2337 hci_conn_put(conn);
2338 }
2339
2340unlock:
Marcel Holtmann41a96212008-07-14 20:13:48 +02002341 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002342}
2343
2344static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2345{
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002346 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2347 struct hci_conn *conn;
2348
2349 BT_DBG("%s status %d", hdev->name, ev->status);
2350
2351 hci_dev_lock(hdev);
2352
2353 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
Marcel Holtmann9dc0a3a2008-07-14 20:13:46 +02002354 if (!conn) {
2355 if (ev->link_type == ESCO_LINK)
2356 goto unlock;
2357
2358 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2359 if (!conn)
2360 goto unlock;
2361
2362 conn->type = SCO_LINK;
2363 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002364
Marcel Holtmann732547f2009-04-19 19:14:14 +02002365 switch (ev->status) {
2366 case 0x00:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002367 conn->handle = __le16_to_cpu(ev->handle);
2368 conn->state = BT_CONNECTED;
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002369
Marcel Holtmann9eba32b2009-08-22 14:19:26 -07002370 hci_conn_hold_device(conn);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +02002371 hci_conn_add_sysfs(conn);
Marcel Holtmann732547f2009-04-19 19:14:14 +02002372 break;
2373
Stephen Coe705e5712010-02-16 11:29:44 -05002374 case 0x11: /* Unsupported Feature or Parameter Value */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002375 case 0x1c: /* SCO interval rejected */
Nick Pelly1038a002010-02-03 11:42:26 -08002376 case 0x1a: /* Unsupported Remote Feature */
Marcel Holtmann732547f2009-04-19 19:14:14 +02002377 case 0x1f: /* Unspecified error */
2378 if (conn->out && conn->attempt < 2) {
2379 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2380 (hdev->esco_type & EDR_ESCO_MASK);
2381 hci_setup_sync(conn, conn->link->handle);
2382 goto unlock;
2383 }
2384 /* fall through */
2385
2386 default:
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002387 conn->state = BT_CLOSED;
Marcel Holtmann732547f2009-04-19 19:14:14 +02002388 break;
2389 }
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002390
2391 hci_proto_connect_cfm(conn, ev->status);
2392 if (ev->status)
2393 hci_conn_del(conn);
2394
2395unlock:
2396 hci_dev_unlock(hdev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002397}
2398
2399static inline void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
2400{
2401 BT_DBG("%s", hdev->name);
2402}
2403
Marcel Holtmann04837f62006-07-03 10:02:33 +02002404static inline void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
2405{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002406 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002407
2408 BT_DBG("%s status %d", hdev->name, ev->status);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002409}
2410
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002411static inline void hci_extended_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
2412{
2413 struct inquiry_data data;
2414 struct extended_inquiry_info *info = (void *) (skb->data + 1);
2415 int num_rsp = *((__u8 *) skb->data);
2416
2417 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2418
2419 if (!num_rsp)
2420 return;
2421
Johan Hedberg314b2382011-04-27 10:29:57 -04002422 if (!test_and_set_bit(HCI_INQUIRY, &hdev->flags)) {
2423
2424 if (test_bit(HCI_MGMT, &hdev->flags))
2425 mgmt_discovering(hdev->id, 1);
2426 }
2427
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002428 hci_dev_lock(hdev);
2429
Johan Hedberge17acd42011-03-30 23:57:16 +03002430 for (; num_rsp; num_rsp--, info++) {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002431 bacpy(&data.bdaddr, &info->bdaddr);
Szymon Janc138d22e2011-02-17 16:44:23 +01002432 data.pscan_rep_mode = info->pscan_rep_mode;
2433 data.pscan_period_mode = info->pscan_period_mode;
2434 data.pscan_mode = 0x00;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002435 memcpy(data.dev_class, info->dev_class, 3);
Szymon Janc138d22e2011-02-17 16:44:23 +01002436 data.clock_offset = info->clock_offset;
2437 data.rssi = info->rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +02002438 data.ssp_mode = 0x01;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002439 hci_inquiry_cache_update(hdev, &data);
Johan Hedberge17acd42011-03-30 23:57:16 +03002440 mgmt_device_found(hdev->id, &info->bdaddr, info->dev_class,
2441 info->rssi, info->data);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002442 }
2443
2444 hci_dev_unlock(hdev);
2445}
2446
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002447static inline u8 hci_get_auth_req(struct hci_conn *conn)
2448{
2449 /* If remote requests dedicated bonding follow that lead */
2450 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
2451 /* If both remote and local IO capabilities allow MITM
2452 * protection then require it, otherwise don't */
2453 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
2454 return 0x02;
2455 else
2456 return 0x03;
2457 }
2458
2459 /* If remote requests no-bonding follow that lead */
2460 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
Waldemar Rymarkiewicz58797bf2011-04-28 12:07:58 +02002461 return conn->remote_auth | (conn->auth_type & 0x01);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002462
2463 return conn->auth_type;
2464}
2465
Marcel Holtmann04936842008-07-14 20:13:48 +02002466static inline void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2467{
2468 struct hci_ev_io_capa_request *ev = (void *) skb->data;
2469 struct hci_conn *conn;
2470
2471 BT_DBG("%s", hdev->name);
2472
2473 hci_dev_lock(hdev);
2474
2475 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg03b555e2011-01-04 15:40:05 +02002476 if (!conn)
2477 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02002478
Johan Hedberg03b555e2011-01-04 15:40:05 +02002479 hci_conn_hold(conn);
2480
2481 if (!test_bit(HCI_MGMT, &hdev->flags))
2482 goto unlock;
2483
2484 if (test_bit(HCI_PAIRABLE, &hdev->flags) ||
2485 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002486 struct hci_cp_io_capability_reply cp;
2487
2488 bacpy(&cp.bdaddr, &ev->bdaddr);
2489 cp.capability = conn->io_capability;
Johan Hedberg7cbc9bd2011-04-28 11:29:04 -07002490 conn->auth_type = hci_get_auth_req(conn);
2491 cp.authentication = conn->auth_type;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002492
Szymon Jancce85ee12011-03-22 13:12:23 +01002493 if ((conn->out == 0x01 || conn->remote_oob == 0x01) &&
2494 hci_find_remote_oob_data(hdev, &conn->dst))
2495 cp.oob_data = 0x01;
2496 else
2497 cp.oob_data = 0x00;
2498
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002499 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
2500 sizeof(cp), &cp);
Johan Hedberg03b555e2011-01-04 15:40:05 +02002501 } else {
2502 struct hci_cp_io_capability_neg_reply cp;
2503
2504 bacpy(&cp.bdaddr, &ev->bdaddr);
Johan Hedbergbe771592011-04-28 11:28:57 -07002505 cp.reason = 0x18; /* Pairing not allowed */
Johan Hedberg03b555e2011-01-04 15:40:05 +02002506
2507 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
2508 sizeof(cp), &cp);
2509 }
2510
2511unlock:
2512 hci_dev_unlock(hdev);
2513}
2514
2515static inline void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
2516{
2517 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
2518 struct hci_conn *conn;
2519
2520 BT_DBG("%s", hdev->name);
2521
2522 hci_dev_lock(hdev);
2523
2524 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2525 if (!conn)
2526 goto unlock;
2527
Johan Hedberg03b555e2011-01-04 15:40:05 +02002528 conn->remote_cap = ev->capability;
2529 conn->remote_oob = ev->oob_data;
2530 conn->remote_auth = ev->authentication;
2531
2532unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02002533 hci_dev_unlock(hdev);
2534}
2535
Johan Hedberga5c29682011-02-19 12:05:57 -03002536static inline void hci_user_confirm_request_evt(struct hci_dev *hdev,
2537 struct sk_buff *skb)
2538{
2539 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
Johan Hedberg55bc1a32011-04-28 11:28:56 -07002540 int loc_mitm, rem_mitm, confirm_hint = 0;
Johan Hedberg7a828902011-04-28 11:28:53 -07002541 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03002542
2543 BT_DBG("%s", hdev->name);
2544
2545 hci_dev_lock(hdev);
2546
Johan Hedberg7a828902011-04-28 11:28:53 -07002547 if (!test_bit(HCI_MGMT, &hdev->flags))
2548 goto unlock;
Johan Hedberga5c29682011-02-19 12:05:57 -03002549
Johan Hedberg7a828902011-04-28 11:28:53 -07002550 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2551 if (!conn)
2552 goto unlock;
2553
2554 loc_mitm = (conn->auth_type & 0x01);
2555 rem_mitm = (conn->remote_auth & 0x01);
2556
2557 /* If we require MITM but the remote device can't provide that
2558 * (it has NoInputNoOutput) then reject the confirmation
2559 * request. The only exception is when we're dedicated bonding
2560 * initiators (connect_cfm_cb set) since then we always have the MITM
2561 * bit set. */
2562 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
2563 BT_DBG("Rejecting request: remote device can't provide MITM");
2564 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
2565 sizeof(ev->bdaddr), &ev->bdaddr);
2566 goto unlock;
2567 }
2568
2569 /* If no side requires MITM protection; auto-accept */
2570 if ((!loc_mitm || conn->remote_cap == 0x03) &&
2571 (!rem_mitm || conn->io_capability == 0x03)) {
Johan Hedberg55bc1a32011-04-28 11:28:56 -07002572
2573 /* If we're not the initiators request authorization to
2574 * proceed from user space (mgmt_user_confirm with
2575 * confirm_hint set to 1). */
2576 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
2577 BT_DBG("Confirming auto-accept as acceptor");
2578 confirm_hint = 1;
2579 goto confirm;
2580 }
2581
Johan Hedberg9f616562011-04-28 11:28:54 -07002582 BT_DBG("Auto-accept of user confirmation with %ums delay",
2583 hdev->auto_accept_delay);
2584
2585 if (hdev->auto_accept_delay > 0) {
2586 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
2587 mod_timer(&conn->auto_accept_timer, jiffies + delay);
2588 goto unlock;
2589 }
2590
Johan Hedberg7a828902011-04-28 11:28:53 -07002591 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
2592 sizeof(ev->bdaddr), &ev->bdaddr);
2593 goto unlock;
2594 }
2595
Johan Hedberg55bc1a32011-04-28 11:28:56 -07002596confirm:
2597 mgmt_user_confirm_request(hdev->id, &ev->bdaddr, ev->passkey,
2598 confirm_hint);
Johan Hedberg7a828902011-04-28 11:28:53 -07002599
2600unlock:
Johan Hedberga5c29682011-02-19 12:05:57 -03002601 hci_dev_unlock(hdev);
2602}
2603
Marcel Holtmann04936842008-07-14 20:13:48 +02002604static inline void hci_simple_pair_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2605{
2606 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
2607 struct hci_conn *conn;
2608
2609 BT_DBG("%s", hdev->name);
2610
2611 hci_dev_lock(hdev);
2612
2613 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
Johan Hedberg2a611692011-02-19 12:06:00 -03002614 if (!conn)
2615 goto unlock;
Marcel Holtmann04936842008-07-14 20:13:48 +02002616
Johan Hedberg2a611692011-02-19 12:06:00 -03002617 /* To avoid duplicate auth_failed events to user space we check
2618 * the HCI_CONN_AUTH_PEND flag which will be set if we
2619 * initiated the authentication. A traditional auth_complete
2620 * event gets always produced as initiator and is also mapped to
2621 * the mgmt_auth_failed event */
2622 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->pend) && ev->status != 0)
2623 mgmt_auth_failed(hdev->id, &conn->dst, ev->status);
2624
2625 hci_conn_put(conn);
2626
2627unlock:
Marcel Holtmann04936842008-07-14 20:13:48 +02002628 hci_dev_unlock(hdev);
2629}
2630
Marcel Holtmann41a96212008-07-14 20:13:48 +02002631static inline void hci_remote_host_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2632{
2633 struct hci_ev_remote_host_features *ev = (void *) skb->data;
2634 struct inquiry_entry *ie;
2635
2636 BT_DBG("%s", hdev->name);
2637
2638 hci_dev_lock(hdev);
2639
Andrei Emeltchenkocc11b9c2010-11-22 13:21:37 +02002640 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2641 if (ie)
Marcel Holtmann41a96212008-07-14 20:13:48 +02002642 ie->data.ssp_mode = (ev->features[0] & 0x01);
2643
2644 hci_dev_unlock(hdev);
2645}
2646
Szymon Janc2763eda2011-03-22 13:12:22 +01002647static inline void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
2648 struct sk_buff *skb)
2649{
2650 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
2651 struct oob_data *data;
2652
2653 BT_DBG("%s", hdev->name);
2654
2655 hci_dev_lock(hdev);
2656
Szymon Jance1ba1f12011-04-06 13:01:59 +02002657 if (!test_bit(HCI_MGMT, &hdev->flags))
2658 goto unlock;
2659
Szymon Janc2763eda2011-03-22 13:12:22 +01002660 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
2661 if (data) {
2662 struct hci_cp_remote_oob_data_reply cp;
2663
2664 bacpy(&cp.bdaddr, &ev->bdaddr);
2665 memcpy(cp.hash, data->hash, sizeof(cp.hash));
2666 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
2667
2668 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
2669 &cp);
2670 } else {
2671 struct hci_cp_remote_oob_data_neg_reply cp;
2672
2673 bacpy(&cp.bdaddr, &ev->bdaddr);
2674 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
2675 &cp);
2676 }
2677
Szymon Jance1ba1f12011-04-06 13:01:59 +02002678unlock:
Szymon Janc2763eda2011-03-22 13:12:22 +01002679 hci_dev_unlock(hdev);
2680}
2681
Ville Tervofcd89c02011-02-10 22:38:47 -03002682static inline void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2683{
2684 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
2685 struct hci_conn *conn;
2686
2687 BT_DBG("%s status %d", hdev->name, ev->status);
2688
2689 hci_dev_lock(hdev);
2690
2691 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &ev->bdaddr);
Ville Tervob62f3282011-02-10 22:38:50 -03002692 if (!conn) {
2693 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
2694 if (!conn) {
2695 BT_ERR("No memory for new connection");
2696 hci_dev_unlock(hdev);
2697 return;
2698 }
Andre Guedes29b79882011-05-31 14:20:54 -03002699
2700 conn->dst_type = ev->bdaddr_type;
Ville Tervob62f3282011-02-10 22:38:50 -03002701 }
Ville Tervofcd89c02011-02-10 22:38:47 -03002702
2703 if (ev->status) {
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03002704 mgmt_connect_failed(hdev->id, &ev->bdaddr, ev->status);
Ville Tervofcd89c02011-02-10 22:38:47 -03002705 hci_proto_connect_cfm(conn, ev->status);
2706 conn->state = BT_CLOSED;
2707 hci_conn_del(conn);
2708 goto unlock;
2709 }
2710
Vinicius Costa Gomes83bc71b2011-05-06 18:41:43 -03002711 mgmt_connected(hdev->id, &ev->bdaddr);
2712
Ville Tervofcd89c02011-02-10 22:38:47 -03002713 conn->handle = __le16_to_cpu(ev->handle);
2714 conn->state = BT_CONNECTED;
2715
2716 hci_conn_hold_device(conn);
2717 hci_conn_add_sysfs(conn);
2718
2719 hci_proto_connect_cfm(conn, ev->status);
2720
2721unlock:
2722 hci_dev_unlock(hdev);
2723}
2724
Andre Guedes9aa04c92011-05-26 16:23:51 -03002725static inline void hci_le_adv_report_evt(struct hci_dev *hdev,
2726 struct sk_buff *skb)
2727{
2728 struct hci_ev_le_advertising_info *ev;
2729 u8 num_reports;
2730
2731 num_reports = skb->data[0];
2732 ev = (void *) &skb->data[1];
2733
2734 hci_dev_lock(hdev);
2735
2736 hci_add_adv_entry(hdev, ev);
2737
2738 while (--num_reports) {
2739 ev = (void *) (ev->data + ev->length + 1);
2740 hci_add_adv_entry(hdev, ev);
2741 }
2742
2743 hci_dev_unlock(hdev);
2744}
2745
Ville Tervofcd89c02011-02-10 22:38:47 -03002746static inline void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
2747{
2748 struct hci_ev_le_meta *le_ev = (void *) skb->data;
2749
2750 skb_pull(skb, sizeof(*le_ev));
2751
2752 switch (le_ev->subevent) {
2753 case HCI_EV_LE_CONN_COMPLETE:
2754 hci_le_conn_complete_evt(hdev, skb);
2755 break;
2756
Andre Guedes9aa04c92011-05-26 16:23:51 -03002757 case HCI_EV_LE_ADVERTISING_REPORT:
2758 hci_le_adv_report_evt(hdev, skb);
2759 break;
2760
Ville Tervofcd89c02011-02-10 22:38:47 -03002761 default:
2762 break;
2763 }
2764}
2765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
2767{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002768 struct hci_event_hdr *hdr = (void *) skb->data;
2769 __u8 event = hdr->evt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 skb_pull(skb, HCI_EVENT_HDR_SIZE);
2772
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002773 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 case HCI_EV_INQUIRY_COMPLETE:
2775 hci_inquiry_complete_evt(hdev, skb);
2776 break;
2777
2778 case HCI_EV_INQUIRY_RESULT:
2779 hci_inquiry_result_evt(hdev, skb);
2780 break;
2781
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002782 case HCI_EV_CONN_COMPLETE:
2783 hci_conn_complete_evt(hdev, skb);
Marcel Holtmann21d9e302005-09-13 01:32:25 +02002784 break;
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 case HCI_EV_CONN_REQUEST:
2787 hci_conn_request_evt(hdev, skb);
2788 break;
2789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 case HCI_EV_DISCONN_COMPLETE:
2791 hci_disconn_complete_evt(hdev, skb);
2792 break;
2793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 case HCI_EV_AUTH_COMPLETE:
2795 hci_auth_complete_evt(hdev, skb);
2796 break;
2797
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002798 case HCI_EV_REMOTE_NAME:
2799 hci_remote_name_evt(hdev, skb);
2800 break;
2801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 case HCI_EV_ENCRYPT_CHANGE:
2803 hci_encrypt_change_evt(hdev, skb);
2804 break;
2805
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002806 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
2807 hci_change_link_key_complete_evt(hdev, skb);
2808 break;
2809
2810 case HCI_EV_REMOTE_FEATURES:
2811 hci_remote_features_evt(hdev, skb);
2812 break;
2813
2814 case HCI_EV_REMOTE_VERSION:
2815 hci_remote_version_evt(hdev, skb);
2816 break;
2817
2818 case HCI_EV_QOS_SETUP_COMPLETE:
2819 hci_qos_setup_complete_evt(hdev, skb);
2820 break;
2821
2822 case HCI_EV_CMD_COMPLETE:
2823 hci_cmd_complete_evt(hdev, skb);
2824 break;
2825
2826 case HCI_EV_CMD_STATUS:
2827 hci_cmd_status_evt(hdev, skb);
2828 break;
2829
2830 case HCI_EV_ROLE_CHANGE:
2831 hci_role_change_evt(hdev, skb);
2832 break;
2833
2834 case HCI_EV_NUM_COMP_PKTS:
2835 hci_num_comp_pkts_evt(hdev, skb);
2836 break;
2837
2838 case HCI_EV_MODE_CHANGE:
2839 hci_mode_change_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 break;
2841
2842 case HCI_EV_PIN_CODE_REQ:
2843 hci_pin_code_request_evt(hdev, skb);
2844 break;
2845
2846 case HCI_EV_LINK_KEY_REQ:
2847 hci_link_key_request_evt(hdev, skb);
2848 break;
2849
2850 case HCI_EV_LINK_KEY_NOTIFY:
2851 hci_link_key_notify_evt(hdev, skb);
2852 break;
2853
2854 case HCI_EV_CLOCK_OFFSET:
2855 hci_clock_offset_evt(hdev, skb);
2856 break;
2857
Marcel Holtmanna8746412008-07-14 20:13:46 +02002858 case HCI_EV_PKT_TYPE_CHANGE:
2859 hci_pkt_type_change_evt(hdev, skb);
2860 break;
2861
Marcel Holtmann85a1e932005-08-09 20:28:02 -07002862 case HCI_EV_PSCAN_REP_MODE:
2863 hci_pscan_rep_mode_evt(hdev, skb);
2864 break;
2865
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002866 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
2867 hci_inquiry_result_with_rssi_evt(hdev, skb);
2868 break;
2869
2870 case HCI_EV_REMOTE_EXT_FEATURES:
2871 hci_remote_ext_features_evt(hdev, skb);
2872 break;
2873
2874 case HCI_EV_SYNC_CONN_COMPLETE:
2875 hci_sync_conn_complete_evt(hdev, skb);
2876 break;
2877
2878 case HCI_EV_SYNC_CONN_CHANGED:
2879 hci_sync_conn_changed_evt(hdev, skb);
2880 break;
2881
Marcel Holtmann04837f62006-07-03 10:02:33 +02002882 case HCI_EV_SNIFF_SUBRATE:
2883 hci_sniff_subrate_evt(hdev, skb);
2884 break;
2885
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002886 case HCI_EV_EXTENDED_INQUIRY_RESULT:
2887 hci_extended_inquiry_result_evt(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 break;
2889
Marcel Holtmann04936842008-07-14 20:13:48 +02002890 case HCI_EV_IO_CAPA_REQUEST:
2891 hci_io_capa_request_evt(hdev, skb);
2892 break;
2893
Johan Hedberg03b555e2011-01-04 15:40:05 +02002894 case HCI_EV_IO_CAPA_REPLY:
2895 hci_io_capa_reply_evt(hdev, skb);
2896 break;
2897
Johan Hedberga5c29682011-02-19 12:05:57 -03002898 case HCI_EV_USER_CONFIRM_REQUEST:
2899 hci_user_confirm_request_evt(hdev, skb);
2900 break;
2901
Marcel Holtmann04936842008-07-14 20:13:48 +02002902 case HCI_EV_SIMPLE_PAIR_COMPLETE:
2903 hci_simple_pair_complete_evt(hdev, skb);
2904 break;
2905
Marcel Holtmann41a96212008-07-14 20:13:48 +02002906 case HCI_EV_REMOTE_HOST_FEATURES:
2907 hci_remote_host_features_evt(hdev, skb);
2908 break;
2909
Ville Tervofcd89c02011-02-10 22:38:47 -03002910 case HCI_EV_LE_META:
2911 hci_le_meta_evt(hdev, skb);
2912 break;
2913
Szymon Janc2763eda2011-03-22 13:12:22 +01002914 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
2915 hci_remote_oob_data_request_evt(hdev, skb);
2916 break;
2917
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002918 default:
2919 BT_DBG("%s event 0x%x", hdev->name, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 break;
2921 }
2922
2923 kfree_skb(skb);
2924 hdev->stat.evt_rx++;
2925}
2926
2927/* Generate internal stack event */
2928void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data)
2929{
2930 struct hci_event_hdr *hdr;
2931 struct hci_ev_stack_internal *ev;
2932 struct sk_buff *skb;
2933
2934 skb = bt_skb_alloc(HCI_EVENT_HDR_SIZE + sizeof(*ev) + dlen, GFP_ATOMIC);
2935 if (!skb)
2936 return;
2937
2938 hdr = (void *) skb_put(skb, HCI_EVENT_HDR_SIZE);
2939 hdr->evt = HCI_EV_STACK_INTERNAL;
2940 hdr->plen = sizeof(*ev) + dlen;
2941
2942 ev = (void *) skb_put(skb, sizeof(*ev) + dlen);
2943 ev->type = type;
2944 memcpy(ev->data, data, dlen);
2945
Marcel Holtmann576c7d82005-08-06 12:36:54 +02002946 bt_cb(skb)->incoming = 1;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002947 __net_timestamp(skb);
Marcel Holtmann576c7d82005-08-06 12:36:54 +02002948
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002949 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 skb->dev = (void *) hdev;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002951 hci_send_to_sock(hdev, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 kfree_skb(skb);
2953}