2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
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;
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
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
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
22 SOFTWARE IS DISCLAIMED.
25 /* Bluetooth HCI event handling. */
27 #include <linux/module.h>
29 #include <linux/types.h>
30 #include <linux/errno.h>
31 #include <linux/kernel.h>
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>
38 #include <linux/notifier.h>
41 #include <asm/system.h>
42 #include <asm/uaccess.h>
43 #include <asm/unaligned.h>
45 #include <net/bluetooth/bluetooth.h>
46 #include <net/bluetooth/hci_core.h>
48 #ifndef CONFIG_BT_HCI_CORE_DEBUG
53 /* Handle HCI Event packets */
55 static void hci_cc_inquiry_cancel(struct hci_dev
*hdev
, struct sk_buff
*skb
)
57 __u8 status
= *((__u8
*) skb
->data
);
59 BT_DBG("%s status 0x%x", hdev
->name
, status
);
64 clear_bit(HCI_INQUIRY
, &hdev
->flags
);
66 hci_req_complete(hdev
, status
);
68 hci_conn_check_pending(hdev
);
71 static void hci_cc_exit_periodic_inq(struct hci_dev
*hdev
, struct sk_buff
*skb
)
73 __u8 status
= *((__u8
*) skb
->data
);
75 BT_DBG("%s status 0x%x", hdev
->name
, status
);
80 clear_bit(HCI_INQUIRY
, &hdev
->flags
);
82 hci_conn_check_pending(hdev
);
85 static void hci_cc_remote_name_req_cancel(struct hci_dev
*hdev
, struct sk_buff
*skb
)
87 BT_DBG("%s", hdev
->name
);
90 static void hci_cc_role_discovery(struct hci_dev
*hdev
, struct sk_buff
*skb
)
92 struct hci_rp_role_discovery
*rp
= (void *) skb
->data
;
93 struct hci_conn
*conn
;
95 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
102 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(rp
->handle
));
105 conn
->link_mode
&= ~HCI_LM_MASTER
;
107 conn
->link_mode
|= HCI_LM_MASTER
;
110 hci_dev_unlock(hdev
);
113 static void hci_cc_read_link_policy(struct hci_dev
*hdev
, struct sk_buff
*skb
)
115 struct hci_rp_read_link_policy
*rp
= (void *) skb
->data
;
116 struct hci_conn
*conn
;
118 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
125 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(rp
->handle
));
127 conn
->link_policy
= __le16_to_cpu(rp
->policy
);
129 hci_dev_unlock(hdev
);
132 static void hci_cc_write_link_policy(struct hci_dev
*hdev
, struct sk_buff
*skb
)
134 struct hci_rp_write_link_policy
*rp
= (void *) skb
->data
;
135 struct hci_conn
*conn
;
138 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
143 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_LINK_POLICY
);
149 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(rp
->handle
));
151 conn
->link_policy
= get_unaligned_le16(sent
+ 2);
153 hci_dev_unlock(hdev
);
156 static void hci_cc_read_def_link_policy(struct hci_dev
*hdev
, struct sk_buff
*skb
)
158 struct hci_rp_read_def_link_policy
*rp
= (void *) skb
->data
;
160 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
165 hdev
->link_policy
= __le16_to_cpu(rp
->policy
);
168 static void hci_cc_write_def_link_policy(struct hci_dev
*hdev
, struct sk_buff
*skb
)
170 __u8 status
= *((__u8
*) skb
->data
);
173 BT_DBG("%s status 0x%x", hdev
->name
, status
);
175 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_DEF_LINK_POLICY
);
180 hdev
->link_policy
= get_unaligned_le16(sent
);
182 hci_req_complete(hdev
, status
);
185 static void hci_cc_reset(struct hci_dev
*hdev
, struct sk_buff
*skb
)
187 __u8 status
= *((__u8
*) skb
->data
);
189 BT_DBG("%s status 0x%x", hdev
->name
, status
);
191 hci_req_complete(hdev
, status
);
194 static void hci_cc_write_local_name(struct hci_dev
*hdev
, struct sk_buff
*skb
)
196 __u8 status
= *((__u8
*) skb
->data
);
199 BT_DBG("%s status 0x%x", hdev
->name
, status
);
204 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_LOCAL_NAME
);
208 memcpy(hdev
->dev_name
, sent
, 248);
211 static void hci_cc_read_local_name(struct hci_dev
*hdev
, struct sk_buff
*skb
)
213 struct hci_rp_read_local_name
*rp
= (void *) skb
->data
;
215 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
220 memcpy(hdev
->dev_name
, rp
->name
, 248);
223 static void hci_cc_write_auth_enable(struct hci_dev
*hdev
, struct sk_buff
*skb
)
225 __u8 status
= *((__u8
*) skb
->data
);
228 BT_DBG("%s status 0x%x", hdev
->name
, status
);
230 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_AUTH_ENABLE
);
235 __u8 param
= *((__u8
*) sent
);
237 if (param
== AUTH_ENABLED
)
238 set_bit(HCI_AUTH
, &hdev
->flags
);
240 clear_bit(HCI_AUTH
, &hdev
->flags
);
243 hci_req_complete(hdev
, status
);
246 static void hci_cc_write_encrypt_mode(struct hci_dev
*hdev
, struct sk_buff
*skb
)
248 __u8 status
= *((__u8
*) skb
->data
);
251 BT_DBG("%s status 0x%x", hdev
->name
, status
);
253 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_ENCRYPT_MODE
);
258 __u8 param
= *((__u8
*) sent
);
261 set_bit(HCI_ENCRYPT
, &hdev
->flags
);
263 clear_bit(HCI_ENCRYPT
, &hdev
->flags
);
266 hci_req_complete(hdev
, status
);
269 static void hci_cc_write_scan_enable(struct hci_dev
*hdev
, struct sk_buff
*skb
)
271 __u8 status
= *((__u8
*) skb
->data
);
274 BT_DBG("%s status 0x%x", hdev
->name
, status
);
276 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_SCAN_ENABLE
);
281 __u8 param
= *((__u8
*) sent
);
283 clear_bit(HCI_PSCAN
, &hdev
->flags
);
284 clear_bit(HCI_ISCAN
, &hdev
->flags
);
286 if (param
& SCAN_INQUIRY
)
287 set_bit(HCI_ISCAN
, &hdev
->flags
);
289 if (param
& SCAN_PAGE
)
290 set_bit(HCI_PSCAN
, &hdev
->flags
);
293 hci_req_complete(hdev
, status
);
296 static void hci_cc_read_class_of_dev(struct hci_dev
*hdev
, struct sk_buff
*skb
)
298 struct hci_rp_read_class_of_dev
*rp
= (void *) skb
->data
;
300 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
305 memcpy(hdev
->dev_class
, rp
->dev_class
, 3);
307 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev
->name
,
308 hdev
->dev_class
[2], hdev
->dev_class
[1], hdev
->dev_class
[0]);
311 static void hci_cc_write_class_of_dev(struct hci_dev
*hdev
, struct sk_buff
*skb
)
313 __u8 status
= *((__u8
*) skb
->data
);
316 BT_DBG("%s status 0x%x", hdev
->name
, status
);
321 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_CLASS_OF_DEV
);
325 memcpy(hdev
->dev_class
, sent
, 3);
328 static void hci_cc_read_voice_setting(struct hci_dev
*hdev
, struct sk_buff
*skb
)
330 struct hci_rp_read_voice_setting
*rp
= (void *) skb
->data
;
333 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
338 setting
= __le16_to_cpu(rp
->voice_setting
);
340 if (hdev
->voice_setting
== setting
)
343 hdev
->voice_setting
= setting
;
345 BT_DBG("%s voice setting 0x%04x", hdev
->name
, setting
);
348 tasklet_disable(&hdev
->tx_task
);
349 hdev
->notify(hdev
, HCI_NOTIFY_VOICE_SETTING
);
350 tasklet_enable(&hdev
->tx_task
);
354 static void hci_cc_write_voice_setting(struct hci_dev
*hdev
, struct sk_buff
*skb
)
356 __u8 status
= *((__u8
*) skb
->data
);
360 BT_DBG("%s status 0x%x", hdev
->name
, status
);
365 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_VOICE_SETTING
);
369 setting
= get_unaligned_le16(sent
);
371 if (hdev
->voice_setting
== setting
)
374 hdev
->voice_setting
= setting
;
376 BT_DBG("%s voice setting 0x%04x", hdev
->name
, setting
);
379 tasklet_disable(&hdev
->tx_task
);
380 hdev
->notify(hdev
, HCI_NOTIFY_VOICE_SETTING
);
381 tasklet_enable(&hdev
->tx_task
);
385 static void hci_cc_host_buffer_size(struct hci_dev
*hdev
, struct sk_buff
*skb
)
387 __u8 status
= *((__u8
*) skb
->data
);
389 BT_DBG("%s status 0x%x", hdev
->name
, status
);
391 hci_req_complete(hdev
, status
);
394 static void hci_cc_read_ssp_mode(struct hci_dev
*hdev
, struct sk_buff
*skb
)
396 struct hci_rp_read_ssp_mode
*rp
= (void *) skb
->data
;
398 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
403 hdev
->ssp_mode
= rp
->mode
;
406 static void hci_cc_write_ssp_mode(struct hci_dev
*hdev
, struct sk_buff
*skb
)
408 __u8 status
= *((__u8
*) skb
->data
);
411 BT_DBG("%s status 0x%x", hdev
->name
, status
);
416 sent
= hci_sent_cmd_data(hdev
, HCI_OP_WRITE_SSP_MODE
);
420 hdev
->ssp_mode
= *((__u8
*) sent
);
423 static void hci_cc_read_local_version(struct hci_dev
*hdev
, struct sk_buff
*skb
)
425 struct hci_rp_read_local_version
*rp
= (void *) skb
->data
;
427 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
432 hdev
->hci_ver
= rp
->hci_ver
;
433 hdev
->hci_rev
= __le16_to_cpu(rp
->hci_rev
);
434 hdev
->manufacturer
= __le16_to_cpu(rp
->manufacturer
);
436 BT_DBG("%s manufacturer %d hci ver %d:%d", hdev
->name
,
438 hdev
->hci_ver
, hdev
->hci_rev
);
441 static void hci_cc_read_local_commands(struct hci_dev
*hdev
, struct sk_buff
*skb
)
443 struct hci_rp_read_local_commands
*rp
= (void *) skb
->data
;
445 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
450 memcpy(hdev
->commands
, rp
->commands
, sizeof(hdev
->commands
));
453 static void hci_cc_read_local_features(struct hci_dev
*hdev
, struct sk_buff
*skb
)
455 struct hci_rp_read_local_features
*rp
= (void *) skb
->data
;
457 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
462 memcpy(hdev
->features
, rp
->features
, 8);
464 /* Adjust default settings according to features
465 * supported by device. */
467 if (hdev
->features
[0] & LMP_3SLOT
)
468 hdev
->pkt_type
|= (HCI_DM3
| HCI_DH3
);
470 if (hdev
->features
[0] & LMP_5SLOT
)
471 hdev
->pkt_type
|= (HCI_DM5
| HCI_DH5
);
473 if (hdev
->features
[1] & LMP_HV2
) {
474 hdev
->pkt_type
|= (HCI_HV2
);
475 hdev
->esco_type
|= (ESCO_HV2
);
478 if (hdev
->features
[1] & LMP_HV3
) {
479 hdev
->pkt_type
|= (HCI_HV3
);
480 hdev
->esco_type
|= (ESCO_HV3
);
483 if (hdev
->features
[3] & LMP_ESCO
)
484 hdev
->esco_type
|= (ESCO_EV3
);
486 if (hdev
->features
[4] & LMP_EV4
)
487 hdev
->esco_type
|= (ESCO_EV4
);
489 if (hdev
->features
[4] & LMP_EV5
)
490 hdev
->esco_type
|= (ESCO_EV5
);
492 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev
->name
,
493 hdev
->features
[0], hdev
->features
[1],
494 hdev
->features
[2], hdev
->features
[3],
495 hdev
->features
[4], hdev
->features
[5],
496 hdev
->features
[6], hdev
->features
[7]);
499 static void hci_cc_read_buffer_size(struct hci_dev
*hdev
, struct sk_buff
*skb
)
501 struct hci_rp_read_buffer_size
*rp
= (void *) skb
->data
;
503 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
508 hdev
->acl_mtu
= __le16_to_cpu(rp
->acl_mtu
);
509 hdev
->sco_mtu
= rp
->sco_mtu
;
510 hdev
->acl_pkts
= __le16_to_cpu(rp
->acl_max_pkt
);
511 hdev
->sco_pkts
= __le16_to_cpu(rp
->sco_max_pkt
);
513 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE
, &hdev
->quirks
)) {
518 hdev
->acl_cnt
= hdev
->acl_pkts
;
519 hdev
->sco_cnt
= hdev
->sco_pkts
;
521 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev
->name
,
522 hdev
->acl_mtu
, hdev
->acl_pkts
,
523 hdev
->sco_mtu
, hdev
->sco_pkts
);
526 static void hci_cc_read_bd_addr(struct hci_dev
*hdev
, struct sk_buff
*skb
)
528 struct hci_rp_read_bd_addr
*rp
= (void *) skb
->data
;
530 BT_DBG("%s status 0x%x", hdev
->name
, rp
->status
);
533 bacpy(&hdev
->bdaddr
, &rp
->bdaddr
);
535 hci_req_complete(hdev
, rp
->status
);
538 static inline void hci_cs_inquiry(struct hci_dev
*hdev
, __u8 status
)
540 BT_DBG("%s status 0x%x", hdev
->name
, status
);
543 hci_req_complete(hdev
, status
);
545 hci_conn_check_pending(hdev
);
547 set_bit(HCI_INQUIRY
, &hdev
->flags
);
550 static inline void hci_cs_create_conn(struct hci_dev
*hdev
, __u8 status
)
552 struct hci_cp_create_conn
*cp
;
553 struct hci_conn
*conn
;
555 BT_DBG("%s status 0x%x", hdev
->name
, status
);
557 cp
= hci_sent_cmd_data(hdev
, HCI_OP_CREATE_CONN
);
563 conn
= hci_conn_hash_lookup_ba(hdev
, ACL_LINK
, &cp
->bdaddr
);
565 BT_DBG("%s bdaddr %s conn %p", hdev
->name
, batostr(&cp
->bdaddr
), conn
);
568 if (conn
&& conn
->state
== BT_CONNECT
) {
569 if (status
!= 0x0c || conn
->attempt
> 2) {
570 conn
->state
= BT_CLOSED
;
571 hci_proto_connect_cfm(conn
, status
);
574 conn
->state
= BT_CONNECT2
;
578 conn
= hci_conn_add(hdev
, ACL_LINK
, &cp
->bdaddr
);
581 conn
->link_mode
|= HCI_LM_MASTER
;
583 BT_ERR("No memmory for new connection");
587 hci_dev_unlock(hdev
);
590 static void hci_cs_add_sco(struct hci_dev
*hdev
, __u8 status
)
592 struct hci_cp_add_sco
*cp
;
593 struct hci_conn
*acl
, *sco
;
596 BT_DBG("%s status 0x%x", hdev
->name
, status
);
601 cp
= hci_sent_cmd_data(hdev
, HCI_OP_ADD_SCO
);
605 handle
= __le16_to_cpu(cp
->handle
);
607 BT_DBG("%s handle %d", hdev
->name
, handle
);
611 acl
= hci_conn_hash_lookup_handle(hdev
, handle
);
612 if (acl
&& (sco
= acl
->link
)) {
613 sco
->state
= BT_CLOSED
;
615 hci_proto_connect_cfm(sco
, status
);
619 hci_dev_unlock(hdev
);
622 static void hci_cs_auth_requested(struct hci_dev
*hdev
, __u8 status
)
624 struct hci_cp_auth_requested
*cp
;
625 struct hci_conn
*conn
;
627 BT_DBG("%s status 0x%x", hdev
->name
, status
);
632 cp
= hci_sent_cmd_data(hdev
, HCI_OP_AUTH_REQUESTED
);
638 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(cp
->handle
));
640 if (conn
->state
== BT_CONFIG
) {
641 hci_proto_connect_cfm(conn
, status
);
646 hci_dev_unlock(hdev
);
649 static void hci_cs_set_conn_encrypt(struct hci_dev
*hdev
, __u8 status
)
651 struct hci_cp_set_conn_encrypt
*cp
;
652 struct hci_conn
*conn
;
654 BT_DBG("%s status 0x%x", hdev
->name
, status
);
659 cp
= hci_sent_cmd_data(hdev
, HCI_OP_SET_CONN_ENCRYPT
);
665 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(cp
->handle
));
667 if (conn
->state
== BT_CONFIG
) {
668 hci_proto_connect_cfm(conn
, status
);
673 hci_dev_unlock(hdev
);
676 static void hci_cs_remote_name_req(struct hci_dev
*hdev
, __u8 status
)
678 BT_DBG("%s status 0x%x", hdev
->name
, status
);
681 static void hci_cs_read_remote_features(struct hci_dev
*hdev
, __u8 status
)
683 struct hci_cp_read_remote_features
*cp
;
684 struct hci_conn
*conn
;
686 BT_DBG("%s status 0x%x", hdev
->name
, status
);
691 cp
= hci_sent_cmd_data(hdev
, HCI_OP_READ_REMOTE_FEATURES
);
697 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(cp
->handle
));
699 if (conn
->state
== BT_CONFIG
) {
700 hci_proto_connect_cfm(conn
, status
);
705 hci_dev_unlock(hdev
);
708 static void hci_cs_read_remote_ext_features(struct hci_dev
*hdev
, __u8 status
)
710 struct hci_cp_read_remote_ext_features
*cp
;
711 struct hci_conn
*conn
;
713 BT_DBG("%s status 0x%x", hdev
->name
, status
);
718 cp
= hci_sent_cmd_data(hdev
, HCI_OP_READ_REMOTE_EXT_FEATURES
);
724 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(cp
->handle
));
726 if (conn
->state
== BT_CONFIG
) {
727 hci_proto_connect_cfm(conn
, status
);
732 hci_dev_unlock(hdev
);
735 static void hci_cs_setup_sync_conn(struct hci_dev
*hdev
, __u8 status
)
737 struct hci_cp_setup_sync_conn
*cp
;
738 struct hci_conn
*acl
, *sco
;
741 BT_DBG("%s status 0x%x", hdev
->name
, status
);
746 cp
= hci_sent_cmd_data(hdev
, HCI_OP_SETUP_SYNC_CONN
);
750 handle
= __le16_to_cpu(cp
->handle
);
752 BT_DBG("%s handle %d", hdev
->name
, handle
);
756 acl
= hci_conn_hash_lookup_handle(hdev
, handle
);
757 if (acl
&& (sco
= acl
->link
)) {
758 sco
->state
= BT_CLOSED
;
760 hci_proto_connect_cfm(sco
, status
);
764 hci_dev_unlock(hdev
);
767 static void hci_cs_sniff_mode(struct hci_dev
*hdev
, __u8 status
)
769 struct hci_cp_sniff_mode
*cp
;
770 struct hci_conn
*conn
;
772 BT_DBG("%s status 0x%x", hdev
->name
, status
);
777 cp
= hci_sent_cmd_data(hdev
, HCI_OP_SNIFF_MODE
);
783 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(cp
->handle
));
785 clear_bit(HCI_CONN_MODE_CHANGE_PEND
, &conn
->pend
);
787 hci_dev_unlock(hdev
);
790 static void hci_cs_exit_sniff_mode(struct hci_dev
*hdev
, __u8 status
)
792 struct hci_cp_exit_sniff_mode
*cp
;
793 struct hci_conn
*conn
;
795 BT_DBG("%s status 0x%x", hdev
->name
, status
);
800 cp
= hci_sent_cmd_data(hdev
, HCI_OP_EXIT_SNIFF_MODE
);
806 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(cp
->handle
));
808 clear_bit(HCI_CONN_MODE_CHANGE_PEND
, &conn
->pend
);
810 hci_dev_unlock(hdev
);
813 static inline void hci_inquiry_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
815 __u8 status
= *((__u8
*) skb
->data
);
817 BT_DBG("%s status %d", hdev
->name
, status
);
819 clear_bit(HCI_INQUIRY
, &hdev
->flags
);
821 hci_req_complete(hdev
, status
);
823 hci_conn_check_pending(hdev
);
826 static inline void hci_inquiry_result_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
828 struct inquiry_data data
;
829 struct inquiry_info
*info
= (void *) (skb
->data
+ 1);
830 int num_rsp
= *((__u8
*) skb
->data
);
832 BT_DBG("%s num_rsp %d", hdev
->name
, num_rsp
);
839 for (; num_rsp
; num_rsp
--) {
840 bacpy(&data
.bdaddr
, &info
->bdaddr
);
841 data
.pscan_rep_mode
= info
->pscan_rep_mode
;
842 data
.pscan_period_mode
= info
->pscan_period_mode
;
843 data
.pscan_mode
= info
->pscan_mode
;
844 memcpy(data
.dev_class
, info
->dev_class
, 3);
845 data
.clock_offset
= info
->clock_offset
;
847 data
.ssp_mode
= 0x00;
849 hci_inquiry_cache_update(hdev
, &data
);
852 hci_dev_unlock(hdev
);
855 static inline void hci_conn_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
857 struct hci_ev_conn_complete
*ev
= (void *) skb
->data
;
858 struct hci_conn
*conn
;
860 BT_DBG("%s", hdev
->name
);
864 conn
= hci_conn_hash_lookup_ba(hdev
, ev
->link_type
, &ev
->bdaddr
);
869 conn
->handle
= __le16_to_cpu(ev
->handle
);
871 if (conn
->type
== ACL_LINK
) {
872 conn
->state
= BT_CONFIG
;
875 conn
->state
= BT_CONNECTED
;
877 hci_conn_add_sysfs(conn
);
879 if (test_bit(HCI_AUTH
, &hdev
->flags
))
880 conn
->link_mode
|= HCI_LM_AUTH
;
882 if (test_bit(HCI_ENCRYPT
, &hdev
->flags
))
883 conn
->link_mode
|= HCI_LM_ENCRYPT
;
885 /* Get remote features */
886 if (conn
->type
== ACL_LINK
) {
887 struct hci_cp_read_remote_features cp
;
888 cp
.handle
= ev
->handle
;
889 hci_send_cmd(hdev
, HCI_OP_READ_REMOTE_FEATURES
,
893 /* Set packet type for incoming connection */
894 if (!conn
->out
&& hdev
->hci_ver
< 3) {
895 struct hci_cp_change_conn_ptype cp
;
896 cp
.handle
= ev
->handle
;
897 cp
.pkt_type
= cpu_to_le16(conn
->pkt_type
);
898 hci_send_cmd(hdev
, HCI_OP_CHANGE_CONN_PTYPE
,
902 conn
->state
= BT_CLOSED
;
904 if (conn
->type
== ACL_LINK
) {
905 struct hci_conn
*sco
= conn
->link
;
908 if (lmp_esco_capable(hdev
))
909 hci_setup_sync(sco
, conn
->handle
);
911 hci_add_sco(sco
, conn
->handle
);
913 hci_proto_connect_cfm(sco
, ev
->status
);
920 hci_proto_connect_cfm(conn
, ev
->status
);
925 hci_dev_unlock(hdev
);
927 hci_conn_check_pending(hdev
);
930 static inline void hci_conn_request_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
932 struct hci_ev_conn_request
*ev
= (void *) skb
->data
;
933 int mask
= hdev
->link_mode
;
935 BT_DBG("%s bdaddr %s type 0x%x", hdev
->name
,
936 batostr(&ev
->bdaddr
), ev
->link_type
);
938 mask
|= hci_proto_connect_ind(hdev
, &ev
->bdaddr
, ev
->link_type
);
940 if (mask
& HCI_LM_ACCEPT
) {
941 /* Connection accepted */
942 struct inquiry_entry
*ie
;
943 struct hci_conn
*conn
;
947 if ((ie
= hci_inquiry_cache_lookup(hdev
, &ev
->bdaddr
)))
948 memcpy(ie
->data
.dev_class
, ev
->dev_class
, 3);
950 conn
= hci_conn_hash_lookup_ba(hdev
, ev
->link_type
, &ev
->bdaddr
);
952 if (!(conn
= hci_conn_add(hdev
, ev
->link_type
, &ev
->bdaddr
))) {
953 BT_ERR("No memmory for new connection");
954 hci_dev_unlock(hdev
);
959 memcpy(conn
->dev_class
, ev
->dev_class
, 3);
960 conn
->state
= BT_CONNECT
;
962 hci_dev_unlock(hdev
);
964 if (ev
->link_type
== ACL_LINK
|| !lmp_esco_capable(hdev
)) {
965 struct hci_cp_accept_conn_req cp
;
967 bacpy(&cp
.bdaddr
, &ev
->bdaddr
);
969 if (lmp_rswitch_capable(hdev
) && (mask
& HCI_LM_MASTER
))
970 cp
.role
= 0x00; /* Become master */
972 cp
.role
= 0x01; /* Remain slave */
974 hci_send_cmd(hdev
, HCI_OP_ACCEPT_CONN_REQ
,
977 struct hci_cp_accept_sync_conn_req cp
;
979 bacpy(&cp
.bdaddr
, &ev
->bdaddr
);
980 cp
.pkt_type
= cpu_to_le16(conn
->pkt_type
);
982 cp
.tx_bandwidth
= cpu_to_le32(0x00001f40);
983 cp
.rx_bandwidth
= cpu_to_le32(0x00001f40);
984 cp
.max_latency
= cpu_to_le16(0xffff);
985 cp
.content_format
= cpu_to_le16(hdev
->voice_setting
);
986 cp
.retrans_effort
= 0xff;
988 hci_send_cmd(hdev
, HCI_OP_ACCEPT_SYNC_CONN_REQ
,
992 /* Connection rejected */
993 struct hci_cp_reject_conn_req cp
;
995 bacpy(&cp
.bdaddr
, &ev
->bdaddr
);
997 hci_send_cmd(hdev
, HCI_OP_REJECT_CONN_REQ
, sizeof(cp
), &cp
);
1001 static inline void hci_disconn_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1003 struct hci_ev_disconn_complete
*ev
= (void *) skb
->data
;
1004 struct hci_conn
*conn
;
1006 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1013 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1015 conn
->state
= BT_CLOSED
;
1017 hci_conn_del_sysfs(conn
);
1019 hci_proto_disconn_ind(conn
, ev
->reason
);
1023 hci_dev_unlock(hdev
);
1026 static inline void hci_auth_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1028 struct hci_ev_auth_complete
*ev
= (void *) skb
->data
;
1029 struct hci_conn
*conn
;
1031 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1035 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1038 conn
->link_mode
|= HCI_LM_AUTH
;
1040 clear_bit(HCI_CONN_AUTH_PEND
, &conn
->pend
);
1042 if (conn
->state
== BT_CONFIG
) {
1043 if (!ev
->status
&& hdev
->ssp_mode
> 0 &&
1044 conn
->ssp_mode
> 0) {
1045 struct hci_cp_set_conn_encrypt cp
;
1046 cp
.handle
= ev
->handle
;
1048 hci_send_cmd(hdev
, HCI_OP_SET_CONN_ENCRYPT
,
1051 conn
->state
= BT_CONNECTED
;
1052 hci_proto_connect_cfm(conn
, ev
->status
);
1056 hci_auth_cfm(conn
, ev
->status
);
1058 if (test_bit(HCI_CONN_ENCRYPT_PEND
, &conn
->pend
)) {
1060 struct hci_cp_set_conn_encrypt cp
;
1061 cp
.handle
= ev
->handle
;
1063 hci_send_cmd(hdev
, HCI_OP_SET_CONN_ENCRYPT
,
1066 clear_bit(HCI_CONN_ENCRYPT_PEND
, &conn
->pend
);
1067 hci_encrypt_cfm(conn
, ev
->status
, 0x00);
1072 hci_dev_unlock(hdev
);
1075 static inline void hci_remote_name_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1077 BT_DBG("%s", hdev
->name
);
1079 hci_conn_check_pending(hdev
);
1082 static inline void hci_encrypt_change_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1084 struct hci_ev_encrypt_change
*ev
= (void *) skb
->data
;
1085 struct hci_conn
*conn
;
1087 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1091 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1095 /* Encryption implies authentication */
1096 conn
->link_mode
|= HCI_LM_AUTH
;
1097 conn
->link_mode
|= HCI_LM_ENCRYPT
;
1099 conn
->link_mode
&= ~HCI_LM_ENCRYPT
;
1102 clear_bit(HCI_CONN_ENCRYPT_PEND
, &conn
->pend
);
1104 if (conn
->state
== BT_CONFIG
) {
1106 conn
->state
= BT_CONNECTED
;
1108 hci_proto_connect_cfm(conn
, ev
->status
);
1111 hci_encrypt_cfm(conn
, ev
->status
, ev
->encrypt
);
1114 hci_dev_unlock(hdev
);
1117 static inline void hci_change_link_key_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1119 struct hci_ev_change_link_key_complete
*ev
= (void *) skb
->data
;
1120 struct hci_conn
*conn
;
1122 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1126 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1129 conn
->link_mode
|= HCI_LM_SECURE
;
1131 clear_bit(HCI_CONN_AUTH_PEND
, &conn
->pend
);
1133 hci_key_change_cfm(conn
, ev
->status
);
1136 hci_dev_unlock(hdev
);
1139 static inline void hci_remote_features_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1141 struct hci_ev_remote_features
*ev
= (void *) skb
->data
;
1142 struct hci_conn
*conn
;
1144 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1148 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1151 memcpy(conn
->features
, ev
->features
, 8);
1153 if (conn
->state
== BT_CONFIG
) {
1154 if (!ev
->status
&& lmp_ssp_capable(hdev
) &&
1155 lmp_ssp_capable(conn
)) {
1156 struct hci_cp_read_remote_ext_features cp
;
1157 cp
.handle
= ev
->handle
;
1160 HCI_OP_READ_REMOTE_EXT_FEATURES
,
1163 conn
->state
= BT_CONNECTED
;
1164 hci_proto_connect_cfm(conn
, ev
->status
);
1170 hci_dev_unlock(hdev
);
1173 static inline void hci_remote_version_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1175 BT_DBG("%s", hdev
->name
);
1178 static inline void hci_qos_setup_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1180 BT_DBG("%s", hdev
->name
);
1183 static inline void hci_cmd_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1185 struct hci_ev_cmd_complete
*ev
= (void *) skb
->data
;
1188 skb_pull(skb
, sizeof(*ev
));
1190 opcode
= __le16_to_cpu(ev
->opcode
);
1193 case HCI_OP_INQUIRY_CANCEL
:
1194 hci_cc_inquiry_cancel(hdev
, skb
);
1197 case HCI_OP_EXIT_PERIODIC_INQ
:
1198 hci_cc_exit_periodic_inq(hdev
, skb
);
1201 case HCI_OP_REMOTE_NAME_REQ_CANCEL
:
1202 hci_cc_remote_name_req_cancel(hdev
, skb
);
1205 case HCI_OP_ROLE_DISCOVERY
:
1206 hci_cc_role_discovery(hdev
, skb
);
1209 case HCI_OP_READ_LINK_POLICY
:
1210 hci_cc_read_link_policy(hdev
, skb
);
1213 case HCI_OP_WRITE_LINK_POLICY
:
1214 hci_cc_write_link_policy(hdev
, skb
);
1217 case HCI_OP_READ_DEF_LINK_POLICY
:
1218 hci_cc_read_def_link_policy(hdev
, skb
);
1221 case HCI_OP_WRITE_DEF_LINK_POLICY
:
1222 hci_cc_write_def_link_policy(hdev
, skb
);
1226 hci_cc_reset(hdev
, skb
);
1229 case HCI_OP_WRITE_LOCAL_NAME
:
1230 hci_cc_write_local_name(hdev
, skb
);
1233 case HCI_OP_READ_LOCAL_NAME
:
1234 hci_cc_read_local_name(hdev
, skb
);
1237 case HCI_OP_WRITE_AUTH_ENABLE
:
1238 hci_cc_write_auth_enable(hdev
, skb
);
1241 case HCI_OP_WRITE_ENCRYPT_MODE
:
1242 hci_cc_write_encrypt_mode(hdev
, skb
);
1245 case HCI_OP_WRITE_SCAN_ENABLE
:
1246 hci_cc_write_scan_enable(hdev
, skb
);
1249 case HCI_OP_READ_CLASS_OF_DEV
:
1250 hci_cc_read_class_of_dev(hdev
, skb
);
1253 case HCI_OP_WRITE_CLASS_OF_DEV
:
1254 hci_cc_write_class_of_dev(hdev
, skb
);
1257 case HCI_OP_READ_VOICE_SETTING
:
1258 hci_cc_read_voice_setting(hdev
, skb
);
1261 case HCI_OP_WRITE_VOICE_SETTING
:
1262 hci_cc_write_voice_setting(hdev
, skb
);
1265 case HCI_OP_HOST_BUFFER_SIZE
:
1266 hci_cc_host_buffer_size(hdev
, skb
);
1269 case HCI_OP_READ_SSP_MODE
:
1270 hci_cc_read_ssp_mode(hdev
, skb
);
1273 case HCI_OP_WRITE_SSP_MODE
:
1274 hci_cc_write_ssp_mode(hdev
, skb
);
1277 case HCI_OP_READ_LOCAL_VERSION
:
1278 hci_cc_read_local_version(hdev
, skb
);
1281 case HCI_OP_READ_LOCAL_COMMANDS
:
1282 hci_cc_read_local_commands(hdev
, skb
);
1285 case HCI_OP_READ_LOCAL_FEATURES
:
1286 hci_cc_read_local_features(hdev
, skb
);
1289 case HCI_OP_READ_BUFFER_SIZE
:
1290 hci_cc_read_buffer_size(hdev
, skb
);
1293 case HCI_OP_READ_BD_ADDR
:
1294 hci_cc_read_bd_addr(hdev
, skb
);
1298 BT_DBG("%s opcode 0x%x", hdev
->name
, opcode
);
1303 atomic_set(&hdev
->cmd_cnt
, 1);
1304 if (!skb_queue_empty(&hdev
->cmd_q
))
1305 hci_sched_cmd(hdev
);
1309 static inline void hci_cmd_status_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1311 struct hci_ev_cmd_status
*ev
= (void *) skb
->data
;
1314 skb_pull(skb
, sizeof(*ev
));
1316 opcode
= __le16_to_cpu(ev
->opcode
);
1319 case HCI_OP_INQUIRY
:
1320 hci_cs_inquiry(hdev
, ev
->status
);
1323 case HCI_OP_CREATE_CONN
:
1324 hci_cs_create_conn(hdev
, ev
->status
);
1327 case HCI_OP_ADD_SCO
:
1328 hci_cs_add_sco(hdev
, ev
->status
);
1331 case HCI_OP_AUTH_REQUESTED
:
1332 hci_cs_auth_requested(hdev
, ev
->status
);
1335 case HCI_OP_SET_CONN_ENCRYPT
:
1336 hci_cs_set_conn_encrypt(hdev
, ev
->status
);
1339 case HCI_OP_REMOTE_NAME_REQ
:
1340 hci_cs_remote_name_req(hdev
, ev
->status
);
1343 case HCI_OP_READ_REMOTE_FEATURES
:
1344 hci_cs_read_remote_features(hdev
, ev
->status
);
1347 case HCI_OP_READ_REMOTE_EXT_FEATURES
:
1348 hci_cs_read_remote_ext_features(hdev
, ev
->status
);
1351 case HCI_OP_SETUP_SYNC_CONN
:
1352 hci_cs_setup_sync_conn(hdev
, ev
->status
);
1355 case HCI_OP_SNIFF_MODE
:
1356 hci_cs_sniff_mode(hdev
, ev
->status
);
1359 case HCI_OP_EXIT_SNIFF_MODE
:
1360 hci_cs_exit_sniff_mode(hdev
, ev
->status
);
1364 BT_DBG("%s opcode 0x%x", hdev
->name
, opcode
);
1369 atomic_set(&hdev
->cmd_cnt
, 1);
1370 if (!skb_queue_empty(&hdev
->cmd_q
))
1371 hci_sched_cmd(hdev
);
1375 static inline void hci_role_change_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1377 struct hci_ev_role_change
*ev
= (void *) skb
->data
;
1378 struct hci_conn
*conn
;
1380 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1384 conn
= hci_conn_hash_lookup_ba(hdev
, ACL_LINK
, &ev
->bdaddr
);
1388 conn
->link_mode
&= ~HCI_LM_MASTER
;
1390 conn
->link_mode
|= HCI_LM_MASTER
;
1393 clear_bit(HCI_CONN_RSWITCH_PEND
, &conn
->pend
);
1395 hci_role_switch_cfm(conn
, ev
->status
, ev
->role
);
1398 hci_dev_unlock(hdev
);
1401 static inline void hci_num_comp_pkts_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1403 struct hci_ev_num_comp_pkts
*ev
= (void *) skb
->data
;
1407 skb_pull(skb
, sizeof(*ev
));
1409 BT_DBG("%s num_hndl %d", hdev
->name
, ev
->num_hndl
);
1411 if (skb
->len
< ev
->num_hndl
* 4) {
1412 BT_DBG("%s bad parameters", hdev
->name
);
1416 tasklet_disable(&hdev
->tx_task
);
1418 for (i
= 0, ptr
= (__le16
*) skb
->data
; i
< ev
->num_hndl
; i
++) {
1419 struct hci_conn
*conn
;
1420 __u16 handle
, count
;
1422 handle
= get_unaligned_le16(ptr
++);
1423 count
= get_unaligned_le16(ptr
++);
1425 conn
= hci_conn_hash_lookup_handle(hdev
, handle
);
1427 conn
->sent
-= count
;
1429 if (conn
->type
== ACL_LINK
) {
1430 if ((hdev
->acl_cnt
+= count
) > hdev
->acl_pkts
)
1431 hdev
->acl_cnt
= hdev
->acl_pkts
;
1433 if ((hdev
->sco_cnt
+= count
) > hdev
->sco_pkts
)
1434 hdev
->sco_cnt
= hdev
->sco_pkts
;
1441 tasklet_enable(&hdev
->tx_task
);
1444 static inline void hci_mode_change_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1446 struct hci_ev_mode_change
*ev
= (void *) skb
->data
;
1447 struct hci_conn
*conn
;
1449 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1453 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1455 conn
->mode
= ev
->mode
;
1456 conn
->interval
= __le16_to_cpu(ev
->interval
);
1458 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND
, &conn
->pend
)) {
1459 if (conn
->mode
== HCI_CM_ACTIVE
)
1460 conn
->power_save
= 1;
1462 conn
->power_save
= 0;
1466 hci_dev_unlock(hdev
);
1469 static inline void hci_pin_code_request_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1471 BT_DBG("%s", hdev
->name
);
1474 static inline void hci_link_key_request_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1476 BT_DBG("%s", hdev
->name
);
1479 static inline void hci_link_key_notify_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1481 BT_DBG("%s", hdev
->name
);
1484 static inline void hci_clock_offset_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1486 struct hci_ev_clock_offset
*ev
= (void *) skb
->data
;
1487 struct hci_conn
*conn
;
1489 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1493 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1494 if (conn
&& !ev
->status
) {
1495 struct inquiry_entry
*ie
;
1497 if ((ie
= hci_inquiry_cache_lookup(hdev
, &conn
->dst
))) {
1498 ie
->data
.clock_offset
= ev
->clock_offset
;
1499 ie
->timestamp
= jiffies
;
1503 hci_dev_unlock(hdev
);
1506 static inline void hci_pkt_type_change_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1508 struct hci_ev_pkt_type_change
*ev
= (void *) skb
->data
;
1509 struct hci_conn
*conn
;
1511 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1515 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1516 if (conn
&& !ev
->status
)
1517 conn
->pkt_type
= __le16_to_cpu(ev
->pkt_type
);
1519 hci_dev_unlock(hdev
);
1522 static inline void hci_pscan_rep_mode_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1524 struct hci_ev_pscan_rep_mode
*ev
= (void *) skb
->data
;
1525 struct inquiry_entry
*ie
;
1527 BT_DBG("%s", hdev
->name
);
1531 if ((ie
= hci_inquiry_cache_lookup(hdev
, &ev
->bdaddr
))) {
1532 ie
->data
.pscan_rep_mode
= ev
->pscan_rep_mode
;
1533 ie
->timestamp
= jiffies
;
1536 hci_dev_unlock(hdev
);
1539 static inline void hci_inquiry_result_with_rssi_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1541 struct inquiry_data data
;
1542 int num_rsp
= *((__u8
*) skb
->data
);
1544 BT_DBG("%s num_rsp %d", hdev
->name
, num_rsp
);
1551 if ((skb
->len
- 1) / num_rsp
!= sizeof(struct inquiry_info_with_rssi
)) {
1552 struct inquiry_info_with_rssi_and_pscan_mode
*info
= (void *) (skb
->data
+ 1);
1554 for (; num_rsp
; num_rsp
--) {
1555 bacpy(&data
.bdaddr
, &info
->bdaddr
);
1556 data
.pscan_rep_mode
= info
->pscan_rep_mode
;
1557 data
.pscan_period_mode
= info
->pscan_period_mode
;
1558 data
.pscan_mode
= info
->pscan_mode
;
1559 memcpy(data
.dev_class
, info
->dev_class
, 3);
1560 data
.clock_offset
= info
->clock_offset
;
1561 data
.rssi
= info
->rssi
;
1562 data
.ssp_mode
= 0x00;
1564 hci_inquiry_cache_update(hdev
, &data
);
1567 struct inquiry_info_with_rssi
*info
= (void *) (skb
->data
+ 1);
1569 for (; num_rsp
; num_rsp
--) {
1570 bacpy(&data
.bdaddr
, &info
->bdaddr
);
1571 data
.pscan_rep_mode
= info
->pscan_rep_mode
;
1572 data
.pscan_period_mode
= info
->pscan_period_mode
;
1573 data
.pscan_mode
= 0x00;
1574 memcpy(data
.dev_class
, info
->dev_class
, 3);
1575 data
.clock_offset
= info
->clock_offset
;
1576 data
.rssi
= info
->rssi
;
1577 data
.ssp_mode
= 0x00;
1579 hci_inquiry_cache_update(hdev
, &data
);
1583 hci_dev_unlock(hdev
);
1586 static inline void hci_remote_ext_features_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1588 struct hci_ev_remote_ext_features
*ev
= (void *) skb
->data
;
1589 struct hci_conn
*conn
;
1591 BT_DBG("%s", hdev
->name
);
1595 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1597 if (!ev
->status
&& ev
->page
== 0x01) {
1598 struct inquiry_entry
*ie
;
1600 if ((ie
= hci_inquiry_cache_lookup(hdev
, &conn
->dst
)))
1601 ie
->data
.ssp_mode
= (ev
->features
[0] & 0x01);
1603 conn
->ssp_mode
= (ev
->features
[0] & 0x01);
1606 if (conn
->state
== BT_CONFIG
) {
1607 if (!ev
->status
&& hdev
->ssp_mode
> 0 &&
1608 conn
->ssp_mode
> 0) {
1610 struct hci_cp_auth_requested cp
;
1611 cp
.handle
= ev
->handle
;
1613 HCI_OP_AUTH_REQUESTED
,
1617 conn
->state
= BT_CONNECTED
;
1618 hci_proto_connect_cfm(conn
, ev
->status
);
1624 hci_dev_unlock(hdev
);
1627 static inline void hci_sync_conn_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1629 struct hci_ev_sync_conn_complete
*ev
= (void *) skb
->data
;
1630 struct hci_conn
*conn
;
1632 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1636 conn
= hci_conn_hash_lookup_ba(hdev
, ev
->link_type
, &ev
->bdaddr
);
1638 if (ev
->link_type
== ESCO_LINK
)
1641 conn
= hci_conn_hash_lookup_ba(hdev
, ESCO_LINK
, &ev
->bdaddr
);
1645 conn
->type
= SCO_LINK
;
1649 conn
->handle
= __le16_to_cpu(ev
->handle
);
1650 conn
->state
= BT_CONNECTED
;
1652 hci_conn_add_sysfs(conn
);
1654 conn
->state
= BT_CLOSED
;
1656 hci_proto_connect_cfm(conn
, ev
->status
);
1661 hci_dev_unlock(hdev
);
1664 static inline void hci_sync_conn_changed_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1666 BT_DBG("%s", hdev
->name
);
1669 static inline void hci_sniff_subrate_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1671 struct hci_ev_sniff_subrate
*ev
= (void *) skb
->data
;
1672 struct hci_conn
*conn
;
1674 BT_DBG("%s status %d", hdev
->name
, ev
->status
);
1678 conn
= hci_conn_hash_lookup_handle(hdev
, __le16_to_cpu(ev
->handle
));
1682 hci_dev_unlock(hdev
);
1685 static inline void hci_extended_inquiry_result_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1687 struct inquiry_data data
;
1688 struct extended_inquiry_info
*info
= (void *) (skb
->data
+ 1);
1689 int num_rsp
= *((__u8
*) skb
->data
);
1691 BT_DBG("%s num_rsp %d", hdev
->name
, num_rsp
);
1698 for (; num_rsp
; num_rsp
--) {
1699 bacpy(&data
.bdaddr
, &info
->bdaddr
);
1700 data
.pscan_rep_mode
= info
->pscan_rep_mode
;
1701 data
.pscan_period_mode
= info
->pscan_period_mode
;
1702 data
.pscan_mode
= 0x00;
1703 memcpy(data
.dev_class
, info
->dev_class
, 3);
1704 data
.clock_offset
= info
->clock_offset
;
1705 data
.rssi
= info
->rssi
;
1706 data
.ssp_mode
= 0x01;
1708 hci_inquiry_cache_update(hdev
, &data
);
1711 hci_dev_unlock(hdev
);
1714 static inline void hci_io_capa_request_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1716 struct hci_ev_io_capa_request
*ev
= (void *) skb
->data
;
1717 struct hci_conn
*conn
;
1719 BT_DBG("%s", hdev
->name
);
1723 conn
= hci_conn_hash_lookup_ba(hdev
, ACL_LINK
, &ev
->bdaddr
);
1725 hci_conn_hold(conn
);
1727 hci_dev_unlock(hdev
);
1730 static inline void hci_simple_pair_complete_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1732 struct hci_ev_simple_pair_complete
*ev
= (void *) skb
->data
;
1733 struct hci_conn
*conn
;
1735 BT_DBG("%s", hdev
->name
);
1739 conn
= hci_conn_hash_lookup_ba(hdev
, ACL_LINK
, &ev
->bdaddr
);
1743 hci_dev_unlock(hdev
);
1746 static inline void hci_remote_host_features_evt(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1748 struct hci_ev_remote_host_features
*ev
= (void *) skb
->data
;
1749 struct inquiry_entry
*ie
;
1751 BT_DBG("%s", hdev
->name
);
1755 if ((ie
= hci_inquiry_cache_lookup(hdev
, &ev
->bdaddr
)))
1756 ie
->data
.ssp_mode
= (ev
->features
[0] & 0x01);
1758 hci_dev_unlock(hdev
);
1761 void hci_event_packet(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1763 struct hci_event_hdr
*hdr
= (void *) skb
->data
;
1764 __u8 event
= hdr
->evt
;
1766 skb_pull(skb
, HCI_EVENT_HDR_SIZE
);
1769 case HCI_EV_INQUIRY_COMPLETE
:
1770 hci_inquiry_complete_evt(hdev
, skb
);
1773 case HCI_EV_INQUIRY_RESULT
:
1774 hci_inquiry_result_evt(hdev
, skb
);
1777 case HCI_EV_CONN_COMPLETE
:
1778 hci_conn_complete_evt(hdev
, skb
);
1781 case HCI_EV_CONN_REQUEST
:
1782 hci_conn_request_evt(hdev
, skb
);
1785 case HCI_EV_DISCONN_COMPLETE
:
1786 hci_disconn_complete_evt(hdev
, skb
);
1789 case HCI_EV_AUTH_COMPLETE
:
1790 hci_auth_complete_evt(hdev
, skb
);
1793 case HCI_EV_REMOTE_NAME
:
1794 hci_remote_name_evt(hdev
, skb
);
1797 case HCI_EV_ENCRYPT_CHANGE
:
1798 hci_encrypt_change_evt(hdev
, skb
);
1801 case HCI_EV_CHANGE_LINK_KEY_COMPLETE
:
1802 hci_change_link_key_complete_evt(hdev
, skb
);
1805 case HCI_EV_REMOTE_FEATURES
:
1806 hci_remote_features_evt(hdev
, skb
);
1809 case HCI_EV_REMOTE_VERSION
:
1810 hci_remote_version_evt(hdev
, skb
);
1813 case HCI_EV_QOS_SETUP_COMPLETE
:
1814 hci_qos_setup_complete_evt(hdev
, skb
);
1817 case HCI_EV_CMD_COMPLETE
:
1818 hci_cmd_complete_evt(hdev
, skb
);
1821 case HCI_EV_CMD_STATUS
:
1822 hci_cmd_status_evt(hdev
, skb
);
1825 case HCI_EV_ROLE_CHANGE
:
1826 hci_role_change_evt(hdev
, skb
);
1829 case HCI_EV_NUM_COMP_PKTS
:
1830 hci_num_comp_pkts_evt(hdev
, skb
);
1833 case HCI_EV_MODE_CHANGE
:
1834 hci_mode_change_evt(hdev
, skb
);
1837 case HCI_EV_PIN_CODE_REQ
:
1838 hci_pin_code_request_evt(hdev
, skb
);
1841 case HCI_EV_LINK_KEY_REQ
:
1842 hci_link_key_request_evt(hdev
, skb
);
1845 case HCI_EV_LINK_KEY_NOTIFY
:
1846 hci_link_key_notify_evt(hdev
, skb
);
1849 case HCI_EV_CLOCK_OFFSET
:
1850 hci_clock_offset_evt(hdev
, skb
);
1853 case HCI_EV_PKT_TYPE_CHANGE
:
1854 hci_pkt_type_change_evt(hdev
, skb
);
1857 case HCI_EV_PSCAN_REP_MODE
:
1858 hci_pscan_rep_mode_evt(hdev
, skb
);
1861 case HCI_EV_INQUIRY_RESULT_WITH_RSSI
:
1862 hci_inquiry_result_with_rssi_evt(hdev
, skb
);
1865 case HCI_EV_REMOTE_EXT_FEATURES
:
1866 hci_remote_ext_features_evt(hdev
, skb
);
1869 case HCI_EV_SYNC_CONN_COMPLETE
:
1870 hci_sync_conn_complete_evt(hdev
, skb
);
1873 case HCI_EV_SYNC_CONN_CHANGED
:
1874 hci_sync_conn_changed_evt(hdev
, skb
);
1877 case HCI_EV_SNIFF_SUBRATE
:
1878 hci_sniff_subrate_evt(hdev
, skb
);
1881 case HCI_EV_EXTENDED_INQUIRY_RESULT
:
1882 hci_extended_inquiry_result_evt(hdev
, skb
);
1885 case HCI_EV_IO_CAPA_REQUEST
:
1886 hci_io_capa_request_evt(hdev
, skb
);
1889 case HCI_EV_SIMPLE_PAIR_COMPLETE
:
1890 hci_simple_pair_complete_evt(hdev
, skb
);
1893 case HCI_EV_REMOTE_HOST_FEATURES
:
1894 hci_remote_host_features_evt(hdev
, skb
);
1898 BT_DBG("%s event 0x%x", hdev
->name
, event
);
1903 hdev
->stat
.evt_rx
++;
1906 /* Generate internal stack event */
1907 void hci_si_event(struct hci_dev
*hdev
, int type
, int dlen
, void *data
)
1909 struct hci_event_hdr
*hdr
;
1910 struct hci_ev_stack_internal
*ev
;
1911 struct sk_buff
*skb
;
1913 skb
= bt_skb_alloc(HCI_EVENT_HDR_SIZE
+ sizeof(*ev
) + dlen
, GFP_ATOMIC
);
1917 hdr
= (void *) skb_put(skb
, HCI_EVENT_HDR_SIZE
);
1918 hdr
->evt
= HCI_EV_STACK_INTERNAL
;
1919 hdr
->plen
= sizeof(*ev
) + dlen
;
1921 ev
= (void *) skb_put(skb
, sizeof(*ev
) + dlen
);
1923 memcpy(ev
->data
, data
, dlen
);
1925 bt_cb(skb
)->incoming
= 1;
1926 __net_timestamp(skb
);
1928 bt_cb(skb
)->pkt_type
= HCI_EVENT_PKT
;
1929 skb
->dev
= (void *) hdev
;
1930 hci_send_to_sock(hdev
, skb
);