blob: 70bdb7d1d6df8c778719bae9a4d8868560aa59f1 [file] [log] [blame]
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001/*
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
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090015 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
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090020 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/* Bluetooth HCI connection handling. */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
28
29#include <linux/types.h>
30#include <linux/errno.h>
31#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
33#include <linux/poll.h>
34#include <linux/fcntl.h>
35#include <linux/init.h>
36#include <linux/skbuff.h>
37#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <net/sock.h>
39
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/unaligned.h>
42
43#include <net/bluetooth/bluetooth.h>
44#include <net/bluetooth/hci_core.h>
Vinicius Costa Gomesc031edc2012-08-23 21:32:44 -030045#include <net/bluetooth/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Ville Tervofcd89c02011-02-10 22:38:47 -030047static void hci_le_connect(struct hci_conn *conn)
48{
49 struct hci_dev *hdev = conn->hdev;
50 struct hci_cp_le_create_conn cp;
51
52 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +020053 conn->out = true;
Vinicius Costa Gomesb92a6222011-02-10 22:38:52 -030054 conn->link_mode |= HCI_LM_MASTER;
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -030055 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -030056
57 memset(&cp, 0, sizeof(cp));
Anderson Lizardo0e833912011-07-27 18:40:09 -030058 cp.scan_interval = cpu_to_le16(0x0060);
59 cp.scan_window = cpu_to_le16(0x0030);
Ville Tervofcd89c02011-02-10 22:38:47 -030060 bacpy(&cp.peer_addr, &conn->dst);
Andre Guedes6d3ce0e2011-05-31 14:20:57 -030061 cp.peer_addr_type = conn->dst_type;
Anderson Lizardo0e833912011-07-27 18:40:09 -030062 cp.conn_interval_min = cpu_to_le16(0x0028);
63 cp.conn_interval_max = cpu_to_le16(0x0038);
64 cp.supervision_timeout = cpu_to_le16(0x002a);
65 cp.min_ce_len = cpu_to_le16(0x0000);
66 cp.max_ce_len = cpu_to_le16(0x0000);
Ville Tervofcd89c02011-02-10 22:38:47 -030067
68 hci_send_cmd(hdev, HCI_OP_LE_CREATE_CONN, sizeof(cp), &cp);
69}
70
71static void hci_le_connect_cancel(struct hci_conn *conn)
72{
73 hci_send_cmd(conn->hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 0, NULL);
74}
75
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020076void hci_acl_connect(struct hci_conn *conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 struct hci_dev *hdev = conn->hdev;
79 struct inquiry_entry *ie;
80 struct hci_cp_create_conn cp;
81
Andrei Emeltchenko42d2d872012-02-17 11:40:57 +020082 BT_DBG("hcon %p", conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +020085 conn->out = true;
Marcel Holtmanna8746412008-07-14 20:13:46 +020086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 conn->link_mode = HCI_LM_MASTER;
88
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020089 conn->attempt++;
90
Marcel Holtmanne4e8e372008-07-14 20:13:47 +020091 conn->link_policy = hdev->link_policy;
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 memset(&cp, 0, sizeof(cp));
94 bacpy(&cp.bdaddr, &conn->dst);
95 cp.pscan_rep_mode = 0x02;
96
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020097 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
98 if (ie) {
Marcel Holtmann41a96212008-07-14 20:13:48 +020099 if (inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) {
100 cp.pscan_rep_mode = ie->data.pscan_rep_mode;
101 cp.pscan_mode = ie->data.pscan_mode;
102 cp.clock_offset = ie->data.clock_offset |
103 cpu_to_le16(0x8000);
104 }
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 memcpy(conn->dev_class, ie->data.dev_class, 3);
Johan Hedberg58a681e2012-01-16 06:47:28 +0200107 if (ie->data.ssp_mode > 0)
108 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110
Marcel Holtmanna8746412008-07-14 20:13:46 +0200111 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER))
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200113 cp.role_switch = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 else
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200115 cp.role_switch = 0x00;
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200116
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200117 hci_send_cmd(hdev, HCI_OP_CREATE_CONN, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200120static void hci_acl_connect_cancel(struct hci_conn *conn)
121{
122 struct hci_cp_create_conn_cancel cp;
123
124 BT_DBG("%p", conn);
125
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +0200126 if (conn->hdev->hci_ver < BLUETOOTH_VER_1_2)
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200127 return;
128
129 bacpy(&cp.bdaddr, &conn->dst);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200130 hci_send_cmd(conn->hdev, HCI_OP_CREATE_CONN_CANCEL, sizeof(cp), &cp);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133void hci_acl_disconn(struct hci_conn *conn, __u8 reason)
134{
135 struct hci_cp_disconnect cp;
136
137 BT_DBG("%p", conn);
138
139 conn->state = BT_DISCONN;
140
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700141 cp.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 cp.reason = reason;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200143 hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146void hci_add_sco(struct hci_conn *conn, __u16 handle)
147{
148 struct hci_dev *hdev = conn->hdev;
149 struct hci_cp_add_sco cp;
150
151 BT_DBG("%p", conn);
152
153 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +0200154 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Marcel Holtmannefc76882009-02-06 09:13:37 +0100156 conn->attempt++;
157
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700158 cp.handle = cpu_to_le16(handle);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200159 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200161 hci_send_cmd(hdev, HCI_OP_ADD_SCO, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200164void hci_setup_sync(struct hci_conn *conn, __u16 handle)
165{
166 struct hci_dev *hdev = conn->hdev;
167 struct hci_cp_setup_sync_conn cp;
168
169 BT_DBG("%p", conn);
170
171 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +0200172 conn->out = true;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200173
Marcel Holtmannefc76882009-02-06 09:13:37 +0100174 conn->attempt++;
175
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200176 cp.handle = cpu_to_le16(handle);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200177 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200178
179 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
180 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
181 cp.max_latency = cpu_to_le16(0xffff);
182 cp.voice_setting = cpu_to_le16(hdev->voice_setting);
183 cp.retrans_effort = 0xff;
184
185 hci_send_cmd(hdev, HCI_OP_SETUP_SYNC_CONN, sizeof(cp), &cp);
186}
187
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200188void hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max,
189 u16 latency, u16 to_multiplier)
190{
191 struct hci_cp_le_conn_update cp;
192 struct hci_dev *hdev = conn->hdev;
193
194 memset(&cp, 0, sizeof(cp));
195
196 cp.handle = cpu_to_le16(conn->handle);
197 cp.conn_interval_min = cpu_to_le16(min);
198 cp.conn_interval_max = cpu_to_le16(max);
199 cp.conn_latency = cpu_to_le16(latency);
200 cp.supervision_timeout = cpu_to_le16(to_multiplier);
201 cp.min_ce_len = cpu_to_le16(0x0001);
202 cp.max_ce_len = cpu_to_le16(0x0001);
203
204 hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp);
205}
206EXPORT_SYMBOL(hci_le_conn_update);
207
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300208void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8],
209 __u8 ltk[16])
210{
211 struct hci_dev *hdev = conn->hdev;
212 struct hci_cp_le_start_enc cp;
213
214 BT_DBG("%p", conn);
215
216 memset(&cp, 0, sizeof(cp));
217
218 cp.handle = cpu_to_le16(conn->handle);
219 memcpy(cp.ltk, ltk, sizeof(cp.ltk));
220 cp.ediv = ediv;
Anderson Briglia51beabd2011-09-19 14:41:09 -0400221 memcpy(cp.rand, rand, sizeof(cp.rand));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300222
223 hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp);
224}
225EXPORT_SYMBOL(hci_le_start_enc);
226
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300227void hci_le_ltk_neg_reply(struct hci_conn *conn)
228{
229 struct hci_dev *hdev = conn->hdev;
230 struct hci_cp_le_ltk_neg_reply cp;
231
232 BT_DBG("%p", conn);
233
234 memset(&cp, 0, sizeof(cp));
235
236 cp.handle = cpu_to_le16(conn->handle);
237
238 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(cp), &cp);
239}
240
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400241/* Device _must_ be locked */
242void hci_sco_setup(struct hci_conn *conn, __u8 status)
243{
244 struct hci_conn *sco = conn->link;
245
246 BT_DBG("%p", conn);
247
248 if (!sco)
249 return;
250
251 if (!status) {
252 if (lmp_esco_capable(conn->hdev))
253 hci_setup_sync(sco, conn->handle);
254 else
255 hci_add_sco(sco, conn->handle);
256 } else {
257 hci_proto_connect_cfm(sco, status);
258 hci_conn_del(sco);
259 }
260}
261
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300262static void hci_conn_timeout(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300264 struct hci_conn *conn = container_of(work, struct hci_conn,
265 disc_work.work);
Marcel Holtmann2950f212009-02-12 14:02:50 +0100266 __u8 reason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Andrei Emeltchenkoe05dcc32012-02-17 11:40:56 +0200268 BT_DBG("conn %p state %s", conn, state_to_string(conn->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if (atomic_read(&conn->refcnt))
271 return;
272
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200273 switch (conn->state) {
274 case BT_CONNECT:
Marcel Holtmann769be972008-07-14 20:13:49 +0200275 case BT_CONNECT2:
Ville Tervofcd89c02011-02-10 22:38:47 -0300276 if (conn->out) {
277 if (conn->type == ACL_LINK)
278 hci_acl_connect_cancel(conn);
279 else if (conn->type == LE_LINK)
280 hci_le_connect_cancel(conn);
281 }
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200282 break;
Marcel Holtmann769be972008-07-14 20:13:49 +0200283 case BT_CONFIG:
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900284 case BT_CONNECTED:
Marcel Holtmann2950f212009-02-12 14:02:50 +0100285 reason = hci_proto_disconn_ind(conn);
286 hci_acl_disconn(conn, reason);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200287 break;
288 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 conn->state = BT_CLOSED;
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200290 break;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Gustavo F. Padovan416dc942011-12-07 13:24:33 -0200294/* Enter sniff mode */
295static void hci_conn_enter_sniff_mode(struct hci_conn *conn)
296{
297 struct hci_dev *hdev = conn->hdev;
298
299 BT_DBG("conn %p mode %d", conn, conn->mode);
300
301 if (test_bit(HCI_RAW, &hdev->flags))
302 return;
303
304 if (!lmp_sniff_capable(hdev) || !lmp_sniff_capable(conn))
305 return;
306
307 if (conn->mode != HCI_CM_ACTIVE || !(conn->link_policy & HCI_LP_SNIFF))
308 return;
309
310 if (lmp_sniffsubr_capable(hdev) && lmp_sniffsubr_capable(conn)) {
311 struct hci_cp_sniff_subrate cp;
312 cp.handle = cpu_to_le16(conn->handle);
313 cp.max_latency = cpu_to_le16(0);
314 cp.min_remote_timeout = cpu_to_le16(0);
315 cp.min_local_timeout = cpu_to_le16(0);
316 hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp);
317 }
318
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200319 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
Gustavo F. Padovan416dc942011-12-07 13:24:33 -0200320 struct hci_cp_sniff_mode cp;
321 cp.handle = cpu_to_le16(conn->handle);
322 cp.max_interval = cpu_to_le16(hdev->sniff_max_interval);
323 cp.min_interval = cpu_to_le16(hdev->sniff_min_interval);
324 cp.attempt = cpu_to_le16(4);
325 cp.timeout = cpu_to_le16(1);
326 hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp);
327 }
328}
329
Marcel Holtmann04837f62006-07-03 10:02:33 +0200330static void hci_conn_idle(unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Marcel Holtmann04837f62006-07-03 10:02:33 +0200332 struct hci_conn *conn = (void *) arg;
333
334 BT_DBG("conn %p mode %d", conn, conn->mode);
335
336 hci_conn_enter_sniff_mode(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Johan Hedberg9f616562011-04-28 11:28:54 -0700339static void hci_conn_auto_accept(unsigned long arg)
340{
341 struct hci_conn *conn = (void *) arg;
342 struct hci_dev *hdev = conn->hdev;
343
Johan Hedberg9f616562011-04-28 11:28:54 -0700344 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY, sizeof(conn->dst),
345 &conn->dst);
Johan Hedberg9f616562011-04-28 11:28:54 -0700346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst)
349{
350 struct hci_conn *conn;
351
352 BT_DBG("%s dst %s", hdev->name, batostr(dst));
353
Andre Guedescb601d72012-01-30 09:22:09 -0300354 conn = kzalloc(sizeof(struct hci_conn), GFP_KERNEL);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200355 if (!conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 bacpy(&conn->dst, dst);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200359 conn->hdev = hdev;
360 conn->type = type;
361 conn->mode = HCI_CM_ACTIVE;
362 conn->state = BT_OPEN;
Andrei Emeltchenko93f19c92009-09-03 12:34:19 +0300363 conn->auth_type = HCI_AT_GENERAL_BONDING;
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200364 conn->io_capability = hdev->io_capability;
Johan Hedberga9583552011-02-19 12:06:01 -0300365 conn->remote_auth = 0xff;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200366 conn->key_type = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Johan Hedberg58a681e2012-01-16 06:47:28 +0200368 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200369 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200370
Marcel Holtmanna8746412008-07-14 20:13:46 +0200371 switch (type) {
372 case ACL_LINK:
373 conn->pkt_type = hdev->pkt_type & ACL_PTYPE_MASK;
374 break;
375 case SCO_LINK:
376 if (lmp_esco_capable(hdev))
Marcel Holtmannefc76882009-02-06 09:13:37 +0100377 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
378 (hdev->esco_type & EDR_ESCO_MASK);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200379 else
380 conn->pkt_type = hdev->pkt_type & SCO_PTYPE_MASK;
381 break;
382 case ESCO_LINK:
Marcel Holtmannefc76882009-02-06 09:13:37 +0100383 conn->pkt_type = hdev->esco_type & ~EDR_ESCO_MASK;
Marcel Holtmanna8746412008-07-14 20:13:46 +0200384 break;
385 }
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 skb_queue_head_init(&conn->data_q);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200388
Marcel Holtmann70c1f202012-02-22 12:06:43 +0100389 INIT_LIST_HEAD(&conn->chan_list);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200390
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300391 INIT_DELAYED_WORK(&conn->disc_work, hci_conn_timeout);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800392 setup_timer(&conn->idle_timer, hci_conn_idle, (unsigned long)conn);
Johan Hedberg9f616562011-04-28 11:28:54 -0700393 setup_timer(&conn->auto_accept_timer, hci_conn_auto_accept,
394 (unsigned long) conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 atomic_set(&conn->refcnt, 0);
397
398 hci_dev_hold(hdev);
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 hci_conn_hash_add(hdev, conn);
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200401 if (hdev->notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 hdev->notify(hdev, HCI_NOTIFY_CONN_ADD);
403
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700404 atomic_set(&conn->devref, 0);
405
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700406 hci_conn_init_sysfs(conn);
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return conn;
409}
410
411int hci_conn_del(struct hci_conn *conn)
412{
413 struct hci_dev *hdev = conn->hdev;
414
415 BT_DBG("%s conn %p handle %d", hdev->name, conn, conn->handle);
416
Marcel Holtmann04837f62006-07-03 10:02:33 +0200417 del_timer(&conn->idle_timer);
418
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300419 cancel_delayed_work_sync(&conn->disc_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Johan Hedberg9f616562011-04-28 11:28:54 -0700421 del_timer(&conn->auto_accept_timer);
422
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200423 if (conn->type == ACL_LINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 struct hci_conn *sco = conn->link;
425 if (sco)
426 sco->link = NULL;
427
428 /* Unacked frames */
429 hdev->acl_cnt += conn->sent;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300430 } else if (conn->type == LE_LINK) {
431 if (hdev->le_pkts)
432 hdev->le_cnt += conn->sent;
433 else
434 hdev->acl_cnt += conn->sent;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200435 } else {
436 struct hci_conn *acl = conn->link;
437 if (acl) {
438 acl->link = NULL;
439 hci_conn_put(acl);
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +0200443
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200444 hci_chan_list_flush(conn);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 hci_conn_hash_del(hdev, conn);
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200447 if (hdev->notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 hdev->notify(hdev, HCI_NOTIFY_CONN_DEL);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +0200449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 skb_queue_purge(&conn->data_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700452 hci_conn_put_device(conn);
Dave Young2ae9a6b2009-02-21 16:13:34 +0800453
Marcel Holtmann384943e2009-05-08 18:20:43 -0700454 hci_dev_put(hdev);
455
Tomas Targownik163f4da2011-06-30 16:30:44 -0300456 if (conn->handle == 0)
457 kfree(conn);
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 0;
460}
461
462struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src)
463{
464 int use_src = bacmp(src, BDADDR_ANY);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200465 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 BT_DBG("%s -> %s", batostr(src), batostr(dst));
468
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200469 read_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200471 list_for_each_entry(d, &hci_dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (!test_bit(HCI_UP, &d->flags) || test_bit(HCI_RAW, &d->flags))
473 continue;
474
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900475 /* Simple routing:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * No source address - find interface with bdaddr != dst
477 * Source address - find interface with bdaddr == src
478 */
479
480 if (use_src) {
481 if (!bacmp(&d->bdaddr, src)) {
482 hdev = d; break;
483 }
484 } else {
485 if (bacmp(&d->bdaddr, dst)) {
486 hdev = d; break;
487 }
488 }
489 }
490
491 if (hdev)
492 hdev = hci_dev_hold(hdev);
493
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200494 read_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return hdev;
496}
497EXPORT_SYMBOL(hci_get_route);
498
Ville Tervofcd89c02011-02-10 22:38:47 -0300499/* Create SCO, ACL or LE connection.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * Device _must_ be locked */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100501struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 struct hci_conn *acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200504 struct hci_conn *sco;
Ville Tervofcd89c02011-02-10 22:38:47 -0300505 struct hci_conn *le;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 BT_DBG("%s dst %s", hdev->name, batostr(dst));
508
Ville Tervofcd89c02011-02-10 22:38:47 -0300509 if (type == LE_LINK) {
Andre Guedeseda42b52011-05-31 14:20:56 -0300510 struct adv_entry *entry;
511
Ville Tervofcd89c02011-02-10 22:38:47 -0300512 le = hci_conn_hash_lookup_ba(hdev, LE_LINK, dst);
Anderson Briglia15c47942011-02-21 15:09:23 -0300513 if (le)
Ville Tervo30e76272011-02-22 16:10:53 -0300514 return ERR_PTR(-EBUSY);
Andre Guedeseda42b52011-05-31 14:20:56 -0300515
516 entry = hci_find_adv_entry(hdev, dst);
517 if (!entry)
518 return ERR_PTR(-EHOSTUNREACH);
519
Anderson Briglia15c47942011-02-21 15:09:23 -0300520 le = hci_conn_add(hdev, LE_LINK, dst);
Ville Tervofcd89c02011-02-10 22:38:47 -0300521 if (!le)
Ville Tervo30e76272011-02-22 16:10:53 -0300522 return ERR_PTR(-ENOMEM);
Andre Guedes893d6752011-05-31 14:20:55 -0300523
Andre Guedeseda42b52011-05-31 14:20:56 -0300524 le->dst_type = entry->bdaddr_type;
525
Andre Guedes893d6752011-05-31 14:20:55 -0300526 hci_le_connect(le);
Ville Tervofcd89c02011-02-10 22:38:47 -0300527
528 hci_conn_hold(le);
529
530 return le;
531 }
532
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200533 acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst);
534 if (!acl) {
535 acl = hci_conn_add(hdev, ACL_LINK, dst);
536 if (!acl)
Johan Hedberg48c7aba2012-02-19 14:06:48 +0200537 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539
540 hci_conn_hold(acl);
541
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200542 if (acl->state == BT_OPEN || acl->state == BT_CLOSED) {
Johan Hedberg765c2a92011-01-19 12:06:52 +0530543 acl->sec_level = BT_SECURITY_LOW;
544 acl->pending_sec_level = sec_level;
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200545 acl->auth_type = auth_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 hci_acl_connect(acl);
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200549 if (type == ACL_LINK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200551
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200552 sco = hci_conn_hash_lookup_ba(hdev, type, dst);
553 if (!sco) {
554 sco = hci_conn_add(hdev, type, dst);
555 if (!sco) {
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200556 hci_conn_put(acl);
Johan Hedberg48c7aba2012-02-19 14:06:48 +0200557 return ERR_PTR(-ENOMEM);
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200560
561 acl->link = sco;
562 sco->link = acl;
563
564 hci_conn_hold(sco);
565
566 if (acl->state == BT_CONNECTED &&
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200567 (sco->state == BT_OPEN || sco->state == BT_CLOSED)) {
Johan Hedberg58a681e2012-01-16 06:47:28 +0200568 set_bit(HCI_CONN_POWER_SAVE, &acl->flags);
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700569 hci_conn_enter_active_mode(acl, BT_POWER_FORCE_ACTIVE_ON);
Nick Pellyc3902162009-11-13 14:16:32 -0800570
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200571 if (test_bit(HCI_CONN_MODE_CHANGE_PEND, &acl->flags)) {
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400572 /* defer SCO setup until mode change completed */
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200573 set_bit(HCI_CONN_SCO_SETUP_PEND, &acl->flags);
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400574 return sco;
575 }
576
577 hci_sco_setup(acl, 0x00);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200578 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200579
580 return sco;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582EXPORT_SYMBOL(hci_connect);
583
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200584/* Check link security requirement */
585int hci_conn_check_link_mode(struct hci_conn *conn)
586{
587 BT_DBG("conn %p", conn);
588
Johan Hedbergaa64a8b2012-01-18 21:33:12 +0200589 if (hci_conn_ssp_enabled(conn) && !(conn->link_mode & HCI_LM_ENCRYPT))
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200590 return 0;
591
592 return 1;
593}
594EXPORT_SYMBOL(hci_conn_check_link_mode);
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/* Authenticate remote device */
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100597static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
599 BT_DBG("conn %p", conn);
600
Johan Hedberg765c2a92011-01-19 12:06:52 +0530601 if (conn->pending_sec_level > sec_level)
602 sec_level = conn->pending_sec_level;
603
Marcel Holtmann96a31832009-02-12 16:23:03 +0100604 if (sec_level > conn->sec_level)
Johan Hedberg765c2a92011-01-19 12:06:52 +0530605 conn->pending_sec_level = sec_level;
Marcel Holtmann96a31832009-02-12 16:23:03 +0100606 else if (conn->link_mode & HCI_LM_AUTH)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return 1;
608
Johan Hedberg65cf6862011-01-19 12:06:49 +0530609 /* Make sure we preserve an existing MITM requirement*/
610 auth_type |= (conn->auth_type & 0x01);
611
Marcel Holtmann96a31832009-02-12 16:23:03 +0100612 conn->auth_type = auth_type;
613
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200614 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct hci_cp_auth_requested cp;
Peter Hurleyb7d05ba2012-01-13 15:11:30 +0100616
617 /* encrypt must be pending if auth is also pending */
618 set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
619
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700620 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200621 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED,
622 sizeof(cp), &cp);
Waldemar Rymarkiewicz19f8def2011-05-31 15:49:25 +0200623 if (conn->key_type != 0xff)
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200624 set_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return 0;
628}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200630/* Encrypt the the link */
631static void hci_conn_encrypt(struct hci_conn *conn)
632{
633 BT_DBG("conn %p", conn);
634
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200635 if (!test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200636 struct hci_cp_set_conn_encrypt cp;
637 cp.handle = cpu_to_le16(conn->handle);
638 cp.encrypt = 0x01;
639 hci_send_cmd(conn->hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
640 &cp);
641 }
642}
643
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100644/* Enable security */
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100645int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 BT_DBG("conn %p", conn);
648
Vinicius Costa Gomesc031edc2012-08-23 21:32:44 -0300649 if (conn->type == LE_LINK)
650 return smp_conn_security(conn, sec_level);
651
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200652 /* For sdp we don't need the link key. */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100653 if (sec_level == BT_SECURITY_SDP)
654 return 1;
655
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200656 /* For non 2.1 devices and low security level we don't need the link
657 key. */
Johan Hedbergaa64a8b2012-01-18 21:33:12 +0200658 if (sec_level == BT_SECURITY_LOW && !hci_conn_ssp_enabled(conn))
Marcel Holtmann3fdca1e2009-04-28 09:04:55 -0700659 return 1;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100660
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200661 /* For other security levels we need the link key. */
662 if (!(conn->link_mode & HCI_LM_AUTH))
663 goto auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200665 /* An authenticated combination key has sufficient security for any
666 security level. */
667 if (conn->key_type == HCI_LK_AUTH_COMBINATION)
668 goto encrypt;
669
670 /* An unauthenticated combination key has sufficient security for
671 security level 1 and 2. */
672 if (conn->key_type == HCI_LK_UNAUTH_COMBINATION &&
673 (sec_level == BT_SECURITY_MEDIUM ||
674 sec_level == BT_SECURITY_LOW))
675 goto encrypt;
676
677 /* A combination key has always sufficient security for the security
678 levels 1 or 2. High security level requires the combination key
679 is generated using maximum PIN code length (16).
680 For pre 2.1 units. */
681 if (conn->key_type == HCI_LK_COMBINATION &&
682 (sec_level != BT_SECURITY_HIGH ||
683 conn->pin_length == 16))
684 goto encrypt;
685
686auth:
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200687 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return 0;
689
Luiz Augusto von Dentz6fdf6582011-06-13 15:37:35 +0300690 if (!hci_conn_auth(conn, sec_level, auth_type))
691 return 0;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100692
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200693encrypt:
694 if (conn->link_mode & HCI_LM_ENCRYPT)
695 return 1;
696
697 hci_conn_encrypt(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return 0;
699}
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100700EXPORT_SYMBOL(hci_conn_security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200702/* Check secure link requirement */
703int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level)
704{
705 BT_DBG("conn %p", conn);
706
707 if (sec_level != BT_SECURITY_HIGH)
708 return 1; /* Accept if non-secure is required */
709
Waldemar Rymarkiewiczef4177e2011-06-02 14:24:52 +0200710 if (conn->sec_level == BT_SECURITY_HIGH)
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200711 return 1;
712
713 return 0; /* Reject not secure link */
714}
715EXPORT_SYMBOL(hci_conn_check_secure);
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717/* Change link key */
718int hci_conn_change_link_key(struct hci_conn *conn)
719{
720 BT_DBG("conn %p", conn);
721
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200722 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 struct hci_cp_change_conn_link_key cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700724 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200725 hci_send_cmd(conn->hdev, HCI_OP_CHANGE_CONN_LINK_KEY,
726 sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return 0;
730}
731EXPORT_SYMBOL(hci_conn_change_link_key);
732
733/* Switch role */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100734int hci_conn_switch_role(struct hci_conn *conn, __u8 role)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 BT_DBG("conn %p", conn);
737
738 if (!role && conn->link_mode & HCI_LM_MASTER)
739 return 1;
740
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200741 if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct hci_cp_switch_role cp;
743 bacpy(&cp.bdaddr, &conn->dst);
744 cp.role = role;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200745 hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return 0;
749}
750EXPORT_SYMBOL(hci_conn_switch_role);
751
Marcel Holtmann04837f62006-07-03 10:02:33 +0200752/* Enter active mode */
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700753void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200754{
755 struct hci_dev *hdev = conn->hdev;
756
757 BT_DBG("conn %p mode %d", conn, conn->mode);
758
759 if (test_bit(HCI_RAW, &hdev->flags))
760 return;
761
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700762 if (conn->mode != HCI_CM_SNIFF)
763 goto timer;
764
Johan Hedberg58a681e2012-01-16 06:47:28 +0200765 if (!test_bit(HCI_CONN_POWER_SAVE, &conn->flags) && !force_active)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200766 goto timer;
767
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200768 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200769 struct hci_cp_exit_sniff_mode cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700770 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200771 hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200772 }
773
774timer:
775 if (hdev->idle_timeout > 0)
776 mod_timer(&conn->idle_timer,
777 jiffies + msecs_to_jiffies(hdev->idle_timeout));
778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780/* Drop all connection on the device */
781void hci_conn_hash_flush(struct hci_dev *hdev)
782{
783 struct hci_conn_hash *h = &hdev->conn_hash;
Andrei Emeltchenko3c4e0df2012-02-02 10:32:17 +0200784 struct hci_conn *c, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 BT_DBG("hdev %s", hdev->name);
787
Andrei Emeltchenko3c4e0df2012-02-02 10:32:17 +0200788 list_for_each_entry_safe(c, n, &h->list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 c->state = BT_CLOSED;
790
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +0200791 hci_proto_disconn_cfm(c, HCI_ERROR_LOCAL_HOST_TERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 hci_conn_del(c);
793 }
794}
795
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200796/* Check pending connect attempts */
797void hci_conn_check_pending(struct hci_dev *hdev)
798{
799 struct hci_conn *conn;
800
801 BT_DBG("hdev %s", hdev->name);
802
803 hci_dev_lock(hdev);
804
805 conn = hci_conn_hash_lookup_state(hdev, ACL_LINK, BT_CONNECT2);
806 if (conn)
807 hci_acl_connect(conn);
808
809 hci_dev_unlock(hdev);
810}
811
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700812void hci_conn_hold_device(struct hci_conn *conn)
813{
814 atomic_inc(&conn->devref);
815}
816EXPORT_SYMBOL(hci_conn_hold_device);
817
818void hci_conn_put_device(struct hci_conn *conn)
819{
820 if (atomic_dec_and_test(&conn->devref))
821 hci_conn_del_sysfs(conn);
822}
823EXPORT_SYMBOL(hci_conn_put_device);
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825int hci_get_conn_list(void __user *arg)
826{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200827 register struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 struct hci_conn_list_req req, *cl;
829 struct hci_conn_info *ci;
830 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 int n = 0, size, err;
832
833 if (copy_from_user(&req, arg, sizeof(req)))
834 return -EFAULT;
835
836 if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci))
837 return -EINVAL;
838
839 size = sizeof(req) + req.conn_num * sizeof(*ci);
840
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200841 cl = kmalloc(size, GFP_KERNEL);
842 if (!cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return -ENOMEM;
844
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200845 hdev = hci_dev_get(req.dev_id);
846 if (!hdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 kfree(cl);
848 return -ENODEV;
849 }
850
851 ci = cl->conn_info;
852
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300853 hci_dev_lock(hdev);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200854 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 bacpy(&(ci + n)->bdaddr, &c->dst);
856 (ci + n)->handle = c->handle;
857 (ci + n)->type = c->type;
858 (ci + n)->out = c->out;
859 (ci + n)->state = c->state;
860 (ci + n)->link_mode = c->link_mode;
861 if (++n >= req.conn_num)
862 break;
863 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300864 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 cl->dev_id = hdev->id;
867 cl->conn_num = n;
868 size = sizeof(req) + n * sizeof(*ci);
869
870 hci_dev_put(hdev);
871
872 err = copy_to_user(arg, cl, size);
873 kfree(cl);
874
875 return err ? -EFAULT : 0;
876}
877
878int hci_get_conn_info(struct hci_dev *hdev, void __user *arg)
879{
880 struct hci_conn_info_req req;
881 struct hci_conn_info ci;
882 struct hci_conn *conn;
883 char __user *ptr = arg + sizeof(req);
884
885 if (copy_from_user(&req, arg, sizeof(req)))
886 return -EFAULT;
887
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300888 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr);
890 if (conn) {
891 bacpy(&ci.bdaddr, &conn->dst);
892 ci.handle = conn->handle;
893 ci.type = conn->type;
894 ci.out = conn->out;
895 ci.state = conn->state;
896 ci.link_mode = conn->link_mode;
897 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300898 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (!conn)
901 return -ENOENT;
902
903 return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
904}
Marcel Holtmann40be4922008-07-14 20:13:50 +0200905
906int hci_get_auth_info(struct hci_dev *hdev, void __user *arg)
907{
908 struct hci_auth_info_req req;
909 struct hci_conn *conn;
910
911 if (copy_from_user(&req, arg, sizeof(req)))
912 return -EFAULT;
913
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300914 hci_dev_lock(hdev);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200915 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &req.bdaddr);
916 if (conn)
917 req.type = conn->auth_type;
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300918 hci_dev_unlock(hdev);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200919
920 if (!conn)
921 return -ENOENT;
922
923 return copy_to_user(arg, &req, sizeof(req)) ? -EFAULT : 0;
924}
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200925
926struct hci_chan *hci_chan_create(struct hci_conn *conn)
927{
928 struct hci_dev *hdev = conn->hdev;
929 struct hci_chan *chan;
930
931 BT_DBG("%s conn %p", hdev->name, conn);
932
Andre Guedes75d77352012-01-30 09:22:10 -0300933 chan = kzalloc(sizeof(struct hci_chan), GFP_KERNEL);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200934 if (!chan)
935 return NULL;
936
937 chan->conn = conn;
938 skb_queue_head_init(&chan->data_q);
939
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -0200940 list_add_rcu(&chan->list, &conn->chan_list);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200941
942 return chan;
943}
944
945int hci_chan_del(struct hci_chan *chan)
946{
947 struct hci_conn *conn = chan->conn;
948 struct hci_dev *hdev = conn->hdev;
949
950 BT_DBG("%s conn %p chan %p", hdev->name, conn, chan);
951
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -0200952 list_del_rcu(&chan->list);
953
954 synchronize_rcu();
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200955
956 skb_queue_purge(&chan->data_q);
957 kfree(chan);
958
959 return 0;
960}
961
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200962void hci_chan_list_flush(struct hci_conn *conn)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200963{
Andrei Emeltchenko2a5a5ec2012-02-02 10:32:18 +0200964 struct hci_chan *chan, *n;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200965
966 BT_DBG("conn %p", conn);
967
Andrei Emeltchenko2a5a5ec2012-02-02 10:32:18 +0200968 list_for_each_entry_safe(chan, n, &conn->chan_list, list)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200969 hci_chan_del(chan);
970}