Bluetooth: Remove HCI notifier handling
[deliverable/linux.git] / net / bluetooth / hci_event.c
CommitLineData
8e87d142 1/*
1da177e4 2 BlueZ - Bluetooth protocol stack for Linux
2d0a0346 3 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
1da177e4
LT
4
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
8e87d142
YH
15 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
1da177e4
LT
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
8e87d142
YH
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
1da177e4
LT
22 SOFTWARE IS DISCLAIMED.
23*/
24
25/* Bluetooth HCI event handling. */
26
1da177e4
LT
27#include <linux/module.h>
28
29#include <linux/types.h>
30#include <linux/errno.h>
31#include <linux/kernel.h>
1da177e4
LT
32#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>
1da177e4
LT
38#include <net/sock.h>
39
40#include <asm/system.h>
70f23020 41#include <linux/uaccess.h>
1da177e4
LT
42#include <asm/unaligned.h>
43
44#include <net/bluetooth/bluetooth.h>
45#include <net/bluetooth/hci_core.h>
46
eb939922 47static bool enable_le;
e6100a25 48
1da177e4
LT
49/* Handle HCI Event packets */
50
a9de9248 51static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 52{
a9de9248 53 __u8 status = *((__u8 *) skb->data);
1da177e4 54
a9de9248 55 BT_DBG("%s status 0x%x", hdev->name, status);
1da177e4 56
e6d465cb
AG
57 if (status) {
58 hci_dev_lock(hdev);
59 mgmt_stop_discovery_failed(hdev, status);
60 hci_dev_unlock(hdev);
a9de9248 61 return;
e6d465cb 62 }
1da177e4 63
89352e7d
AG
64 clear_bit(HCI_INQUIRY, &hdev->flags);
65
56e5cb86 66 hci_dev_lock(hdev);
ff9ef578 67 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
56e5cb86 68 hci_dev_unlock(hdev);
6bd57416 69
23bb5763 70 hci_req_complete(hdev, HCI_OP_INQUIRY_CANCEL, status);
a9de9248
MH
71
72 hci_conn_check_pending(hdev);
73}
6bd57416 74
a9de9248
MH
75static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
76{
77 __u8 status = *((__u8 *) skb->data);
6bd57416 78
a9de9248 79 BT_DBG("%s status 0x%x", hdev->name, status);
6bd57416 80
a9de9248
MH
81 if (status)
82 return;
1da177e4 83
a9de9248
MH
84 hci_conn_check_pending(hdev);
85}
86
87static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev, struct sk_buff *skb)
88{
89 BT_DBG("%s", hdev->name);
90}
91
92static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
93{
94 struct hci_rp_role_discovery *rp = (void *) skb->data;
95 struct hci_conn *conn;
96
97 BT_DBG("%s status 0x%x", hdev->name, rp->status);
98
99 if (rp->status)
100 return;
101
102 hci_dev_lock(hdev);
103
104 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
105 if (conn) {
106 if (rp->role)
107 conn->link_mode &= ~HCI_LM_MASTER;
108 else
109 conn->link_mode |= HCI_LM_MASTER;
1da177e4 110 }
a9de9248
MH
111
112 hci_dev_unlock(hdev);
1da177e4
LT
113}
114
e4e8e37c
MH
115static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
116{
117 struct hci_rp_read_link_policy *rp = (void *) skb->data;
118 struct hci_conn *conn;
119
120 BT_DBG("%s status 0x%x", hdev->name, rp->status);
121
122 if (rp->status)
123 return;
124
125 hci_dev_lock(hdev);
126
127 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
128 if (conn)
129 conn->link_policy = __le16_to_cpu(rp->policy);
130
131 hci_dev_unlock(hdev);
132}
133
a9de9248 134static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 135{
a9de9248 136 struct hci_rp_write_link_policy *rp = (void *) skb->data;
1da177e4 137 struct hci_conn *conn;
04837f64 138 void *sent;
1da177e4 139
a9de9248 140 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1da177e4 141
a9de9248
MH
142 if (rp->status)
143 return;
1da177e4 144
a9de9248
MH
145 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
146 if (!sent)
147 return;
1da177e4 148
a9de9248 149 hci_dev_lock(hdev);
1da177e4 150
a9de9248 151 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
e4e8e37c 152 if (conn)
83985319 153 conn->link_policy = get_unaligned_le16(sent + 2);
1da177e4 154
a9de9248
MH
155 hci_dev_unlock(hdev);
156}
1da177e4 157
e4e8e37c
MH
158static void hci_cc_read_def_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
159{
160 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
161
162 BT_DBG("%s status 0x%x", hdev->name, rp->status);
163
164 if (rp->status)
165 return;
166
167 hdev->link_policy = __le16_to_cpu(rp->policy);
168}
169
170static void hci_cc_write_def_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
171{
172 __u8 status = *((__u8 *) skb->data);
173 void *sent;
174
175 BT_DBG("%s status 0x%x", hdev->name, status);
176
177 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
178 if (!sent)
179 return;
180
181 if (!status)
182 hdev->link_policy = get_unaligned_le16(sent);
183
23bb5763 184 hci_req_complete(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, status);
e4e8e37c
MH
185}
186
a9de9248
MH
187static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
188{
189 __u8 status = *((__u8 *) skb->data);
04837f64 190
a9de9248 191 BT_DBG("%s status 0x%x", hdev->name, status);
04837f64 192
10572132
GP
193 clear_bit(HCI_RESET, &hdev->flags);
194
23bb5763 195 hci_req_complete(hdev, HCI_OP_RESET, status);
d23264a8 196
7005ff17 197 /* Reset all flags, except persistent ones */
95947a39
HG
198 hdev->dev_flags &= BIT(HCI_MGMT) | BIT(HCI_SETUP) | BIT(HCI_AUTO_OFF) |
199 BIT(HCI_LINK_KEYS) | BIT(HCI_DEBUG_KEYS);
a9de9248 200}
04837f64 201
a9de9248
MH
202static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
203{
204 __u8 status = *((__u8 *) skb->data);
205 void *sent;
04837f64 206
a9de9248 207 BT_DBG("%s status 0x%x", hdev->name, status);
04837f64 208
a9de9248
MH
209 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
210 if (!sent)
211 return;
04837f64 212
56e5cb86
JH
213 hci_dev_lock(hdev);
214
a8b2d5c2 215 if (test_bit(HCI_MGMT, &hdev->dev_flags))
744cf19e 216 mgmt_set_local_name_complete(hdev, sent, status);
b312b161 217
56e5cb86
JH
218 if (status == 0)
219 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
b312b161 220
56e5cb86 221 hci_dev_unlock(hdev);
a9de9248
MH
222}
223
224static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
225{
226 struct hci_rp_read_local_name *rp = (void *) skb->data;
227
228 BT_DBG("%s status 0x%x", hdev->name, rp->status);
229
230 if (rp->status)
231 return;
232
1f6c6378 233 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
a9de9248
MH
234}
235
236static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
237{
238 __u8 status = *((__u8 *) skb->data);
239 void *sent;
240
241 BT_DBG("%s status 0x%x", hdev->name, status);
242
243 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
244 if (!sent)
245 return;
246
247 if (!status) {
248 __u8 param = *((__u8 *) sent);
249
250 if (param == AUTH_ENABLED)
251 set_bit(HCI_AUTH, &hdev->flags);
252 else
253 clear_bit(HCI_AUTH, &hdev->flags);
1da177e4 254 }
a9de9248 255
33ef95ed
JH
256 if (test_bit(HCI_MGMT, &hdev->dev_flags))
257 mgmt_auth_enable_complete(hdev, status);
258
23bb5763 259 hci_req_complete(hdev, HCI_OP_WRITE_AUTH_ENABLE, status);
1da177e4
LT
260}
261
a9de9248 262static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 263{
a9de9248 264 __u8 status = *((__u8 *) skb->data);
1da177e4
LT
265 void *sent;
266
a9de9248 267 BT_DBG("%s status 0x%x", hdev->name, status);
1da177e4 268
a9de9248
MH
269 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
270 if (!sent)
271 return;
1da177e4 272
a9de9248
MH
273 if (!status) {
274 __u8 param = *((__u8 *) sent);
275
276 if (param)
277 set_bit(HCI_ENCRYPT, &hdev->flags);
278 else
279 clear_bit(HCI_ENCRYPT, &hdev->flags);
280 }
1da177e4 281
23bb5763 282 hci_req_complete(hdev, HCI_OP_WRITE_ENCRYPT_MODE, status);
a9de9248 283}
1da177e4 284
a9de9248
MH
285static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
286{
36f7fc7e
JH
287 __u8 param, status = *((__u8 *) skb->data);
288 int old_pscan, old_iscan;
a9de9248 289 void *sent;
1da177e4 290
a9de9248 291 BT_DBG("%s status 0x%x", hdev->name, status);
1da177e4 292
a9de9248
MH
293 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
294 if (!sent)
295 return;
1da177e4 296
36f7fc7e
JH
297 param = *((__u8 *) sent);
298
56e5cb86
JH
299 hci_dev_lock(hdev);
300
2d7cee58 301 if (status != 0) {
744cf19e 302 mgmt_write_scan_failed(hdev, param, status);
2d7cee58
JH
303 hdev->discov_timeout = 0;
304 goto done;
305 }
306
36f7fc7e
JH
307 old_pscan = test_and_clear_bit(HCI_PSCAN, &hdev->flags);
308 old_iscan = test_and_clear_bit(HCI_ISCAN, &hdev->flags);
309
310 if (param & SCAN_INQUIRY) {
311 set_bit(HCI_ISCAN, &hdev->flags);
312 if (!old_iscan)
744cf19e 313 mgmt_discoverable(hdev, 1);
16ab91ab
JH
314 if (hdev->discov_timeout > 0) {
315 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
316 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
317 to);
318 }
36f7fc7e 319 } else if (old_iscan)
744cf19e 320 mgmt_discoverable(hdev, 0);
36f7fc7e
JH
321
322 if (param & SCAN_PAGE) {
323 set_bit(HCI_PSCAN, &hdev->flags);
324 if (!old_pscan)
744cf19e 325 mgmt_connectable(hdev, 1);
36f7fc7e 326 } else if (old_pscan)
744cf19e 327 mgmt_connectable(hdev, 0);
1da177e4 328
36f7fc7e 329done:
56e5cb86 330 hci_dev_unlock(hdev);
23bb5763 331 hci_req_complete(hdev, HCI_OP_WRITE_SCAN_ENABLE, status);
a9de9248 332}
1da177e4 333
a9de9248
MH
334static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
335{
336 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
1da177e4 337
a9de9248 338 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1da177e4 339
a9de9248
MH
340 if (rp->status)
341 return;
1da177e4 342
a9de9248 343 memcpy(hdev->dev_class, rp->dev_class, 3);
1da177e4 344
a9de9248
MH
345 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
346 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
347}
1da177e4 348
a9de9248
MH
349static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
350{
351 __u8 status = *((__u8 *) skb->data);
352 void *sent;
1da177e4 353
a9de9248 354 BT_DBG("%s status 0x%x", hdev->name, status);
1da177e4 355
f383f275
MH
356 if (status)
357 return;
358
a9de9248
MH
359 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
360 if (!sent)
361 return;
1da177e4 362
f383f275 363 memcpy(hdev->dev_class, sent, 3);
a9de9248 364}
1da177e4 365
a9de9248
MH
366static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
367{
368 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
369 __u16 setting;
370
371 BT_DBG("%s status 0x%x", hdev->name, rp->status);
372
373 if (rp->status)
374 return;
375
376 setting = __le16_to_cpu(rp->voice_setting);
377
f383f275 378 if (hdev->voice_setting == setting)
a9de9248
MH
379 return;
380
381 hdev->voice_setting = setting;
382
383 BT_DBG("%s voice setting 0x%04x", hdev->name, setting);
384
3c54711c 385 if (hdev->notify)
a9de9248 386 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
a9de9248
MH
387}
388
389static void hci_cc_write_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
390{
391 __u8 status = *((__u8 *) skb->data);
f383f275 392 __u16 setting;
a9de9248
MH
393 void *sent;
394
395 BT_DBG("%s status 0x%x", hdev->name, status);
1da177e4 396
f383f275
MH
397 if (status)
398 return;
399
a9de9248
MH
400 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
401 if (!sent)
402 return;
1da177e4 403
f383f275 404 setting = get_unaligned_le16(sent);
1da177e4 405
f383f275
MH
406 if (hdev->voice_setting == setting)
407 return;
408
409 hdev->voice_setting = setting;
1da177e4 410
f383f275 411 BT_DBG("%s voice setting 0x%04x", hdev->name, setting);
1da177e4 412
3c54711c 413 if (hdev->notify)
f383f275 414 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
1da177e4
LT
415}
416
a9de9248 417static void hci_cc_host_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 418{
a9de9248 419 __u8 status = *((__u8 *) skb->data);
1da177e4 420
a9de9248 421 BT_DBG("%s status 0x%x", hdev->name, status);
1da177e4 422
23bb5763 423 hci_req_complete(hdev, HCI_OP_HOST_BUFFER_SIZE, status);
a9de9248 424}
1143e5a6 425
333140b5
MH
426static void hci_cc_read_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
427{
428 struct hci_rp_read_ssp_mode *rp = (void *) skb->data;
429
430 BT_DBG("%s status 0x%x", hdev->name, rp->status);
431
432 if (rp->status)
433 return;
434
84bde9d6
JH
435 if (rp->mode)
436 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
437 else
438 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
333140b5
MH
439}
440
441static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
442{
443 __u8 status = *((__u8 *) skb->data);
444 void *sent;
445
446 BT_DBG("%s status 0x%x", hdev->name, status);
447
448 if (status)
ed2c4ee3 449 goto done;
333140b5
MH
450
451 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
452 if (!sent)
453 return;
454
84bde9d6
JH
455 if (*((u8 *) sent))
456 set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
457 else
458 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
ed2c4ee3
JH
459
460done:
461 if (test_bit(HCI_MGMT, &hdev->dev_flags))
462 mgmt_ssp_enable_complete(hdev, status);
333140b5
MH
463}
464
d5859e22
JH
465static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
466{
467 if (hdev->features[6] & LMP_EXT_INQ)
468 return 2;
469
470 if (hdev->features[3] & LMP_RSSI_INQ)
471 return 1;
472
473 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
474 hdev->lmp_subver == 0x0757)
475 return 1;
476
477 if (hdev->manufacturer == 15) {
478 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
479 return 1;
480 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
481 return 1;
482 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
483 return 1;
484 }
485
486 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
487 hdev->lmp_subver == 0x1805)
488 return 1;
489
490 return 0;
491}
492
493static void hci_setup_inquiry_mode(struct hci_dev *hdev)
494{
495 u8 mode;
496
497 mode = hci_get_inquiry_mode(hdev);
498
499 hci_send_cmd(hdev, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
500}
501
502static void hci_setup_event_mask(struct hci_dev *hdev)
503{
504 /* The second byte is 0xff instead of 0x9f (two reserved bits
505 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
506 * command otherwise */
507 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
508
6de6c18d
VT
509 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
510 * any event mask for pre 1.2 devices */
5a13b095 511 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
6de6c18d
VT
512 return;
513
514 events[4] |= 0x01; /* Flow Specification Complete */
515 events[4] |= 0x02; /* Inquiry Result with RSSI */
516 events[4] |= 0x04; /* Read Remote Extended Features Complete */
517 events[5] |= 0x08; /* Synchronous Connection Complete */
518 events[5] |= 0x10; /* Synchronous Connection Changed */
d5859e22
JH
519
520 if (hdev->features[3] & LMP_RSSI_INQ)
521 events[4] |= 0x04; /* Inquiry Result with RSSI */
522
523 if (hdev->features[5] & LMP_SNIFF_SUBR)
524 events[5] |= 0x20; /* Sniff Subrating */
525
526 if (hdev->features[5] & LMP_PAUSE_ENC)
527 events[5] |= 0x80; /* Encryption Key Refresh Complete */
528
529 if (hdev->features[6] & LMP_EXT_INQ)
530 events[5] |= 0x40; /* Extended Inquiry Result */
531
532 if (hdev->features[6] & LMP_NO_FLUSH)
533 events[7] |= 0x01; /* Enhanced Flush Complete */
534
535 if (hdev->features[7] & LMP_LSTO)
536 events[6] |= 0x80; /* Link Supervision Timeout Changed */
537
538 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
539 events[6] |= 0x01; /* IO Capability Request */
540 events[6] |= 0x02; /* IO Capability Response */
541 events[6] |= 0x04; /* User Confirmation Request */
542 events[6] |= 0x08; /* User Passkey Request */
543 events[6] |= 0x10; /* Remote OOB Data Request */
544 events[6] |= 0x20; /* Simple Pairing Complete */
545 events[7] |= 0x04; /* User Passkey Notification */
546 events[7] |= 0x08; /* Keypress Notification */
547 events[7] |= 0x10; /* Remote Host Supported
548 * Features Notification */
549 }
550
551 if (hdev->features[4] & LMP_LE)
552 events[7] |= 0x20; /* LE Meta-Event */
553
554 hci_send_cmd(hdev, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
555}
556
e6100a25
AG
557static void hci_set_le_support(struct hci_dev *hdev)
558{
559 struct hci_cp_write_le_host_supported cp;
560
561 memset(&cp, 0, sizeof(cp));
562
563 if (enable_le) {
564 cp.le = 1;
565 cp.simul = !!(hdev->features[6] & LMP_SIMUL_LE_BR);
566 }
567
568 hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp), &cp);
569}
570
d5859e22
JH
571static void hci_setup(struct hci_dev *hdev)
572{
e61ef499
AE
573 if (hdev->dev_type != HCI_BREDR)
574 return;
575
d5859e22
JH
576 hci_setup_event_mask(hdev);
577
d095c1eb 578 if (hdev->hci_ver > BLUETOOTH_VER_1_1)
d5859e22
JH
579 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
580
581 if (hdev->features[6] & LMP_SIMPLE_PAIR) {
582 u8 mode = 0x01;
583 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
584 }
585
586 if (hdev->features[3] & LMP_RSSI_INQ)
587 hci_setup_inquiry_mode(hdev);
588
589 if (hdev->features[7] & LMP_INQ_TX_PWR)
590 hci_send_cmd(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
971e3a4b
AG
591
592 if (hdev->features[7] & LMP_EXTFEATURES) {
593 struct hci_cp_read_local_ext_features cp;
594
595 cp.page = 0x01;
596 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES,
597 sizeof(cp), &cp);
598 }
e6100a25
AG
599
600 if (hdev->features[4] & LMP_LE)
601 hci_set_le_support(hdev);
d5859e22
JH
602}
603
a9de9248
MH
604static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
605{
606 struct hci_rp_read_local_version *rp = (void *) skb->data;
1143e5a6 607
a9de9248 608 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1143e5a6 609
a9de9248
MH
610 if (rp->status)
611 return;
1143e5a6 612
a9de9248 613 hdev->hci_ver = rp->hci_ver;
e4e8e37c 614 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
d5859e22 615 hdev->lmp_ver = rp->lmp_ver;
e4e8e37c 616 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
d5859e22 617 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
1143e5a6 618
a9de9248
MH
619 BT_DBG("%s manufacturer %d hci ver %d:%d", hdev->name,
620 hdev->manufacturer,
621 hdev->hci_ver, hdev->hci_rev);
d5859e22
JH
622
623 if (test_bit(HCI_INIT, &hdev->flags))
624 hci_setup(hdev);
625}
626
627static void hci_setup_link_policy(struct hci_dev *hdev)
628{
629 u16 link_policy = 0;
630
631 if (hdev->features[0] & LMP_RSWITCH)
632 link_policy |= HCI_LP_RSWITCH;
633 if (hdev->features[0] & LMP_HOLD)
634 link_policy |= HCI_LP_HOLD;
635 if (hdev->features[0] & LMP_SNIFF)
636 link_policy |= HCI_LP_SNIFF;
637 if (hdev->features[1] & LMP_PARK)
638 link_policy |= HCI_LP_PARK;
639
640 link_policy = cpu_to_le16(link_policy);
641 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY,
642 sizeof(link_policy), &link_policy);
a9de9248 643}
1da177e4 644
a9de9248
MH
645static void hci_cc_read_local_commands(struct hci_dev *hdev, struct sk_buff *skb)
646{
647 struct hci_rp_read_local_commands *rp = (void *) skb->data;
1da177e4 648
a9de9248 649 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1da177e4 650
a9de9248 651 if (rp->status)
d5859e22 652 goto done;
1da177e4 653
a9de9248 654 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
d5859e22
JH
655
656 if (test_bit(HCI_INIT, &hdev->flags) && (hdev->commands[5] & 0x10))
657 hci_setup_link_policy(hdev);
658
659done:
660 hci_req_complete(hdev, HCI_OP_READ_LOCAL_COMMANDS, rp->status);
a9de9248 661}
1da177e4 662
a9de9248
MH
663static void hci_cc_read_local_features(struct hci_dev *hdev, struct sk_buff *skb)
664{
665 struct hci_rp_read_local_features *rp = (void *) skb->data;
5b7f9909 666
a9de9248 667 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1da177e4 668
a9de9248
MH
669 if (rp->status)
670 return;
5b7f9909 671
a9de9248 672 memcpy(hdev->features, rp->features, 8);
5b7f9909 673
a9de9248
MH
674 /* Adjust default settings according to features
675 * supported by device. */
1da177e4 676
a9de9248
MH
677 if (hdev->features[0] & LMP_3SLOT)
678 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
1da177e4 679
a9de9248
MH
680 if (hdev->features[0] & LMP_5SLOT)
681 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
1da177e4 682
a9de9248
MH
683 if (hdev->features[1] & LMP_HV2) {
684 hdev->pkt_type |= (HCI_HV2);
685 hdev->esco_type |= (ESCO_HV2);
686 }
1da177e4 687
a9de9248
MH
688 if (hdev->features[1] & LMP_HV3) {
689 hdev->pkt_type |= (HCI_HV3);
690 hdev->esco_type |= (ESCO_HV3);
691 }
1da177e4 692
a9de9248
MH
693 if (hdev->features[3] & LMP_ESCO)
694 hdev->esco_type |= (ESCO_EV3);
da1f5198 695
a9de9248
MH
696 if (hdev->features[4] & LMP_EV4)
697 hdev->esco_type |= (ESCO_EV4);
da1f5198 698
a9de9248
MH
699 if (hdev->features[4] & LMP_EV5)
700 hdev->esco_type |= (ESCO_EV5);
1da177e4 701
efc7688b
MH
702 if (hdev->features[5] & LMP_EDR_ESCO_2M)
703 hdev->esco_type |= (ESCO_2EV3);
704
705 if (hdev->features[5] & LMP_EDR_ESCO_3M)
706 hdev->esco_type |= (ESCO_3EV3);
707
708 if (hdev->features[5] & LMP_EDR_3S_ESCO)
709 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
710
a9de9248
MH
711 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name,
712 hdev->features[0], hdev->features[1],
713 hdev->features[2], hdev->features[3],
714 hdev->features[4], hdev->features[5],
715 hdev->features[6], hdev->features[7]);
716}
1da177e4 717
971e3a4b
AG
718static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
719 struct sk_buff *skb)
720{
721 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
722
723 BT_DBG("%s status 0x%x", hdev->name, rp->status);
724
725 if (rp->status)
726 return;
727
b5b32b65
AG
728 switch (rp->page) {
729 case 0:
730 memcpy(hdev->features, rp->features, 8);
731 break;
732 case 1:
733 memcpy(hdev->host_features, rp->features, 8);
734 break;
735 }
971e3a4b
AG
736
737 hci_req_complete(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, rp->status);
738}
739
1e89cffb
AE
740static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
741 struct sk_buff *skb)
742{
743 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
744
745 BT_DBG("%s status 0x%x", hdev->name, rp->status);
746
747 if (rp->status)
748 return;
749
750 hdev->flow_ctl_mode = rp->mode;
751
752 hci_req_complete(hdev, HCI_OP_READ_FLOW_CONTROL_MODE, rp->status);
753}
754
a9de9248
MH
755static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
756{
757 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
1da177e4 758
a9de9248 759 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1da177e4 760
a9de9248
MH
761 if (rp->status)
762 return;
1da177e4 763
a9de9248
MH
764 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
765 hdev->sco_mtu = rp->sco_mtu;
766 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
767 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
768
769 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
770 hdev->sco_mtu = 64;
771 hdev->sco_pkts = 8;
1da177e4 772 }
a9de9248
MH
773
774 hdev->acl_cnt = hdev->acl_pkts;
775 hdev->sco_cnt = hdev->sco_pkts;
776
777 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name,
778 hdev->acl_mtu, hdev->acl_pkts,
779 hdev->sco_mtu, hdev->sco_pkts);
780}
781
782static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
783{
784 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
785
786 BT_DBG("%s status 0x%x", hdev->name, rp->status);
787
788 if (!rp->status)
789 bacpy(&hdev->bdaddr, &rp->bdaddr);
790
23bb5763
JH
791 hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
792}
793
350ee4cf
AE
794static void hci_cc_read_data_block_size(struct hci_dev *hdev,
795 struct sk_buff *skb)
796{
797 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
798
799 BT_DBG("%s status 0x%x", hdev->name, rp->status);
800
801 if (rp->status)
802 return;
803
804 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
805 hdev->block_len = __le16_to_cpu(rp->block_len);
806 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
807
808 hdev->block_cnt = hdev->num_blocks;
809
810 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
811 hdev->block_cnt, hdev->block_len);
812
813 hci_req_complete(hdev, HCI_OP_READ_DATA_BLOCK_SIZE, rp->status);
814}
815
23bb5763
JH
816static void hci_cc_write_ca_timeout(struct hci_dev *hdev, struct sk_buff *skb)
817{
818 __u8 status = *((__u8 *) skb->data);
819
820 BT_DBG("%s status 0x%x", hdev->name, status);
821
822 hci_req_complete(hdev, HCI_OP_WRITE_CA_TIMEOUT, status);
a9de9248
MH
823}
824
928abaa7
AE
825static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
826 struct sk_buff *skb)
827{
828 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
829
830 BT_DBG("%s status 0x%x", hdev->name, rp->status);
831
832 if (rp->status)
833 return;
834
835 hdev->amp_status = rp->amp_status;
836 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
837 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
838 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
839 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
840 hdev->amp_type = rp->amp_type;
841 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
842 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
843 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
844 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
845
846 hci_req_complete(hdev, HCI_OP_READ_LOCAL_AMP_INFO, rp->status);
847}
848
b0916ea0
JH
849static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
850 struct sk_buff *skb)
851{
852 __u8 status = *((__u8 *) skb->data);
853
854 BT_DBG("%s status 0x%x", hdev->name, status);
855
856 hci_req_complete(hdev, HCI_OP_DELETE_STORED_LINK_KEY, status);
857}
858
d5859e22
JH
859static void hci_cc_set_event_mask(struct hci_dev *hdev, struct sk_buff *skb)
860{
861 __u8 status = *((__u8 *) skb->data);
862
863 BT_DBG("%s status 0x%x", hdev->name, status);
864
865 hci_req_complete(hdev, HCI_OP_SET_EVENT_MASK, status);
866}
867
868static void hci_cc_write_inquiry_mode(struct hci_dev *hdev,
869 struct sk_buff *skb)
870{
871 __u8 status = *((__u8 *) skb->data);
872
873 BT_DBG("%s status 0x%x", hdev->name, status);
874
875 hci_req_complete(hdev, HCI_OP_WRITE_INQUIRY_MODE, status);
876}
877
878static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
879 struct sk_buff *skb)
880{
881 __u8 status = *((__u8 *) skb->data);
882
883 BT_DBG("%s status 0x%x", hdev->name, status);
884
885 hci_req_complete(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, status);
886}
887
888static void hci_cc_set_event_flt(struct hci_dev *hdev, struct sk_buff *skb)
889{
890 __u8 status = *((__u8 *) skb->data);
891
892 BT_DBG("%s status 0x%x", hdev->name, status);
893
894 hci_req_complete(hdev, HCI_OP_SET_EVENT_FLT, status);
895}
896
980e1a53
JH
897static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
898{
899 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
900 struct hci_cp_pin_code_reply *cp;
901 struct hci_conn *conn;
902
903 BT_DBG("%s status 0x%x", hdev->name, rp->status);
904
56e5cb86
JH
905 hci_dev_lock(hdev);
906
a8b2d5c2 907 if (test_bit(HCI_MGMT, &hdev->dev_flags))
744cf19e 908 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
980e1a53
JH
909
910 if (rp->status != 0)
56e5cb86 911 goto unlock;
980e1a53
JH
912
913 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
914 if (!cp)
56e5cb86 915 goto unlock;
980e1a53
JH
916
917 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
918 if (conn)
919 conn->pin_length = cp->pin_len;
56e5cb86
JH
920
921unlock:
922 hci_dev_unlock(hdev);
980e1a53
JH
923}
924
925static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
926{
927 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
928
929 BT_DBG("%s status 0x%x", hdev->name, rp->status);
930
56e5cb86
JH
931 hci_dev_lock(hdev);
932
a8b2d5c2 933 if (test_bit(HCI_MGMT, &hdev->dev_flags))
744cf19e 934 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
980e1a53 935 rp->status);
56e5cb86
JH
936
937 hci_dev_unlock(hdev);
980e1a53 938}
56e5cb86 939
6ed58ec5
VT
940static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
941 struct sk_buff *skb)
942{
943 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
944
945 BT_DBG("%s status 0x%x", hdev->name, rp->status);
946
947 if (rp->status)
948 return;
949
950 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
951 hdev->le_pkts = rp->le_max_pkt;
952
953 hdev->le_cnt = hdev->le_pkts;
954
955 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
956
957 hci_req_complete(hdev, HCI_OP_LE_READ_BUFFER_SIZE, rp->status);
958}
980e1a53 959
a5c29683
JH
960static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
961{
962 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
963
964 BT_DBG("%s status 0x%x", hdev->name, rp->status);
965
56e5cb86
JH
966 hci_dev_lock(hdev);
967
a8b2d5c2 968 if (test_bit(HCI_MGMT, &hdev->dev_flags))
272d90df
JH
969 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
970 0, rp->status);
56e5cb86
JH
971
972 hci_dev_unlock(hdev);
a5c29683
JH
973}
974
975static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
976 struct sk_buff *skb)
977{
978 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
979
980 BT_DBG("%s status 0x%x", hdev->name, rp->status);
981
56e5cb86
JH
982 hci_dev_lock(hdev);
983
a8b2d5c2 984 if (test_bit(HCI_MGMT, &hdev->dev_flags))
744cf19e 985 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
272d90df 986 ACL_LINK, 0,
a5c29683 987 rp->status);
56e5cb86
JH
988
989 hci_dev_unlock(hdev);
a5c29683
JH
990}
991
1143d458
BG
992static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
993{
994 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
995
996 BT_DBG("%s status 0x%x", hdev->name, rp->status);
997
998 hci_dev_lock(hdev);
999
a8b2d5c2 1000 if (test_bit(HCI_MGMT, &hdev->dev_flags))
272d90df
JH
1001 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
1002 0, rp->status);
1143d458
BG
1003
1004 hci_dev_unlock(hdev);
1005}
1006
1007static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
1008 struct sk_buff *skb)
1009{
1010 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1011
1012 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1013
1014 hci_dev_lock(hdev);
1015
a8b2d5c2 1016 if (test_bit(HCI_MGMT, &hdev->dev_flags))
1143d458 1017 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
272d90df 1018 ACL_LINK, 0,
1143d458
BG
1019 rp->status);
1020
1021 hci_dev_unlock(hdev);
1022}
1023
c35938b2
SJ
1024static void hci_cc_read_local_oob_data_reply(struct hci_dev *hdev,
1025 struct sk_buff *skb)
1026{
1027 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
1028
1029 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1030
56e5cb86 1031 hci_dev_lock(hdev);
744cf19e 1032 mgmt_read_local_oob_data_reply_complete(hdev, rp->hash,
c35938b2 1033 rp->randomizer, rp->status);
56e5cb86 1034 hci_dev_unlock(hdev);
c35938b2
SJ
1035}
1036
07f7fa5d
AG
1037static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1038{
1039 __u8 status = *((__u8 *) skb->data);
1040
1041 BT_DBG("%s status 0x%x", hdev->name, status);
7ba8b4be
AG
1042
1043 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_PARAM, status);
3fd24153
AG
1044
1045 if (status) {
1046 hci_dev_lock(hdev);
1047 mgmt_start_discovery_failed(hdev, status);
1048 hci_dev_unlock(hdev);
1049 return;
1050 }
07f7fa5d
AG
1051}
1052
eb9d91f5
AG
1053static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
1054 struct sk_buff *skb)
1055{
1056 struct hci_cp_le_set_scan_enable *cp;
1057 __u8 status = *((__u8 *) skb->data);
1058
1059 BT_DBG("%s status 0x%x", hdev->name, status);
1060
eb9d91f5
AG
1061 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1062 if (!cp)
1063 return;
1064
68a8aea4
AE
1065 switch (cp->enable) {
1066 case LE_SCANNING_ENABLED:
7ba8b4be
AG
1067 hci_req_complete(hdev, HCI_OP_LE_SET_SCAN_ENABLE, status);
1068
3fd24153
AG
1069 if (status) {
1070 hci_dev_lock(hdev);
1071 mgmt_start_discovery_failed(hdev, status);
1072 hci_dev_unlock(hdev);
7ba8b4be 1073 return;
3fd24153 1074 }
7ba8b4be 1075
d23264a8
AG
1076 set_bit(HCI_LE_SCAN, &hdev->dev_flags);
1077
db323f2f 1078 cancel_delayed_work_sync(&hdev->adv_work);
a8f13c8c
AG
1079
1080 hci_dev_lock(hdev);
eb9d91f5 1081 hci_adv_entries_clear(hdev);
343f935b 1082 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
a8f13c8c 1083 hci_dev_unlock(hdev);
68a8aea4
AE
1084 break;
1085
1086 case LE_SCANNING_DISABLED:
7ba8b4be
AG
1087 if (status)
1088 return;
1089
d23264a8
AG
1090 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
1091
d084329e 1092 schedule_delayed_work(&hdev->adv_work, ADV_CLEAR_TIMEOUT);
5e0452c0
AG
1093
1094 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED) {
1095 mgmt_interleaved_discovery(hdev);
1096 } else {
1097 hci_dev_lock(hdev);
1098 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1099 hci_dev_unlock(hdev);
1100 }
1101
68a8aea4
AE
1102 break;
1103
1104 default:
1105 BT_ERR("Used reserved LE_Scan_Enable param %d", cp->enable);
1106 break;
35815085 1107 }
eb9d91f5
AG
1108}
1109
a7a595f6
VCG
1110static void hci_cc_le_ltk_reply(struct hci_dev *hdev, struct sk_buff *skb)
1111{
1112 struct hci_rp_le_ltk_reply *rp = (void *) skb->data;
1113
1114 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1115
1116 if (rp->status)
1117 return;
1118
1119 hci_req_complete(hdev, HCI_OP_LE_LTK_REPLY, rp->status);
1120}
1121
1122static void hci_cc_le_ltk_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
1123{
1124 struct hci_rp_le_ltk_neg_reply *rp = (void *) skb->data;
1125
1126 BT_DBG("%s status 0x%x", hdev->name, rp->status);
1127
1128 if (rp->status)
1129 return;
1130
1131 hci_req_complete(hdev, HCI_OP_LE_LTK_NEG_REPLY, rp->status);
1132}
1133
f9b49306
AG
1134static inline void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1135 struct sk_buff *skb)
1136{
1137 struct hci_cp_read_local_ext_features cp;
1138 __u8 status = *((__u8 *) skb->data);
1139
1140 BT_DBG("%s status 0x%x", hdev->name, status);
1141
1142 if (status)
1143 return;
1144
1145 cp.page = 0x01;
1146 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, sizeof(cp), &cp);
1147}
1148
a9de9248
MH
1149static inline void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
1150{
1151 BT_DBG("%s status 0x%x", hdev->name, status);
1152
1153 if (status) {
23bb5763 1154 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
a9de9248 1155 hci_conn_check_pending(hdev);
56e5cb86 1156 hci_dev_lock(hdev);
a8b2d5c2 1157 if (test_bit(HCI_MGMT, &hdev->dev_flags))
7a135109 1158 mgmt_start_discovery_failed(hdev, status);
56e5cb86 1159 hci_dev_unlock(hdev);
314b2381
JH
1160 return;
1161 }
1162
89352e7d
AG
1163 set_bit(HCI_INQUIRY, &hdev->flags);
1164
56e5cb86 1165 hci_dev_lock(hdev);
343f935b 1166 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
56e5cb86 1167 hci_dev_unlock(hdev);
1da177e4
LT
1168}
1169
1da177e4
LT
1170static inline void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
1171{
a9de9248 1172 struct hci_cp_create_conn *cp;
1da177e4 1173 struct hci_conn *conn;
1da177e4 1174
a9de9248
MH
1175 BT_DBG("%s status 0x%x", hdev->name, status);
1176
1177 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
1da177e4
LT
1178 if (!cp)
1179 return;
1180
1181 hci_dev_lock(hdev);
1182
1183 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1184
a9de9248 1185 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->bdaddr), conn);
1da177e4
LT
1186
1187 if (status) {
1188 if (conn && conn->state == BT_CONNECT) {
4c67bc74
MH
1189 if (status != 0x0c || conn->attempt > 2) {
1190 conn->state = BT_CLOSED;
1191 hci_proto_connect_cfm(conn, status);
1192 hci_conn_del(conn);
1193 } else
1194 conn->state = BT_CONNECT2;
1da177e4
LT
1195 }
1196 } else {
1197 if (!conn) {
1198 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr);
1199 if (conn) {
a0c808b3 1200 conn->out = true;
1da177e4
LT
1201 conn->link_mode |= HCI_LM_MASTER;
1202 } else
893ef971 1203 BT_ERR("No memory for new connection");
1da177e4
LT
1204 }
1205 }
1206
1207 hci_dev_unlock(hdev);
1208}
1209
a9de9248 1210static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
1da177e4 1211{
a9de9248
MH
1212 struct hci_cp_add_sco *cp;
1213 struct hci_conn *acl, *sco;
1214 __u16 handle;
1da177e4 1215
b6a0dc82
MH
1216 BT_DBG("%s status 0x%x", hdev->name, status);
1217
a9de9248
MH
1218 if (!status)
1219 return;
1da177e4 1220
a9de9248
MH
1221 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1222 if (!cp)
1223 return;
1da177e4 1224
a9de9248 1225 handle = __le16_to_cpu(cp->handle);
1da177e4 1226
a9de9248 1227 BT_DBG("%s handle %d", hdev->name, handle);
1da177e4 1228
a9de9248 1229 hci_dev_lock(hdev);
1da177e4 1230
a9de9248 1231 acl = hci_conn_hash_lookup_handle(hdev, handle);
5a08ecce
AE
1232 if (acl) {
1233 sco = acl->link;
1234 if (sco) {
1235 sco->state = BT_CLOSED;
1da177e4 1236
5a08ecce
AE
1237 hci_proto_connect_cfm(sco, status);
1238 hci_conn_del(sco);
1239 }
a9de9248 1240 }
1da177e4 1241
a9de9248
MH
1242 hci_dev_unlock(hdev);
1243}
1da177e4 1244
f8558555
MH
1245static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1246{
1247 struct hci_cp_auth_requested *cp;
1248 struct hci_conn *conn;
1249
1250 BT_DBG("%s status 0x%x", hdev->name, status);
1251
1252 if (!status)
1253 return;
1254
1255 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
1256 if (!cp)
1257 return;
1258
1259 hci_dev_lock(hdev);
1260
1261 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1262 if (conn) {
1263 if (conn->state == BT_CONFIG) {
1264 hci_proto_connect_cfm(conn, status);
1265 hci_conn_put(conn);
1266 }
1267 }
1268
1269 hci_dev_unlock(hdev);
1270}
1271
1272static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
1273{
1274 struct hci_cp_set_conn_encrypt *cp;
1275 struct hci_conn *conn;
1276
1277 BT_DBG("%s status 0x%x", hdev->name, status);
1278
1279 if (!status)
1280 return;
1281
1282 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
1283 if (!cp)
1284 return;
1285
1286 hci_dev_lock(hdev);
1287
1288 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1289 if (conn) {
1290 if (conn->state == BT_CONFIG) {
1291 hci_proto_connect_cfm(conn, status);
1292 hci_conn_put(conn);
1293 }
1294 }
1295
1296 hci_dev_unlock(hdev);
1297}
1298
127178d2 1299static int hci_outgoing_auth_needed(struct hci_dev *hdev,
138d22ef 1300 struct hci_conn *conn)
392599b9 1301{
392599b9
JH
1302 if (conn->state != BT_CONFIG || !conn->out)
1303 return 0;
1304
765c2a96 1305 if (conn->pending_sec_level == BT_SECURITY_SDP)
392599b9
JH
1306 return 0;
1307
1308 /* Only request authentication for SSP connections or non-SSP
e9bf2bf0 1309 * devices with sec_level HIGH or if MITM protection is requested */
aa64a8b5 1310 if (!hci_conn_ssp_enabled(conn) &&
e9bf2bf0
VCG
1311 conn->pending_sec_level != BT_SECURITY_HIGH &&
1312 !(conn->auth_type & 0x01))
392599b9
JH
1313 return 0;
1314
392599b9
JH
1315 return 1;
1316}
1317
30dc78e1
JH
1318static inline int hci_resolve_name(struct hci_dev *hdev, struct inquiry_entry *e)
1319{
1320 struct hci_cp_remote_name_req cp;
1321
1322 memset(&cp, 0, sizeof(cp));
1323
1324 bacpy(&cp.bdaddr, &e->data.bdaddr);
1325 cp.pscan_rep_mode = e->data.pscan_rep_mode;
1326 cp.pscan_mode = e->data.pscan_mode;
1327 cp.clock_offset = e->data.clock_offset;
1328
1329 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
1330}
1331
b644ba33 1332static bool hci_resolve_next_name(struct hci_dev *hdev)
30dc78e1
JH
1333{
1334 struct discovery_state *discov = &hdev->discovery;
1335 struct inquiry_entry *e;
1336
b644ba33
JH
1337 if (list_empty(&discov->resolve))
1338 return false;
1339
1340 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1341 if (hci_resolve_name(hdev, e) == 0) {
1342 e->name_state = NAME_PENDING;
1343 return true;
1344 }
1345
1346 return false;
1347}
1348
1349static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
1350 bdaddr_t *bdaddr, u8 *name, u8 name_len)
1351{
1352 struct discovery_state *discov = &hdev->discovery;
1353 struct inquiry_entry *e;
1354
1355 if (conn && !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
1356 mgmt_device_connected(hdev, bdaddr, ACL_LINK, 0x00,
1357 name, name_len, conn->dev_class);
1358
1359 if (discov->state == DISCOVERY_STOPPED)
1360 return;
1361
30dc78e1
JH
1362 if (discov->state == DISCOVERY_STOPPING)
1363 goto discov_complete;
1364
1365 if (discov->state != DISCOVERY_RESOLVING)
1366 return;
1367
1368 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
1369 if (e) {
1370 e->name_state = NAME_KNOWN;
1371 list_del(&e->list);
b644ba33
JH
1372 if (name)
1373 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
1374 e->data.rssi, name, name_len);
30dc78e1
JH
1375 }
1376
b644ba33 1377 if (hci_resolve_next_name(hdev))
30dc78e1 1378 return;
30dc78e1
JH
1379
1380discov_complete:
1381 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1382}
1383
a9de9248
MH
1384static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
1385{
127178d2
JH
1386 struct hci_cp_remote_name_req *cp;
1387 struct hci_conn *conn;
1388
a9de9248 1389 BT_DBG("%s status 0x%x", hdev->name, status);
127178d2
JH
1390
1391 /* If successful wait for the name req complete event before
1392 * checking for the need to do authentication */
1393 if (!status)
1394 return;
1395
1396 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
1397 if (!cp)
1398 return;
1399
1400 hci_dev_lock(hdev);
1401
b644ba33
JH
1402 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1403
a8b2d5c2 1404 if (test_bit(HCI_MGMT, &hdev->dev_flags))
b644ba33 1405 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
30dc78e1 1406
79c6c70c
JH
1407 if (!conn)
1408 goto unlock;
1409
1410 if (!hci_outgoing_auth_needed(hdev, conn))
1411 goto unlock;
1412
51a8efd7 1413 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
127178d2
JH
1414 struct hci_cp_auth_requested cp;
1415 cp.handle = __cpu_to_le16(conn->handle);
1416 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1417 }
1418
79c6c70c 1419unlock:
127178d2 1420 hci_dev_unlock(hdev);
a9de9248 1421}
1da177e4 1422
769be974
MH
1423static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
1424{
1425 struct hci_cp_read_remote_features *cp;
1426 struct hci_conn *conn;
1427
1428 BT_DBG("%s status 0x%x", hdev->name, status);
1429
1430 if (!status)
1431 return;
1432
1433 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
1434 if (!cp)
1435 return;
1436
1437 hci_dev_lock(hdev);
1438
1439 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1440 if (conn) {
1441 if (conn->state == BT_CONFIG) {
769be974
MH
1442 hci_proto_connect_cfm(conn, status);
1443 hci_conn_put(conn);
1444 }
1445 }
1446
1447 hci_dev_unlock(hdev);
1448}
1449
1450static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
1451{
1452 struct hci_cp_read_remote_ext_features *cp;
1453 struct hci_conn *conn;
1454
1455 BT_DBG("%s status 0x%x", hdev->name, status);
1456
1457 if (!status)
1458 return;
1459
1460 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
1461 if (!cp)
1462 return;
1463
1464 hci_dev_lock(hdev);
1465
1466 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1467 if (conn) {
1468 if (conn->state == BT_CONFIG) {
769be974
MH
1469 hci_proto_connect_cfm(conn, status);
1470 hci_conn_put(conn);
1471 }
1472 }
1473
1474 hci_dev_unlock(hdev);
1475}
1476
a9de9248
MH
1477static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
1478{
b6a0dc82
MH
1479 struct hci_cp_setup_sync_conn *cp;
1480 struct hci_conn *acl, *sco;
1481 __u16 handle;
1482
a9de9248 1483 BT_DBG("%s status 0x%x", hdev->name, status);
b6a0dc82
MH
1484
1485 if (!status)
1486 return;
1487
1488 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
1489 if (!cp)
1490 return;
1491
1492 handle = __le16_to_cpu(cp->handle);
1493
1494 BT_DBG("%s handle %d", hdev->name, handle);
1495
1496 hci_dev_lock(hdev);
1497
1498 acl = hci_conn_hash_lookup_handle(hdev, handle);
5a08ecce
AE
1499 if (acl) {
1500 sco = acl->link;
1501 if (sco) {
1502 sco->state = BT_CLOSED;
b6a0dc82 1503
5a08ecce
AE
1504 hci_proto_connect_cfm(sco, status);
1505 hci_conn_del(sco);
1506 }
b6a0dc82
MH
1507 }
1508
1509 hci_dev_unlock(hdev);
1da177e4
LT
1510}
1511
a9de9248 1512static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
1da177e4 1513{
a9de9248
MH
1514 struct hci_cp_sniff_mode *cp;
1515 struct hci_conn *conn;
1da177e4 1516
a9de9248 1517 BT_DBG("%s status 0x%x", hdev->name, status);
04837f64 1518
a9de9248
MH
1519 if (!status)
1520 return;
04837f64 1521
a9de9248
MH
1522 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
1523 if (!cp)
1524 return;
04837f64 1525
a9de9248 1526 hci_dev_lock(hdev);
04837f64 1527
a9de9248 1528 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
e73439d8 1529 if (conn) {
51a8efd7 1530 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
04837f64 1531
51a8efd7 1532 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
e73439d8
MH
1533 hci_sco_setup(conn, status);
1534 }
1535
a9de9248
MH
1536 hci_dev_unlock(hdev);
1537}
04837f64 1538
a9de9248
MH
1539static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
1540{
1541 struct hci_cp_exit_sniff_mode *cp;
1542 struct hci_conn *conn;
04837f64 1543
a9de9248 1544 BT_DBG("%s status 0x%x", hdev->name, status);
04837f64 1545
a9de9248
MH
1546 if (!status)
1547 return;
04837f64 1548
a9de9248
MH
1549 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
1550 if (!cp)
1551 return;
04837f64 1552
a9de9248 1553 hci_dev_lock(hdev);
1da177e4 1554
a9de9248 1555 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
e73439d8 1556 if (conn) {
51a8efd7 1557 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
1da177e4 1558
51a8efd7 1559 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
e73439d8
MH
1560 hci_sco_setup(conn, status);
1561 }
1562
a9de9248 1563 hci_dev_unlock(hdev);
1da177e4
LT
1564}
1565
88c3df13
JH
1566static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
1567{
1568 struct hci_cp_disconnect *cp;
1569 struct hci_conn *conn;
1570
1571 if (!status)
1572 return;
1573
1574 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
1575 if (!cp)
1576 return;
1577
1578 hci_dev_lock(hdev);
1579
1580 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
1581 if (conn)
1582 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
1583 conn->dst_type, status);
1584
1585 hci_dev_unlock(hdev);
1586}
1587
fcd89c09
VT
1588static void hci_cs_le_create_conn(struct hci_dev *hdev, __u8 status)
1589{
1590 struct hci_cp_le_create_conn *cp;
1591 struct hci_conn *conn;
1592
1593 BT_DBG("%s status 0x%x", hdev->name, status);
1594
1595 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_CREATE_CONN);
1596 if (!cp)
1597 return;
1598
1599 hci_dev_lock(hdev);
1600
1601 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->peer_addr);
1602
1603 BT_DBG("%s bdaddr %s conn %p", hdev->name, batostr(&cp->peer_addr),
1604 conn);
1605
1606 if (status) {
1607 if (conn && conn->state == BT_CONNECT) {
1608 conn->state = BT_CLOSED;
1609 hci_proto_connect_cfm(conn, status);
1610 hci_conn_del(conn);
1611 }
1612 } else {
1613 if (!conn) {
1614 conn = hci_conn_add(hdev, LE_LINK, &cp->peer_addr);
29b7988a
AG
1615 if (conn) {
1616 conn->dst_type = cp->peer_addr_type;
a0c808b3 1617 conn->out = true;
29b7988a 1618 } else {
fcd89c09 1619 BT_ERR("No memory for new connection");
29b7988a 1620 }
fcd89c09
VT
1621 }
1622 }
1623
1624 hci_dev_unlock(hdev);
1625}
1626
a7a595f6
VCG
1627static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
1628{
1629 BT_DBG("%s status 0x%x", hdev->name, status);
1630}
1631
1da177e4
LT
1632static inline void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1633{
1634 __u8 status = *((__u8 *) skb->data);
30dc78e1
JH
1635 struct discovery_state *discov = &hdev->discovery;
1636 struct inquiry_entry *e;
1da177e4
LT
1637
1638 BT_DBG("%s status %d", hdev->name, status);
1639
23bb5763 1640 hci_req_complete(hdev, HCI_OP_INQUIRY, status);
6bd57416 1641
a9de9248 1642 hci_conn_check_pending(hdev);
89352e7d
AG
1643
1644 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
1645 return;
1646
a8b2d5c2 1647 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
30dc78e1
JH
1648 return;
1649
56e5cb86 1650 hci_dev_lock(hdev);
30dc78e1 1651
343f935b 1652 if (discov->state != DISCOVERY_FINDING)
30dc78e1
JH
1653 goto unlock;
1654
1655 if (list_empty(&discov->resolve)) {
1656 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1657 goto unlock;
1658 }
1659
1660 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
1661 if (e && hci_resolve_name(hdev, e) == 0) {
1662 e->name_state = NAME_PENDING;
1663 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
1664 } else {
1665 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1666 }
1667
1668unlock:
56e5cb86 1669 hci_dev_unlock(hdev);
1da177e4
LT
1670}
1671
1da177e4
LT
1672static inline void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
1673{
45bb4bf0 1674 struct inquiry_data data;
a9de9248 1675 struct inquiry_info *info = (void *) (skb->data + 1);
1da177e4
LT
1676 int num_rsp = *((__u8 *) skb->data);
1677
1678 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1679
45bb4bf0
MH
1680 if (!num_rsp)
1681 return;
1682
1da177e4 1683 hci_dev_lock(hdev);
45bb4bf0 1684
e17acd40 1685 for (; num_rsp; num_rsp--, info++) {
3175405b
JH
1686 bool name_known;
1687
1da177e4
LT
1688 bacpy(&data.bdaddr, &info->bdaddr);
1689 data.pscan_rep_mode = info->pscan_rep_mode;
1690 data.pscan_period_mode = info->pscan_period_mode;
1691 data.pscan_mode = info->pscan_mode;
1692 memcpy(data.dev_class, info->dev_class, 3);
1693 data.clock_offset = info->clock_offset;
1694 data.rssi = 0x00;
41a96212 1695 data.ssp_mode = 0x00;
3175405b
JH
1696
1697 name_known = hci_inquiry_cache_update(hdev, &data, false);
48264f06 1698 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
7d262f86
AG
1699 info->dev_class, 0, !name_known,
1700 NULL, 0);
1da177e4 1701 }
45bb4bf0 1702
1da177e4
LT
1703 hci_dev_unlock(hdev);
1704}
1705
1da177e4
LT
1706static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1707{
a9de9248
MH
1708 struct hci_ev_conn_complete *ev = (void *) skb->data;
1709 struct hci_conn *conn;
1da177e4
LT
1710
1711 BT_DBG("%s", hdev->name);
1712
1713 hci_dev_lock(hdev);
1714
1715 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
9499237a
MH
1716 if (!conn) {
1717 if (ev->link_type != SCO_LINK)
1718 goto unlock;
1719
1720 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
1721 if (!conn)
1722 goto unlock;
1723
1724 conn->type = SCO_LINK;
1725 }
1da177e4
LT
1726
1727 if (!ev->status) {
1728 conn->handle = __le16_to_cpu(ev->handle);
769be974
MH
1729
1730 if (conn->type == ACL_LINK) {
1731 conn->state = BT_CONFIG;
1732 hci_conn_hold(conn);
052b30b0 1733 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
769be974
MH
1734 } else
1735 conn->state = BT_CONNECTED;
1da177e4 1736
9eba32b8 1737 hci_conn_hold_device(conn);
7d0db0a3
MH
1738 hci_conn_add_sysfs(conn);
1739
1da177e4
LT
1740 if (test_bit(HCI_AUTH, &hdev->flags))
1741 conn->link_mode |= HCI_LM_AUTH;
1742
1743 if (test_bit(HCI_ENCRYPT, &hdev->flags))
1744 conn->link_mode |= HCI_LM_ENCRYPT;
1745
04837f64
MH
1746 /* Get remote features */
1747 if (conn->type == ACL_LINK) {
1748 struct hci_cp_read_remote_features cp;
1749 cp.handle = ev->handle;
769be974
MH
1750 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
1751 sizeof(cp), &cp);
04837f64
MH
1752 }
1753
1da177e4 1754 /* Set packet type for incoming connection */
d095c1eb 1755 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
1da177e4
LT
1756 struct hci_cp_change_conn_ptype cp;
1757 cp.handle = ev->handle;
a8746417
MH
1758 cp.pkt_type = cpu_to_le16(conn->pkt_type);
1759 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE,
1760 sizeof(cp), &cp);
1da177e4 1761 }
17d5c04c 1762 } else {
1da177e4 1763 conn->state = BT_CLOSED;
17d5c04c 1764 if (conn->type == ACL_LINK)
744cf19e 1765 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
48264f06 1766 conn->dst_type, ev->status);
17d5c04c 1767 }
1da177e4 1768
e73439d8
MH
1769 if (conn->type == ACL_LINK)
1770 hci_sco_setup(conn, ev->status);
1da177e4 1771
769be974
MH
1772 if (ev->status) {
1773 hci_proto_connect_cfm(conn, ev->status);
1da177e4 1774 hci_conn_del(conn);
c89b6e6b
MH
1775 } else if (ev->link_type != ACL_LINK)
1776 hci_proto_connect_cfm(conn, ev->status);
1da177e4 1777
a9de9248 1778unlock:
1da177e4 1779 hci_dev_unlock(hdev);
1da177e4 1780
a9de9248 1781 hci_conn_check_pending(hdev);
1da177e4
LT
1782}
1783
a9de9248 1784static inline void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 1785{
a9de9248
MH
1786 struct hci_ev_conn_request *ev = (void *) skb->data;
1787 int mask = hdev->link_mode;
1da177e4 1788
a9de9248
MH
1789 BT_DBG("%s bdaddr %s type 0x%x", hdev->name,
1790 batostr(&ev->bdaddr), ev->link_type);
1da177e4 1791
a9de9248 1792 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type);
1da177e4 1793
138d22ef
SJ
1794 if ((mask & HCI_LM_ACCEPT) &&
1795 !hci_blacklist_lookup(hdev, &ev->bdaddr)) {
a9de9248 1796 /* Connection accepted */
c7bdd502 1797 struct inquiry_entry *ie;
1da177e4 1798 struct hci_conn *conn;
1da177e4 1799
a9de9248 1800 hci_dev_lock(hdev);
b6a0dc82 1801
cc11b9c1
AE
1802 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
1803 if (ie)
c7bdd502
MH
1804 memcpy(ie->data.dev_class, ev->dev_class, 3);
1805
a9de9248
MH
1806 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
1807 if (!conn) {
cc11b9c1
AE
1808 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr);
1809 if (!conn) {
893ef971 1810 BT_ERR("No memory for new connection");
a9de9248
MH
1811 hci_dev_unlock(hdev);
1812 return;
1da177e4
LT
1813 }
1814 }
b6a0dc82 1815
a9de9248
MH
1816 memcpy(conn->dev_class, ev->dev_class, 3);
1817 conn->state = BT_CONNECT;
b6a0dc82 1818
a9de9248 1819 hci_dev_unlock(hdev);
1da177e4 1820
b6a0dc82
MH
1821 if (ev->link_type == ACL_LINK || !lmp_esco_capable(hdev)) {
1822 struct hci_cp_accept_conn_req cp;
1da177e4 1823
b6a0dc82
MH
1824 bacpy(&cp.bdaddr, &ev->bdaddr);
1825
1826 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
1827 cp.role = 0x00; /* Become master */
1828 else
1829 cp.role = 0x01; /* Remain slave */
1830
1831 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ,
1832 sizeof(cp), &cp);
1833 } else {
1834 struct hci_cp_accept_sync_conn_req cp;
1835
1836 bacpy(&cp.bdaddr, &ev->bdaddr);
a8746417 1837 cp.pkt_type = cpu_to_le16(conn->pkt_type);
b6a0dc82
MH
1838
1839 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
1840 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
1841 cp.max_latency = cpu_to_le16(0xffff);
1842 cp.content_format = cpu_to_le16(hdev->voice_setting);
1843 cp.retrans_effort = 0xff;
1da177e4 1844
b6a0dc82
MH
1845 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ,
1846 sizeof(cp), &cp);
1847 }
a9de9248
MH
1848 } else {
1849 /* Connection rejected */
1850 struct hci_cp_reject_conn_req cp;
1da177e4 1851
a9de9248 1852 bacpy(&cp.bdaddr, &ev->bdaddr);
9f5a0d7b 1853 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
a9de9248 1854 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
1da177e4 1855 }
1da177e4
LT
1856}
1857
a9de9248 1858static inline void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
04837f64 1859{
a9de9248 1860 struct hci_ev_disconn_complete *ev = (void *) skb->data;
04837f64
MH
1861 struct hci_conn *conn;
1862
1863 BT_DBG("%s status %d", hdev->name, ev->status);
1864
1865 hci_dev_lock(hdev);
1866
1867 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
f7520543
JH
1868 if (!conn)
1869 goto unlock;
7d0db0a3 1870
37d9ef76
JH
1871 if (ev->status == 0)
1872 conn->state = BT_CLOSED;
04837f64 1873
b644ba33
JH
1874 if (test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags) &&
1875 (conn->type == ACL_LINK || conn->type == LE_LINK)) {
37d9ef76 1876 if (ev->status != 0)
88c3df13
JH
1877 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
1878 conn->dst_type, ev->status);
37d9ef76 1879 else
afc747a6 1880 mgmt_device_disconnected(hdev, &conn->dst, conn->type,
48264f06 1881 conn->dst_type);
37d9ef76 1882 }
f7520543 1883
37d9ef76
JH
1884 if (ev->status == 0) {
1885 hci_proto_disconn_cfm(conn, ev->reason);
1886 hci_conn_del(conn);
1887 }
f7520543
JH
1888
1889unlock:
04837f64
MH
1890 hci_dev_unlock(hdev);
1891}
1892
1da177e4
LT
1893static inline void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1894{
a9de9248 1895 struct hci_ev_auth_complete *ev = (void *) skb->data;
04837f64 1896 struct hci_conn *conn;
1da177e4
LT
1897
1898 BT_DBG("%s status %d", hdev->name, ev->status);
1899
1900 hci_dev_lock(hdev);
1901
04837f64 1902 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
d7556e20
WR
1903 if (!conn)
1904 goto unlock;
1905
1906 if (!ev->status) {
aa64a8b5
JH
1907 if (!hci_conn_ssp_enabled(conn) &&
1908 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
d7556e20 1909 BT_INFO("re-auth of legacy device is not possible.");
2a611692 1910 } else {
d7556e20
WR
1911 conn->link_mode |= HCI_LM_AUTH;
1912 conn->sec_level = conn->pending_sec_level;
2a611692 1913 }
d7556e20 1914 } else {
bab73cb6
JH
1915 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
1916 ev->status);
d7556e20 1917 }
1da177e4 1918
51a8efd7
JH
1919 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
1920 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
1da177e4 1921
d7556e20 1922 if (conn->state == BT_CONFIG) {
aa64a8b5 1923 if (!ev->status && hci_conn_ssp_enabled(conn)) {
d7556e20
WR
1924 struct hci_cp_set_conn_encrypt cp;
1925 cp.handle = ev->handle;
1926 cp.encrypt = 0x01;
1927 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1928 &cp);
052b30b0 1929 } else {
d7556e20
WR
1930 conn->state = BT_CONNECTED;
1931 hci_proto_connect_cfm(conn, ev->status);
052b30b0
MH
1932 hci_conn_put(conn);
1933 }
d7556e20
WR
1934 } else {
1935 hci_auth_cfm(conn, ev->status);
052b30b0 1936
d7556e20
WR
1937 hci_conn_hold(conn);
1938 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
1939 hci_conn_put(conn);
1940 }
1941
51a8efd7 1942 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
d7556e20
WR
1943 if (!ev->status) {
1944 struct hci_cp_set_conn_encrypt cp;
1945 cp.handle = ev->handle;
1946 cp.encrypt = 0x01;
1947 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
1948 &cp);
1949 } else {
51a8efd7 1950 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
d7556e20 1951 hci_encrypt_cfm(conn, ev->status, 0x00);
1da177e4
LT
1952 }
1953 }
1954
d7556e20 1955unlock:
1da177e4
LT
1956 hci_dev_unlock(hdev);
1957}
1958
a9de9248 1959static inline void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 1960{
127178d2
JH
1961 struct hci_ev_remote_name *ev = (void *) skb->data;
1962 struct hci_conn *conn;
1963
a9de9248 1964 BT_DBG("%s", hdev->name);
1da177e4 1965
a9de9248 1966 hci_conn_check_pending(hdev);
127178d2
JH
1967
1968 hci_dev_lock(hdev);
1969
b644ba33 1970 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
30dc78e1 1971
b644ba33
JH
1972 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1973 goto check_auth;
a88a9652 1974
b644ba33
JH
1975 if (ev->status == 0)
1976 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
1977 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
1978 else
1979 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
1980
1981check_auth:
79c6c70c
JH
1982 if (!conn)
1983 goto unlock;
1984
1985 if (!hci_outgoing_auth_needed(hdev, conn))
1986 goto unlock;
1987
51a8efd7 1988 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
127178d2
JH
1989 struct hci_cp_auth_requested cp;
1990 cp.handle = __cpu_to_le16(conn->handle);
1991 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
1992 }
1993
79c6c70c 1994unlock:
127178d2 1995 hci_dev_unlock(hdev);
a9de9248
MH
1996}
1997
1998static inline void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
1999{
2000 struct hci_ev_encrypt_change *ev = (void *) skb->data;
2001 struct hci_conn *conn;
2002
2003 BT_DBG("%s status %d", hdev->name, ev->status);
1da177e4
LT
2004
2005 hci_dev_lock(hdev);
2006
04837f64 2007 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
1da177e4
LT
2008 if (conn) {
2009 if (!ev->status) {
ae293196
MH
2010 if (ev->encrypt) {
2011 /* Encryption implies authentication */
2012 conn->link_mode |= HCI_LM_AUTH;
1da177e4 2013 conn->link_mode |= HCI_LM_ENCRYPT;
da85e5e5 2014 conn->sec_level = conn->pending_sec_level;
ae293196 2015 } else
1da177e4
LT
2016 conn->link_mode &= ~HCI_LM_ENCRYPT;
2017 }
2018
51a8efd7 2019 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
1da177e4 2020
f8558555
MH
2021 if (conn->state == BT_CONFIG) {
2022 if (!ev->status)
2023 conn->state = BT_CONNECTED;
2024
2025 hci_proto_connect_cfm(conn, ev->status);
2026 hci_conn_put(conn);
2027 } else
2028 hci_encrypt_cfm(conn, ev->status, ev->encrypt);
1da177e4
LT
2029 }
2030
2031 hci_dev_unlock(hdev);
2032}
2033
a9de9248 2034static inline void hci_change_link_key_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 2035{
a9de9248 2036 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
04837f64 2037 struct hci_conn *conn;
1da177e4
LT
2038
2039 BT_DBG("%s status %d", hdev->name, ev->status);
2040
2041 hci_dev_lock(hdev);
2042
04837f64 2043 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
1da177e4
LT
2044 if (conn) {
2045 if (!ev->status)
2046 conn->link_mode |= HCI_LM_SECURE;
2047
51a8efd7 2048 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
1da177e4
LT
2049
2050 hci_key_change_cfm(conn, ev->status);
2051 }
2052
2053 hci_dev_unlock(hdev);
2054}
2055
a9de9248 2056static inline void hci_remote_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 2057{
a9de9248
MH
2058 struct hci_ev_remote_features *ev = (void *) skb->data;
2059 struct hci_conn *conn;
2060
2061 BT_DBG("%s status %d", hdev->name, ev->status);
2062
a9de9248
MH
2063 hci_dev_lock(hdev);
2064
2065 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
ccd556fe
JH
2066 if (!conn)
2067 goto unlock;
769be974 2068
ccd556fe
JH
2069 if (!ev->status)
2070 memcpy(conn->features, ev->features, 8);
2071
2072 if (conn->state != BT_CONFIG)
2073 goto unlock;
2074
2075 if (!ev->status && lmp_ssp_capable(hdev) && lmp_ssp_capable(conn)) {
2076 struct hci_cp_read_remote_ext_features cp;
2077 cp.handle = ev->handle;
2078 cp.page = 0x01;
2079 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
bdb7524a 2080 sizeof(cp), &cp);
392599b9
JH
2081 goto unlock;
2082 }
2083
127178d2
JH
2084 if (!ev->status) {
2085 struct hci_cp_remote_name_req cp;
2086 memset(&cp, 0, sizeof(cp));
2087 bacpy(&cp.bdaddr, &conn->dst);
2088 cp.pscan_rep_mode = 0x02;
2089 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
b644ba33
JH
2090 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2091 mgmt_device_connected(hdev, &conn->dst, conn->type,
2092 conn->dst_type, NULL, 0,
2093 conn->dev_class);
392599b9 2094
127178d2 2095 if (!hci_outgoing_auth_needed(hdev, conn)) {
ccd556fe
JH
2096 conn->state = BT_CONNECTED;
2097 hci_proto_connect_cfm(conn, ev->status);
2098 hci_conn_put(conn);
769be974 2099 }
a9de9248 2100
ccd556fe 2101unlock:
a9de9248 2102 hci_dev_unlock(hdev);
1da177e4
LT
2103}
2104
a9de9248 2105static inline void hci_remote_version_evt(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 2106{
a9de9248 2107 BT_DBG("%s", hdev->name);
1da177e4
LT
2108}
2109
a9de9248 2110static inline void hci_qos_setup_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 2111{
a9de9248 2112 BT_DBG("%s", hdev->name);
1da177e4
LT
2113}
2114
a9de9248
MH
2115static inline void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2116{
2117 struct hci_ev_cmd_complete *ev = (void *) skb->data;
2118 __u16 opcode;
2119
2120 skb_pull(skb, sizeof(*ev));
2121
2122 opcode = __le16_to_cpu(ev->opcode);
2123
2124 switch (opcode) {
2125 case HCI_OP_INQUIRY_CANCEL:
2126 hci_cc_inquiry_cancel(hdev, skb);
2127 break;
2128
2129 case HCI_OP_EXIT_PERIODIC_INQ:
2130 hci_cc_exit_periodic_inq(hdev, skb);
2131 break;
2132
2133 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
2134 hci_cc_remote_name_req_cancel(hdev, skb);
2135 break;
2136
2137 case HCI_OP_ROLE_DISCOVERY:
2138 hci_cc_role_discovery(hdev, skb);
2139 break;
2140
e4e8e37c
MH
2141 case HCI_OP_READ_LINK_POLICY:
2142 hci_cc_read_link_policy(hdev, skb);
2143 break;
2144
a9de9248
MH
2145 case HCI_OP_WRITE_LINK_POLICY:
2146 hci_cc_write_link_policy(hdev, skb);
2147 break;
2148
e4e8e37c
MH
2149 case HCI_OP_READ_DEF_LINK_POLICY:
2150 hci_cc_read_def_link_policy(hdev, skb);
2151 break;
2152
2153 case HCI_OP_WRITE_DEF_LINK_POLICY:
2154 hci_cc_write_def_link_policy(hdev, skb);
2155 break;
2156
a9de9248
MH
2157 case HCI_OP_RESET:
2158 hci_cc_reset(hdev, skb);
2159 break;
2160
2161 case HCI_OP_WRITE_LOCAL_NAME:
2162 hci_cc_write_local_name(hdev, skb);
2163 break;
2164
2165 case HCI_OP_READ_LOCAL_NAME:
2166 hci_cc_read_local_name(hdev, skb);
2167 break;
2168
2169 case HCI_OP_WRITE_AUTH_ENABLE:
2170 hci_cc_write_auth_enable(hdev, skb);
2171 break;
2172
2173 case HCI_OP_WRITE_ENCRYPT_MODE:
2174 hci_cc_write_encrypt_mode(hdev, skb);
2175 break;
2176
2177 case HCI_OP_WRITE_SCAN_ENABLE:
2178 hci_cc_write_scan_enable(hdev, skb);
2179 break;
2180
2181 case HCI_OP_READ_CLASS_OF_DEV:
2182 hci_cc_read_class_of_dev(hdev, skb);
2183 break;
2184
2185 case HCI_OP_WRITE_CLASS_OF_DEV:
2186 hci_cc_write_class_of_dev(hdev, skb);
2187 break;
2188
2189 case HCI_OP_READ_VOICE_SETTING:
2190 hci_cc_read_voice_setting(hdev, skb);
2191 break;
2192
2193 case HCI_OP_WRITE_VOICE_SETTING:
2194 hci_cc_write_voice_setting(hdev, skb);
2195 break;
2196
2197 case HCI_OP_HOST_BUFFER_SIZE:
2198 hci_cc_host_buffer_size(hdev, skb);
2199 break;
2200
333140b5
MH
2201 case HCI_OP_READ_SSP_MODE:
2202 hci_cc_read_ssp_mode(hdev, skb);
2203 break;
2204
2205 case HCI_OP_WRITE_SSP_MODE:
2206 hci_cc_write_ssp_mode(hdev, skb);
2207 break;
2208
a9de9248
MH
2209 case HCI_OP_READ_LOCAL_VERSION:
2210 hci_cc_read_local_version(hdev, skb);
2211 break;
2212
2213 case HCI_OP_READ_LOCAL_COMMANDS:
2214 hci_cc_read_local_commands(hdev, skb);
2215 break;
2216
2217 case HCI_OP_READ_LOCAL_FEATURES:
2218 hci_cc_read_local_features(hdev, skb);
2219 break;
2220
971e3a4b
AG
2221 case HCI_OP_READ_LOCAL_EXT_FEATURES:
2222 hci_cc_read_local_ext_features(hdev, skb);
2223 break;
2224
a9de9248
MH
2225 case HCI_OP_READ_BUFFER_SIZE:
2226 hci_cc_read_buffer_size(hdev, skb);
2227 break;
2228
2229 case HCI_OP_READ_BD_ADDR:
2230 hci_cc_read_bd_addr(hdev, skb);
2231 break;
2232
350ee4cf
AE
2233 case HCI_OP_READ_DATA_BLOCK_SIZE:
2234 hci_cc_read_data_block_size(hdev, skb);
2235 break;
2236
23bb5763
JH
2237 case HCI_OP_WRITE_CA_TIMEOUT:
2238 hci_cc_write_ca_timeout(hdev, skb);
2239 break;
2240
1e89cffb
AE
2241 case HCI_OP_READ_FLOW_CONTROL_MODE:
2242 hci_cc_read_flow_control_mode(hdev, skb);
2243 break;
2244
928abaa7
AE
2245 case HCI_OP_READ_LOCAL_AMP_INFO:
2246 hci_cc_read_local_amp_info(hdev, skb);
2247 break;
2248
b0916ea0
JH
2249 case HCI_OP_DELETE_STORED_LINK_KEY:
2250 hci_cc_delete_stored_link_key(hdev, skb);
2251 break;
2252
d5859e22
JH
2253 case HCI_OP_SET_EVENT_MASK:
2254 hci_cc_set_event_mask(hdev, skb);
2255 break;
2256
2257 case HCI_OP_WRITE_INQUIRY_MODE:
2258 hci_cc_write_inquiry_mode(hdev, skb);
2259 break;
2260
2261 case HCI_OP_READ_INQ_RSP_TX_POWER:
2262 hci_cc_read_inq_rsp_tx_power(hdev, skb);
2263 break;
2264
2265 case HCI_OP_SET_EVENT_FLT:
2266 hci_cc_set_event_flt(hdev, skb);
2267 break;
2268
980e1a53
JH
2269 case HCI_OP_PIN_CODE_REPLY:
2270 hci_cc_pin_code_reply(hdev, skb);
2271 break;
2272
2273 case HCI_OP_PIN_CODE_NEG_REPLY:
2274 hci_cc_pin_code_neg_reply(hdev, skb);
2275 break;
2276
c35938b2
SJ
2277 case HCI_OP_READ_LOCAL_OOB_DATA:
2278 hci_cc_read_local_oob_data_reply(hdev, skb);
2279 break;
2280
6ed58ec5
VT
2281 case HCI_OP_LE_READ_BUFFER_SIZE:
2282 hci_cc_le_read_buffer_size(hdev, skb);
2283 break;
2284
a5c29683
JH
2285 case HCI_OP_USER_CONFIRM_REPLY:
2286 hci_cc_user_confirm_reply(hdev, skb);
2287 break;
2288
2289 case HCI_OP_USER_CONFIRM_NEG_REPLY:
2290 hci_cc_user_confirm_neg_reply(hdev, skb);
2291 break;
2292
1143d458
BG
2293 case HCI_OP_USER_PASSKEY_REPLY:
2294 hci_cc_user_passkey_reply(hdev, skb);
2295 break;
2296
2297 case HCI_OP_USER_PASSKEY_NEG_REPLY:
2298 hci_cc_user_passkey_neg_reply(hdev, skb);
07f7fa5d
AG
2299
2300 case HCI_OP_LE_SET_SCAN_PARAM:
2301 hci_cc_le_set_scan_param(hdev, skb);
1143d458
BG
2302 break;
2303
eb9d91f5
AG
2304 case HCI_OP_LE_SET_SCAN_ENABLE:
2305 hci_cc_le_set_scan_enable(hdev, skb);
2306 break;
2307
a7a595f6
VCG
2308 case HCI_OP_LE_LTK_REPLY:
2309 hci_cc_le_ltk_reply(hdev, skb);
2310 break;
2311
2312 case HCI_OP_LE_LTK_NEG_REPLY:
2313 hci_cc_le_ltk_neg_reply(hdev, skb);
2314 break;
2315
f9b49306
AG
2316 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
2317 hci_cc_write_le_host_supported(hdev, skb);
2318 break;
2319
a9de9248
MH
2320 default:
2321 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
2322 break;
2323 }
2324
6bd32326
VT
2325 if (ev->opcode != HCI_OP_NOP)
2326 del_timer(&hdev->cmd_timer);
2327
a9de9248
MH
2328 if (ev->ncmd) {
2329 atomic_set(&hdev->cmd_cnt, 1);
2330 if (!skb_queue_empty(&hdev->cmd_q))
c347b765 2331 queue_work(hdev->workqueue, &hdev->cmd_work);
a9de9248
MH
2332 }
2333}
2334
2335static inline void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb)
2336{
2337 struct hci_ev_cmd_status *ev = (void *) skb->data;
2338 __u16 opcode;
2339
2340 skb_pull(skb, sizeof(*ev));
2341
2342 opcode = __le16_to_cpu(ev->opcode);
2343
2344 switch (opcode) {
2345 case HCI_OP_INQUIRY:
2346 hci_cs_inquiry(hdev, ev->status);
2347 break;
2348
2349 case HCI_OP_CREATE_CONN:
2350 hci_cs_create_conn(hdev, ev->status);
2351 break;
2352
2353 case HCI_OP_ADD_SCO:
2354 hci_cs_add_sco(hdev, ev->status);
2355 break;
2356
f8558555
MH
2357 case HCI_OP_AUTH_REQUESTED:
2358 hci_cs_auth_requested(hdev, ev->status);
2359 break;
2360
2361 case HCI_OP_SET_CONN_ENCRYPT:
2362 hci_cs_set_conn_encrypt(hdev, ev->status);
2363 break;
2364
a9de9248
MH
2365 case HCI_OP_REMOTE_NAME_REQ:
2366 hci_cs_remote_name_req(hdev, ev->status);
2367 break;
2368
769be974
MH
2369 case HCI_OP_READ_REMOTE_FEATURES:
2370 hci_cs_read_remote_features(hdev, ev->status);
2371 break;
2372
2373 case HCI_OP_READ_REMOTE_EXT_FEATURES:
2374 hci_cs_read_remote_ext_features(hdev, ev->status);
2375 break;
2376
a9de9248
MH
2377 case HCI_OP_SETUP_SYNC_CONN:
2378 hci_cs_setup_sync_conn(hdev, ev->status);
2379 break;
2380
2381 case HCI_OP_SNIFF_MODE:
2382 hci_cs_sniff_mode(hdev, ev->status);
2383 break;
2384
2385 case HCI_OP_EXIT_SNIFF_MODE:
2386 hci_cs_exit_sniff_mode(hdev, ev->status);
2387 break;
2388
8962ee74 2389 case HCI_OP_DISCONNECT:
88c3df13 2390 hci_cs_disconnect(hdev, ev->status);
8962ee74
JH
2391 break;
2392
fcd89c09
VT
2393 case HCI_OP_LE_CREATE_CONN:
2394 hci_cs_le_create_conn(hdev, ev->status);
2395 break;
2396
a7a595f6
VCG
2397 case HCI_OP_LE_START_ENC:
2398 hci_cs_le_start_enc(hdev, ev->status);
2399 break;
2400
a9de9248
MH
2401 default:
2402 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
2403 break;
2404 }
2405
6bd32326
VT
2406 if (ev->opcode != HCI_OP_NOP)
2407 del_timer(&hdev->cmd_timer);
2408
10572132 2409 if (ev->ncmd && !test_bit(HCI_RESET, &hdev->flags)) {
a9de9248
MH
2410 atomic_set(&hdev->cmd_cnt, 1);
2411 if (!skb_queue_empty(&hdev->cmd_q))
c347b765 2412 queue_work(hdev->workqueue, &hdev->cmd_work);
a9de9248
MH
2413 }
2414}
2415
2416static inline void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
2417{
2418 struct hci_ev_role_change *ev = (void *) skb->data;
2419 struct hci_conn *conn;
2420
2421 BT_DBG("%s status %d", hdev->name, ev->status);
2422
2423 hci_dev_lock(hdev);
2424
2425 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2426 if (conn) {
2427 if (!ev->status) {
2428 if (ev->role)
2429 conn->link_mode &= ~HCI_LM_MASTER;
2430 else
2431 conn->link_mode |= HCI_LM_MASTER;
2432 }
2433
51a8efd7 2434 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
a9de9248
MH
2435
2436 hci_role_switch_cfm(conn, ev->status, ev->role);
2437 }
2438
2439 hci_dev_unlock(hdev);
2440}
2441
2442static inline void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
2443{
2444 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
a9de9248
MH
2445 int i;
2446
32ac5b9b
AE
2447 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
2448 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2449 return;
2450 }
2451
c5993de8
AE
2452 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
2453 ev->num_hndl * sizeof(struct hci_comp_pkts_info)) {
a9de9248
MH
2454 BT_DBG("%s bad parameters", hdev->name);
2455 return;
2456 }
2457
c5993de8
AE
2458 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
2459
613a1c0c
AE
2460 for (i = 0; i < ev->num_hndl; i++) {
2461 struct hci_comp_pkts_info *info = &ev->handles[i];
a9de9248
MH
2462 struct hci_conn *conn;
2463 __u16 handle, count;
2464
613a1c0c
AE
2465 handle = __le16_to_cpu(info->handle);
2466 count = __le16_to_cpu(info->count);
a9de9248
MH
2467
2468 conn = hci_conn_hash_lookup_handle(hdev, handle);
f4280918
AE
2469 if (!conn)
2470 continue;
2471
2472 conn->sent -= count;
2473
2474 switch (conn->type) {
2475 case ACL_LINK:
2476 hdev->acl_cnt += count;
2477 if (hdev->acl_cnt > hdev->acl_pkts)
2478 hdev->acl_cnt = hdev->acl_pkts;
2479 break;
2480
2481 case LE_LINK:
2482 if (hdev->le_pkts) {
2483 hdev->le_cnt += count;
2484 if (hdev->le_cnt > hdev->le_pkts)
2485 hdev->le_cnt = hdev->le_pkts;
2486 } else {
70f23020
AE
2487 hdev->acl_cnt += count;
2488 if (hdev->acl_cnt > hdev->acl_pkts)
a9de9248 2489 hdev->acl_cnt = hdev->acl_pkts;
a9de9248 2490 }
f4280918
AE
2491 break;
2492
2493 case SCO_LINK:
2494 hdev->sco_cnt += count;
2495 if (hdev->sco_cnt > hdev->sco_pkts)
2496 hdev->sco_cnt = hdev->sco_pkts;
2497 break;
2498
2499 default:
2500 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2501 break;
a9de9248
MH
2502 }
2503 }
2504
3eff45ea 2505 queue_work(hdev->workqueue, &hdev->tx_work);
a9de9248
MH
2506}
2507
25e89e99
AE
2508static inline void hci_num_comp_blocks_evt(struct hci_dev *hdev,
2509 struct sk_buff *skb)
2510{
2511 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
2512 int i;
2513
2514 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
2515 BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode);
2516 return;
2517 }
2518
2519 if (skb->len < sizeof(*ev) || skb->len < sizeof(*ev) +
2520 ev->num_hndl * sizeof(struct hci_comp_blocks_info)) {
2521 BT_DBG("%s bad parameters", hdev->name);
2522 return;
2523 }
2524
2525 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
2526 ev->num_hndl);
2527
2528 for (i = 0; i < ev->num_hndl; i++) {
2529 struct hci_comp_blocks_info *info = &ev->handles[i];
2530 struct hci_conn *conn;
2531 __u16 handle, block_count;
2532
2533 handle = __le16_to_cpu(info->handle);
2534 block_count = __le16_to_cpu(info->blocks);
2535
2536 conn = hci_conn_hash_lookup_handle(hdev, handle);
2537 if (!conn)
2538 continue;
2539
2540 conn->sent -= block_count;
2541
2542 switch (conn->type) {
2543 case ACL_LINK:
2544 hdev->block_cnt += block_count;
2545 if (hdev->block_cnt > hdev->num_blocks)
2546 hdev->block_cnt = hdev->num_blocks;
2547 break;
2548
2549 default:
2550 BT_ERR("Unknown type %d conn %p", conn->type, conn);
2551 break;
2552 }
2553 }
2554
2555 queue_work(hdev->workqueue, &hdev->tx_work);
2556}
2557
a9de9248 2558static inline void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
04837f64 2559{
a9de9248 2560 struct hci_ev_mode_change *ev = (void *) skb->data;
04837f64
MH
2561 struct hci_conn *conn;
2562
2563 BT_DBG("%s status %d", hdev->name, ev->status);
2564
2565 hci_dev_lock(hdev);
2566
2567 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
a9de9248
MH
2568 if (conn) {
2569 conn->mode = ev->mode;
2570 conn->interval = __le16_to_cpu(ev->interval);
2571
51a8efd7 2572 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
a9de9248 2573 if (conn->mode == HCI_CM_ACTIVE)
58a681ef 2574 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
a9de9248 2575 else
58a681ef 2576 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
a9de9248 2577 }
e73439d8 2578
51a8efd7 2579 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
e73439d8 2580 hci_sco_setup(conn, ev->status);
04837f64
MH
2581 }
2582
2583 hci_dev_unlock(hdev);
2584}
2585
a9de9248
MH
2586static inline void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2587{
052b30b0
MH
2588 struct hci_ev_pin_code_req *ev = (void *) skb->data;
2589 struct hci_conn *conn;
2590
a9de9248 2591 BT_DBG("%s", hdev->name);
052b30b0
MH
2592
2593 hci_dev_lock(hdev);
2594
2595 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
b6f98044
WR
2596 if (!conn)
2597 goto unlock;
2598
2599 if (conn->state == BT_CONNECTED) {
052b30b0
MH
2600 hci_conn_hold(conn);
2601 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2602 hci_conn_put(conn);
2603 }
2604
a8b2d5c2 2605 if (!test_bit(HCI_PAIRABLE, &hdev->dev_flags))
03b555e1
JH
2606 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
2607 sizeof(ev->bdaddr), &ev->bdaddr);
a8b2d5c2 2608 else if (test_bit(HCI_MGMT, &hdev->dev_flags)) {
a770bb5a
WR
2609 u8 secure;
2610
2611 if (conn->pending_sec_level == BT_SECURITY_HIGH)
2612 secure = 1;
2613 else
2614 secure = 0;
2615
744cf19e 2616 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
a770bb5a 2617 }
980e1a53 2618
b6f98044 2619unlock:
052b30b0 2620 hci_dev_unlock(hdev);
a9de9248
MH
2621}
2622
2623static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2624{
55ed8ca1
JH
2625 struct hci_ev_link_key_req *ev = (void *) skb->data;
2626 struct hci_cp_link_key_reply cp;
2627 struct hci_conn *conn;
2628 struct link_key *key;
2629
a9de9248 2630 BT_DBG("%s", hdev->name);
55ed8ca1 2631
a8b2d5c2 2632 if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
55ed8ca1
JH
2633 return;
2634
2635 hci_dev_lock(hdev);
2636
2637 key = hci_find_link_key(hdev, &ev->bdaddr);
2638 if (!key) {
2639 BT_DBG("%s link key not found for %s", hdev->name,
2640 batostr(&ev->bdaddr));
2641 goto not_found;
2642 }
2643
2644 BT_DBG("%s found key type %u for %s", hdev->name, key->type,
2645 batostr(&ev->bdaddr));
2646
a8b2d5c2 2647 if (!test_bit(HCI_DEBUG_KEYS, &hdev->dev_flags) &&
b6020ba0 2648 key->type == HCI_LK_DEBUG_COMBINATION) {
55ed8ca1
JH
2649 BT_DBG("%s ignoring debug key", hdev->name);
2650 goto not_found;
2651 }
2652
2653 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
60b83f57
WR
2654 if (conn) {
2655 if (key->type == HCI_LK_UNAUTH_COMBINATION &&
2656 conn->auth_type != 0xff &&
2657 (conn->auth_type & 0x01)) {
2658 BT_DBG("%s ignoring unauthenticated key", hdev->name);
2659 goto not_found;
2660 }
55ed8ca1 2661
60b83f57
WR
2662 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
2663 conn->pending_sec_level == BT_SECURITY_HIGH) {
2664 BT_DBG("%s ignoring key unauthenticated for high \
2665 security", hdev->name);
2666 goto not_found;
2667 }
2668
2669 conn->key_type = key->type;
2670 conn->pin_length = key->pin_len;
55ed8ca1
JH
2671 }
2672
2673 bacpy(&cp.bdaddr, &ev->bdaddr);
2674 memcpy(cp.link_key, key->val, 16);
2675
2676 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
2677
2678 hci_dev_unlock(hdev);
2679
2680 return;
2681
2682not_found:
2683 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
2684 hci_dev_unlock(hdev);
a9de9248
MH
2685}
2686
2687static inline void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
2688{
052b30b0
MH
2689 struct hci_ev_link_key_notify *ev = (void *) skb->data;
2690 struct hci_conn *conn;
55ed8ca1 2691 u8 pin_len = 0;
052b30b0 2692
a9de9248 2693 BT_DBG("%s", hdev->name);
052b30b0
MH
2694
2695 hci_dev_lock(hdev);
2696
2697 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2698 if (conn) {
2699 hci_conn_hold(conn);
2700 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
980e1a53 2701 pin_len = conn->pin_length;
13d39315
WR
2702
2703 if (ev->key_type != HCI_LK_CHANGED_COMBINATION)
2704 conn->key_type = ev->key_type;
2705
052b30b0
MH
2706 hci_conn_put(conn);
2707 }
2708
a8b2d5c2 2709 if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags))
d25e28ab 2710 hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key,
55ed8ca1
JH
2711 ev->key_type, pin_len);
2712
052b30b0 2713 hci_dev_unlock(hdev);
a9de9248
MH
2714}
2715
1da177e4
LT
2716static inline void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
2717{
a9de9248 2718 struct hci_ev_clock_offset *ev = (void *) skb->data;
04837f64 2719 struct hci_conn *conn;
1da177e4
LT
2720
2721 BT_DBG("%s status %d", hdev->name, ev->status);
2722
2723 hci_dev_lock(hdev);
2724
04837f64 2725 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
1da177e4
LT
2726 if (conn && !ev->status) {
2727 struct inquiry_entry *ie;
2728
cc11b9c1
AE
2729 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2730 if (ie) {
1da177e4
LT
2731 ie->data.clock_offset = ev->clock_offset;
2732 ie->timestamp = jiffies;
2733 }
2734 }
2735
2736 hci_dev_unlock(hdev);
2737}
2738
a8746417
MH
2739static inline void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
2740{
2741 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
2742 struct hci_conn *conn;
2743
2744 BT_DBG("%s status %d", hdev->name, ev->status);
2745
2746 hci_dev_lock(hdev);
2747
2748 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2749 if (conn && !ev->status)
2750 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
2751
2752 hci_dev_unlock(hdev);
2753}
2754
85a1e930
MH
2755static inline void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
2756{
a9de9248 2757 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
85a1e930
MH
2758 struct inquiry_entry *ie;
2759
2760 BT_DBG("%s", hdev->name);
2761
2762 hci_dev_lock(hdev);
2763
cc11b9c1
AE
2764 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2765 if (ie) {
85a1e930
MH
2766 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
2767 ie->timestamp = jiffies;
2768 }
2769
2770 hci_dev_unlock(hdev);
2771}
2772
a9de9248
MH
2773static inline void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev, struct sk_buff *skb)
2774{
2775 struct inquiry_data data;
2776 int num_rsp = *((__u8 *) skb->data);
3175405b 2777 bool name_known;
a9de9248
MH
2778
2779 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2780
2781 if (!num_rsp)
2782 return;
2783
2784 hci_dev_lock(hdev);
2785
2786 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
138d22ef
SJ
2787 struct inquiry_info_with_rssi_and_pscan_mode *info;
2788 info = (void *) (skb->data + 1);
a9de9248 2789
e17acd40 2790 for (; num_rsp; num_rsp--, info++) {
a9de9248
MH
2791 bacpy(&data.bdaddr, &info->bdaddr);
2792 data.pscan_rep_mode = info->pscan_rep_mode;
2793 data.pscan_period_mode = info->pscan_period_mode;
2794 data.pscan_mode = info->pscan_mode;
2795 memcpy(data.dev_class, info->dev_class, 3);
2796 data.clock_offset = info->clock_offset;
2797 data.rssi = info->rssi;
41a96212 2798 data.ssp_mode = 0x00;
3175405b
JH
2799
2800 name_known = hci_inquiry_cache_update(hdev, &data,
2801 false);
48264f06 2802 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
e17acd40 2803 info->dev_class, info->rssi,
7d262f86 2804 !name_known, NULL, 0);
a9de9248
MH
2805 }
2806 } else {
2807 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
2808
e17acd40 2809 for (; num_rsp; num_rsp--, info++) {
a9de9248
MH
2810 bacpy(&data.bdaddr, &info->bdaddr);
2811 data.pscan_rep_mode = info->pscan_rep_mode;
2812 data.pscan_period_mode = info->pscan_period_mode;
2813 data.pscan_mode = 0x00;
2814 memcpy(data.dev_class, info->dev_class, 3);
2815 data.clock_offset = info->clock_offset;
2816 data.rssi = info->rssi;
41a96212 2817 data.ssp_mode = 0x00;
3175405b
JH
2818 name_known = hci_inquiry_cache_update(hdev, &data,
2819 false);
48264f06 2820 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
e17acd40 2821 info->dev_class, info->rssi,
7d262f86 2822 !name_known, NULL, 0);
a9de9248
MH
2823 }
2824 }
2825
2826 hci_dev_unlock(hdev);
2827}
2828
2829static inline void hci_remote_ext_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
2830{
41a96212
MH
2831 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
2832 struct hci_conn *conn;
2833
a9de9248 2834 BT_DBG("%s", hdev->name);
41a96212 2835
41a96212
MH
2836 hci_dev_lock(hdev);
2837
2838 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
ccd556fe
JH
2839 if (!conn)
2840 goto unlock;
41a96212 2841
ccd556fe
JH
2842 if (!ev->status && ev->page == 0x01) {
2843 struct inquiry_entry *ie;
41a96212 2844
cc11b9c1
AE
2845 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
2846 if (ie)
ccd556fe 2847 ie->data.ssp_mode = (ev->features[0] & 0x01);
769be974 2848
58a681ef
JH
2849 if (ev->features[0] & 0x01)
2850 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
ccd556fe
JH
2851 }
2852
2853 if (conn->state != BT_CONFIG)
2854 goto unlock;
2855
127178d2
JH
2856 if (!ev->status) {
2857 struct hci_cp_remote_name_req cp;
2858 memset(&cp, 0, sizeof(cp));
2859 bacpy(&cp.bdaddr, &conn->dst);
2860 cp.pscan_rep_mode = 0x02;
2861 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
b644ba33
JH
2862 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2863 mgmt_device_connected(hdev, &conn->dst, conn->type,
2864 conn->dst_type, NULL, 0,
2865 conn->dev_class);
392599b9 2866
127178d2 2867 if (!hci_outgoing_auth_needed(hdev, conn)) {
ccd556fe
JH
2868 conn->state = BT_CONNECTED;
2869 hci_proto_connect_cfm(conn, ev->status);
2870 hci_conn_put(conn);
41a96212
MH
2871 }
2872
ccd556fe 2873unlock:
41a96212 2874 hci_dev_unlock(hdev);
a9de9248
MH
2875}
2876
2877static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2878{
b6a0dc82
MH
2879 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
2880 struct hci_conn *conn;
2881
2882 BT_DBG("%s status %d", hdev->name, ev->status);
2883
2884 hci_dev_lock(hdev);
2885
2886 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
9dc0a3af
MH
2887 if (!conn) {
2888 if (ev->link_type == ESCO_LINK)
2889 goto unlock;
2890
2891 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
2892 if (!conn)
2893 goto unlock;
2894
2895 conn->type = SCO_LINK;
2896 }
b6a0dc82 2897
732547f9
MH
2898 switch (ev->status) {
2899 case 0x00:
b6a0dc82
MH
2900 conn->handle = __le16_to_cpu(ev->handle);
2901 conn->state = BT_CONNECTED;
7d0db0a3 2902
9eba32b8 2903 hci_conn_hold_device(conn);
7d0db0a3 2904 hci_conn_add_sysfs(conn);
732547f9
MH
2905 break;
2906
705e5711 2907 case 0x11: /* Unsupported Feature or Parameter Value */
732547f9 2908 case 0x1c: /* SCO interval rejected */
1038a00b 2909 case 0x1a: /* Unsupported Remote Feature */
732547f9
MH
2910 case 0x1f: /* Unspecified error */
2911 if (conn->out && conn->attempt < 2) {
2912 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
2913 (hdev->esco_type & EDR_ESCO_MASK);
2914 hci_setup_sync(conn, conn->link->handle);
2915 goto unlock;
2916 }
2917 /* fall through */
2918
2919 default:
b6a0dc82 2920 conn->state = BT_CLOSED;
732547f9
MH
2921 break;
2922 }
b6a0dc82
MH
2923
2924 hci_proto_connect_cfm(conn, ev->status);
2925 if (ev->status)
2926 hci_conn_del(conn);
2927
2928unlock:
2929 hci_dev_unlock(hdev);
a9de9248
MH
2930}
2931
2932static inline void hci_sync_conn_changed_evt(struct hci_dev *hdev, struct sk_buff *skb)
2933{
2934 BT_DBG("%s", hdev->name);
2935}
2936
04837f64
MH
2937static inline void hci_sniff_subrate_evt(struct hci_dev *hdev, struct sk_buff *skb)
2938{
a9de9248 2939 struct hci_ev_sniff_subrate *ev = (void *) skb->data;
04837f64
MH
2940
2941 BT_DBG("%s status %d", hdev->name, ev->status);
04837f64
MH
2942}
2943
a9de9248 2944static inline void hci_extended_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
1da177e4 2945{
a9de9248
MH
2946 struct inquiry_data data;
2947 struct extended_inquiry_info *info = (void *) (skb->data + 1);
2948 int num_rsp = *((__u8 *) skb->data);
1da177e4 2949
a9de9248 2950 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
1da177e4 2951
a9de9248
MH
2952 if (!num_rsp)
2953 return;
1da177e4 2954
a9de9248
MH
2955 hci_dev_lock(hdev);
2956
e17acd40 2957 for (; num_rsp; num_rsp--, info++) {
561aafbc
JH
2958 bool name_known;
2959
a9de9248 2960 bacpy(&data.bdaddr, &info->bdaddr);
138d22ef
SJ
2961 data.pscan_rep_mode = info->pscan_rep_mode;
2962 data.pscan_period_mode = info->pscan_period_mode;
2963 data.pscan_mode = 0x00;
a9de9248 2964 memcpy(data.dev_class, info->dev_class, 3);
138d22ef
SJ
2965 data.clock_offset = info->clock_offset;
2966 data.rssi = info->rssi;
41a96212 2967 data.ssp_mode = 0x01;
561aafbc 2968
a8b2d5c2 2969 if (test_bit(HCI_MGMT, &hdev->dev_flags))
4ddb1930
JH
2970 name_known = eir_has_data_type(info->data,
2971 sizeof(info->data),
2972 EIR_NAME_COMPLETE);
561aafbc
JH
2973 else
2974 name_known = true;
2975
3175405b 2976 name_known = hci_inquiry_cache_update(hdev, &data, name_known);
48264f06 2977 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
561aafbc 2978 info->dev_class, info->rssi,
7d262f86
AG
2979 !name_known, info->data,
2980 sizeof(info->data));
a9de9248
MH
2981 }
2982
2983 hci_dev_unlock(hdev);
2984}
1da177e4 2985
17fa4b9d
JH
2986static inline u8 hci_get_auth_req(struct hci_conn *conn)
2987{
2988 /* If remote requests dedicated bonding follow that lead */
2989 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) {
2990 /* If both remote and local IO capabilities allow MITM
2991 * protection then require it, otherwise don't */
2992 if (conn->remote_cap == 0x03 || conn->io_capability == 0x03)
2993 return 0x02;
2994 else
2995 return 0x03;
2996 }
2997
2998 /* If remote requests no-bonding follow that lead */
2999 if (conn->remote_auth == 0x00 || conn->remote_auth == 0x01)
58797bf7 3000 return conn->remote_auth | (conn->auth_type & 0x01);
17fa4b9d
JH
3001
3002 return conn->auth_type;
3003}
3004
0493684e
MH
3005static inline void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
3006{
3007 struct hci_ev_io_capa_request *ev = (void *) skb->data;
3008 struct hci_conn *conn;
3009
3010 BT_DBG("%s", hdev->name);
3011
3012 hci_dev_lock(hdev);
3013
3014 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
03b555e1
JH
3015 if (!conn)
3016 goto unlock;
3017
3018 hci_conn_hold(conn);
3019
a8b2d5c2 3020 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
03b555e1
JH
3021 goto unlock;
3022
a8b2d5c2 3023 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags) ||
03b555e1 3024 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
17fa4b9d
JH
3025 struct hci_cp_io_capability_reply cp;
3026
3027 bacpy(&cp.bdaddr, &ev->bdaddr);
7a7f1e7c
HG
3028 /* Change the IO capability from KeyboardDisplay
3029 * to DisplayYesNo as it is not supported by BT spec. */
3030 cp.capability = (conn->io_capability == 0x04) ?
3031 0x01 : conn->io_capability;
7cbc9bd9
JH
3032 conn->auth_type = hci_get_auth_req(conn);
3033 cp.authentication = conn->auth_type;
17fa4b9d 3034
58a681ef 3035 if ((conn->out || test_bit(HCI_CONN_REMOTE_OOB, &conn->flags)) &&
ce85ee13
SJ
3036 hci_find_remote_oob_data(hdev, &conn->dst))
3037 cp.oob_data = 0x01;
3038 else
3039 cp.oob_data = 0x00;
3040
17fa4b9d
JH
3041 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
3042 sizeof(cp), &cp);
03b555e1
JH
3043 } else {
3044 struct hci_cp_io_capability_neg_reply cp;
3045
3046 bacpy(&cp.bdaddr, &ev->bdaddr);
9f5a0d7b 3047 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
0493684e 3048
03b555e1
JH
3049 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
3050 sizeof(cp), &cp);
3051 }
3052
3053unlock:
3054 hci_dev_unlock(hdev);
3055}
3056
3057static inline void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
3058{
3059 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
3060 struct hci_conn *conn;
3061
3062 BT_DBG("%s", hdev->name);
3063
3064 hci_dev_lock(hdev);
3065
3066 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3067 if (!conn)
3068 goto unlock;
3069
03b555e1 3070 conn->remote_cap = ev->capability;
03b555e1 3071 conn->remote_auth = ev->authentication;
58a681ef
JH
3072 if (ev->oob_data)
3073 set_bit(HCI_CONN_REMOTE_OOB, &conn->flags);
03b555e1
JH
3074
3075unlock:
0493684e
MH
3076 hci_dev_unlock(hdev);
3077}
3078
a5c29683
JH
3079static inline void hci_user_confirm_request_evt(struct hci_dev *hdev,
3080 struct sk_buff *skb)
3081{
3082 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
55bc1a37 3083 int loc_mitm, rem_mitm, confirm_hint = 0;
7a828908 3084 struct hci_conn *conn;
a5c29683
JH
3085
3086 BT_DBG("%s", hdev->name);
3087
3088 hci_dev_lock(hdev);
3089
a8b2d5c2 3090 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
7a828908 3091 goto unlock;
a5c29683 3092
7a828908
JH
3093 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3094 if (!conn)
3095 goto unlock;
3096
3097 loc_mitm = (conn->auth_type & 0x01);
3098 rem_mitm = (conn->remote_auth & 0x01);
3099
3100 /* If we require MITM but the remote device can't provide that
3101 * (it has NoInputNoOutput) then reject the confirmation
3102 * request. The only exception is when we're dedicated bonding
3103 * initiators (connect_cfm_cb set) since then we always have the MITM
3104 * bit set. */
3105 if (!conn->connect_cfm_cb && loc_mitm && conn->remote_cap == 0x03) {
3106 BT_DBG("Rejecting request: remote device can't provide MITM");
3107 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
3108 sizeof(ev->bdaddr), &ev->bdaddr);
3109 goto unlock;
3110 }
3111
3112 /* If no side requires MITM protection; auto-accept */
3113 if ((!loc_mitm || conn->remote_cap == 0x03) &&
3114 (!rem_mitm || conn->io_capability == 0x03)) {
55bc1a37
JH
3115
3116 /* If we're not the initiators request authorization to
3117 * proceed from user space (mgmt_user_confirm with
3118 * confirm_hint set to 1). */
51a8efd7 3119 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
55bc1a37
JH
3120 BT_DBG("Confirming auto-accept as acceptor");
3121 confirm_hint = 1;
3122 goto confirm;
3123 }
3124
9f61656a
JH
3125 BT_DBG("Auto-accept of user confirmation with %ums delay",
3126 hdev->auto_accept_delay);
3127
3128 if (hdev->auto_accept_delay > 0) {
3129 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
3130 mod_timer(&conn->auto_accept_timer, jiffies + delay);
3131 goto unlock;
3132 }
3133
7a828908
JH
3134 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
3135 sizeof(ev->bdaddr), &ev->bdaddr);
3136 goto unlock;
3137 }
3138
55bc1a37 3139confirm:
272d90df 3140 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0, ev->passkey,
55bc1a37 3141 confirm_hint);
7a828908
JH
3142
3143unlock:
a5c29683
JH
3144 hci_dev_unlock(hdev);
3145}
3146
1143d458
BG
3147static inline void hci_user_passkey_request_evt(struct hci_dev *hdev,
3148 struct sk_buff *skb)
3149{
3150 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
3151
3152 BT_DBG("%s", hdev->name);
3153
3154 hci_dev_lock(hdev);
3155
a8b2d5c2 3156 if (test_bit(HCI_MGMT, &hdev->dev_flags))
272d90df 3157 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
1143d458
BG
3158
3159 hci_dev_unlock(hdev);
3160}
3161
0493684e
MH
3162static inline void hci_simple_pair_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
3163{
3164 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
3165 struct hci_conn *conn;
3166
3167 BT_DBG("%s", hdev->name);
3168
3169 hci_dev_lock(hdev);
3170
3171 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
2a611692
JH
3172 if (!conn)
3173 goto unlock;
3174
3175 /* To avoid duplicate auth_failed events to user space we check
3176 * the HCI_CONN_AUTH_PEND flag which will be set if we
3177 * initiated the authentication. A traditional auth_complete
3178 * event gets always produced as initiator and is also mapped to
3179 * the mgmt_auth_failed event */
51a8efd7 3180 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status != 0)
bab73cb6
JH
3181 mgmt_auth_failed(hdev, &conn->dst, conn->type, conn->dst_type,
3182 ev->status);
0493684e 3183
2a611692
JH
3184 hci_conn_put(conn);
3185
3186unlock:
0493684e
MH
3187 hci_dev_unlock(hdev);
3188}
3189
41a96212
MH
3190static inline void hci_remote_host_features_evt(struct hci_dev *hdev, struct sk_buff *skb)
3191{
3192 struct hci_ev_remote_host_features *ev = (void *) skb->data;
3193 struct inquiry_entry *ie;
3194
3195 BT_DBG("%s", hdev->name);
3196
3197 hci_dev_lock(hdev);
3198
cc11b9c1
AE
3199 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
3200 if (ie)
41a96212
MH
3201 ie->data.ssp_mode = (ev->features[0] & 0x01);
3202
3203 hci_dev_unlock(hdev);
3204}
3205
2763eda6
SJ
3206static inline void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
3207 struct sk_buff *skb)
3208{
3209 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
3210 struct oob_data *data;
3211
3212 BT_DBG("%s", hdev->name);
3213
3214 hci_dev_lock(hdev);
3215
a8b2d5c2 3216 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
e1ba1f15
SJ
3217 goto unlock;
3218
2763eda6
SJ
3219 data = hci_find_remote_oob_data(hdev, &ev->bdaddr);
3220 if (data) {
3221 struct hci_cp_remote_oob_data_reply cp;
3222
3223 bacpy(&cp.bdaddr, &ev->bdaddr);
3224 memcpy(cp.hash, data->hash, sizeof(cp.hash));
3225 memcpy(cp.randomizer, data->randomizer, sizeof(cp.randomizer));
3226
3227 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY, sizeof(cp),
3228 &cp);
3229 } else {
3230 struct hci_cp_remote_oob_data_neg_reply cp;
3231
3232 bacpy(&cp.bdaddr, &ev->bdaddr);
3233 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY, sizeof(cp),
3234 &cp);
3235 }
3236
e1ba1f15 3237unlock:
2763eda6
SJ
3238 hci_dev_unlock(hdev);
3239}
3240
fcd89c09
VT
3241static inline void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
3242{
3243 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
3244 struct hci_conn *conn;
3245
3246 BT_DBG("%s status %d", hdev->name, ev->status);
3247
3248 hci_dev_lock(hdev);
3249
3250 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &ev->bdaddr);
b62f328b
VT
3251 if (!conn) {
3252 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);
3253 if (!conn) {
3254 BT_ERR("No memory for new connection");
3255 hci_dev_unlock(hdev);
3256 return;
3257 }
29b7988a
AG
3258
3259 conn->dst_type = ev->bdaddr_type;
b62f328b 3260 }
fcd89c09
VT
3261
3262 if (ev->status) {
48264f06
JH
3263 mgmt_connect_failed(hdev, &ev->bdaddr, conn->type,
3264 conn->dst_type, ev->status);
fcd89c09
VT
3265 hci_proto_connect_cfm(conn, ev->status);
3266 conn->state = BT_CLOSED;
3267 hci_conn_del(conn);
3268 goto unlock;
3269 }
3270
b644ba33
JH
3271 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3272 mgmt_device_connected(hdev, &ev->bdaddr, conn->type,
3273 conn->dst_type, NULL, 0, 0);
83bc71b4 3274
7b5c0d52 3275 conn->sec_level = BT_SECURITY_LOW;
fcd89c09
VT
3276 conn->handle = __le16_to_cpu(ev->handle);
3277 conn->state = BT_CONNECTED;
3278
3279 hci_conn_hold_device(conn);
3280 hci_conn_add_sysfs(conn);
3281
3282 hci_proto_connect_cfm(conn, ev->status);
3283
3284unlock:
3285 hci_dev_unlock(hdev);
3286}
3287
9aa04c91
AG
3288static inline void hci_le_adv_report_evt(struct hci_dev *hdev,
3289 struct sk_buff *skb)
3290{
e95beb41
AG
3291 u8 num_reports = skb->data[0];
3292 void *ptr = &skb->data[1];
3c9e9195 3293 s8 rssi;
9aa04c91
AG
3294
3295 hci_dev_lock(hdev);
3296
e95beb41
AG
3297 while (num_reports--) {
3298 struct hci_ev_le_advertising_info *ev = ptr;
9aa04c91 3299
9aa04c91 3300 hci_add_adv_entry(hdev, ev);
e95beb41 3301
3c9e9195
AG
3302 rssi = ev->data[ev->length];
3303 mgmt_device_found(hdev, &ev->bdaddr, LE_LINK, ev->bdaddr_type,
3304 NULL, rssi, 0, ev->data, ev->length);
3305
e95beb41 3306 ptr += sizeof(*ev) + ev->length + 1;
9aa04c91
AG
3307 }
3308
3309 hci_dev_unlock(hdev);
3310}
3311
a7a595f6
VCG
3312static inline void hci_le_ltk_request_evt(struct hci_dev *hdev,
3313 struct sk_buff *skb)
3314{
3315 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
3316 struct hci_cp_le_ltk_reply cp;
bea710fe 3317 struct hci_cp_le_ltk_neg_reply neg;
a7a595f6 3318 struct hci_conn *conn;
c9839a11 3319 struct smp_ltk *ltk;
a7a595f6
VCG
3320
3321 BT_DBG("%s handle %d", hdev->name, cpu_to_le16(ev->handle));
3322
3323 hci_dev_lock(hdev);
3324
3325 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
bea710fe
VCG
3326 if (conn == NULL)
3327 goto not_found;
a7a595f6 3328
bea710fe
VCG
3329 ltk = hci_find_ltk(hdev, ev->ediv, ev->random);
3330 if (ltk == NULL)
3331 goto not_found;
3332
3333 memcpy(cp.ltk, ltk->val, sizeof(ltk->val));
a7a595f6 3334 cp.handle = cpu_to_le16(conn->handle);
c9839a11
VCG
3335
3336 if (ltk->authenticated)
3337 conn->sec_level = BT_SECURITY_HIGH;
a7a595f6
VCG
3338
3339 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
3340
c9839a11
VCG
3341 if (ltk->type & HCI_SMP_STK) {
3342 list_del(&ltk->list);
3343 kfree(ltk);
3344 }
3345
a7a595f6 3346 hci_dev_unlock(hdev);
bea710fe
VCG
3347
3348 return;
3349
3350not_found:
3351 neg.handle = ev->handle;
3352 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
3353 hci_dev_unlock(hdev);
a7a595f6
VCG
3354}
3355
fcd89c09
VT
3356static inline void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
3357{
3358 struct hci_ev_le_meta *le_ev = (void *) skb->data;
3359
3360 skb_pull(skb, sizeof(*le_ev));
3361
3362 switch (le_ev->subevent) {
3363 case HCI_EV_LE_CONN_COMPLETE:
3364 hci_le_conn_complete_evt(hdev, skb);
3365 break;
3366
9aa04c91
AG
3367 case HCI_EV_LE_ADVERTISING_REPORT:
3368 hci_le_adv_report_evt(hdev, skb);
3369 break;
3370
a7a595f6
VCG
3371 case HCI_EV_LE_LTK_REQ:
3372 hci_le_ltk_request_evt(hdev, skb);
3373 break;
3374
fcd89c09
VT
3375 default:
3376 break;
3377 }
3378}
3379
a9de9248
MH
3380void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
3381{
3382 struct hci_event_hdr *hdr = (void *) skb->data;
3383 __u8 event = hdr->evt;
3384
3385 skb_pull(skb, HCI_EVENT_HDR_SIZE);
3386
3387 switch (event) {
1da177e4
LT
3388 case HCI_EV_INQUIRY_COMPLETE:
3389 hci_inquiry_complete_evt(hdev, skb);
3390 break;
3391
3392 case HCI_EV_INQUIRY_RESULT:
3393 hci_inquiry_result_evt(hdev, skb);
3394 break;
3395
a9de9248
MH
3396 case HCI_EV_CONN_COMPLETE:
3397 hci_conn_complete_evt(hdev, skb);
21d9e30e
MH
3398 break;
3399
1da177e4
LT
3400 case HCI_EV_CONN_REQUEST:
3401 hci_conn_request_evt(hdev, skb);
3402 break;
3403
1da177e4
LT
3404 case HCI_EV_DISCONN_COMPLETE:
3405 hci_disconn_complete_evt(hdev, skb);
3406 break;
3407
1da177e4
LT
3408 case HCI_EV_AUTH_COMPLETE:
3409 hci_auth_complete_evt(hdev, skb);
3410 break;
3411
a9de9248
MH
3412 case HCI_EV_REMOTE_NAME:
3413 hci_remote_name_evt(hdev, skb);
3414 break;
3415
1da177e4
LT
3416 case HCI_EV_ENCRYPT_CHANGE:
3417 hci_encrypt_change_evt(hdev, skb);
3418 break;
3419
a9de9248
MH
3420 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
3421 hci_change_link_key_complete_evt(hdev, skb);
3422 break;
3423
3424 case HCI_EV_REMOTE_FEATURES:
3425 hci_remote_features_evt(hdev, skb);
3426 break;
3427
3428 case HCI_EV_REMOTE_VERSION:
3429 hci_remote_version_evt(hdev, skb);
3430 break;
3431
3432 case HCI_EV_QOS_SETUP_COMPLETE:
3433 hci_qos_setup_complete_evt(hdev, skb);
3434 break;
3435
3436 case HCI_EV_CMD_COMPLETE:
3437 hci_cmd_complete_evt(hdev, skb);
3438 break;
3439
3440 case HCI_EV_CMD_STATUS:
3441 hci_cmd_status_evt(hdev, skb);
3442 break;
3443
3444 case HCI_EV_ROLE_CHANGE:
3445 hci_role_change_evt(hdev, skb);
3446 break;
3447
3448 case HCI_EV_NUM_COMP_PKTS:
3449 hci_num_comp_pkts_evt(hdev, skb);
3450 break;
3451
3452 case HCI_EV_MODE_CHANGE:
3453 hci_mode_change_evt(hdev, skb);
1da177e4
LT
3454 break;
3455
3456 case HCI_EV_PIN_CODE_REQ:
3457 hci_pin_code_request_evt(hdev, skb);
3458 break;
3459
3460 case HCI_EV_LINK_KEY_REQ:
3461 hci_link_key_request_evt(hdev, skb);
3462 break;
3463
3464 case HCI_EV_LINK_KEY_NOTIFY:
3465 hci_link_key_notify_evt(hdev, skb);
3466 break;
3467
3468 case HCI_EV_CLOCK_OFFSET:
3469 hci_clock_offset_evt(hdev, skb);
3470 break;
3471
a8746417
MH
3472 case HCI_EV_PKT_TYPE_CHANGE:
3473 hci_pkt_type_change_evt(hdev, skb);
3474 break;
3475
85a1e930
MH
3476 case HCI_EV_PSCAN_REP_MODE:
3477 hci_pscan_rep_mode_evt(hdev, skb);
3478 break;
3479
a9de9248
MH
3480 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
3481 hci_inquiry_result_with_rssi_evt(hdev, skb);
04837f64
MH
3482 break;
3483
a9de9248
MH
3484 case HCI_EV_REMOTE_EXT_FEATURES:
3485 hci_remote_ext_features_evt(hdev, skb);
1da177e4
LT
3486 break;
3487
a9de9248
MH
3488 case HCI_EV_SYNC_CONN_COMPLETE:
3489 hci_sync_conn_complete_evt(hdev, skb);
3490 break;
1da177e4 3491
a9de9248
MH
3492 case HCI_EV_SYNC_CONN_CHANGED:
3493 hci_sync_conn_changed_evt(hdev, skb);
3494 break;
1da177e4 3495
a9de9248
MH
3496 case HCI_EV_SNIFF_SUBRATE:
3497 hci_sniff_subrate_evt(hdev, skb);
3498 break;
1da177e4 3499
a9de9248
MH
3500 case HCI_EV_EXTENDED_INQUIRY_RESULT:
3501 hci_extended_inquiry_result_evt(hdev, skb);
3502 break;
1da177e4 3503
0493684e
MH
3504 case HCI_EV_IO_CAPA_REQUEST:
3505 hci_io_capa_request_evt(hdev, skb);
3506 break;
3507
03b555e1
JH
3508 case HCI_EV_IO_CAPA_REPLY:
3509 hci_io_capa_reply_evt(hdev, skb);
3510 break;
3511
a5c29683
JH
3512 case HCI_EV_USER_CONFIRM_REQUEST:
3513 hci_user_confirm_request_evt(hdev, skb);
3514 break;
3515
1143d458
BG
3516 case HCI_EV_USER_PASSKEY_REQUEST:
3517 hci_user_passkey_request_evt(hdev, skb);
3518 break;
3519
0493684e
MH
3520 case HCI_EV_SIMPLE_PAIR_COMPLETE:
3521 hci_simple_pair_complete_evt(hdev, skb);
3522 break;
3523
41a96212
MH
3524 case HCI_EV_REMOTE_HOST_FEATURES:
3525 hci_remote_host_features_evt(hdev, skb);
3526 break;
3527
fcd89c09
VT
3528 case HCI_EV_LE_META:
3529 hci_le_meta_evt(hdev, skb);
3530 break;
3531
2763eda6
SJ
3532 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
3533 hci_remote_oob_data_request_evt(hdev, skb);
3534 break;
3535
25e89e99
AE
3536 case HCI_EV_NUM_COMP_BLOCKS:
3537 hci_num_comp_blocks_evt(hdev, skb);
3538 break;
3539
a9de9248
MH
3540 default:
3541 BT_DBG("%s event 0x%x", hdev->name, event);
1da177e4
LT
3542 break;
3543 }
3544
3545 kfree_skb(skb);
3546 hdev->stat.evt_rx++;
3547}
3548
669bb396 3549module_param(enable_le, bool, 0644);
e6100a25 3550MODULE_PARM_DESC(enable_le, "Enable LE support");
This page took 2.34012 seconds and 5 git commands to generate.