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.
28 #include <linux/proc_fs.h>
29 #include <net/bluetooth/hci.h>
31 /* HCI upper protocols */
32 #define HCI_PROTO_L2CAP 0
33 #define HCI_PROTO_SCO 1
35 #define HCI_INIT_TIMEOUT (HZ * 10)
37 extern struct proc_dir_entry
*proc_bt_hci
;
39 /* HCI Core structures */
44 __u8 pscan_period_mode
;
51 struct inquiry_entry
{
52 struct inquiry_entry
*next
;
54 struct inquiry_data data
;
57 struct inquiry_cache
{
60 struct inquiry_entry
*list
;
63 struct hci_conn_hash
{
64 struct list_head list
;
71 struct list_head list
;
95 unsigned int acl_pkts
;
96 unsigned int sco_pkts
;
98 unsigned long cmd_last_tx
;
99 unsigned long acl_last_tx
;
100 unsigned long sco_last_tx
;
102 struct tasklet_struct cmd_task
;
103 struct tasklet_struct rx_task
;
104 struct tasklet_struct tx_task
;
106 struct sk_buff_head rx_q
;
107 struct sk_buff_head raw_q
;
108 struct sk_buff_head cmd_q
;
110 struct sk_buff
*sent_cmd
;
112 struct semaphore req_lock
;
113 wait_queue_head_t req_wait_q
;
117 struct inquiry_cache inq_cache
;
118 struct hci_conn_hash conn_hash
;
120 struct hci_dev_stats stat
;
122 struct sk_buff_head driver_init
;
129 #ifdef CONFIG_PROC_FS
130 struct proc_dir_entry
*proc
;
133 struct class_device class_dev
;
135 struct module
*owner
;
137 int (*open
)(struct hci_dev
*hdev
);
138 int (*close
)(struct hci_dev
*hdev
);
139 int (*flush
)(struct hci_dev
*hdev
);
140 int (*send
)(struct sk_buff
*skb
);
141 void (*destruct
)(struct hci_dev
*hdev
);
142 void (*notify
)(struct hci_dev
*hdev
, unsigned int evt
);
143 int (*ioctl
)(struct hci_dev
*hdev
, unsigned int cmd
, unsigned long arg
);
147 struct list_head list
;
163 struct sk_buff_head data_q
;
165 struct timer_list timer
;
167 struct hci_dev
*hdev
;
172 struct hci_conn
*link
;
175 extern struct hci_proto
*hci_proto
[];
176 extern struct list_head hci_dev_list
;
177 extern struct list_head hci_cb_list
;
178 extern rwlock_t hci_dev_list_lock
;
179 extern rwlock_t hci_cb_list_lock
;
181 /* ----- Inquiry cache ----- */
182 #define INQUIRY_CACHE_AGE_MAX (HZ*30) // 30 seconds
183 #define INQUIRY_ENTRY_AGE_MAX (HZ*60) // 60 seconds
185 #define inquiry_cache_lock(c) spin_lock(&c->lock)
186 #define inquiry_cache_unlock(c) spin_unlock(&c->lock)
187 #define inquiry_cache_lock_bh(c) spin_lock_bh(&c->lock)
188 #define inquiry_cache_unlock_bh(c) spin_unlock_bh(&c->lock)
190 static inline void inquiry_cache_init(struct hci_dev
*hdev
)
192 struct inquiry_cache
*c
= &hdev
->inq_cache
;
193 spin_lock_init(&c
->lock
);
197 static inline int inquiry_cache_empty(struct hci_dev
*hdev
)
199 struct inquiry_cache
*c
= &hdev
->inq_cache
;
200 return (c
->list
== NULL
);
203 static inline long inquiry_cache_age(struct hci_dev
*hdev
)
205 struct inquiry_cache
*c
= &hdev
->inq_cache
;
206 return jiffies
- c
->timestamp
;
209 static inline long inquiry_entry_age(struct inquiry_entry
*e
)
211 return jiffies
- e
->timestamp
;
214 struct inquiry_entry
*hci_inquiry_cache_lookup(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
);
215 void hci_inquiry_cache_update(struct hci_dev
*hdev
, struct inquiry_data
*data
);
217 /* ----- HCI Connections ----- */
220 HCI_CONN_ENCRYPT_PEND
,
221 HCI_CONN_RSWITCH_PEND
224 static inline void hci_conn_hash_init(struct hci_dev
*hdev
)
226 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
227 INIT_LIST_HEAD(&h
->list
);
228 spin_lock_init(&h
->lock
);
233 static inline void hci_conn_hash_add(struct hci_dev
*hdev
, struct hci_conn
*c
)
235 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
236 list_add(&c
->list
, &h
->list
);
237 if (c
->type
== ACL_LINK
)
243 static inline void hci_conn_hash_del(struct hci_dev
*hdev
, struct hci_conn
*c
)
245 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
247 if (c
->type
== ACL_LINK
)
253 static inline struct hci_conn
*hci_conn_hash_lookup_handle(struct hci_dev
*hdev
,
256 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
260 list_for_each(p
, &h
->list
) {
261 c
= list_entry(p
, struct hci_conn
, list
);
262 if (c
->handle
== handle
)
268 static inline struct hci_conn
*hci_conn_hash_lookup_ba(struct hci_dev
*hdev
,
269 __u8 type
, bdaddr_t
*ba
)
271 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
275 list_for_each(p
, &h
->list
) {
276 c
= list_entry(p
, struct hci_conn
, list
);
277 if (c
->type
== type
&& !bacmp(&c
->dst
, ba
))
283 void hci_acl_disconn(struct hci_conn
*conn
, __u8 reason
);
284 void hci_add_sco(struct hci_conn
*conn
, __u16 handle
);
286 struct hci_conn
*hci_conn_add(struct hci_dev
*hdev
, int type
, bdaddr_t
*dst
);
287 int hci_conn_del(struct hci_conn
*conn
);
288 void hci_conn_hash_flush(struct hci_dev
*hdev
);
290 struct hci_conn
*hci_connect(struct hci_dev
*hdev
, int type
, bdaddr_t
*src
);
291 int hci_conn_auth(struct hci_conn
*conn
);
292 int hci_conn_encrypt(struct hci_conn
*conn
);
293 int hci_conn_change_link_key(struct hci_conn
*conn
);
294 int hci_conn_switch_role(struct hci_conn
*conn
, uint8_t role
);
296 static inline void hci_conn_set_timer(struct hci_conn
*conn
, unsigned long timeout
)
298 mod_timer(&conn
->timer
, jiffies
+ timeout
);
301 static inline void hci_conn_del_timer(struct hci_conn
*conn
)
303 del_timer(&conn
->timer
);
306 static inline void hci_conn_hold(struct hci_conn
*conn
)
308 atomic_inc(&conn
->refcnt
);
309 hci_conn_del_timer(conn
);
312 static inline void hci_conn_put(struct hci_conn
*conn
)
314 if (atomic_dec_and_test(&conn
->refcnt
)) {
315 if (conn
->type
== ACL_LINK
) {
316 unsigned long timeo
= (conn
->out
) ?
317 HCI_DISCONN_TIMEOUT
: HCI_DISCONN_TIMEOUT
* 2;
318 hci_conn_set_timer(conn
, timeo
);
320 hci_conn_set_timer(conn
, HZ
/ 100);
324 /* ----- HCI tasks ----- */
325 static inline void hci_sched_cmd(struct hci_dev
*hdev
)
327 tasklet_schedule(&hdev
->cmd_task
);
330 static inline void hci_sched_rx(struct hci_dev
*hdev
)
332 tasklet_schedule(&hdev
->rx_task
);
335 static inline void hci_sched_tx(struct hci_dev
*hdev
)
337 tasklet_schedule(&hdev
->tx_task
);
340 /* ----- HCI Devices ----- */
341 static inline void __hci_dev_put(struct hci_dev
*d
)
343 if (atomic_dec_and_test(&d
->refcnt
))
347 static inline void hci_dev_put(struct hci_dev
*d
)
350 module_put(d
->owner
);
353 static inline struct hci_dev
*__hci_dev_hold(struct hci_dev
*d
)
355 atomic_inc(&d
->refcnt
);
359 static inline struct hci_dev
*hci_dev_hold(struct hci_dev
*d
)
361 if (try_module_get(d
->owner
))
362 return __hci_dev_hold(d
);
366 #define hci_dev_lock(d) spin_lock(&d->lock)
367 #define hci_dev_unlock(d) spin_unlock(&d->lock)
368 #define hci_dev_lock_bh(d) spin_lock_bh(&d->lock)
369 #define hci_dev_unlock_bh(d) spin_unlock_bh(&d->lock)
371 struct hci_dev
*hci_dev_get(int index
);
372 struct hci_dev
*hci_get_route(bdaddr_t
*src
, bdaddr_t
*dst
);
374 struct hci_dev
*hci_alloc_dev(void);
375 void hci_free_dev(struct hci_dev
*hdev
);
376 int hci_register_dev(struct hci_dev
*hdev
);
377 int hci_unregister_dev(struct hci_dev
*hdev
);
378 int hci_suspend_dev(struct hci_dev
*hdev
);
379 int hci_resume_dev(struct hci_dev
*hdev
);
380 int hci_dev_open(__u16 dev
);
381 int hci_dev_close(__u16 dev
);
382 int hci_dev_reset(__u16 dev
);
383 int hci_dev_reset_stat(__u16 dev
);
384 int hci_dev_cmd(unsigned int cmd
, void __user
*arg
);
385 int hci_get_dev_list(void __user
*arg
);
386 int hci_get_dev_info(void __user
*arg
);
387 int hci_get_conn_list(void __user
*arg
);
388 int hci_get_conn_info(struct hci_dev
*hdev
, void __user
*arg
);
389 int hci_inquiry(void __user
*arg
);
391 void hci_event_packet(struct hci_dev
*hdev
, struct sk_buff
*skb
);
393 /* Receive frame from HCI drivers */
394 static inline int hci_recv_frame(struct sk_buff
*skb
)
396 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
397 if (!hdev
|| (!test_bit(HCI_UP
, &hdev
->flags
)
398 && !test_bit(HCI_INIT
, &hdev
->flags
))) {
404 bt_cb(skb
)->incoming
= 1;
407 do_gettimeofday(&skb
->stamp
);
409 /* Queue frame for rx task */
410 skb_queue_tail(&hdev
->rx_q
, skb
);
415 int hci_register_sysfs(struct hci_dev
*hdev
);
416 void hci_unregister_sysfs(struct hci_dev
*hdev
);
418 #define SET_HCIDEV_DEV(hdev, pdev) ((hdev)->class_dev.dev = (pdev))
420 /* ----- LMP capabilities ----- */
421 #define lmp_rswitch_capable(dev) (dev->features[0] & LMP_RSWITCH)
422 #define lmp_encrypt_capable(dev) (dev->features[0] & LMP_ENCRYPT)
424 /* ----- HCI protocols ----- */
432 int (*connect_ind
) (struct hci_dev
*hdev
, bdaddr_t
*bdaddr
, __u8 type
);
433 int (*connect_cfm
) (struct hci_conn
*conn
, __u8 status
);
434 int (*disconn_ind
) (struct hci_conn
*conn
, __u8 reason
);
435 int (*recv_acldata
) (struct hci_conn
*conn
, struct sk_buff
*skb
, __u16 flags
);
436 int (*recv_scodata
) (struct hci_conn
*conn
, struct sk_buff
*skb
);
437 int (*auth_cfm
) (struct hci_conn
*conn
, __u8 status
);
438 int (*encrypt_cfm
) (struct hci_conn
*conn
, __u8 status
);
441 static inline int hci_proto_connect_ind(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
, __u8 type
)
443 register struct hci_proto
*hp
;
446 hp
= hci_proto
[HCI_PROTO_L2CAP
];
447 if (hp
&& hp
->connect_ind
)
448 mask
|= hp
->connect_ind(hdev
, bdaddr
, type
);
450 hp
= hci_proto
[HCI_PROTO_SCO
];
451 if (hp
&& hp
->connect_ind
)
452 mask
|= hp
->connect_ind(hdev
, bdaddr
, type
);
457 static inline void hci_proto_connect_cfm(struct hci_conn
*conn
, __u8 status
)
459 register struct hci_proto
*hp
;
461 hp
= hci_proto
[HCI_PROTO_L2CAP
];
462 if (hp
&& hp
->connect_cfm
)
463 hp
->connect_cfm(conn
, status
);
465 hp
= hci_proto
[HCI_PROTO_SCO
];
466 if (hp
&& hp
->connect_cfm
)
467 hp
->connect_cfm(conn
, status
);
470 static inline void hci_proto_disconn_ind(struct hci_conn
*conn
, __u8 reason
)
472 register struct hci_proto
*hp
;
474 hp
= hci_proto
[HCI_PROTO_L2CAP
];
475 if (hp
&& hp
->disconn_ind
)
476 hp
->disconn_ind(conn
, reason
);
478 hp
= hci_proto
[HCI_PROTO_SCO
];
479 if (hp
&& hp
->disconn_ind
)
480 hp
->disconn_ind(conn
, reason
);
483 static inline void hci_proto_auth_cfm(struct hci_conn
*conn
, __u8 status
)
485 register struct hci_proto
*hp
;
487 hp
= hci_proto
[HCI_PROTO_L2CAP
];
488 if (hp
&& hp
->auth_cfm
)
489 hp
->auth_cfm(conn
, status
);
491 hp
= hci_proto
[HCI_PROTO_SCO
];
492 if (hp
&& hp
->auth_cfm
)
493 hp
->auth_cfm(conn
, status
);
496 static inline void hci_proto_encrypt_cfm(struct hci_conn
*conn
, __u8 status
)
498 register struct hci_proto
*hp
;
500 hp
= hci_proto
[HCI_PROTO_L2CAP
];
501 if (hp
&& hp
->encrypt_cfm
)
502 hp
->encrypt_cfm(conn
, status
);
504 hp
= hci_proto
[HCI_PROTO_SCO
];
505 if (hp
&& hp
->encrypt_cfm
)
506 hp
->encrypt_cfm(conn
, status
);
509 int hci_register_proto(struct hci_proto
*hproto
);
510 int hci_unregister_proto(struct hci_proto
*hproto
);
512 /* ----- HCI callbacks ----- */
514 struct list_head list
;
518 void (*auth_cfm
) (struct hci_conn
*conn
, __u8 status
);
519 void (*encrypt_cfm
) (struct hci_conn
*conn
, __u8 status
, __u8 encrypt
);
520 void (*key_change_cfm
) (struct hci_conn
*conn
, __u8 status
);
521 void (*role_switch_cfm
) (struct hci_conn
*conn
, __u8 status
, __u8 role
);
524 static inline void hci_auth_cfm(struct hci_conn
*conn
, __u8 status
)
528 hci_proto_auth_cfm(conn
, status
);
530 read_lock_bh(&hci_cb_list_lock
);
531 list_for_each(p
, &hci_cb_list
) {
532 struct hci_cb
*cb
= list_entry(p
, struct hci_cb
, list
);
534 cb
->auth_cfm(conn
, status
);
536 read_unlock_bh(&hci_cb_list_lock
);
539 static inline void hci_encrypt_cfm(struct hci_conn
*conn
, __u8 status
, __u8 encrypt
)
543 hci_proto_encrypt_cfm(conn
, status
);
545 read_lock_bh(&hci_cb_list_lock
);
546 list_for_each(p
, &hci_cb_list
) {
547 struct hci_cb
*cb
= list_entry(p
, struct hci_cb
, list
);
549 cb
->encrypt_cfm(conn
, status
, encrypt
);
551 read_unlock_bh(&hci_cb_list_lock
);
554 static inline void hci_key_change_cfm(struct hci_conn
*conn
, __u8 status
)
558 read_lock_bh(&hci_cb_list_lock
);
559 list_for_each(p
, &hci_cb_list
) {
560 struct hci_cb
*cb
= list_entry(p
, struct hci_cb
, list
);
561 if (cb
->key_change_cfm
)
562 cb
->key_change_cfm(conn
, status
);
564 read_unlock_bh(&hci_cb_list_lock
);
567 static inline void hci_role_switch_cfm(struct hci_conn
*conn
, __u8 status
, __u8 role
)
571 read_lock_bh(&hci_cb_list_lock
);
572 list_for_each(p
, &hci_cb_list
) {
573 struct hci_cb
*cb
= list_entry(p
, struct hci_cb
, list
);
574 if (cb
->role_switch_cfm
)
575 cb
->role_switch_cfm(conn
, status
, role
);
577 read_unlock_bh(&hci_cb_list_lock
);
580 int hci_register_cb(struct hci_cb
*hcb
);
581 int hci_unregister_cb(struct hci_cb
*hcb
);
583 int hci_register_notifier(struct notifier_block
*nb
);
584 int hci_unregister_notifier(struct notifier_block
*nb
);
586 int hci_send_cmd(struct hci_dev
*hdev
, __u16 ogf
, __u16 ocf
, __u32 plen
, void *param
);
587 int hci_send_acl(struct hci_conn
*conn
, struct sk_buff
*skb
, __u16 flags
);
588 int hci_send_sco(struct hci_conn
*conn
, struct sk_buff
*skb
);
590 void *hci_sent_cmd_data(struct hci_dev
*hdev
, __u16 ogf
, __u16 ocf
);
592 void hci_si_event(struct hci_dev
*hdev
, int type
, int dlen
, void *data
);
594 /* ----- HCI Sockets ----- */
595 void hci_send_to_sock(struct hci_dev
*hdev
, struct sk_buff
*skb
);
597 /* HCI info for socket */
598 #define hci_pi(sk) ((struct hci_pinfo *) sk)
602 struct hci_dev
*hdev
;
603 struct hci_filter filter
;
607 /* HCI security filter */
608 #define HCI_SFLT_MAX_OGF 5
610 struct hci_sec_filter
{
613 __u32 ocf_mask
[HCI_SFLT_MAX_OGF
+ 1][4];
616 /* ----- HCI requests ----- */
617 #define HCI_REQ_DONE 0
618 #define HCI_REQ_PEND 1
619 #define HCI_REQ_CANCELED 2
621 #define hci_req_lock(d) down(&d->req_lock)
622 #define hci_req_unlock(d) up(&d->req_lock)
624 void hci_req_complete(struct hci_dev
*hdev
, int result
);
626 #endif /* __HCI_CORE_H */