blob: 1992fac7e92121f779b0b5703a8c9b9e17aca690 [file] [log] [blame]
Ron Shaffer04fafe42010-05-28 11:53:45 -04001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 BlueZ - Bluetooth protocol stack for Linux
Ron Shaffer2d0a0342010-05-28 11:53:46 -04003 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
10
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
Ron Shaffer04fafe42010-05-28 11:53:45 -040015 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
Ron Shaffer04fafe42010-05-28 11:53:45 -040020 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 SOFTWARE IS DISCLAIMED.
23*/
24
25#ifndef __HCI_CORE_H
26#define __HCI_CORE_H
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/bluetooth/hci.h>
29
30/* HCI upper protocols */
31#define HCI_PROTO_L2CAP 0
32#define HCI_PROTO_SCO 1
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/* HCI Core structures */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035struct inquiry_data {
36 bdaddr_t bdaddr;
37 __u8 pscan_rep_mode;
38 __u8 pscan_period_mode;
39 __u8 pscan_mode;
40 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -080041 __le16 clock_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 __s8 rssi;
Marcel Holtmann41a96212008-07-14 20:13:48 +020043 __u8 ssp_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46struct inquiry_entry {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020047 struct inquiry_entry *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 __u32 timestamp;
49 struct inquiry_data data;
50};
51
52struct inquiry_cache {
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020053 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 __u32 timestamp;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020055 struct inquiry_entry *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
58struct hci_conn_hash {
59 struct list_head list;
60 spinlock_t lock;
61 unsigned int acl_num;
62 unsigned int sco_num;
63};
64
Johan Hedbergf0358562010-05-18 13:20:32 +020065struct bdaddr_list {
66 struct list_head list;
67 bdaddr_t bdaddr;
68};
Suraj Sumangalacd4c5392010-07-14 13:02:16 +053069#define NUM_REASSEMBLY 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070070struct hci_dev {
71 struct list_head list;
72 spinlock_t lock;
73 atomic_t refcnt;
74
75 char name[8];
76 unsigned long flags;
77 __u16 id;
Marcel Holtmannc13854c2010-02-08 15:27:07 +010078 __u8 bus;
Marcel Holtmann943da252010-02-13 02:28:41 +010079 __u8 dev_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 bdaddr_t bdaddr;
Marcel Holtmanna9de9242007-10-20 13:33:56 +020081 __u8 dev_name[248];
82 __u8 dev_class[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 __u8 features[8];
Marcel Holtmanna9de9242007-10-20 13:33:56 +020084 __u8 commands[64];
Marcel Holtmann333140b2008-07-14 20:13:48 +020085 __u8 ssp_mode;
Marcel Holtmann1143e5a2006-09-23 09:57:20 +020086 __u8 hci_ver;
87 __u16 hci_rev;
88 __u16 manufacturer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 __u16 voice_setting;
90
91 __u16 pkt_type;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +020092 __u16 esco_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 __u16 link_policy;
94 __u16 link_mode;
95
Marcel Holtmann04837f62006-07-03 10:02:33 +020096 __u32 idle_timeout;
97 __u16 sniff_min_interval;
98 __u16 sniff_max_interval;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 unsigned long quirks;
101
102 atomic_t cmd_cnt;
103 unsigned int acl_cnt;
104 unsigned int sco_cnt;
105
106 unsigned int acl_mtu;
107 unsigned int sco_mtu;
108 unsigned int acl_pkts;
109 unsigned int sco_pkts;
110
111 unsigned long cmd_last_tx;
112 unsigned long acl_last_tx;
113 unsigned long sco_last_tx;
114
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100115 struct workqueue_struct *workqueue;
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 struct tasklet_struct cmd_task;
118 struct tasklet_struct rx_task;
119 struct tasklet_struct tx_task;
120
121 struct sk_buff_head rx_q;
122 struct sk_buff_head raw_q;
123 struct sk_buff_head cmd_q;
124
125 struct sk_buff *sent_cmd;
Suraj Sumangalacd4c5392010-07-14 13:02:16 +0530126 struct sk_buff *reassembly[NUM_REASSEMBLY];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Thomas Gleixnera6a67ef2009-07-26 08:18:19 +0000128 struct mutex req_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 wait_queue_head_t req_wait_q;
130 __u32 req_status;
131 __u32 req_result;
132
133 struct inquiry_cache inq_cache;
134 struct hci_conn_hash conn_hash;
David Millerea4bd8b2010-07-30 21:54:49 -0700135 struct list_head blacklist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 struct hci_dev_stats stat;
138
139 struct sk_buff_head driver_init;
140
141 void *driver_data;
142 void *core_data;
143
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200144 atomic_t promisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Marcel Holtmannca325f62010-02-08 16:22:31 +0100146 struct dentry *debugfs;
147
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200148 struct device *parent;
149 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Marcel Holtmann611b30f2009-06-08 14:41:38 +0200151 struct rfkill *rfkill;
152
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200153 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 int (*open)(struct hci_dev *hdev);
156 int (*close)(struct hci_dev *hdev);
157 int (*flush)(struct hci_dev *hdev);
158 int (*send)(struct sk_buff *skb);
159 void (*destruct)(struct hci_dev *hdev);
160 void (*notify)(struct hci_dev *hdev, unsigned int evt);
161 int (*ioctl)(struct hci_dev *hdev, unsigned int cmd, unsigned long arg);
162};
163
164struct hci_conn {
165 struct list_head list;
166
167 atomic_t refcnt;
168 spinlock_t lock;
169
170 bdaddr_t dst;
171 __u16 handle;
172 __u16 state;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200173 __u8 mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 __u8 type;
175 __u8 out;
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200176 __u8 attempt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 __u8 dev_class[3];
Marcel Holtmann04837f62006-07-03 10:02:33 +0200178 __u8 features[8];
Marcel Holtmann41a96212008-07-14 20:13:48 +0200179 __u8 ssp_mode;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200180 __u16 interval;
Marcel Holtmanna8746412008-07-14 20:13:46 +0200181 __u16 pkt_type;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200182 __u16 link_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 __u32 link_mode;
Marcel Holtmann40be4922008-07-14 20:13:50 +0200184 __u8 auth_type;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100185 __u8 sec_level;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200186 __u8 power_save;
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200187 __u16 disc_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 unsigned long pend;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 unsigned int sent;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct sk_buff_head data_q;
193
Marcel Holtmann04837f62006-07-03 10:02:33 +0200194 struct timer_list disc_timer;
195 struct timer_list idle_timer;
196
Roger Quadrosf3784d82009-04-23 14:50:54 +0300197 struct work_struct work_add;
198 struct work_struct work_del;
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200199
200 struct device dev;
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700201 atomic_t devref;
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 struct hci_dev *hdev;
204 void *l2cap_data;
205 void *sco_data;
206 void *priv;
207
208 struct hci_conn *link;
209};
210
211extern struct hci_proto *hci_proto[];
212extern struct list_head hci_dev_list;
213extern struct list_head hci_cb_list;
214extern rwlock_t hci_dev_list_lock;
215extern rwlock_t hci_cb_list_lock;
216
217/* ----- Inquiry cache ----- */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200218#define INQUIRY_CACHE_AGE_MAX (HZ*30) /* 30 seconds */
219#define INQUIRY_ENTRY_AGE_MAX (HZ*60) /* 60 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221#define inquiry_cache_lock(c) spin_lock(&c->lock)
222#define inquiry_cache_unlock(c) spin_unlock(&c->lock)
223#define inquiry_cache_lock_bh(c) spin_lock_bh(&c->lock)
224#define inquiry_cache_unlock_bh(c) spin_unlock_bh(&c->lock)
225
226static inline void inquiry_cache_init(struct hci_dev *hdev)
227{
228 struct inquiry_cache *c = &hdev->inq_cache;
229 spin_lock_init(&c->lock);
230 c->list = NULL;
231}
232
233static inline int inquiry_cache_empty(struct hci_dev *hdev)
234{
235 struct inquiry_cache *c = &hdev->inq_cache;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000236 return c->list == NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239static inline long inquiry_cache_age(struct hci_dev *hdev)
240{
241 struct inquiry_cache *c = &hdev->inq_cache;
242 return jiffies - c->timestamp;
243}
244
245static inline long inquiry_entry_age(struct inquiry_entry *e)
246{
247 return jiffies - e->timestamp;
248}
249
250struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr);
251void hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data);
252
253/* ----- HCI Connections ----- */
254enum {
255 HCI_CONN_AUTH_PEND,
256 HCI_CONN_ENCRYPT_PEND,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200257 HCI_CONN_RSWITCH_PEND,
258 HCI_CONN_MODE_CHANGE_PEND,
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400259 HCI_CONN_SCO_SETUP_PEND,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};
261
262static inline void hci_conn_hash_init(struct hci_dev *hdev)
263{
264 struct hci_conn_hash *h = &hdev->conn_hash;
265 INIT_LIST_HEAD(&h->list);
266 spin_lock_init(&h->lock);
267 h->acl_num = 0;
268 h->sco_num = 0;
269}
270
271static inline void hci_conn_hash_add(struct hci_dev *hdev, struct hci_conn *c)
272{
273 struct hci_conn_hash *h = &hdev->conn_hash;
274 list_add(&c->list, &h->list);
275 if (c->type == ACL_LINK)
276 h->acl_num++;
277 else
278 h->sco_num++;
279}
280
281static inline void hci_conn_hash_del(struct hci_dev *hdev, struct hci_conn *c)
282{
283 struct hci_conn_hash *h = &hdev->conn_hash;
284 list_del(&c->list);
285 if (c->type == ACL_LINK)
286 h->acl_num--;
287 else
288 h->sco_num--;
289}
290
291static inline struct hci_conn *hci_conn_hash_lookup_handle(struct hci_dev *hdev,
292 __u16 handle)
293{
294 struct hci_conn_hash *h = &hdev->conn_hash;
295 struct list_head *p;
296 struct hci_conn *c;
297
298 list_for_each(p, &h->list) {
299 c = list_entry(p, struct hci_conn, list);
300 if (c->handle == handle)
301 return c;
302 }
303 return NULL;
304}
305
306static inline struct hci_conn *hci_conn_hash_lookup_ba(struct hci_dev *hdev,
307 __u8 type, bdaddr_t *ba)
308{
309 struct hci_conn_hash *h = &hdev->conn_hash;
310 struct list_head *p;
311 struct hci_conn *c;
312
313 list_for_each(p, &h->list) {
314 c = list_entry(p, struct hci_conn, list);
315 if (c->type == type && !bacmp(&c->dst, ba))
316 return c;
317 }
318 return NULL;
319}
320
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200321static inline struct hci_conn *hci_conn_hash_lookup_state(struct hci_dev *hdev,
322 __u8 type, __u16 state)
323{
324 struct hci_conn_hash *h = &hdev->conn_hash;
325 struct list_head *p;
326 struct hci_conn *c;
327
328 list_for_each(p, &h->list) {
329 c = list_entry(p, struct hci_conn, list);
330 if (c->type == type && c->state == state)
331 return c;
332 }
333 return NULL;
334}
335
336void hci_acl_connect(struct hci_conn *conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337void hci_acl_disconn(struct hci_conn *conn, __u8 reason);
338void hci_add_sco(struct hci_conn *conn, __u16 handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200339void hci_setup_sync(struct hci_conn *conn, __u16 handle);
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400340void hci_sco_setup(struct hci_conn *conn, __u8 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200343int hci_conn_del(struct hci_conn *conn);
344void hci_conn_hash_flush(struct hci_dev *hdev);
345void hci_conn_check_pending(struct hci_dev *hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100347struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst, __u8 sec_level, __u8 auth_type);
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200348int hci_conn_check_link_mode(struct hci_conn *conn);
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100349int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350int hci_conn_change_link_key(struct hci_conn *conn);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100351int hci_conn_switch_role(struct hci_conn *conn, __u8 role);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Marcel Holtmann04837f62006-07-03 10:02:33 +0200353void hci_conn_enter_active_mode(struct hci_conn *conn);
354void hci_conn_enter_sniff_mode(struct hci_conn *conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700356void hci_conn_hold_device(struct hci_conn *conn);
357void hci_conn_put_device(struct hci_conn *conn);
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359static inline void hci_conn_hold(struct hci_conn *conn)
360{
361 atomic_inc(&conn->refcnt);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200362 del_timer(&conn->disc_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
365static inline void hci_conn_put(struct hci_conn *conn)
366{
367 if (atomic_dec_and_test(&conn->refcnt)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200368 unsigned long timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (conn->type == ACL_LINK) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200370 del_timer(&conn->idle_timer);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200371 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200372 timeo = msecs_to_jiffies(conn->disc_timeout);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200373 if (!conn->out)
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200374 timeo *= 2;
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200375 } else
376 timeo = msecs_to_jiffies(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 } else
Marcel Holtmann04837f62006-07-03 10:02:33 +0200378 timeo = msecs_to_jiffies(10);
379 mod_timer(&conn->disc_timer, jiffies + timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/* ----- HCI Devices ----- */
384static inline void __hci_dev_put(struct hci_dev *d)
385{
386 if (atomic_dec_and_test(&d->refcnt))
387 d->destruct(d);
388}
389
390static inline void hci_dev_put(struct hci_dev *d)
Ron Shaffer04fafe42010-05-28 11:53:45 -0400391{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 __hci_dev_put(d);
393 module_put(d->owner);
394}
395
396static inline struct hci_dev *__hci_dev_hold(struct hci_dev *d)
397{
398 atomic_inc(&d->refcnt);
399 return d;
400}
401
402static inline struct hci_dev *hci_dev_hold(struct hci_dev *d)
403{
404 if (try_module_get(d->owner))
405 return __hci_dev_hold(d);
406 return NULL;
407}
408
409#define hci_dev_lock(d) spin_lock(&d->lock)
410#define hci_dev_unlock(d) spin_unlock(&d->lock)
411#define hci_dev_lock_bh(d) spin_lock_bh(&d->lock)
412#define hci_dev_unlock_bh(d) spin_unlock_bh(&d->lock)
413
414struct hci_dev *hci_dev_get(int index);
415struct hci_dev *hci_get_route(bdaddr_t *src, bdaddr_t *dst);
416
417struct hci_dev *hci_alloc_dev(void);
418void hci_free_dev(struct hci_dev *hdev);
419int hci_register_dev(struct hci_dev *hdev);
420int hci_unregister_dev(struct hci_dev *hdev);
421int hci_suspend_dev(struct hci_dev *hdev);
422int hci_resume_dev(struct hci_dev *hdev);
423int hci_dev_open(__u16 dev);
424int hci_dev_close(__u16 dev);
425int hci_dev_reset(__u16 dev);
426int hci_dev_reset_stat(__u16 dev);
427int hci_dev_cmd(unsigned int cmd, void __user *arg);
428int hci_get_dev_list(void __user *arg);
429int hci_get_dev_info(void __user *arg);
430int hci_get_conn_list(void __user *arg);
431int hci_get_conn_info(struct hci_dev *hdev, void __user *arg);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200432int hci_get_auth_info(struct hci_dev *hdev, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433int hci_inquiry(void __user *arg);
434
Johan Hedbergf0358562010-05-18 13:20:32 +0200435struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr);
436int hci_blacklist_clear(struct hci_dev *hdev);
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb);
439
Marcel Holtmann76bca882009-11-18 00:40:39 +0100440int hci_recv_frame(struct sk_buff *skb);
Marcel Holtmannef222012007-07-11 06:42:04 +0200441int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count);
Suraj Sumangala99811512010-07-14 13:02:19 +0530442int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count);
Marcel Holtmannef222012007-07-11 06:42:04 +0200443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444int hci_register_sysfs(struct hci_dev *hdev);
445void hci_unregister_sysfs(struct hci_dev *hdev);
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700446void hci_conn_init_sysfs(struct hci_conn *conn);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200447void hci_conn_add_sysfs(struct hci_conn *conn);
448void hci_conn_del_sysfs(struct hci_conn *conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200450#define SET_HCIDEV_DEV(hdev, pdev) ((hdev)->parent = (pdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452/* ----- LMP capabilities ----- */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200453#define lmp_rswitch_capable(dev) ((dev)->features[0] & LMP_RSWITCH)
454#define lmp_encrypt_capable(dev) ((dev)->features[0] & LMP_ENCRYPT)
455#define lmp_sniff_capable(dev) ((dev)->features[0] & LMP_SNIFF)
456#define lmp_sniffsubr_capable(dev) ((dev)->features[5] & LMP_SNIFF_SUBR)
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200457#define lmp_esco_capable(dev) ((dev)->features[3] & LMP_ESCO)
Marcel Holtmann769be972008-07-14 20:13:49 +0200458#define lmp_ssp_capable(dev) ((dev)->features[6] & LMP_SIMPLE_PAIR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460/* ----- HCI protocols ----- */
461struct hci_proto {
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100462 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 unsigned int id;
464 unsigned long flags;
465
466 void *priv;
467
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100468 int (*connect_ind) (struct hci_dev *hdev, bdaddr_t *bdaddr, __u8 type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 int (*connect_cfm) (struct hci_conn *conn, __u8 status);
Marcel Holtmann2950f212009-02-12 14:02:50 +0100470 int (*disconn_ind) (struct hci_conn *conn);
471 int (*disconn_cfm) (struct hci_conn *conn, __u8 reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int (*recv_acldata) (struct hci_conn *conn, struct sk_buff *skb, __u16 flags);
473 int (*recv_scodata) (struct hci_conn *conn, struct sk_buff *skb);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100474 int (*security_cfm) (struct hci_conn *conn, __u8 status, __u8 encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475};
476
477static inline int hci_proto_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr, __u8 type)
478{
479 register struct hci_proto *hp;
480 int mask = 0;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 hp = hci_proto[HCI_PROTO_L2CAP];
483 if (hp && hp->connect_ind)
484 mask |= hp->connect_ind(hdev, bdaddr, type);
485
486 hp = hci_proto[HCI_PROTO_SCO];
487 if (hp && hp->connect_ind)
488 mask |= hp->connect_ind(hdev, bdaddr, type);
489
490 return mask;
491}
492
493static inline void hci_proto_connect_cfm(struct hci_conn *conn, __u8 status)
494{
495 register struct hci_proto *hp;
496
497 hp = hci_proto[HCI_PROTO_L2CAP];
498 if (hp && hp->connect_cfm)
499 hp->connect_cfm(conn, status);
500
501 hp = hci_proto[HCI_PROTO_SCO];
502 if (hp && hp->connect_cfm)
503 hp->connect_cfm(conn, status);
504}
505
Marcel Holtmann2950f212009-02-12 14:02:50 +0100506static inline int hci_proto_disconn_ind(struct hci_conn *conn)
507{
508 register struct hci_proto *hp;
509 int reason = 0x13;
510
511 hp = hci_proto[HCI_PROTO_L2CAP];
512 if (hp && hp->disconn_ind)
513 reason = hp->disconn_ind(conn);
514
515 hp = hci_proto[HCI_PROTO_SCO];
516 if (hp && hp->disconn_ind)
517 reason = hp->disconn_ind(conn);
518
519 return reason;
520}
521
522static inline void hci_proto_disconn_cfm(struct hci_conn *conn, __u8 reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 register struct hci_proto *hp;
525
526 hp = hci_proto[HCI_PROTO_L2CAP];
Marcel Holtmann2950f212009-02-12 14:02:50 +0100527 if (hp && hp->disconn_cfm)
528 hp->disconn_cfm(conn, reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 hp = hci_proto[HCI_PROTO_SCO];
Marcel Holtmann2950f212009-02-12 14:02:50 +0100531 if (hp && hp->disconn_cfm)
532 hp->disconn_cfm(conn, reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535static inline void hci_proto_auth_cfm(struct hci_conn *conn, __u8 status)
536{
537 register struct hci_proto *hp;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100538 __u8 encrypt;
539
540 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend))
541 return;
542
543 encrypt = (conn->link_mode & HCI_LM_ENCRYPT) ? 0x01 : 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 hp = hci_proto[HCI_PROTO_L2CAP];
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100546 if (hp && hp->security_cfm)
547 hp->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 hp = hci_proto[HCI_PROTO_SCO];
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100550 if (hp && hp->security_cfm)
551 hp->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Marcel Holtmann9719f8a2008-07-14 20:13:45 +0200554static inline void hci_proto_encrypt_cfm(struct hci_conn *conn, __u8 status, __u8 encrypt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 register struct hci_proto *hp;
557
558 hp = hci_proto[HCI_PROTO_L2CAP];
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100559 if (hp && hp->security_cfm)
560 hp->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 hp = hci_proto[HCI_PROTO_SCO];
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100563 if (hp && hp->security_cfm)
564 hp->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
567int hci_register_proto(struct hci_proto *hproto);
568int hci_unregister_proto(struct hci_proto *hproto);
569
570/* ----- HCI callbacks ----- */
571struct hci_cb {
572 struct list_head list;
573
574 char *name;
575
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100576 void (*security_cfm) (struct hci_conn *conn, __u8 status, __u8 encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 void (*key_change_cfm) (struct hci_conn *conn, __u8 status);
578 void (*role_switch_cfm) (struct hci_conn *conn, __u8 status, __u8 role);
579};
580
581static inline void hci_auth_cfm(struct hci_conn *conn, __u8 status)
582{
583 struct list_head *p;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100584 __u8 encrypt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 hci_proto_auth_cfm(conn, status);
587
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100588 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend))
589 return;
590
591 encrypt = (conn->link_mode & HCI_LM_ENCRYPT) ? 0x01 : 0x00;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 read_lock_bh(&hci_cb_list_lock);
594 list_for_each(p, &hci_cb_list) {
595 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100596 if (cb->security_cfm)
597 cb->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 read_unlock_bh(&hci_cb_list_lock);
600}
601
602static inline void hci_encrypt_cfm(struct hci_conn *conn, __u8 status, __u8 encrypt)
603{
604 struct list_head *p;
605
Marcel Holtmann435fef22009-02-09 03:55:28 +0100606 if (conn->sec_level == BT_SECURITY_SDP)
607 conn->sec_level = BT_SECURITY_LOW;
608
Marcel Holtmann9719f8a2008-07-14 20:13:45 +0200609 hci_proto_encrypt_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 read_lock_bh(&hci_cb_list_lock);
612 list_for_each(p, &hci_cb_list) {
613 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100614 if (cb->security_cfm)
615 cb->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 read_unlock_bh(&hci_cb_list_lock);
618}
619
620static inline void hci_key_change_cfm(struct hci_conn *conn, __u8 status)
621{
622 struct list_head *p;
623
624 read_lock_bh(&hci_cb_list_lock);
625 list_for_each(p, &hci_cb_list) {
626 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
627 if (cb->key_change_cfm)
628 cb->key_change_cfm(conn, status);
629 }
630 read_unlock_bh(&hci_cb_list_lock);
631}
632
633static inline void hci_role_switch_cfm(struct hci_conn *conn, __u8 status, __u8 role)
634{
635 struct list_head *p;
636
637 read_lock_bh(&hci_cb_list_lock);
638 list_for_each(p, &hci_cb_list) {
639 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
640 if (cb->role_switch_cfm)
641 cb->role_switch_cfm(conn, status, role);
642 }
643 read_unlock_bh(&hci_cb_list_lock);
644}
645
646int hci_register_cb(struct hci_cb *hcb);
647int hci_unregister_cb(struct hci_cb *hcb);
648
649int hci_register_notifier(struct notifier_block *nb);
650int hci_unregister_notifier(struct notifier_block *nb);
651
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200652int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param);
Gustavo F. Padovan9a9c6a32010-05-01 16:15:43 -0300653void hci_send_acl(struct hci_conn *conn, struct sk_buff *skb, __u16 flags);
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -0300654void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200656void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data);
659
660/* ----- HCI Sockets ----- */
661void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb);
662
Johan Hedberg03811012010-12-08 00:21:06 +0200663/* Management interface */
664int mgmt_control(struct sock *sk, struct msghdr *msg, size_t len);
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666/* HCI info for socket */
667#define hci_pi(sk) ((struct hci_pinfo *) sk)
668
669struct hci_pinfo {
670 struct bt_sock bt;
671 struct hci_dev *hdev;
672 struct hci_filter filter;
673 __u32 cmsg_mask;
Johan Hedbergc02178d2010-12-08 00:21:05 +0200674 unsigned short channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675};
676
677/* HCI security filter */
678#define HCI_SFLT_MAX_OGF 5
679
680struct hci_sec_filter {
681 __u32 type_mask;
682 __u32 event_mask[2];
683 __u32 ocf_mask[HCI_SFLT_MAX_OGF + 1][4];
684};
685
686/* ----- HCI requests ----- */
687#define HCI_REQ_DONE 0
688#define HCI_REQ_PEND 1
689#define HCI_REQ_CANCELED 2
690
Thomas Gleixnera6a67ef2009-07-26 08:18:19 +0000691#define hci_req_lock(d) mutex_lock(&d->req_lock)
692#define hci_req_unlock(d) mutex_unlock(&d->req_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694void hci_req_complete(struct hci_dev *hdev, int result);
695
696#endif /* __HCI_CORE_H */