blob: f3fbfd6f6c3bf4d88af379870975f2d94d6fba40 [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 {
Johan Hedberg561aafb2012-01-04 13:31:59 +020047 struct list_head all; /* inq_cache.all */
48 struct list_head list; /* unknown or resolve */
49 enum {
50 NAME_NOT_KNOWN,
51 NAME_NEEDED,
52 NAME_PENDING,
53 NAME_KNOWN,
54 } name_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 __u32 timestamp;
56 struct inquiry_data data;
57};
58
Johan Hedberg30883512012-01-04 14:16:21 +020059struct discovery_state {
Johan Hedbergff9ef572012-01-04 14:23:45 +020060 enum {
61 DISCOVERY_STOPPED,
62 DISCOVERY_STARTING,
Johan Hedberg30dc78e2012-01-04 15:44:20 +020063 DISCOVERY_INQUIRY,
64 DISCOVERY_RESOLVING,
Johan Hedbergff9ef572012-01-04 14:23:45 +020065 DISCOVERY_STOPPING,
66 } state;
Johan Hedberg561aafb2012-01-04 13:31:59 +020067 struct list_head all; /* All devices found during inquiry */
68 struct list_head unknown; /* Name state not known */
69 struct list_head resolve; /* Name needs to be resolved */
70 __u32 timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
73struct hci_conn_hash {
74 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 unsigned int acl_num;
76 unsigned int sco_num;
Ville Tervofcd89c02011-02-10 22:38:47 -030077 unsigned int le_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
Johan Hedbergf0358562010-05-18 13:20:32 +020080struct bdaddr_list {
81 struct list_head list;
82 bdaddr_t bdaddr;
83};
Johan Hedberg2aeb9a12011-01-04 12:08:51 +020084
85struct bt_uuid {
86 struct list_head list;
87 u8 uuid[16];
Johan Hedberg1aff6f02011-01-13 21:56:52 +020088 u8 svc_hint;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +020089};
90
Vinicius Costa Gomes34918cd2011-07-07 18:59:35 -030091struct key_master_id {
92 __le16 ediv;
93 u8 rand[8];
94} __packed;
95
96struct link_key_data {
97 bdaddr_t bdaddr;
98 u8 type;
99 u8 val[16];
100 u8 pin_len;
101 u8 dlen;
102 u8 data[0];
103} __packed;
104
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200105struct link_key {
106 struct list_head list;
107 bdaddr_t bdaddr;
108 u8 type;
109 u8 val[16];
110 u8 pin_len;
Vinicius Costa Gomes34918cd2011-07-07 18:59:35 -0300111 u8 dlen;
112 u8 data[0];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200113};
114
Szymon Janc2763eda2011-03-22 13:12:22 +0100115struct oob_data {
116 struct list_head list;
117 bdaddr_t bdaddr;
118 u8 hash[16];
119 u8 randomizer[16];
120};
121
Andre Guedes76c86862011-05-26 16:23:50 -0300122struct adv_entry {
123 struct list_head list;
124 bdaddr_t bdaddr;
125 u8 bdaddr_type;
126};
127
Suraj Sumangalacd4c5392010-07-14 13:02:16 +0530128#define NUM_REASSEMBLY 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129struct hci_dev {
130 struct list_head list;
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300131 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 char name[8];
134 unsigned long flags;
135 __u16 id;
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100136 __u8 bus;
Marcel Holtmann943da252010-02-13 02:28:41 +0100137 __u8 dev_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 bdaddr_t bdaddr;
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200139 __u8 dev_name[HCI_MAX_NAME_LENGTH];
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300140 __u8 eir[HCI_MAX_EIR_LENGTH];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200141 __u8 dev_class[3];
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200142 __u8 major_class;
143 __u8 minor_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 __u8 features[8];
Andre Guedes59e29402011-12-30 10:34:03 -0300145 __u8 host_features[8];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200146 __u8 commands[64];
Marcel Holtmann333140b2008-07-14 20:13:48 +0200147 __u8 ssp_mode;
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200148 __u8 hci_ver;
149 __u16 hci_rev;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200150 __u8 lmp_ver;
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200151 __u16 manufacturer;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200152 __le16 lmp_subver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 __u16 voice_setting;
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200154 __u8 io_capability;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 __u16 pkt_type;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200157 __u16 esco_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 __u16 link_policy;
159 __u16 link_mode;
160
Marcel Holtmann04837f62006-07-03 10:02:33 +0200161 __u32 idle_timeout;
162 __u16 sniff_min_interval;
163 __u16 sniff_max_interval;
164
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300165 __u8 amp_status;
166 __u32 amp_total_bw;
167 __u32 amp_max_bw;
168 __u32 amp_min_latency;
169 __u32 amp_max_pdu;
170 __u8 amp_type;
171 __u16 amp_pal_cap;
172 __u16 amp_assoc_size;
173 __u32 amp_max_flush_to;
174 __u32 amp_be_flush_to;
175
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200176 __u8 flow_ctl_mode;
177
Johan Hedberg9f616562011-04-28 11:28:54 -0700178 unsigned int auto_accept_delay;
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 unsigned long quirks;
181
182 atomic_t cmd_cnt;
183 unsigned int acl_cnt;
184 unsigned int sco_cnt;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300185 unsigned int le_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 unsigned int acl_mtu;
188 unsigned int sco_mtu;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300189 unsigned int le_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 unsigned int acl_pkts;
191 unsigned int sco_pkts;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300192 unsigned int le_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200194 __u16 block_len;
195 __u16 block_mtu;
196 __u16 num_blocks;
197 __u16 block_cnt;
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 unsigned long acl_last_tx;
200 unsigned long sco_last_tx;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300201 unsigned long le_last_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100203 struct workqueue_struct *workqueue;
204
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200205 struct work_struct power_on;
Johan Hedberg32435532011-11-07 22:16:04 +0200206 struct delayed_work power_off;
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200207
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200208 __u16 discov_timeout;
209 struct delayed_work discov_off;
210
Johan Hedberg7d785252011-12-15 00:47:39 +0200211 struct delayed_work service_cache;
212
Ville Tervo6bd32322011-02-16 16:32:41 +0200213 struct timer_list cmd_timer;
Marcel Holtmannb78752c2010-08-08 23:06:53 -0400214
215 struct work_struct rx_work;
Gustavo F. Padovanc347b762011-12-14 23:53:47 -0200216 struct work_struct cmd_work;
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -0200217 struct work_struct tx_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 struct sk_buff_head rx_q;
220 struct sk_buff_head raw_q;
221 struct sk_buff_head cmd_q;
222
223 struct sk_buff *sent_cmd;
Suraj Sumangalacd4c5392010-07-14 13:02:16 +0530224 struct sk_buff *reassembly[NUM_REASSEMBLY];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Thomas Gleixnera6a67ef2009-07-26 08:18:19 +0000226 struct mutex req_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 wait_queue_head_t req_wait_q;
228 __u32 req_status;
229 __u32 req_result;
Johan Hedberga5040ef2011-01-10 13:28:59 +0200230
231 __u16 init_last_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Johan Hedberg2e58ef32011-11-08 20:40:15 +0200233 struct list_head mgmt_pending;
234
Johan Hedberg30883512012-01-04 14:16:21 +0200235 struct discovery_state discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 struct hci_conn_hash conn_hash;
David Millerea4bd8b2010-07-30 21:54:49 -0700237 struct list_head blacklist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200239 struct list_head uuids;
240
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200241 struct list_head link_keys;
242
Szymon Janc2763eda2011-03-22 13:12:22 +0100243 struct list_head remote_oob_data;
244
Andre Guedes76c86862011-05-26 16:23:50 -0300245 struct list_head adv_entries;
Gustavo F. Padovandb323f22011-06-20 16:39:29 -0300246 struct delayed_work adv_work;
Andre Guedes76c86862011-05-26 16:23:50 -0300247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 struct hci_dev_stats stat;
249
250 struct sk_buff_head driver_init;
251
252 void *driver_data;
253 void *core_data;
254
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200255 atomic_t promisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Marcel Holtmannca325f62010-02-08 16:22:31 +0100257 struct dentry *debugfs;
258
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200259 struct device *parent;
260 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Marcel Holtmann611b30f2009-06-08 14:41:38 +0200262 struct rfkill *rfkill;
263
Andre Guedesd23264a2011-11-25 20:53:38 -0300264 unsigned long dev_flags;
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int (*open)(struct hci_dev *hdev);
267 int (*close)(struct hci_dev *hdev);
268 int (*flush)(struct hci_dev *hdev);
269 int (*send)(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 void (*notify)(struct hci_dev *hdev, unsigned int evt);
271 int (*ioctl)(struct hci_dev *hdev, unsigned int cmd, unsigned long arg);
272};
273
274struct hci_conn {
275 struct list_head list;
276
Szymon Jancadc42662011-02-17 16:42:00 +0100277 atomic_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Szymon Jancadc42662011-02-17 16:42:00 +0100279 bdaddr_t dst;
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200280 __u8 dst_type;
Szymon Jancadc42662011-02-17 16:42:00 +0100281 __u16 handle;
282 __u16 state;
283 __u8 mode;
284 __u8 type;
285 __u8 out;
286 __u8 attempt;
287 __u8 dev_class[3];
288 __u8 features[8];
289 __u8 ssp_mode;
290 __u16 interval;
291 __u16 pkt_type;
292 __u16 link_policy;
293 __u32 link_mode;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200294 __u8 key_type;
Szymon Jancadc42662011-02-17 16:42:00 +0100295 __u8 auth_type;
296 __u8 sec_level;
297 __u8 pending_sec_level;
298 __u8 pin_length;
Vinicius Costa Gomes726b4ff2011-07-08 18:31:45 -0300299 __u8 enc_key_size;
Szymon Jancadc42662011-02-17 16:42:00 +0100300 __u8 io_capability;
301 __u8 power_save;
302 __u16 disc_timeout;
303 unsigned long pend;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200304
Johan Hedberg03b555e2011-01-04 15:40:05 +0200305 __u8 remote_cap;
306 __u8 remote_oob;
307 __u8 remote_auth;
308
Szymon Jancadc42662011-02-17 16:42:00 +0100309 unsigned int sent;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 struct sk_buff_head data_q;
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200312 struct list_head chan_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300314 struct delayed_work disc_work;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200315 struct timer_list idle_timer;
Johan Hedberg9f616562011-04-28 11:28:54 -0700316 struct timer_list auto_accept_timer;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200317
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200318 struct device dev;
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700319 atomic_t devref;
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct hci_dev *hdev;
322 void *l2cap_data;
323 void *sco_data;
Brian Gix2b64d152011-12-21 16:12:12 -0800324 void *smp_conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 struct hci_conn *link;
Johan Hedberge9a416b2011-02-19 12:05:56 -0300327
328 void (*connect_cfm_cb) (struct hci_conn *conn, u8 status);
329 void (*security_cfm_cb) (struct hci_conn *conn, u8 status);
330 void (*disconn_cfm_cb) (struct hci_conn *conn, u8 reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331};
332
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200333struct hci_chan {
334 struct list_head list;
335
336 struct hci_conn *conn;
337 struct sk_buff_head data_q;
338 unsigned int sent;
339};
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341extern struct list_head hci_dev_list;
342extern struct list_head hci_cb_list;
343extern rwlock_t hci_dev_list_lock;
344extern rwlock_t hci_cb_list_lock;
345
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200346/* ----- HCI interface to upper protocols ----- */
347extern int l2cap_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr);
348extern int l2cap_connect_cfm(struct hci_conn *hcon, u8 status);
349extern int l2cap_disconn_ind(struct hci_conn *hcon);
350extern int l2cap_disconn_cfm(struct hci_conn *hcon, u8 reason);
351extern int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt);
352extern int l2cap_recv_acldata(struct hci_conn *hcon, struct sk_buff *skb, u16 flags);
353
354extern int sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr);
355extern int sco_connect_cfm(struct hci_conn *hcon, __u8 status);
356extern int sco_disconn_cfm(struct hci_conn *hcon, __u8 reason);
357extern int sco_recv_scodata(struct hci_conn *hcon, struct sk_buff *skb);
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359/* ----- Inquiry cache ----- */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200360#define INQUIRY_CACHE_AGE_MAX (HZ*30) /* 30 seconds */
361#define INQUIRY_ENTRY_AGE_MAX (HZ*60) /* 60 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Johan Hedberg30883512012-01-04 14:16:21 +0200363static inline void discovery_init(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Johan Hedbergff9ef572012-01-04 14:23:45 +0200365 hdev->discovery.state = DISCOVERY_STOPPED;
Johan Hedberg30883512012-01-04 14:16:21 +0200366 INIT_LIST_HEAD(&hdev->discovery.all);
367 INIT_LIST_HEAD(&hdev->discovery.unknown);
368 INIT_LIST_HEAD(&hdev->discovery.resolve);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200371bool hci_discovery_active(struct hci_dev *hdev);
372
Johan Hedbergff9ef572012-01-04 14:23:45 +0200373void hci_discovery_set_state(struct hci_dev *hdev, int state);
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375static inline int inquiry_cache_empty(struct hci_dev *hdev)
376{
Johan Hedberg30883512012-01-04 14:16:21 +0200377 return list_empty(&hdev->discovery.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380static inline long inquiry_cache_age(struct hci_dev *hdev)
381{
Johan Hedberg30883512012-01-04 14:16:21 +0200382 struct discovery_state *c = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return jiffies - c->timestamp;
384}
385
386static inline long inquiry_entry_age(struct inquiry_entry *e)
387{
388 return jiffies - e->timestamp;
389}
390
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200391struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev,
392 bdaddr_t *bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +0200393struct inquiry_entry *hci_inquiry_cache_lookup_unknown(struct hci_dev *hdev,
394 bdaddr_t *bdaddr);
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200395struct inquiry_entry *hci_inquiry_cache_lookup_resolve(struct hci_dev *hdev,
396 bdaddr_t *bdaddr,
397 int state);
Johan Hedberga3d4e202012-01-09 00:53:02 +0200398void hci_inquiry_cache_update_resolve(struct hci_dev *hdev,
399 struct inquiry_entry *ie);
Johan Hedberg31754052012-01-04 13:39:52 +0200400bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
Johan Hedberg561aafb2012-01-04 13:31:59 +0200401 bool name_known);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403/* ----- HCI Connections ----- */
404enum {
405 HCI_CONN_AUTH_PEND,
Waldemar Rymarkiewicz19f8def2011-05-31 15:49:25 +0200406 HCI_CONN_REAUTH_PEND,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 HCI_CONN_ENCRYPT_PEND,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200408 HCI_CONN_RSWITCH_PEND,
409 HCI_CONN_MODE_CHANGE_PEND,
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400410 HCI_CONN_SCO_SETUP_PEND,
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -0300411 HCI_CONN_LE_SMP_PEND,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412};
413
414static inline void hci_conn_hash_init(struct hci_dev *hdev)
415{
416 struct hci_conn_hash *h = &hdev->conn_hash;
417 INIT_LIST_HEAD(&h->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 h->acl_num = 0;
419 h->sco_num = 0;
Gustavo F. Padovandc8ed672011-12-14 20:56:12 -0200420 h->le_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423static inline void hci_conn_hash_add(struct hci_dev *hdev, struct hci_conn *c)
424{
425 struct hci_conn_hash *h = &hdev->conn_hash;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200426 list_add_rcu(&c->list, &h->list);
Ville Tervofcd89c02011-02-10 22:38:47 -0300427 switch (c->type) {
428 case ACL_LINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 h->acl_num++;
Ville Tervofcd89c02011-02-10 22:38:47 -0300430 break;
431 case LE_LINK:
432 h->le_num++;
433 break;
434 case SCO_LINK:
435 case ESCO_LINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 h->sco_num++;
Ville Tervofcd89c02011-02-10 22:38:47 -0300437 break;
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
441static inline void hci_conn_hash_del(struct hci_dev *hdev, struct hci_conn *c)
442{
443 struct hci_conn_hash *h = &hdev->conn_hash;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200444
445 list_del_rcu(&c->list);
446 synchronize_rcu();
447
Ville Tervofcd89c02011-02-10 22:38:47 -0300448 switch (c->type) {
449 case ACL_LINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 h->acl_num--;
Ville Tervofcd89c02011-02-10 22:38:47 -0300451 break;
452 case LE_LINK:
453 h->le_num--;
454 break;
455 case SCO_LINK:
456 case ESCO_LINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 h->sco_num--;
Ville Tervofcd89c02011-02-10 22:38:47 -0300458 break;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +0300462static inline unsigned int hci_conn_num(struct hci_dev *hdev, __u8 type)
463{
464 struct hci_conn_hash *h = &hdev->conn_hash;
465 switch (type) {
466 case ACL_LINK:
467 return h->acl_num;
468 case LE_LINK:
469 return h->le_num;
470 case SCO_LINK:
471 case ESCO_LINK:
472 return h->sco_num;
473 default:
474 return 0;
475 }
476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478static inline struct hci_conn *hci_conn_hash_lookup_handle(struct hci_dev *hdev,
Szymon Jancadc42662011-02-17 16:42:00 +0100479 __u16 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct hci_conn_hash *h = &hdev->conn_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 struct hci_conn *c;
483
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200484 rcu_read_lock();
485
486 list_for_each_entry_rcu(c, &h->list, list) {
487 if (c->handle == handle) {
488 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return c;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200492 rcu_read_unlock();
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return NULL;
495}
496
497static inline struct hci_conn *hci_conn_hash_lookup_ba(struct hci_dev *hdev,
Szymon Jancadc42662011-02-17 16:42:00 +0100498 __u8 type, bdaddr_t *ba)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct hci_conn_hash *h = &hdev->conn_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct hci_conn *c;
502
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200503 rcu_read_lock();
504
505 list_for_each_entry_rcu(c, &h->list, list) {
506 if (c->type == type && !bacmp(&c->dst, ba)) {
507 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return c;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200511
512 rcu_read_unlock();
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return NULL;
515}
516
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200517static inline struct hci_conn *hci_conn_hash_lookup_state(struct hci_dev *hdev,
Szymon Jancadc42662011-02-17 16:42:00 +0100518 __u8 type, __u16 state)
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200519{
520 struct hci_conn_hash *h = &hdev->conn_hash;
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200521 struct hci_conn *c;
522
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200523 rcu_read_lock();
524
525 list_for_each_entry_rcu(c, &h->list, list) {
526 if (c->type == type && c->state == state) {
527 rcu_read_unlock();
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200528 return c;
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200529 }
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200530 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200531
532 rcu_read_unlock();
533
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200534 return NULL;
535}
536
537void hci_acl_connect(struct hci_conn *conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538void hci_acl_disconn(struct hci_conn *conn, __u8 reason);
539void hci_add_sco(struct hci_conn *conn, __u16 handle);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200540void hci_setup_sync(struct hci_conn *conn, __u16 handle);
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400541void hci_sco_setup(struct hci_conn *conn, __u8 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200544int hci_conn_del(struct hci_conn *conn);
545void hci_conn_hash_flush(struct hci_dev *hdev);
546void hci_conn_check_pending(struct hci_dev *hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200548struct hci_chan *hci_chan_create(struct hci_conn *conn);
549int hci_chan_del(struct hci_chan *chan);
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200550void hci_chan_list_flush(struct hci_conn *conn);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200551
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200552struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst,
553 __u8 sec_level, __u8 auth_type);
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200554int hci_conn_check_link_mode(struct hci_conn *conn);
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200555int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level);
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100556int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557int hci_conn_change_link_key(struct hci_conn *conn);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100558int hci_conn_switch_role(struct hci_conn *conn, __u8 role);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700560void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700562void hci_conn_hold_device(struct hci_conn *conn);
563void hci_conn_put_device(struct hci_conn *conn);
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565static inline void hci_conn_hold(struct hci_conn *conn)
566{
567 atomic_inc(&conn->refcnt);
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300568 cancel_delayed_work_sync(&conn->disc_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571static inline void hci_conn_put(struct hci_conn *conn)
572{
573 if (atomic_dec_and_test(&conn->refcnt)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200574 unsigned long timeo;
Vinicius Costa Gomes454d48f2011-08-19 21:06:52 -0300575 if (conn->type == ACL_LINK || conn->type == LE_LINK) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200576 del_timer(&conn->idle_timer);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200577 if (conn->state == BT_CONNECTED) {
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200578 timeo = msecs_to_jiffies(conn->disc_timeout);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200579 if (!conn->out)
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200580 timeo *= 2;
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200581 } else {
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200582 timeo = msecs_to_jiffies(10);
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200583 }
584 } else {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200585 timeo = msecs_to_jiffies(10);
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200586 }
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300587 cancel_delayed_work_sync(&conn->disc_work);
588 queue_delayed_work(conn->hdev->workqueue,
Vinicius Costa Gomes19317822012-01-04 11:57:17 -0300589 &conn->disc_work, timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/* ----- HCI Devices ----- */
David Herrmanndc946bd2012-01-07 15:47:24 +0100594static inline void hci_dev_put(struct hci_dev *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
David Herrmann4c724c72012-01-07 15:47:23 +0100596 put_device(&d->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
David Herrmanndc946bd2012-01-07 15:47:24 +0100599static inline struct hci_dev *hci_dev_hold(struct hci_dev *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
David Herrmann4c724c72012-01-07 15:47:23 +0100601 get_device(&d->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return d;
603}
604
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300605#define hci_dev_lock(d) mutex_lock(&d->lock)
606#define hci_dev_unlock(d) mutex_unlock(&d->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608struct hci_dev *hci_dev_get(int index);
609struct hci_dev *hci_get_route(bdaddr_t *src, bdaddr_t *dst);
610
611struct hci_dev *hci_alloc_dev(void);
612void hci_free_dev(struct hci_dev *hdev);
613int hci_register_dev(struct hci_dev *hdev);
David Herrmann59735632011-10-26 10:43:19 +0200614void hci_unregister_dev(struct hci_dev *hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615int hci_suspend_dev(struct hci_dev *hdev);
616int hci_resume_dev(struct hci_dev *hdev);
617int hci_dev_open(__u16 dev);
618int hci_dev_close(__u16 dev);
619int hci_dev_reset(__u16 dev);
620int hci_dev_reset_stat(__u16 dev);
621int hci_dev_cmd(unsigned int cmd, void __user *arg);
622int hci_get_dev_list(void __user *arg);
623int hci_get_dev_info(void __user *arg);
624int hci_get_conn_list(void __user *arg);
625int hci_get_conn_info(struct hci_dev *hdev, void __user *arg);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200626int hci_get_auth_info(struct hci_dev *hdev, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627int hci_inquiry(void __user *arg);
628
Johan Hedbergf0358562010-05-18 13:20:32 +0200629struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr);
630int hci_blacklist_clear(struct hci_dev *hdev);
Antti Julkub2a66aa2011-06-15 12:01:14 +0300631int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr);
632int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr);
Johan Hedbergf0358562010-05-18 13:20:32 +0200633
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200634int hci_uuids_clear(struct hci_dev *hdev);
635
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200636int hci_link_keys_clear(struct hci_dev *hdev);
637struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr);
Johan Hedbergd25e28a2011-04-28 11:28:59 -0700638int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
639 bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -0300640struct link_key *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8]);
641struct link_key *hci_find_link_key_type(struct hci_dev *hdev,
642 bdaddr_t *bdaddr, u8 type);
643int hci_add_ltk(struct hci_dev *hdev, int new_key, bdaddr_t *bdaddr,
Vinicius Costa Gomes726b4ff2011-07-08 18:31:45 -0300644 u8 key_size, __le16 ediv, u8 rand[8], u8 ltk[16]);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200645int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr);
646
Szymon Janc2763eda2011-03-22 13:12:22 +0100647int hci_remote_oob_data_clear(struct hci_dev *hdev);
648struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
649 bdaddr_t *bdaddr);
650int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash,
651 u8 *randomizer);
652int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr);
653
Andre Guedes35815082011-05-26 16:23:53 -0300654#define ADV_CLEAR_TIMEOUT (3*60*HZ) /* Three minutes */
Andre Guedes76c86862011-05-26 16:23:50 -0300655int hci_adv_entries_clear(struct hci_dev *hdev);
656struct adv_entry *hci_find_adv_entry(struct hci_dev *hdev, bdaddr_t *bdaddr);
657int hci_add_adv_entry(struct hci_dev *hdev,
658 struct hci_ev_le_advertising_info *ev);
659
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200660void hci_del_off_timer(struct hci_dev *hdev);
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb);
663
Marcel Holtmann76bca882009-11-18 00:40:39 +0100664int hci_recv_frame(struct sk_buff *skb);
Marcel Holtmannef222012007-07-11 06:42:04 +0200665int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count);
Suraj Sumangala99811512010-07-14 13:02:19 +0530666int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count);
Marcel Holtmannef222012007-07-11 06:42:04 +0200667
David Herrmann0ac7e702011-10-08 14:58:47 +0200668void hci_init_sysfs(struct hci_dev *hdev);
David Herrmannce242972011-10-08 14:58:48 +0200669int hci_add_sysfs(struct hci_dev *hdev);
670void hci_del_sysfs(struct hci_dev *hdev);
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700671void hci_conn_init_sysfs(struct hci_conn *conn);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200672void hci_conn_add_sysfs(struct hci_conn *conn);
673void hci_conn_del_sysfs(struct hci_conn *conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200675#define SET_HCIDEV_DEV(hdev, pdev) ((hdev)->parent = (pdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677/* ----- LMP capabilities ----- */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200678#define lmp_rswitch_capable(dev) ((dev)->features[0] & LMP_RSWITCH)
679#define lmp_encrypt_capable(dev) ((dev)->features[0] & LMP_ENCRYPT)
680#define lmp_sniff_capable(dev) ((dev)->features[0] & LMP_SNIFF)
681#define lmp_sniffsubr_capable(dev) ((dev)->features[5] & LMP_SNIFF_SUBR)
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200682#define lmp_esco_capable(dev) ((dev)->features[3] & LMP_ESCO)
Marcel Holtmann769be972008-07-14 20:13:49 +0200683#define lmp_ssp_capable(dev) ((dev)->features[6] & LMP_SIMPLE_PAIR)
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +0200684#define lmp_no_flush_capable(dev) ((dev)->features[6] & LMP_NO_FLUSH)
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300685#define lmp_le_capable(dev) ((dev)->features[4] & LMP_LE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Andre Guedeseead27d2011-06-30 19:20:55 -0300687/* ----- Extended LMP capabilities ----- */
Andre Guedes59e29402011-12-30 10:34:03 -0300688#define lmp_host_le_capable(dev) ((dev)->host_features[0] & LMP_HOST_LE)
Andre Guedeseead27d2011-06-30 19:20:55 -0300689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690/* ----- HCI protocols ----- */
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200691static inline int hci_proto_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr,
692 __u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200694 switch (type) {
695 case ACL_LINK:
696 return l2cap_connect_ind(hdev, bdaddr);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100697
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200698 case SCO_LINK:
699 case ESCO_LINK:
700 return sco_connect_ind(hdev, bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200702 default:
703 BT_ERR("unknown link type %d", type);
704 return -EINVAL;
705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708static inline void hci_proto_connect_cfm(struct hci_conn *conn, __u8 status)
709{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200710 switch (conn->type) {
711 case ACL_LINK:
712 case LE_LINK:
713 l2cap_connect_cfm(conn, status);
714 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200716 case SCO_LINK:
717 case ESCO_LINK:
718 sco_connect_cfm(conn, status);
719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200721 default:
722 BT_ERR("unknown link type %d", conn->type);
723 break;
724 }
Johan Hedberge9a416b2011-02-19 12:05:56 -0300725
726 if (conn->connect_cfm_cb)
727 conn->connect_cfm_cb(conn, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Marcel Holtmann2950f212009-02-12 14:02:50 +0100730static inline int hci_proto_disconn_ind(struct hci_conn *conn)
731{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200732 if (conn->type != ACL_LINK && conn->type != LE_LINK)
733 return HCI_ERROR_REMOTE_USER_TERM;
Marcel Holtmann2950f212009-02-12 14:02:50 +0100734
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200735 return l2cap_disconn_ind(conn);
Marcel Holtmann2950f212009-02-12 14:02:50 +0100736}
737
738static inline void hci_proto_disconn_cfm(struct hci_conn *conn, __u8 reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200740 switch (conn->type) {
741 case ACL_LINK:
742 case LE_LINK:
743 l2cap_disconn_cfm(conn, reason);
744 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200746 case SCO_LINK:
747 case ESCO_LINK:
748 sco_disconn_cfm(conn, reason);
749 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200751 default:
752 BT_ERR("unknown link type %d", conn->type);
753 break;
754 }
Johan Hedberge9a416b2011-02-19 12:05:56 -0300755
756 if (conn->disconn_cfm_cb)
757 conn->disconn_cfm_cb(conn, reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760static inline void hci_proto_auth_cfm(struct hci_conn *conn, __u8 status)
761{
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100762 __u8 encrypt;
763
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200764 if (conn->type != ACL_LINK && conn->type != LE_LINK)
765 return;
766
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100767 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend))
768 return;
769
770 encrypt = (conn->link_mode & HCI_LM_ENCRYPT) ? 0x01 : 0x00;
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200771 l2cap_security_cfm(conn, status, encrypt);
Johan Hedberge9a416b2011-02-19 12:05:56 -0300772
773 if (conn->security_cfm_cb)
774 conn->security_cfm_cb(conn, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200777static inline void hci_proto_encrypt_cfm(struct hci_conn *conn, __u8 status,
778 __u8 encrypt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200780 if (conn->type != ACL_LINK && conn->type != LE_LINK)
781 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Ulisses Furquim686ebf22011-12-21 10:11:33 -0200783 l2cap_security_cfm(conn, status, encrypt);
Johan Hedberge9a416b2011-02-19 12:05:56 -0300784
785 if (conn->security_cfm_cb)
786 conn->security_cfm_cb(conn, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789/* ----- HCI callbacks ----- */
790struct hci_cb {
791 struct list_head list;
792
793 char *name;
794
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200795 void (*security_cfm) (struct hci_conn *conn, __u8 status,
796 __u8 encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 void (*key_change_cfm) (struct hci_conn *conn, __u8 status);
798 void (*role_switch_cfm) (struct hci_conn *conn, __u8 status, __u8 role);
799};
800
801static inline void hci_auth_cfm(struct hci_conn *conn, __u8 status)
802{
803 struct list_head *p;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100804 __u8 encrypt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 hci_proto_auth_cfm(conn, status);
807
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100808 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend))
809 return;
810
811 encrypt = (conn->link_mode & HCI_LM_ENCRYPT) ? 0x01 : 0x00;
812
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200813 read_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 list_for_each(p, &hci_cb_list) {
815 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100816 if (cb->security_cfm)
817 cb->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200819 read_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200822static inline void hci_encrypt_cfm(struct hci_conn *conn, __u8 status,
823 __u8 encrypt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 struct list_head *p;
826
Marcel Holtmann435fef22009-02-09 03:55:28 +0100827 if (conn->sec_level == BT_SECURITY_SDP)
828 conn->sec_level = BT_SECURITY_LOW;
829
Vinicius Costa Gomes88167ae2011-06-09 18:50:51 -0300830 if (conn->pending_sec_level > conn->sec_level)
831 conn->sec_level = conn->pending_sec_level;
832
Marcel Holtmann9719f8a2008-07-14 20:13:45 +0200833 hci_proto_encrypt_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200835 read_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 list_for_each(p, &hci_cb_list) {
837 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100838 if (cb->security_cfm)
839 cb->security_cfm(conn, status, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200841 read_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844static inline void hci_key_change_cfm(struct hci_conn *conn, __u8 status)
845{
846 struct list_head *p;
847
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200848 read_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 list_for_each(p, &hci_cb_list) {
850 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
851 if (cb->key_change_cfm)
852 cb->key_change_cfm(conn, status);
853 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200854 read_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Waldemar Rymarkiewicz5a9d0a32011-06-07 11:18:06 +0200857static inline void hci_role_switch_cfm(struct hci_conn *conn, __u8 status,
858 __u8 role)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 struct list_head *p;
861
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200862 read_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 list_for_each(p, &hci_cb_list) {
864 struct hci_cb *cb = list_entry(p, struct hci_cb, list);
865 if (cb->role_switch_cfm)
866 cb->role_switch_cfm(conn, status, role);
867 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200868 read_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
871int hci_register_cb(struct hci_cb *hcb);
872int hci_unregister_cb(struct hci_cb *hcb);
873
874int hci_register_notifier(struct notifier_block *nb);
875int hci_unregister_notifier(struct notifier_block *nb);
876
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200877int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200878void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags);
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -0300879void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200881void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data);
884
885/* ----- HCI Sockets ----- */
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200886void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb,
887 struct sock *skip_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Johan Hedberg03811012010-12-08 00:21:06 +0200889/* Management interface */
890int mgmt_control(struct sock *sk, struct msghdr *msg, size_t len);
Johan Hedberg744cf192011-11-08 20:40:14 +0200891int mgmt_index_added(struct hci_dev *hdev);
892int mgmt_index_removed(struct hci_dev *hdev);
893int mgmt_powered(struct hci_dev *hdev, u8 powered);
894int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable);
895int mgmt_connectable(struct hci_dev *hdev, u8 connectable);
896int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status);
897int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
898 u8 persistent);
Johan Hedbergafc747a2012-01-15 18:11:07 +0200899int mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Johan Hedberg48264f02011-11-09 13:58:58 +0200900 u8 addr_type);
Johan Hedbergafc747a2012-01-15 18:11:07 +0200901int mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
902 u8 link_type, u8 addr_type);
Johan Hedberg37d9ef72011-11-10 15:54:39 +0200903int mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 status);
Johan Hedberg48264f02011-11-09 13:58:58 +0200904int mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
905 u8 addr_type, u8 status);
Johan Hedberg744cf192011-11-08 20:40:14 +0200906int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure);
907int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Szymon Jancc35938b2011-03-22 13:12:21 +0100908 u8 status);
Johan Hedberg744cf192011-11-08 20:40:14 +0200909int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
910 u8 status);
911int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
912 __le32 value, u8 confirm_hint);
913int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
914 u8 status);
915int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev,
916 bdaddr_t *bdaddr, u8 status);
Brian Gix604086b2011-11-23 08:28:33 -0800917int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr);
918int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
919 u8 status);
920int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev,
921 bdaddr_t *bdaddr, u8 status);
Johan Hedberg744cf192011-11-08 20:40:14 +0200922int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 status);
923int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status);
924int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
925 u8 *randomizer, u8 status);
Johan Hedberg48264f02011-11-09 13:58:58 +0200926int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Johan Hedberg561aafb2012-01-04 13:31:59 +0200927 u8 addr_type, u8 *dev_class, s8 rssi,
Andre Guedes7d262f82012-01-10 18:20:49 -0300928 u8 cfm_name, u8 *eir, u8 eir_len);
Johan Hedberg744cf192011-11-08 20:40:14 +0200929int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *name);
Andre Guedes7a135102011-11-09 17:14:25 -0300930int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status);
Andre Guedese6d465c2011-11-09 17:14:26 -0300931int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status);
Johan Hedberg744cf192011-11-08 20:40:14 +0200932int mgmt_discovering(struct hci_dev *hdev, u8 discovering);
933int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr);
934int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr);
Johan Hedberg03811012010-12-08 00:21:06 +0200935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936/* HCI info for socket */
937#define hci_pi(sk) ((struct hci_pinfo *) sk)
938
Johan Hedberg14c0b602011-12-15 00:47:37 +0200939/* HCI socket flags */
940#define HCI_PI_MGMT_INIT 0
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942struct hci_pinfo {
943 struct bt_sock bt;
944 struct hci_dev *hdev;
945 struct hci_filter filter;
946 __u32 cmsg_mask;
Johan Hedbergc02178d2010-12-08 00:21:05 +0200947 unsigned short channel;
Johan Hedberg14c0b602011-12-15 00:47:37 +0200948 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949};
950
951/* HCI security filter */
952#define HCI_SFLT_MAX_OGF 5
953
954struct hci_sec_filter {
955 __u32 type_mask;
956 __u32 event_mask[2];
957 __u32 ocf_mask[HCI_SFLT_MAX_OGF + 1][4];
958};
959
960/* ----- HCI requests ----- */
961#define HCI_REQ_DONE 0
962#define HCI_REQ_PEND 1
963#define HCI_REQ_CANCELED 2
964
Thomas Gleixnera6a67ef2009-07-26 08:18:19 +0000965#define hci_req_lock(d) mutex_lock(&d->req_lock)
966#define hci_req_unlock(d) mutex_unlock(&d->req_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Johan Hedberg23bb5762010-12-21 23:01:27 +0200968void hci_req_complete(struct hci_dev *hdev, __u16 cmd, int result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200970void hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max,
971 u16 latency, u16 to_multiplier);
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300972void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8],
973 __u8 ltk[16]);
974void hci_le_ltk_reply(struct hci_conn *conn, u8 ltk[16]);
975void hci_le_ltk_neg_reply(struct hci_conn *conn);
976
Andre Guedes2519a1f2011-11-07 11:45:24 -0300977int hci_do_inquiry(struct hci_dev *hdev, u8 length);
Andre Guedes023d50492011-11-04 14:16:52 -0300978int hci_cancel_inquiry(struct hci_dev *hdev);
Andre Guedes2519a1f2011-11-07 11:45:24 -0300979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980#endif /* __HCI_CORE_H */