2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
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.
28 #include <net/bluetooth/hci.h>
30 /* HCI upper protocols */
31 #define HCI_PROTO_L2CAP 0
32 #define HCI_PROTO_SCO 1
34 /* HCI Core structures */
38 __u8 pscan_period_mode
;
46 struct inquiry_entry
{
47 struct inquiry_entry
*next
;
49 struct inquiry_data data
;
52 struct inquiry_cache
{
55 struct inquiry_entry
*list
;
58 struct hci_conn_hash
{
59 struct list_head list
;
67 struct list_head list
;
72 struct list_head list
;
78 struct list_head list
;
86 struct list_head list
;
92 #define NUM_REASSEMBLY 4
94 struct list_head list
;
104 __u8 dev_name
[HCI_MAX_NAME_LENGTH
];
105 __u8 eir
[HCI_MAX_EIR_LENGTH
];
126 __u16 sniff_min_interval
;
127 __u16 sniff_max_interval
;
129 unsigned int auto_accept_delay
;
131 unsigned long quirks
;
134 unsigned int acl_cnt
;
135 unsigned int sco_cnt
;
138 unsigned int acl_mtu
;
139 unsigned int sco_mtu
;
141 unsigned int acl_pkts
;
142 unsigned int sco_pkts
;
143 unsigned int le_pkts
;
145 unsigned long acl_last_tx
;
146 unsigned long sco_last_tx
;
147 unsigned long le_last_tx
;
149 struct workqueue_struct
*workqueue
;
151 struct work_struct power_on
;
152 struct work_struct power_off
;
153 struct timer_list off_timer
;
155 struct timer_list cmd_timer
;
156 struct tasklet_struct cmd_task
;
157 struct tasklet_struct rx_task
;
158 struct tasklet_struct tx_task
;
160 struct sk_buff_head rx_q
;
161 struct sk_buff_head raw_q
;
162 struct sk_buff_head cmd_q
;
164 struct sk_buff
*sent_cmd
;
165 struct sk_buff
*reassembly
[NUM_REASSEMBLY
];
167 struct mutex req_lock
;
168 wait_queue_head_t req_wait_q
;
174 struct inquiry_cache inq_cache
;
175 struct hci_conn_hash conn_hash
;
176 struct list_head blacklist
;
178 struct list_head uuids
;
180 struct list_head link_keys
;
182 struct list_head remote_oob_data
;
184 struct hci_dev_stats stat
;
186 struct sk_buff_head driver_init
;
193 struct dentry
*debugfs
;
195 struct device
*parent
;
198 struct rfkill
*rfkill
;
200 struct module
*owner
;
202 int (*open
)(struct hci_dev
*hdev
);
203 int (*close
)(struct hci_dev
*hdev
);
204 int (*flush
)(struct hci_dev
*hdev
);
205 int (*send
)(struct sk_buff
*skb
);
206 void (*destruct
)(struct hci_dev
*hdev
);
207 void (*notify
)(struct hci_dev
*hdev
, unsigned int evt
);
208 int (*ioctl
)(struct hci_dev
*hdev
, unsigned int cmd
, unsigned long arg
);
212 struct list_head list
;
234 __u8 pending_sec_level
;
247 struct sk_buff_head data_q
;
249 struct timer_list disc_timer
;
250 struct timer_list idle_timer
;
251 struct timer_list auto_accept_timer
;
253 struct work_struct work_add
;
254 struct work_struct work_del
;
259 struct hci_dev
*hdev
;
264 struct hci_conn
*link
;
266 void (*connect_cfm_cb
) (struct hci_conn
*conn
, u8 status
);
267 void (*security_cfm_cb
) (struct hci_conn
*conn
, u8 status
);
268 void (*disconn_cfm_cb
) (struct hci_conn
*conn
, u8 reason
);
271 extern struct hci_proto
*hci_proto
[];
272 extern struct list_head hci_dev_list
;
273 extern struct list_head hci_cb_list
;
274 extern rwlock_t hci_dev_list_lock
;
275 extern rwlock_t hci_cb_list_lock
;
277 /* ----- Inquiry cache ----- */
278 #define INQUIRY_CACHE_AGE_MAX (HZ*30) /* 30 seconds */
279 #define INQUIRY_ENTRY_AGE_MAX (HZ*60) /* 60 seconds */
281 #define inquiry_cache_lock(c) spin_lock(&c->lock)
282 #define inquiry_cache_unlock(c) spin_unlock(&c->lock)
283 #define inquiry_cache_lock_bh(c) spin_lock_bh(&c->lock)
284 #define inquiry_cache_unlock_bh(c) spin_unlock_bh(&c->lock)
286 static inline void inquiry_cache_init(struct hci_dev
*hdev
)
288 struct inquiry_cache
*c
= &hdev
->inq_cache
;
289 spin_lock_init(&c
->lock
);
293 static inline int inquiry_cache_empty(struct hci_dev
*hdev
)
295 struct inquiry_cache
*c
= &hdev
->inq_cache
;
296 return c
->list
== NULL
;
299 static inline long inquiry_cache_age(struct hci_dev
*hdev
)
301 struct inquiry_cache
*c
= &hdev
->inq_cache
;
302 return jiffies
- c
->timestamp
;
305 static inline long inquiry_entry_age(struct inquiry_entry
*e
)
307 return jiffies
- e
->timestamp
;
310 struct inquiry_entry
*hci_inquiry_cache_lookup(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
);
311 void hci_inquiry_cache_update(struct hci_dev
*hdev
, struct inquiry_data
*data
);
313 /* ----- HCI Connections ----- */
316 HCI_CONN_ENCRYPT_PEND
,
317 HCI_CONN_RSWITCH_PEND
,
318 HCI_CONN_MODE_CHANGE_PEND
,
319 HCI_CONN_SCO_SETUP_PEND
,
322 static inline void hci_conn_hash_init(struct hci_dev
*hdev
)
324 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
325 INIT_LIST_HEAD(&h
->list
);
326 spin_lock_init(&h
->lock
);
331 static inline void hci_conn_hash_add(struct hci_dev
*hdev
, struct hci_conn
*c
)
333 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
334 list_add(&c
->list
, &h
->list
);
349 static inline void hci_conn_hash_del(struct hci_dev
*hdev
, struct hci_conn
*c
)
351 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
367 static inline struct hci_conn
*hci_conn_hash_lookup_handle(struct hci_dev
*hdev
,
370 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
374 list_for_each(p
, &h
->list
) {
375 c
= list_entry(p
, struct hci_conn
, list
);
376 if (c
->handle
== handle
)
382 static inline struct hci_conn
*hci_conn_hash_lookup_ba(struct hci_dev
*hdev
,
383 __u8 type
, bdaddr_t
*ba
)
385 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
389 list_for_each(p
, &h
->list
) {
390 c
= list_entry(p
, struct hci_conn
, list
);
391 if (c
->type
== type
&& !bacmp(&c
->dst
, ba
))
397 static inline struct hci_conn
*hci_conn_hash_lookup_state(struct hci_dev
*hdev
,
398 __u8 type
, __u16 state
)
400 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
404 list_for_each(p
, &h
->list
) {
405 c
= list_entry(p
, struct hci_conn
, list
);
406 if (c
->type
== type
&& c
->state
== state
)
412 void hci_acl_connect(struct hci_conn
*conn
);
413 void hci_acl_disconn(struct hci_conn
*conn
, __u8 reason
);
414 void hci_add_sco(struct hci_conn
*conn
, __u16 handle
);
415 void hci_setup_sync(struct hci_conn
*conn
, __u16 handle
);
416 void hci_sco_setup(struct hci_conn
*conn
, __u8 status
);
418 struct hci_conn
*hci_conn_add(struct hci_dev
*hdev
, int type
, bdaddr_t
*dst
);
419 int hci_conn_del(struct hci_conn
*conn
);
420 void hci_conn_hash_flush(struct hci_dev
*hdev
);
421 void hci_conn_check_pending(struct hci_dev
*hdev
);
423 struct hci_conn
*hci_connect(struct hci_dev
*hdev
, int type
, bdaddr_t
*dst
, __u8 sec_level
, __u8 auth_type
);
424 int hci_conn_check_link_mode(struct hci_conn
*conn
);
425 int hci_conn_check_secure(struct hci_conn
*conn
, __u8 sec_level
);
426 int hci_conn_security(struct hci_conn
*conn
, __u8 sec_level
, __u8 auth_type
);
427 int hci_conn_change_link_key(struct hci_conn
*conn
);
428 int hci_conn_switch_role(struct hci_conn
*conn
, __u8 role
);
430 void hci_conn_enter_active_mode(struct hci_conn
*conn
);
431 void hci_conn_enter_sniff_mode(struct hci_conn
*conn
);
433 void hci_conn_hold_device(struct hci_conn
*conn
);
434 void hci_conn_put_device(struct hci_conn
*conn
);
436 static inline void hci_conn_hold(struct hci_conn
*conn
)
438 atomic_inc(&conn
->refcnt
);
439 del_timer(&conn
->disc_timer
);
442 static inline void hci_conn_put(struct hci_conn
*conn
)
444 if (atomic_dec_and_test(&conn
->refcnt
)) {
446 if (conn
->type
== ACL_LINK
) {
447 del_timer(&conn
->idle_timer
);
448 if (conn
->state
== BT_CONNECTED
) {
449 timeo
= msecs_to_jiffies(conn
->disc_timeout
);
453 timeo
= msecs_to_jiffies(10);
455 timeo
= msecs_to_jiffies(10);
456 mod_timer(&conn
->disc_timer
, jiffies
+ timeo
);
460 /* ----- HCI Devices ----- */
461 static inline void __hci_dev_put(struct hci_dev
*d
)
463 if (atomic_dec_and_test(&d
->refcnt
))
467 static inline void hci_dev_put(struct hci_dev
*d
)
470 module_put(d
->owner
);
473 static inline struct hci_dev
*__hci_dev_hold(struct hci_dev
*d
)
475 atomic_inc(&d
->refcnt
);
479 static inline struct hci_dev
*hci_dev_hold(struct hci_dev
*d
)
481 if (try_module_get(d
->owner
))
482 return __hci_dev_hold(d
);
486 #define hci_dev_lock(d) spin_lock(&d->lock)
487 #define hci_dev_unlock(d) spin_unlock(&d->lock)
488 #define hci_dev_lock_bh(d) spin_lock_bh(&d->lock)
489 #define hci_dev_unlock_bh(d) spin_unlock_bh(&d->lock)
491 struct hci_dev
*hci_dev_get(int index
);
492 struct hci_dev
*hci_get_route(bdaddr_t
*src
, bdaddr_t
*dst
);
494 struct hci_dev
*hci_alloc_dev(void);
495 void hci_free_dev(struct hci_dev
*hdev
);
496 int hci_register_dev(struct hci_dev
*hdev
);
497 int hci_unregister_dev(struct hci_dev
*hdev
);
498 int hci_suspend_dev(struct hci_dev
*hdev
);
499 int hci_resume_dev(struct hci_dev
*hdev
);
500 int hci_dev_open(__u16 dev
);
501 int hci_dev_close(__u16 dev
);
502 int hci_dev_reset(__u16 dev
);
503 int hci_dev_reset_stat(__u16 dev
);
504 int hci_dev_cmd(unsigned int cmd
, void __user
*arg
);
505 int hci_get_dev_list(void __user
*arg
);
506 int hci_get_dev_info(void __user
*arg
);
507 int hci_get_conn_list(void __user
*arg
);
508 int hci_get_conn_info(struct hci_dev
*hdev
, void __user
*arg
);
509 int hci_get_auth_info(struct hci_dev
*hdev
, void __user
*arg
);
510 int hci_inquiry(void __user
*arg
);
512 struct bdaddr_list
*hci_blacklist_lookup(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
);
513 int hci_blacklist_clear(struct hci_dev
*hdev
);
515 int hci_uuids_clear(struct hci_dev
*hdev
);
517 int hci_link_keys_clear(struct hci_dev
*hdev
);
518 struct link_key
*hci_find_link_key(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
);
519 int hci_add_link_key(struct hci_dev
*hdev
, struct hci_conn
*conn
, int new_key
,
520 bdaddr_t
*bdaddr
, u8
*val
, u8 type
, u8 pin_len
);
521 int hci_remove_link_key(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
);
523 int hci_remote_oob_data_clear(struct hci_dev
*hdev
);
524 struct oob_data
*hci_find_remote_oob_data(struct hci_dev
*hdev
,
526 int hci_add_remote_oob_data(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
, u8
*hash
,
528 int hci_remove_remote_oob_data(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
);
530 void hci_del_off_timer(struct hci_dev
*hdev
);
532 void hci_event_packet(struct hci_dev
*hdev
, struct sk_buff
*skb
);
534 int hci_recv_frame(struct sk_buff
*skb
);
535 int hci_recv_fragment(struct hci_dev
*hdev
, int type
, void *data
, int count
);
536 int hci_recv_stream_fragment(struct hci_dev
*hdev
, void *data
, int count
);
538 int hci_register_sysfs(struct hci_dev
*hdev
);
539 void hci_unregister_sysfs(struct hci_dev
*hdev
);
540 void hci_conn_init_sysfs(struct hci_conn
*conn
);
541 void hci_conn_add_sysfs(struct hci_conn
*conn
);
542 void hci_conn_del_sysfs(struct hci_conn
*conn
);
544 #define SET_HCIDEV_DEV(hdev, pdev) ((hdev)->parent = (pdev))
546 /* ----- LMP capabilities ----- */
547 #define lmp_rswitch_capable(dev) ((dev)->features[0] & LMP_RSWITCH)
548 #define lmp_encrypt_capable(dev) ((dev)->features[0] & LMP_ENCRYPT)
549 #define lmp_sniff_capable(dev) ((dev)->features[0] & LMP_SNIFF)
550 #define lmp_sniffsubr_capable(dev) ((dev)->features[5] & LMP_SNIFF_SUBR)
551 #define lmp_esco_capable(dev) ((dev)->features[3] & LMP_ESCO)
552 #define lmp_ssp_capable(dev) ((dev)->features[6] & LMP_SIMPLE_PAIR)
553 #define lmp_no_flush_capable(dev) ((dev)->features[6] & LMP_NO_FLUSH)
554 #define lmp_le_capable(dev) ((dev)->features[4] & LMP_LE)
556 /* ----- HCI protocols ----- */
564 int (*connect_ind
) (struct hci_dev
*hdev
, bdaddr_t
*bdaddr
, __u8 type
);
565 int (*connect_cfm
) (struct hci_conn
*conn
, __u8 status
);
566 int (*disconn_ind
) (struct hci_conn
*conn
);
567 int (*disconn_cfm
) (struct hci_conn
*conn
, __u8 reason
);
568 int (*recv_acldata
) (struct hci_conn
*conn
, struct sk_buff
*skb
, __u16 flags
);
569 int (*recv_scodata
) (struct hci_conn
*conn
, struct sk_buff
*skb
);
570 int (*security_cfm
) (struct hci_conn
*conn
, __u8 status
, __u8 encrypt
);
573 static inline int hci_proto_connect_ind(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
, __u8 type
)
575 register struct hci_proto
*hp
;
578 hp
= hci_proto
[HCI_PROTO_L2CAP
];
579 if (hp
&& hp
->connect_ind
)
580 mask
|= hp
->connect_ind(hdev
, bdaddr
, type
);
582 hp
= hci_proto
[HCI_PROTO_SCO
];
583 if (hp
&& hp
->connect_ind
)
584 mask
|= hp
->connect_ind(hdev
, bdaddr
, type
);
589 static inline void hci_proto_connect_cfm(struct hci_conn
*conn
, __u8 status
)
591 register struct hci_proto
*hp
;
593 hp
= hci_proto
[HCI_PROTO_L2CAP
];
594 if (hp
&& hp
->connect_cfm
)
595 hp
->connect_cfm(conn
, status
);
597 hp
= hci_proto
[HCI_PROTO_SCO
];
598 if (hp
&& hp
->connect_cfm
)
599 hp
->connect_cfm(conn
, status
);
601 if (conn
->connect_cfm_cb
)
602 conn
->connect_cfm_cb(conn
, status
);
605 static inline int hci_proto_disconn_ind(struct hci_conn
*conn
)
607 register struct hci_proto
*hp
;
610 hp
= hci_proto
[HCI_PROTO_L2CAP
];
611 if (hp
&& hp
->disconn_ind
)
612 reason
= hp
->disconn_ind(conn
);
614 hp
= hci_proto
[HCI_PROTO_SCO
];
615 if (hp
&& hp
->disconn_ind
)
616 reason
= hp
->disconn_ind(conn
);
621 static inline void hci_proto_disconn_cfm(struct hci_conn
*conn
, __u8 reason
)
623 register struct hci_proto
*hp
;
625 hp
= hci_proto
[HCI_PROTO_L2CAP
];
626 if (hp
&& hp
->disconn_cfm
)
627 hp
->disconn_cfm(conn
, reason
);
629 hp
= hci_proto
[HCI_PROTO_SCO
];
630 if (hp
&& hp
->disconn_cfm
)
631 hp
->disconn_cfm(conn
, reason
);
633 if (conn
->disconn_cfm_cb
)
634 conn
->disconn_cfm_cb(conn
, reason
);
637 static inline void hci_proto_auth_cfm(struct hci_conn
*conn
, __u8 status
)
639 register struct hci_proto
*hp
;
642 if (test_bit(HCI_CONN_ENCRYPT_PEND
, &conn
->pend
))
645 encrypt
= (conn
->link_mode
& HCI_LM_ENCRYPT
) ? 0x01 : 0x00;
647 hp
= hci_proto
[HCI_PROTO_L2CAP
];
648 if (hp
&& hp
->security_cfm
)
649 hp
->security_cfm(conn
, status
, encrypt
);
651 hp
= hci_proto
[HCI_PROTO_SCO
];
652 if (hp
&& hp
->security_cfm
)
653 hp
->security_cfm(conn
, status
, encrypt
);
655 if (conn
->security_cfm_cb
)
656 conn
->security_cfm_cb(conn
, status
);
659 static inline void hci_proto_encrypt_cfm(struct hci_conn
*conn
, __u8 status
, __u8 encrypt
)
661 register struct hci_proto
*hp
;
663 hp
= hci_proto
[HCI_PROTO_L2CAP
];
664 if (hp
&& hp
->security_cfm
)
665 hp
->security_cfm(conn
, status
, encrypt
);
667 hp
= hci_proto
[HCI_PROTO_SCO
];
668 if (hp
&& hp
->security_cfm
)
669 hp
->security_cfm(conn
, status
, encrypt
);
671 if (conn
->security_cfm_cb
)
672 conn
->security_cfm_cb(conn
, status
);
675 int hci_register_proto(struct hci_proto
*hproto
);
676 int hci_unregister_proto(struct hci_proto
*hproto
);
678 /* ----- HCI callbacks ----- */
680 struct list_head list
;
684 void (*security_cfm
) (struct hci_conn
*conn
, __u8 status
, __u8 encrypt
);
685 void (*key_change_cfm
) (struct hci_conn
*conn
, __u8 status
);
686 void (*role_switch_cfm
) (struct hci_conn
*conn
, __u8 status
, __u8 role
);
689 static inline void hci_auth_cfm(struct hci_conn
*conn
, __u8 status
)
694 hci_proto_auth_cfm(conn
, status
);
696 if (test_bit(HCI_CONN_ENCRYPT_PEND
, &conn
->pend
))
699 encrypt
= (conn
->link_mode
& HCI_LM_ENCRYPT
) ? 0x01 : 0x00;
701 read_lock_bh(&hci_cb_list_lock
);
702 list_for_each(p
, &hci_cb_list
) {
703 struct hci_cb
*cb
= list_entry(p
, struct hci_cb
, list
);
704 if (cb
->security_cfm
)
705 cb
->security_cfm(conn
, status
, encrypt
);
707 read_unlock_bh(&hci_cb_list_lock
);
710 static inline void hci_encrypt_cfm(struct hci_conn
*conn
, __u8 status
, __u8 encrypt
)
714 if (conn
->sec_level
== BT_SECURITY_SDP
)
715 conn
->sec_level
= BT_SECURITY_LOW
;
717 hci_proto_encrypt_cfm(conn
, status
, encrypt
);
719 read_lock_bh(&hci_cb_list_lock
);
720 list_for_each(p
, &hci_cb_list
) {
721 struct hci_cb
*cb
= list_entry(p
, struct hci_cb
, list
);
722 if (cb
->security_cfm
)
723 cb
->security_cfm(conn
, status
, encrypt
);
725 read_unlock_bh(&hci_cb_list_lock
);
728 static inline void hci_key_change_cfm(struct hci_conn
*conn
, __u8 status
)
732 read_lock_bh(&hci_cb_list_lock
);
733 list_for_each(p
, &hci_cb_list
) {
734 struct hci_cb
*cb
= list_entry(p
, struct hci_cb
, list
);
735 if (cb
->key_change_cfm
)
736 cb
->key_change_cfm(conn
, status
);
738 read_unlock_bh(&hci_cb_list_lock
);
741 static inline void hci_role_switch_cfm(struct hci_conn
*conn
, __u8 status
, __u8 role
)
745 read_lock_bh(&hci_cb_list_lock
);
746 list_for_each(p
, &hci_cb_list
) {
747 struct hci_cb
*cb
= list_entry(p
, struct hci_cb
, list
);
748 if (cb
->role_switch_cfm
)
749 cb
->role_switch_cfm(conn
, status
, role
);
751 read_unlock_bh(&hci_cb_list_lock
);
754 int hci_register_cb(struct hci_cb
*hcb
);
755 int hci_unregister_cb(struct hci_cb
*hcb
);
757 int hci_register_notifier(struct notifier_block
*nb
);
758 int hci_unregister_notifier(struct notifier_block
*nb
);
760 int hci_send_cmd(struct hci_dev
*hdev
, __u16 opcode
, __u32 plen
, void *param
);
761 void hci_send_acl(struct hci_conn
*conn
, struct sk_buff
*skb
, __u16 flags
);
762 void hci_send_sco(struct hci_conn
*conn
, struct sk_buff
*skb
);
764 void *hci_sent_cmd_data(struct hci_dev
*hdev
, __u16 opcode
);
766 void hci_si_event(struct hci_dev
*hdev
, int type
, int dlen
, void *data
);
768 /* ----- HCI Sockets ----- */
769 void hci_send_to_sock(struct hci_dev
*hdev
, struct sk_buff
*skb
,
770 struct sock
*skip_sk
);
772 /* Management interface */
773 int mgmt_control(struct sock
*sk
, struct msghdr
*msg
, size_t len
);
774 int mgmt_index_added(u16 index
);
775 int mgmt_index_removed(u16 index
);
776 int mgmt_powered(u16 index
, u8 powered
);
777 int mgmt_discoverable(u16 index
, u8 discoverable
);
778 int mgmt_connectable(u16 index
, u8 connectable
);
779 int mgmt_new_key(u16 index
, struct link_key
*key
, u8 persistent
);
780 int mgmt_connected(u16 index
, bdaddr_t
*bdaddr
);
781 int mgmt_disconnected(u16 index
, bdaddr_t
*bdaddr
);
782 int mgmt_disconnect_failed(u16 index
);
783 int mgmt_connect_failed(u16 index
, bdaddr_t
*bdaddr
, u8 status
);
784 int mgmt_pin_code_request(u16 index
, bdaddr_t
*bdaddr
, u8 secure
);
785 int mgmt_pin_code_reply_complete(u16 index
, bdaddr_t
*bdaddr
, u8 status
);
786 int mgmt_pin_code_neg_reply_complete(u16 index
, bdaddr_t
*bdaddr
, u8 status
);
787 int mgmt_user_confirm_request(u16 index
, bdaddr_t
*bdaddr
, __le32 value
,
789 int mgmt_user_confirm_reply_complete(u16 index
, bdaddr_t
*bdaddr
, u8 status
);
790 int mgmt_user_confirm_neg_reply_complete(u16 index
, bdaddr_t
*bdaddr
,
792 int mgmt_auth_failed(u16 index
, bdaddr_t
*bdaddr
, u8 status
);
793 int mgmt_set_local_name_complete(u16 index
, u8
*name
, u8 status
);
794 int mgmt_read_local_oob_data_reply_complete(u16 index
, u8
*hash
, u8
*randomizer
,
796 int mgmt_device_found(u16 index
, bdaddr_t
*bdaddr
, u8
*dev_class
, s8 rssi
,
798 int mgmt_remote_name(u16 index
, bdaddr_t
*bdaddr
, u8
*name
);
799 int mgmt_discovering(u16 index
, u8 discovering
);
801 /* HCI info for socket */
802 #define hci_pi(sk) ((struct hci_pinfo *) sk)
806 struct hci_dev
*hdev
;
807 struct hci_filter filter
;
809 unsigned short channel
;
812 /* HCI security filter */
813 #define HCI_SFLT_MAX_OGF 5
815 struct hci_sec_filter
{
818 __u32 ocf_mask
[HCI_SFLT_MAX_OGF
+ 1][4];
821 /* ----- HCI requests ----- */
822 #define HCI_REQ_DONE 0
823 #define HCI_REQ_PEND 1
824 #define HCI_REQ_CANCELED 2
826 #define hci_req_lock(d) mutex_lock(&d->req_lock)
827 #define hci_req_unlock(d) mutex_unlock(&d->req_lock)
829 void hci_req_complete(struct hci_dev
*hdev
, __u16 cmd
, int result
);
831 void hci_le_conn_update(struct hci_conn
*conn
, u16 min
, u16 max
,
832 u16 latency
, u16 to_multiplier
);
833 #endif /* __HCI_CORE_H */