blob: 453893b3120ef6b81d024047a420802dedcb9247 [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
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000028#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/bluetooth/hci.h>
30
Luiz Augusto von Dentz5e59b792011-11-01 10:58:57 +020031/* HCI priority */
32#define HCI_PRIO_MAX 7
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 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 __u32 timestamp;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020054 struct inquiry_entry *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055};
56
57struct hci_conn_hash {
58 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned int acl_num;
60 unsigned int sco_num;
Ville Tervofcd89c02011-02-10 22:38:47 -030061 unsigned int le_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Johan Hedbergf0358562010-05-18 13:20:32 +020064struct bdaddr_list {
65 struct list_head list;
66 bdaddr_t bdaddr;
67};
Johan Hedberg2aeb9a12011-01-04 12:08:51 +020068
69struct bt_uuid {
70 struct list_head list;
71 u8 uuid[16];
Johan Hedberg1aff6f02011-01-13 21:56:52 +020072 u8 svc_hint;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +020073};
74
Vinicius Costa Gomes34918cd2011-07-07 18:59:35 -030075struct key_master_id {
76 __le16 ediv;
77 u8 rand[8];
78} __packed;
79
80struct link_key_data {
81 bdaddr_t bdaddr;
82 u8 type;
83 u8 val[16];
84 u8 pin_len;
85 u8 dlen;
86 u8 data[0];
87} __packed;
88
Johan Hedberg55ed8ca2011-01-17 14:41:05 +020089struct link_key {
90 struct list_head list;
91 bdaddr_t bdaddr;
92 u8 type;
93 u8 val[16];
94 u8 pin_len;
Vinicius Costa Gomes34918cd2011-07-07 18:59:35 -030095 u8 dlen;
96 u8 data[0];
Johan Hedberg55ed8ca2011-01-17 14:41:05 +020097};
98
Szymon Janc2763eda2011-03-22 13:12:22 +010099struct oob_data {
100 struct list_head list;
101 bdaddr_t bdaddr;
102 u8 hash[16];
103 u8 randomizer[16];
104};
105
Andre Guedes76c86862011-05-26 16:23:50 -0300106struct adv_entry {
107 struct list_head list;
108 bdaddr_t bdaddr;
109 u8 bdaddr_type;
110};
111
Suraj Sumangalacd4c5392010-07-14 13:02:16 +0530112#define NUM_REASSEMBLY 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113struct hci_dev {
114 struct list_head list;
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300115 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 atomic_t refcnt;
117
118 char name[8];
119 unsigned long flags;
120 __u16 id;
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100121 __u8 bus;
Marcel Holtmann943da252010-02-13 02:28:41 +0100122 __u8 dev_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 bdaddr_t bdaddr;
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200124 __u8 dev_name[HCI_MAX_NAME_LENGTH];
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300125 __u8 eir[HCI_MAX_EIR_LENGTH];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200126 __u8 dev_class[3];
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200127 __u8 major_class;
128 __u8 minor_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 __u8 features[8];
Andre Guedes59e29402011-12-30 10:34:03 -0300130 __u8 host_features[8];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200131 __u8 commands[64];
Marcel Holtmann333140b2008-07-14 20:13:48 +0200132 __u8 ssp_mode;
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200133 __u8 hci_ver;
134 __u16 hci_rev;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200135 __u8 lmp_ver;
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200136 __u16 manufacturer;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200137 __le16 lmp_subver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 __u16 voice_setting;
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200139 __u8 io_capability;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 __u16 pkt_type;
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200142 __u16 esco_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 __u16 link_policy;
144 __u16 link_mode;
145
Marcel Holtmann04837f62006-07-03 10:02:33 +0200146 __u32 idle_timeout;
147 __u16 sniff_min_interval;
148 __u16 sniff_max_interval;
149
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300150 __u8 amp_status;
151 __u32 amp_total_bw;
152 __u32 amp_max_bw;
153 __u32 amp_min_latency;
154 __u32 amp_max_pdu;
155 __u8 amp_type;
156 __u16 amp_pal_cap;
157 __u16 amp_assoc_size;
158 __u32 amp_max_flush_to;
159 __u32 amp_be_flush_to;
160
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200161 __u8 flow_ctl_mode;
162
Johan Hedberg9f616562011-04-28 11:28:54 -0700163 unsigned int auto_accept_delay;
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 unsigned long quirks;
166
167 atomic_t cmd_cnt;
168 unsigned int acl_cnt;
169 unsigned int sco_cnt;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300170 unsigned int le_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 unsigned int acl_mtu;
173 unsigned int sco_mtu;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300174 unsigned int le_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 unsigned int acl_pkts;
176 unsigned int sco_pkts;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300177 unsigned int le_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200179 __u16 block_len;
180 __u16 block_mtu;
181 __u16 num_blocks;
182 __u16 block_cnt;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 unsigned long acl_last_tx;
185 unsigned long sco_last_tx;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300186 unsigned long le_last_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100188 struct workqueue_struct *workqueue;
189
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200190 struct work_struct power_on;
Johan Hedberg32435532011-11-07 22:16:04 +0200191 struct delayed_work power_off;
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200192
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200193 __u16 discov_timeout;
194 struct delayed_work discov_off;
195
Johan Hedberg7d785252011-12-15 00:47:39 +0200196 struct delayed_work service_cache;
197
Ville Tervo6bd32322011-02-16 16:32:41 +0200198 struct timer_list cmd_timer;
Marcel Holtmannb78752c2010-08-08 23:06:53 -0400199
200 struct work_struct rx_work;
Gustavo F. Padovanc347b762011-12-14 23:53:47 -0200201 struct work_struct cmd_work;
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -0200202 struct work_struct tx_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 struct sk_buff_head rx_q;
205 struct sk_buff_head raw_q;
206 struct sk_buff_head cmd_q;
207
208 struct sk_buff *sent_cmd;
Suraj Sumangalacd4c5392010-07-14 13:02:16 +0530209 struct sk_buff *reassembly[NUM_REASSEMBLY];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Thomas Gleixnera6a67ef2009-07-26 08:18:19 +0000211 struct mutex req_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 wait_queue_head_t req_wait_q;
213 __u32 req_status;
214 __u32 req_result;
Johan Hedberga5040ef2011-01-10 13:28:59 +0200215
216 __u16 init_last_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Johan Hedberg2e58ef32011-11-08 20:40:15 +0200218 struct list_head mgmt_pending;
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 struct inquiry_cache inq_cache;
221 struct hci_conn_hash conn_hash;
David Millerea4bd8b2010-07-30 21:54:49 -0700222 struct list_head blacklist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200224 struct list_head uuids;
225
Johan Hedberg55ed8ca2011-01-17 14:41:05 +0200226 struct list_head link_keys;
227
Szymon Janc2763eda2011-03-22 13:12:22 +0100228 struct list_head remote_oob_data;
229
Andre Guedes76c86862011-05-26 16:23:50 -0300230 struct list_head adv_entries;
Gustavo F. Padovandb323f22011-06-20 16:39:29 -0300231 struct delayed_work adv_work;
Andre Guedes76c86862011-05-26 16:23:50 -0300232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 struct hci_dev_stats stat;
234
235 struct sk_buff_head driver_init;
236
237 void *driver_data;
238 void *core_data;
239
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200240 atomic_t promisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Marcel Holtmannca325f62010-02-08 16:22:31 +0100242 struct dentry *debugfs;
243
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200244 struct device *parent;
245 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Marcel Holtmann611b30f2009-06-08 14:41:38 +0200247 struct rfkill *rfkill;
248
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200249 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Andre Guedesd23264a2011-11-25 20:53:38 -0300251 unsigned long dev_flags;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 int (*open)(struct hci_dev *hdev);
254 int (*close)(struct hci_dev *hdev);
255 int (*flush)(struct hci_dev *hdev);
256 int (*send)(struct sk_buff *skb);
257 void (*destruct)(struct hci_dev *hdev);
258 void (*notify)(struct hci_dev *hdev, unsigned int evt);
259 int (*ioctl)(struct hci_dev *hdev, unsigned int cmd, unsigned long arg);
260};
261
262struct hci_conn {
263 struct list_head list;
264
Szymon Jancadc42662011-02-17 16:42:00 +0100265 atomic_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Szymon Jancadc42662011-02-17 16:42:00 +0100267 bdaddr_t dst;
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200268 __u8 dst_type;
Szymon Jancadc42662011-02-17 16:42:00 +0100269 __u16 handle;
270 __u16 state;
271 __u8 mode;
272 __u8 type;
273 __u8 out;
274 __u8 attempt;
275 __u8 dev_class[3];
276 __u8 features[8];
277 __u8 ssp_mode;
278 __u16 interval;
279 __u16 pkt_type;
280 __u16 link_policy;
281 __u32 link_mode;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200282 __u8 key_type;
Szymon Jancadc42662011-02-17 16:42:00 +0100283 __u8 auth_type;
284 __u8 sec_level;
285 __u8 pending_sec_level;
286 __u8 pin_length;
Vinicius Costa Gomes726b4ff2011-07-08 18:31:45 -0300287 __u8 enc_key_size;
Szymon Jancadc42662011-02-17 16:42:00 +0100288 __u8 io_capability;
289 __u8 power_save;
290 __u16 disc_timeout;
291 unsigned long pend;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200292
Johan Hedberg03b555e2011-01-04 15:40:05 +0200293 __u8 remote_cap;
294 __u8 remote_oob;
295 __u8 remote_auth;
296
Szymon Jancadc42662011-02-17 16:42:00 +0100297 unsigned int sent;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 struct sk_buff_head data_q;
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200300 struct list_head chan_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300302 struct delayed_work disc_work;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200303 struct timer_list idle_timer;
Johan Hedberg9f616562011-04-28 11:28:54 -0700304 struct timer_list auto_accept_timer;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200305
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200306 struct device dev;
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700307 atomic_t devref;
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 struct hci_dev *hdev;
310 void *l2cap_data;
311 void *sco_data;
Brian Gix2b64d152011-12-21 16:12:12 -0800312 void *smp_conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 struct hci_conn *link;
Johan Hedberge9a416b2011-02-19 12:05:56 -0300315
316 void (*connect_cfm_cb) (struct hci_conn *conn, u8 status);
317 void (*security_cfm_cb) (struct hci_conn *conn, u8 status);
318 void (*disconn_cfm_cb) (struct hci_conn *conn, u8 reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319};
320
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200321struct hci_chan {
322 struct list_head list;
323
324 struct hci_conn *conn;
325 struct sk_buff_head data_q;
326 unsigned int sent;
327};
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329extern struct list_head hci_dev_list;
330extern struct list_head hci_cb_list;
331extern rwlock_t hci_dev_list_lock;
332extern rwlock_t hci_cb_list_lock;
333
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200334/* ----- HCI interface to upper protocols ----- */
335extern int l2cap_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr);
336extern int l2cap_connect_cfm(struct hci_conn *hcon, u8 status);
337extern int l2cap_disconn_ind(struct hci_conn *hcon);
338extern int l2cap_disconn_cfm(struct hci_conn *hcon, u8 reason);
339extern int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt);
340extern int l2cap_recv_acldata(struct hci_conn *hcon, struct sk_buff *skb, u16 flags);
341
342extern int sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr);
343extern int sco_connect_cfm(struct hci_conn *hcon, __u8 status);
344extern int sco_disconn_cfm(struct hci_conn *hcon, __u8 reason);
345extern int sco_recv_scodata(struct hci_conn *hcon, struct sk_buff *skb);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/* ----- Inquiry cache ----- */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200348#define INQUIRY_CACHE_AGE_MAX (HZ*30) /* 30 seconds */
349#define INQUIRY_ENTRY_AGE_MAX (HZ*60) /* 60 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351static inline void inquiry_cache_init(struct hci_dev *hdev)
352{
353 struct inquiry_cache *c = &hdev->inq_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 c->list = NULL;
355}
356
357static inline int inquiry_cache_empty(struct hci_dev *hdev)
358{
359 struct inquiry_cache *c = &hdev->inq_cache;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000360 return c->list == NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363static inline long inquiry_cache_age(struct hci_dev *hdev)
364{
365 struct inquiry_cache *c = &hdev->inq_cache;
366 return jiffies - c->timestamp;
367}
368
369static inline long inquiry_entry_age(struct inquiry_entry *e)
370{
371 return jiffies - e->timestamp;
372}
373
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200374struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev,
375 bdaddr_t *bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376void hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data);
377
378/* ----- HCI Connections ----- */
379enum {
380 HCI_CONN_AUTH_PEND,
Waldemar Rymarkiewicz19f8def2011-05-31 15:49:25 +0200381 HCI_CONN_REAUTH_PEND,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 HCI_CONN_ENCRYPT_PEND,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200383 HCI_CONN_RSWITCH_PEND,
384 HCI_CONN_MODE_CHANGE_PEND,
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400385 HCI_CONN_SCO_SETUP_PEND,
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -0300386 HCI_CONN_LE_SMP_PEND,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387};
388
389static inline void hci_conn_hash_init(struct hci_dev *hdev)
390{
391 struct hci_conn_hash *h = &hdev->conn_hash;
392 INIT_LIST_HEAD(&h->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 h->acl_num = 0;
394 h->sco_num = 0;
Gustavo F. Padovandc8ed672011-12-14 20:56:12 -0200395 h->le_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398static inline void hci_conn_hash_add(struct hci_dev *hdev, struct hci_conn *c)
399{
400 struct hci_conn_hash *h = &hdev->conn_hash;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200401 list_add_rcu(&c->list, &h->list);
Ville Tervofcd89c02011-02-10 22:38:47 -0300402 switch (c->type) {
403 case ACL_LINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 h->acl_num++;
Ville Tervofcd89c02011-02-10 22:38:47 -0300405 break;
406 case LE_LINK:
407 h->le_num++;
408 break;
409 case SCO_LINK:
410 case ESCO_LINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 h->sco_num++;
Ville Tervofcd89c02011-02-10 22:38:47 -0300412 break;
413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
416static inline void hci_conn_hash_del(struct hci_dev *hdev, struct hci_conn *c)
417{
418 struct hci_conn_hash *h = &hdev->conn_hash;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200419
420 list_del_rcu(&c->list);
421 synchronize_rcu();
422
Ville Tervofcd89c02011-02-10 22:38:47 -0300423 switch (c->type) {
424 case ACL_LINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 h->acl_num--;
Ville Tervofcd89c02011-02-10 22:38:47 -0300426 break;
427 case LE_LINK:
428 h->le_num--;
429 break;
430 case SCO_LINK:
431 case ESCO_LINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 h->sco_num--;
Ville Tervofcd89c02011-02-10 22:38:47 -0300433 break;
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +0300437static inline unsigned int hci_conn_num(struct hci_dev *hdev, __u8 type)
438{
439 struct hci_conn_hash *h = &hdev->conn_hash;
440 switch (type) {
441 case ACL_LINK:
442 return h->acl_num;
443 case LE_LINK:
444 return h->le_num;
445 case SCO_LINK:
446 case ESCO_LINK:
447 return h->sco_num;
448 default:
449 return 0;
450 }
451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453static inline struct hci_conn *hci_conn_hash_lookup_handle(struct hci_dev *hdev,
Szymon Jancadc42662011-02-17 16:42:00 +0100454 __u16 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct hci_conn_hash *h = &hdev->conn_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 struct hci_conn *c;
458
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200459 rcu_read_lock();
460
461 list_for_each_entry_rcu(c, &h->list, list) {
462 if (c->handle == handle) {
463 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return c;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200467 rcu_read_unlock();
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return NULL;
470}
471
472static inline struct hci_conn *hci_conn_hash_lookup_ba(struct hci_dev *hdev,
Szymon Jancadc42662011-02-17 16:42:00 +0100473 __u8 type, bdaddr_t *ba)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct hci_conn_hash *h = &hdev->conn_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct hci_conn *c;
477
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200478 rcu_read_lock();
479
480 list_for_each_entry_rcu(c, &h->list, list) {
481 if (c->type == type && !bacmp(&c->dst, ba)) {
482 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return c;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200486
487 rcu_read_unlock();
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return NULL;
490}
491
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200492static inline struct hci_conn *hci_conn_hash_lookup_state(struct hci_dev *hdev,
Szymon Jancadc42662011-02-17 16:42:00 +0100493 __u8 type, __u16 state)
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200494{
495 struct hci_conn_hash *h = &hdev->conn_hash;
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200496 struct hci_conn *c;
497
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200498 rcu_read_lock();
499
500 list_for_each_entry_rcu(c, &h->list, list) {
501 if (c->type == type && c->state == state) {
502 rcu_read_unlock();
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200503 return c;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200504 }
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200505 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200506
507 rcu_read_unlock();
508
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200509 return NULL;
510}
511
512void hci_acl_connect(struct hci_conn *conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513void hci_acl_disconn(struct hci_conn *conn, __u8 reason);
514void hci_add_sco(struct hci_conn *conn, __u16 handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200515void hci_setup_sync(struct hci_conn *conn, __u16 handle);
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400516void hci_sco_setup(struct hci_conn *conn, __u8 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200519int hci_conn_del(struct hci_conn *conn);
520void hci_conn_hash_flush(struct hci_dev *hdev);
521void hci_conn_check_pending(struct hci_dev *hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200523struct hci_chan *hci_chan_create(struct hci_conn *conn);
524int hci_chan_del(struct hci_chan *chan);
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200525void hci_chan_list_flush(struct hci_conn *conn);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200526
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200527struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst,
528 __u8 sec_level, __u8 auth_type);
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200529int hci_conn_check_link_mode(struct hci_conn *conn);
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200530int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level);
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100531int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532int hci_conn_change_link_key(struct hci_conn *conn);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100533int hci_conn_switch_role(struct hci_conn *conn, __u8 role);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700535void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700537void hci_conn_hold_device(struct hci_conn *conn);
538void hci_conn_put_device(struct hci_conn *conn);
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540static inline void hci_conn_hold(struct hci_conn *conn)
541{
542 atomic_inc(&conn->refcnt);
Andre Guedesa51cd2b2012-01-27 19:42:02 -0300543 cancel_delayed_work(&conn->disc_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546static inline void hci_conn_put(struct hci_conn *conn)
547{
548 if (atomic_dec_and_test(&conn->refcnt)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200549 unsigned long timeo;
Vinicius Costa Gomes454d48f2011-08-19 21:06:52 -0300550 if (conn->type == ACL_LINK || conn->type == LE_LINK) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200551 del_timer(&conn->idle_timer);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200552 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200553 timeo = msecs_to_jiffies(conn->disc_timeout);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200554 if (!conn->out)
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200555 timeo *= 2;
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200556 } else {
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200557 timeo = msecs_to_jiffies(10);
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200558 }
559 } else {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200560 timeo = msecs_to_jiffies(10);
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200561 }
Andre Guedesa51cd2b2012-01-27 19:42:02 -0300562 cancel_delayed_work(&conn->disc_work);
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300563 queue_delayed_work(conn->hdev->workqueue,
Vinicius Costa Gomes33166062012-01-04 11:57:17 -0300564 &conn->disc_work, timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566}
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568/* ----- HCI Devices ----- */
569static inline void __hci_dev_put(struct hci_dev *d)
570{
571 if (atomic_dec_and_test(&d->refcnt))
572 d->destruct(d);
573}
574
Paul Gortmaker1d589962011-09-15 17:56:39 -0400575/*
576 * hci_dev_put and hci_dev_hold are macros to avoid dragging all the
577 * overhead of all the modular infrastructure into this header.
578 */
579#define hci_dev_put(d) \
580do { \
581 __hci_dev_put(d); \
582 module_put(d->owner); \
583} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585static inline struct hci_dev *__hci_dev_hold(struct hci_dev *d)
586{
587 atomic_inc(&d->refcnt);
588 return d;
589}
590
Paul Gortmaker1d589962011-09-15 17:56:39 -0400591#define hci_dev_hold(d) \
592({ \
593 try_module_get(d->owner) ? __hci_dev_hold(d) : NULL; \
594})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300596#define hci_dev_lock(d) mutex_lock(&d->lock)
597#define hci_dev_unlock(d) mutex_unlock(&d->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599struct hci_dev *hci_dev_get(int index);
600struct hci_dev *hci_get_route(bdaddr_t *src, bdaddr_t *dst);
601
602struct hci_dev *hci_alloc_dev(void);
603void hci_free_dev(struct hci_dev *hdev);
604int hci_register_dev(struct hci_dev *hdev);
David Herrmann59735632011-10-26 10:43:19 +0200605void hci_unregister_dev(struct hci_dev *hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606int hci_suspend_dev(struct hci_dev *hdev);
607int hci_resume_dev(struct hci_dev *hdev);
608int hci_dev_open(__u16 dev);
609int hci_dev_close(__u16 dev);
610int hci_dev_reset(__u16 dev);
611int hci_dev_reset_stat(__u16 dev);
612int hci_dev_cmd(unsigned int cmd, void __user *arg);
613int hci_get_dev_list(void __user *arg);
614int hci_get_dev_info(void __user *arg);
615int hci_get_conn_list(void __user *arg);
616int hci_get_conn_info(struct hci_dev *hdev, void __user *arg);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200617int hci_get_auth_info(struct hci_dev *hdev, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618int hci_inquiry(void __user *arg);
619
Johan Hedbergf0358562010-05-18 13:20:32 +0200620struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr);
621int hci_blacklist_clear(struct hci_dev *hdev);
Antti Julkub2a66aa2011-06-15 12:01:14 +0300622int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr);
623int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr);
Johan Hedbergf0358562010-05-18 13:20:32 +0200624
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200625int hci_uuids_clear(struct hci_dev *hdev);
626
Johan Hedberg55ed8ca2011-01-17 14:41:05 +0200627int hci_link_keys_clear(struct hci_dev *hdev);
628struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr);
Johan Hedbergd25e28a2011-04-28 11:28:59 -0700629int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
630 bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -0300631struct link_key *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8]);
632struct link_key *hci_find_link_key_type(struct hci_dev *hdev,
633 bdaddr_t *bdaddr, u8 type);
634int hci_add_ltk(struct hci_dev *hdev, int new_key, bdaddr_t *bdaddr,
Vinicius Costa Gomes726b4ff2011-07-08 18:31:45 -0300635 u8 key_size, __le16 ediv, u8 rand[8], u8 ltk[16]);
Johan Hedberg55ed8ca2011-01-17 14:41:05 +0200636int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr);
637
Szymon Janc2763eda2011-03-22 13:12:22 +0100638int hci_remote_oob_data_clear(struct hci_dev *hdev);
639struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
640 bdaddr_t *bdaddr);
641int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash,
642 u8 *randomizer);
643int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr);
644
Andre Guedes35815082011-05-26 16:23:53 -0300645#define ADV_CLEAR_TIMEOUT (3*60*HZ) /* Three minutes */
Andre Guedes76c86862011-05-26 16:23:50 -0300646int hci_adv_entries_clear(struct hci_dev *hdev);
647struct adv_entry *hci_find_adv_entry(struct hci_dev *hdev, bdaddr_t *bdaddr);
648int hci_add_adv_entry(struct hci_dev *hdev,
649 struct hci_ev_le_advertising_info *ev);
650
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200651void hci_del_off_timer(struct hci_dev *hdev);
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb);
654
Marcel Holtmann76bca882009-11-18 00:40:39 +0100655int hci_recv_frame(struct sk_buff *skb);
Marcel Holtmannef222012007-07-11 06:42:04 +0200656int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count);
Suraj Sumangala99811512010-07-14 13:02:19 +0530657int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count);
Marcel Holtmannef222012007-07-11 06:42:04 +0200658
David Herrmann0ac7e702011-10-08 14:58:47 +0200659void hci_init_sysfs(struct hci_dev *hdev);
David Herrmannce242972011-10-08 14:58:48 +0200660int hci_add_sysfs(struct hci_dev *hdev);
661void hci_del_sysfs(struct hci_dev *hdev);
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700662void hci_conn_init_sysfs(struct hci_conn *conn);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200663void hci_conn_add_sysfs(struct hci_conn *conn);
664void hci_conn_del_sysfs(struct hci_conn *conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200666#define SET_HCIDEV_DEV(hdev, pdev) ((hdev)->parent = (pdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668/* ----- LMP capabilities ----- */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200669#define lmp_rswitch_capable(dev) ((dev)->features[0] & LMP_RSWITCH)
670#define lmp_encrypt_capable(dev) ((dev)->features[0] & LMP_ENCRYPT)
671#define lmp_sniff_capable(dev) ((dev)->features[0] & LMP_SNIFF)
672#define lmp_sniffsubr_capable(dev) ((dev)->features[5] & LMP_SNIFF_SUBR)
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200673#define lmp_esco_capable(dev) ((dev)->features[3] & LMP_ESCO)
Marcel Holtmann769be972008-07-14 20:13:49 +0200674#define lmp_ssp_capable(dev) ((dev)->features[6] & LMP_SIMPLE_PAIR)
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +0200675#define lmp_no_flush_capable(dev) ((dev)->features[6] & LMP_NO_FLUSH)
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300676#define lmp_le_capable(dev) ((dev)->features[4] & LMP_LE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Andre Guedeseead27d2011-06-30 19:20:55 -0300678/* ----- Extended LMP capabilities ----- */
Andre Guedes59e29402011-12-30 10:34:03 -0300679#define lmp_host_le_capable(dev) ((dev)->host_features[0] & LMP_HOST_LE)
Andre Guedeseead27d2011-06-30 19:20:55 -0300680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/* ----- HCI protocols ----- */
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200682static inline int hci_proto_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr,
683 __u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200685 switch (type) {
686 case ACL_LINK:
687 return l2cap_connect_ind(hdev, bdaddr);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100688
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200689 case SCO_LINK:
690 case ESCO_LINK:
691 return sco_connect_ind(hdev, bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200693 default:
694 BT_ERR("unknown link type %d", type);
695 return -EINVAL;
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699static inline void hci_proto_connect_cfm(struct hci_conn *conn, __u8 status)
700{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200701 switch (conn->type) {
702 case ACL_LINK:
703 case LE_LINK:
704 l2cap_connect_cfm(conn, status);
705 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200707 case SCO_LINK:
708 case ESCO_LINK:
709 sco_connect_cfm(conn, status);
710 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200712 default:
713 BT_ERR("unknown link type %d", conn->type);
714 break;
715 }
Johan Hedberge9a416b2011-02-19 12:05:56 -0300716
717 if (conn->connect_cfm_cb)
718 conn->connect_cfm_cb(conn, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Marcel Holtmann2950f212009-02-12 14:02:50 +0100721static inline int hci_proto_disconn_ind(struct hci_conn *conn)
722{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200723 if (conn->type != ACL_LINK && conn->type != LE_LINK)
724 return HCI_ERROR_REMOTE_USER_TERM;
Marcel Holtmann2950f212009-02-12 14:02:50 +0100725
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200726 return l2cap_disconn_ind(conn);
Marcel Holtmann2950f212009-02-12 14:02:50 +0100727}
728
729static inline void hci_proto_disconn_cfm(struct hci_conn *conn, __u8 reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200731 switch (conn->type) {
732 case ACL_LINK:
733 case LE_LINK:
734 l2cap_disconn_cfm(conn, reason);
735 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200737 case SCO_LINK:
738 case ESCO_LINK:
739 sco_disconn_cfm(conn, reason);
740 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200742 default:
743 BT_ERR("unknown link type %d", conn->type);
744 break;
745 }
Johan Hedberge9a416b2011-02-19 12:05:56 -0300746
747 if (conn->disconn_cfm_cb)
748 conn->disconn_cfm_cb(conn, reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
751static inline void hci_proto_auth_cfm(struct hci_conn *conn, __u8 status)
752{
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100753 __u8 encrypt;
754
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200755 if (conn->type != ACL_LINK && conn->type != LE_LINK)
756 return;
757
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100758 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend))
759 return;
760
761 encrypt = (conn->link_mode & HCI_LM_ENCRYPT) ? 0x01 : 0x00;
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200762 l2cap_security_cfm(conn, status, encrypt);
Johan Hedberge9a416b2011-02-19 12:05:56 -0300763
764 if (conn->security_cfm_cb)
765 conn->security_cfm_cb(conn, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200768static inline void hci_proto_encrypt_cfm(struct hci_conn *conn, __u8 status,
769 __u8 encrypt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200771 if (conn->type != ACL_LINK && conn->type != LE_LINK)
772 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200774 l2cap_security_cfm(conn, status, encrypt);
Johan Hedberge9a416b2011-02-19 12:05:56 -0300775
776 if (conn->security_cfm_cb)
777 conn->security_cfm_cb(conn, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780/* ----- HCI callbacks ----- */
781struct hci_cb {
782 struct list_head list;
783
784 char *name;
785
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200786 void (*security_cfm) (struct hci_conn *conn, __u8 status,
787 __u8 encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 void (*key_change_cfm) (struct hci_conn *conn, __u8 status);
789 void (*role_switch_cfm) (struct hci_conn *conn, __u8 status, __u8 role);
790};
791
792static inline void hci_auth_cfm(struct hci_conn *conn, __u8 status)
793{
794 struct list_head *p;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100795 __u8 encrypt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 hci_proto_auth_cfm(conn, status);
798
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100799 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend))
800 return;
801
802 encrypt = (conn->link_mode & HCI_LM_ENCRYPT) ? 0x01 : 0x00;
803
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200804 read_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 list_for_each(p, &hci_cb_list) {
806 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100807 if (cb->security_cfm)
808 cb->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200810 read_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200813static inline void hci_encrypt_cfm(struct hci_conn *conn, __u8 status,
814 __u8 encrypt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 struct list_head *p;
817
Marcel Holtmann435fef22009-02-09 03:55:28 +0100818 if (conn->sec_level == BT_SECURITY_SDP)
819 conn->sec_level = BT_SECURITY_LOW;
820
Vinicius Costa Gomes88167ae2011-06-09 18:50:51 -0300821 if (conn->pending_sec_level > conn->sec_level)
822 conn->sec_level = conn->pending_sec_level;
823
Marcel Holtmann9719f8a2008-07-14 20:13:45 +0200824 hci_proto_encrypt_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200826 read_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 list_for_each(p, &hci_cb_list) {
828 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100829 if (cb->security_cfm)
830 cb->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200832 read_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
835static inline void hci_key_change_cfm(struct hci_conn *conn, __u8 status)
836{
837 struct list_head *p;
838
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200839 read_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 list_for_each(p, &hci_cb_list) {
841 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
842 if (cb->key_change_cfm)
843 cb->key_change_cfm(conn, status);
844 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200845 read_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200848static inline void hci_role_switch_cfm(struct hci_conn *conn, __u8 status,
849 __u8 role)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851 struct list_head *p;
852
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200853 read_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 list_for_each(p, &hci_cb_list) {
855 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
856 if (cb->role_switch_cfm)
857 cb->role_switch_cfm(conn, status, role);
858 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200859 read_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
862int hci_register_cb(struct hci_cb *hcb);
863int hci_unregister_cb(struct hci_cb *hcb);
864
865int hci_register_notifier(struct notifier_block *nb);
866int hci_unregister_notifier(struct notifier_block *nb);
867
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200868int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200869void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags);
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -0300870void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200872void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data);
875
876/* ----- HCI Sockets ----- */
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200877void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb,
878 struct sock *skip_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Johan Hedberg03811012010-12-08 00:21:06 +0200880/* Management interface */
881int mgmt_control(struct sock *sk, struct msghdr *msg, size_t len);
Johan Hedberg744cf192011-11-08 20:40:14 +0200882int mgmt_index_added(struct hci_dev *hdev);
883int mgmt_index_removed(struct hci_dev *hdev);
884int mgmt_powered(struct hci_dev *hdev, u8 powered);
885int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable);
886int mgmt_connectable(struct hci_dev *hdev, u8 connectable);
887int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status);
888int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
889 u8 persistent);
Johan Hedberg48264f02011-11-09 13:58:58 +0200890int mgmt_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
891 u8 addr_type);
892int mgmt_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
893 u8 addr_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +0200894int mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 status);
Johan Hedberg48264f02011-11-09 13:58:58 +0200895int mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
896 u8 addr_type, u8 status);
Johan Hedberg744cf192011-11-08 20:40:14 +0200897int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure);
898int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Szymon Jancc35938b2011-03-22 13:12:21 +0100899 u8 status);
Johan Hedberg744cf192011-11-08 20:40:14 +0200900int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
901 u8 status);
902int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
903 __le32 value, u8 confirm_hint);
904int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
905 u8 status);
906int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev,
907 bdaddr_t *bdaddr, u8 status);
Brian Gix604086b2011-11-23 08:28:33 -0800908int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr);
909int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
910 u8 status);
911int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev,
912 bdaddr_t *bdaddr, u8 status);
Johan Hedberg744cf192011-11-08 20:40:14 +0200913int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 status);
914int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status);
915int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
916 u8 *randomizer, u8 status);
Johan Hedberg48264f02011-11-09 13:58:58 +0200917int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
918 u8 addr_type, u8 *dev_class, s8 rssi, u8 *eir);
Johan Hedberg744cf192011-11-08 20:40:14 +0200919int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *name);
Andre Guedes7a135102011-11-09 17:14:25 -0300920int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status);
Andre Guedese6d465c2011-11-09 17:14:26 -0300921int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status);
Johan Hedberg744cf192011-11-08 20:40:14 +0200922int mgmt_discovering(struct hci_dev *hdev, u8 discovering);
923int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr);
924int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr);
Johan Hedberg03811012010-12-08 00:21:06 +0200925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926/* HCI info for socket */
927#define hci_pi(sk) ((struct hci_pinfo *) sk)
928
Johan Hedberg14c0b602011-12-15 00:47:37 +0200929/* HCI socket flags */
930#define HCI_PI_MGMT_INIT 0
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932struct hci_pinfo {
933 struct bt_sock bt;
934 struct hci_dev *hdev;
935 struct hci_filter filter;
936 __u32 cmsg_mask;
Johan Hedbergc02178d2010-12-08 00:21:05 +0200937 unsigned short channel;
Johan Hedberg14c0b602011-12-15 00:47:37 +0200938 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939};
940
941/* HCI security filter */
942#define HCI_SFLT_MAX_OGF 5
943
944struct hci_sec_filter {
945 __u32 type_mask;
946 __u32 event_mask[2];
947 __u32 ocf_mask[HCI_SFLT_MAX_OGF + 1][4];
948};
949
950/* ----- HCI requests ----- */
951#define HCI_REQ_DONE 0
952#define HCI_REQ_PEND 1
953#define HCI_REQ_CANCELED 2
954
Thomas Gleixnera6a67ef2009-07-26 08:18:19 +0000955#define hci_req_lock(d) mutex_lock(&d->req_lock)
956#define hci_req_unlock(d) mutex_unlock(&d->req_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Johan Hedberg23bb5762010-12-21 23:01:27 +0200958void hci_req_complete(struct hci_dev *hdev, __u16 cmd, int result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200960void hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max,
961 u16 latency, u16 to_multiplier);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300962void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8],
963 __u8 ltk[16]);
964void hci_le_ltk_reply(struct hci_conn *conn, u8 ltk[16]);
965void hci_le_ltk_neg_reply(struct hci_conn *conn);
966
Andre Guedes2519a1f2011-11-07 11:45:24 -0300967int hci_do_inquiry(struct hci_dev *hdev, u8 length);
Andre Guedes023d5042011-11-04 14:16:52 -0300968int hci_cancel_inquiry(struct hci_dev *hdev);
Andre Guedes2519a1f2011-11-07 11:45:24 -0300969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970#endif /* __HCI_CORE_H */