blob: 231fc4400f37d76dd27cc3cbfc2e85a3a7e8dabc [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>
45
Ville Tervofcd89c02011-02-10 22:38:47 -030046static void hci_le_connect(struct hci_conn *conn)
47{
48 struct hci_dev *hdev = conn->hdev;
49 struct hci_cp_le_create_conn cp;
50
51 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +020052 conn->out = true;
Vinicius Costa Gomesb92a6222011-02-10 22:38:52 -030053 conn->link_mode |= HCI_LM_MASTER;
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -030054 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -030055
56 memset(&cp, 0, sizeof(cp));
Anderson Lizardo0e833912011-07-27 18:40:09 -030057 cp.scan_interval = cpu_to_le16(0x0060);
58 cp.scan_window = cpu_to_le16(0x0030);
Ville Tervofcd89c02011-02-10 22:38:47 -030059 bacpy(&cp.peer_addr, &conn->dst);
Andre Guedes6d3ce0e72011-05-31 14:20:57 -030060 cp.peer_addr_type = conn->dst_type;
Anderson Lizardo0e833912011-07-27 18:40:09 -030061 cp.conn_interval_min = cpu_to_le16(0x0028);
62 cp.conn_interval_max = cpu_to_le16(0x0038);
63 cp.supervision_timeout = cpu_to_le16(0x002a);
64 cp.min_ce_len = cpu_to_le16(0x0000);
65 cp.max_ce_len = cpu_to_le16(0x0000);
Ville Tervofcd89c02011-02-10 22:38:47 -030066
67 hci_send_cmd(hdev, HCI_OP_LE_CREATE_CONN, sizeof(cp), &cp);
68}
69
70static void hci_le_connect_cancel(struct hci_conn *conn)
71{
72 hci_send_cmd(conn->hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 0, NULL);
73}
74
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020075void hci_acl_connect(struct hci_conn *conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 struct hci_dev *hdev = conn->hdev;
78 struct inquiry_entry *ie;
79 struct hci_cp_create_conn cp;
80
Andrei Emeltchenko42d2d872012-02-17 11:40:57 +020081 BT_DBG("hcon %p", conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +020084 conn->out = true;
Marcel Holtmanna8746412008-07-14 20:13:46 +020085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 conn->link_mode = HCI_LM_MASTER;
87
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020088 conn->attempt++;
89
Marcel Holtmanne4e8e372008-07-14 20:13:47 +020090 conn->link_policy = hdev->link_policy;
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 memset(&cp, 0, sizeof(cp));
93 bacpy(&cp.bdaddr, &conn->dst);
94 cp.pscan_rep_mode = 0x02;
95
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020096 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
97 if (ie) {
Marcel Holtmann41a96212008-07-14 20:13:48 +020098 if (inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) {
99 cp.pscan_rep_mode = ie->data.pscan_rep_mode;
100 cp.pscan_mode = ie->data.pscan_mode;
101 cp.clock_offset = ie->data.clock_offset |
102 cpu_to_le16(0x8000);
103 }
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 memcpy(conn->dev_class, ie->data.dev_class, 3);
Johan Hedberg58a681e2012-01-16 06:47:28 +0200106 if (ie->data.ssp_mode > 0)
107 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
Marcel Holtmanna8746412008-07-14 20:13:46 +0200110 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER))
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200112 cp.role_switch = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 else
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200114 cp.role_switch = 0x00;
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200115
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200116 hci_send_cmd(hdev, HCI_OP_CREATE_CONN, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200119static void hci_acl_connect_cancel(struct hci_conn *conn)
120{
121 struct hci_cp_create_conn_cancel cp;
122
123 BT_DBG("%p", conn);
124
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +0200125 if (conn->hdev->hci_ver < BLUETOOTH_VER_1_2)
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200126 return;
127
128 bacpy(&cp.bdaddr, &conn->dst);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200129 hci_send_cmd(conn->hdev, HCI_OP_CREATE_CONN_CANCEL, sizeof(cp), &cp);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132void hci_acl_disconn(struct hci_conn *conn, __u8 reason)
133{
134 struct hci_cp_disconnect cp;
135
136 BT_DBG("%p", conn);
137
138 conn->state = BT_DISCONN;
139
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700140 cp.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 cp.reason = reason;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200142 hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145void hci_add_sco(struct hci_conn *conn, __u16 handle)
146{
147 struct hci_dev *hdev = conn->hdev;
148 struct hci_cp_add_sco cp;
149
150 BT_DBG("%p", conn);
151
152 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +0200153 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Marcel Holtmannefc76882009-02-06 09:13:37 +0100155 conn->attempt++;
156
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700157 cp.handle = cpu_to_le16(handle);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200158 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200160 hci_send_cmd(hdev, HCI_OP_ADD_SCO, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200163void hci_setup_sync(struct hci_conn *conn, __u16 handle)
164{
165 struct hci_dev *hdev = conn->hdev;
166 struct hci_cp_setup_sync_conn cp;
167
168 BT_DBG("%p", conn);
169
170 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +0200171 conn->out = true;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200172
Marcel Holtmannefc76882009-02-06 09:13:37 +0100173 conn->attempt++;
174
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200175 cp.handle = cpu_to_le16(handle);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200176 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200177
178 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
179 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
180 cp.max_latency = cpu_to_le16(0xffff);
181 cp.voice_setting = cpu_to_le16(hdev->voice_setting);
182 cp.retrans_effort = 0xff;
183
184 hci_send_cmd(hdev, HCI_OP_SETUP_SYNC_CONN, sizeof(cp), &cp);
185}
186
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200187void hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max,
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300188 u16 latency, u16 to_multiplier)
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200189{
190 struct hci_cp_le_conn_update cp;
191 struct hci_dev *hdev = conn->hdev;
192
193 memset(&cp, 0, sizeof(cp));
194
195 cp.handle = cpu_to_le16(conn->handle);
196 cp.conn_interval_min = cpu_to_le16(min);
197 cp.conn_interval_max = cpu_to_le16(max);
198 cp.conn_latency = cpu_to_le16(latency);
199 cp.supervision_timeout = cpu_to_le16(to_multiplier);
200 cp.min_ce_len = cpu_to_le16(0x0001);
201 cp.max_ce_len = cpu_to_le16(0x0001);
202
203 hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp);
204}
205EXPORT_SYMBOL(hci_le_conn_update);
206
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300207void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8],
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300208 __u8 ltk[16])
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300209{
210 struct hci_dev *hdev = conn->hdev;
211 struct hci_cp_le_start_enc cp;
212
213 BT_DBG("%p", conn);
214
215 memset(&cp, 0, sizeof(cp));
216
217 cp.handle = cpu_to_le16(conn->handle);
218 memcpy(cp.ltk, ltk, sizeof(cp.ltk));
219 cp.ediv = ediv;
Anderson Briglia51beabd2011-09-19 14:41:09 -0400220 memcpy(cp.rand, rand, sizeof(cp.rand));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300221
222 hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp);
223}
224EXPORT_SYMBOL(hci_le_start_enc);
225
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400226/* Device _must_ be locked */
227void hci_sco_setup(struct hci_conn *conn, __u8 status)
228{
229 struct hci_conn *sco = conn->link;
230
231 BT_DBG("%p", conn);
232
233 if (!sco)
234 return;
235
236 if (!status) {
237 if (lmp_esco_capable(conn->hdev))
238 hci_setup_sync(sco, conn->handle);
239 else
240 hci_add_sco(sco, conn->handle);
241 } else {
242 hci_proto_connect_cfm(sco, status);
243 hci_conn_del(sco);
244 }
245}
246
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300247static void hci_conn_timeout(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300249 struct hci_conn *conn = container_of(work, struct hci_conn,
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300250 disc_work.work);
Marcel Holtmann2950f212009-02-12 14:02:50 +0100251 __u8 reason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Andrei Emeltchenkoe05dcc32012-02-17 11:40:56 +0200253 BT_DBG("conn %p state %s", conn, state_to_string(conn->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (atomic_read(&conn->refcnt))
256 return;
257
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200258 switch (conn->state) {
259 case BT_CONNECT:
Marcel Holtmann769be972008-07-14 20:13:49 +0200260 case BT_CONNECT2:
Ville Tervofcd89c02011-02-10 22:38:47 -0300261 if (conn->out) {
262 if (conn->type == ACL_LINK)
263 hci_acl_connect_cancel(conn);
264 else if (conn->type == LE_LINK)
265 hci_le_connect_cancel(conn);
266 }
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200267 break;
Marcel Holtmann769be972008-07-14 20:13:49 +0200268 case BT_CONFIG:
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900269 case BT_CONNECTED:
Marcel Holtmann2950f212009-02-12 14:02:50 +0100270 reason = hci_proto_disconn_ind(conn);
271 hci_acl_disconn(conn, reason);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200272 break;
273 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 conn->state = BT_CLOSED;
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200275 break;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Gustavo F. Padovan416dc942011-12-07 13:24:33 -0200279/* Enter sniff mode */
280static void hci_conn_enter_sniff_mode(struct hci_conn *conn)
281{
282 struct hci_dev *hdev = conn->hdev;
283
284 BT_DBG("conn %p mode %d", conn, conn->mode);
285
286 if (test_bit(HCI_RAW, &hdev->flags))
287 return;
288
289 if (!lmp_sniff_capable(hdev) || !lmp_sniff_capable(conn))
290 return;
291
292 if (conn->mode != HCI_CM_ACTIVE || !(conn->link_policy & HCI_LP_SNIFF))
293 return;
294
295 if (lmp_sniffsubr_capable(hdev) && lmp_sniffsubr_capable(conn)) {
296 struct hci_cp_sniff_subrate cp;
297 cp.handle = cpu_to_le16(conn->handle);
298 cp.max_latency = cpu_to_le16(0);
299 cp.min_remote_timeout = cpu_to_le16(0);
300 cp.min_local_timeout = cpu_to_le16(0);
301 hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp);
302 }
303
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200304 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
Gustavo F. Padovan416dc942011-12-07 13:24:33 -0200305 struct hci_cp_sniff_mode cp;
306 cp.handle = cpu_to_le16(conn->handle);
307 cp.max_interval = cpu_to_le16(hdev->sniff_max_interval);
308 cp.min_interval = cpu_to_le16(hdev->sniff_min_interval);
309 cp.attempt = cpu_to_le16(4);
310 cp.timeout = cpu_to_le16(1);
311 hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp);
312 }
313}
314
Marcel Holtmann04837f62006-07-03 10:02:33 +0200315static void hci_conn_idle(unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Marcel Holtmann04837f62006-07-03 10:02:33 +0200317 struct hci_conn *conn = (void *) arg;
318
319 BT_DBG("conn %p mode %d", conn, conn->mode);
320
321 hci_conn_enter_sniff_mode(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Johan Hedberg9f616562011-04-28 11:28:54 -0700324static void hci_conn_auto_accept(unsigned long arg)
325{
326 struct hci_conn *conn = (void *) arg;
327 struct hci_dev *hdev = conn->hdev;
328
Johan Hedberg9f616562011-04-28 11:28:54 -0700329 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY, sizeof(conn->dst),
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300330 &conn->dst);
Johan Hedberg9f616562011-04-28 11:28:54 -0700331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst)
334{
335 struct hci_conn *conn;
336
337 BT_DBG("%s dst %s", hdev->name, batostr(dst));
338
Andre Guedescb601d72012-01-30 09:22:09 -0300339 conn = kzalloc(sizeof(struct hci_conn), GFP_KERNEL);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200340 if (!conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 bacpy(&conn->dst, dst);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200344 conn->hdev = hdev;
345 conn->type = type;
346 conn->mode = HCI_CM_ACTIVE;
347 conn->state = BT_OPEN;
Andrei Emeltchenko93f19c92009-09-03 12:34:19 +0300348 conn->auth_type = HCI_AT_GENERAL_BONDING;
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200349 conn->io_capability = hdev->io_capability;
Johan Hedberga9583552011-02-19 12:06:01 -0300350 conn->remote_auth = 0xff;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200351 conn->key_type = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Johan Hedberg58a681e2012-01-16 06:47:28 +0200353 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200354 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200355
Marcel Holtmanna8746412008-07-14 20:13:46 +0200356 switch (type) {
357 case ACL_LINK:
358 conn->pkt_type = hdev->pkt_type & ACL_PTYPE_MASK;
359 break;
360 case SCO_LINK:
361 if (lmp_esco_capable(hdev))
Marcel Holtmannefc76882009-02-06 09:13:37 +0100362 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
363 (hdev->esco_type & EDR_ESCO_MASK);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200364 else
365 conn->pkt_type = hdev->pkt_type & SCO_PTYPE_MASK;
366 break;
367 case ESCO_LINK:
Marcel Holtmannefc76882009-02-06 09:13:37 +0100368 conn->pkt_type = hdev->esco_type & ~EDR_ESCO_MASK;
Marcel Holtmanna8746412008-07-14 20:13:46 +0200369 break;
370 }
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 skb_queue_head_init(&conn->data_q);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200373
Marcel Holtmann70c1f202012-02-22 12:06:43 +0100374 INIT_LIST_HEAD(&conn->chan_list);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200375
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300376 INIT_DELAYED_WORK(&conn->disc_work, hci_conn_timeout);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800377 setup_timer(&conn->idle_timer, hci_conn_idle, (unsigned long)conn);
Johan Hedberg9f616562011-04-28 11:28:54 -0700378 setup_timer(&conn->auto_accept_timer, hci_conn_auto_accept,
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300379 (unsigned long) conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 atomic_set(&conn->refcnt, 0);
382
383 hci_dev_hold(hdev);
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 hci_conn_hash_add(hdev, conn);
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200386 if (hdev->notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 hdev->notify(hdev, HCI_NOTIFY_CONN_ADD);
388
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700389 atomic_set(&conn->devref, 0);
390
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700391 hci_conn_init_sysfs(conn);
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return conn;
394}
395
396int hci_conn_del(struct hci_conn *conn)
397{
398 struct hci_dev *hdev = conn->hdev;
399
400 BT_DBG("%s conn %p handle %d", hdev->name, conn, conn->handle);
401
Marcel Holtmann04837f62006-07-03 10:02:33 +0200402 del_timer(&conn->idle_timer);
403
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300404 cancel_delayed_work_sync(&conn->disc_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Johan Hedberg9f616562011-04-28 11:28:54 -0700406 del_timer(&conn->auto_accept_timer);
407
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200408 if (conn->type == ACL_LINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 struct hci_conn *sco = conn->link;
410 if (sco)
411 sco->link = NULL;
412
413 /* Unacked frames */
414 hdev->acl_cnt += conn->sent;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300415 } else if (conn->type == LE_LINK) {
416 if (hdev->le_pkts)
417 hdev->le_cnt += conn->sent;
418 else
419 hdev->acl_cnt += conn->sent;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200420 } else {
421 struct hci_conn *acl = conn->link;
422 if (acl) {
423 acl->link = NULL;
424 hci_conn_put(acl);
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200428 hci_chan_list_flush(conn);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 hci_conn_hash_del(hdev, conn);
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200431 if (hdev->notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 hdev->notify(hdev, HCI_NOTIFY_CONN_DEL);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +0200433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 skb_queue_purge(&conn->data_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700436 hci_conn_put_device(conn);
Dave Young2ae9a6b2009-02-21 16:13:34 +0800437
Marcel Holtmann384943e2009-05-08 18:20:43 -0700438 hci_dev_put(hdev);
439
Tomas Targownik163f4da2011-06-30 16:30:44 -0300440 if (conn->handle == 0)
441 kfree(conn);
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return 0;
444}
445
446struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src)
447{
448 int use_src = bacmp(src, BDADDR_ANY);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200449 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 BT_DBG("%s -> %s", batostr(src), batostr(dst));
452
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200453 read_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200455 list_for_each_entry(d, &hci_dev_list, list) {
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300456 if (!test_bit(HCI_UP, &d->flags) ||
457 test_bit(HCI_RAW, &d->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 continue;
459
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900460 /* Simple routing:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 * No source address - find interface with bdaddr != dst
462 * Source address - find interface with bdaddr == src
463 */
464
465 if (use_src) {
466 if (!bacmp(&d->bdaddr, src)) {
467 hdev = d; break;
468 }
469 } else {
470 if (bacmp(&d->bdaddr, dst)) {
471 hdev = d; break;
472 }
473 }
474 }
475
476 if (hdev)
477 hdev = hci_dev_hold(hdev);
478
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200479 read_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return hdev;
481}
482EXPORT_SYMBOL(hci_get_route);
483
Ville Tervofcd89c02011-02-10 22:38:47 -0300484/* Create SCO, ACL or LE connection.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * Device _must_ be locked */
Andre Guedesb12f62c2012-04-24 21:02:54 -0300486struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst,
487 __u8 dst_type, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct hci_conn *acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200490 struct hci_conn *sco;
Ville Tervofcd89c02011-02-10 22:38:47 -0300491 struct hci_conn *le;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 BT_DBG("%s dst %s", hdev->name, batostr(dst));
494
Ville Tervofcd89c02011-02-10 22:38:47 -0300495 if (type == LE_LINK) {
496 le = hci_conn_hash_lookup_ba(hdev, LE_LINK, dst);
Vinicius Costa Gomes9f0caeb2012-04-20 15:46:08 -0300497 if (!le) {
Vinicius Costa Gomes9f0caeb2012-04-20 15:46:08 -0300498 le = hci_conn_add(hdev, LE_LINK, dst);
499 if (!le)
500 return ERR_PTR(-ENOMEM);
Andre Guedeseda42b52011-05-31 14:20:56 -0300501
Andre Guedesb12f62c2012-04-24 21:02:54 -0300502 le->dst_type = bdaddr_to_le(dst_type);
Vinicius Costa Gomes9f0caeb2012-04-20 15:46:08 -0300503 hci_le_connect(le);
504 }
Andre Guedes893d6752011-05-31 14:20:55 -0300505
Vinicius Costa Gomes9f0caeb2012-04-20 15:46:08 -0300506 le->pending_sec_level = sec_level;
507 le->auth_type = auth_type;
Ville Tervofcd89c02011-02-10 22:38:47 -0300508
509 hci_conn_hold(le);
510
511 return le;
512 }
513
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200514 acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst);
515 if (!acl) {
516 acl = hci_conn_add(hdev, ACL_LINK, dst);
517 if (!acl)
Johan Hedberg48c7aba2012-02-19 14:06:48 +0200518 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520
521 hci_conn_hold(acl);
522
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200523 if (acl->state == BT_OPEN || acl->state == BT_CLOSED) {
Johan Hedberg765c2a92011-01-19 12:06:52 +0530524 acl->sec_level = BT_SECURITY_LOW;
525 acl->pending_sec_level = sec_level;
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200526 acl->auth_type = auth_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 hci_acl_connect(acl);
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200530 if (type == ACL_LINK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200532
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200533 sco = hci_conn_hash_lookup_ba(hdev, type, dst);
534 if (!sco) {
535 sco = hci_conn_add(hdev, type, dst);
536 if (!sco) {
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200537 hci_conn_put(acl);
Johan Hedberg48c7aba2012-02-19 14:06:48 +0200538 return ERR_PTR(-ENOMEM);
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200541
542 acl->link = sco;
543 sco->link = acl;
544
545 hci_conn_hold(sco);
546
547 if (acl->state == BT_CONNECTED &&
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300548 (sco->state == BT_OPEN || sco->state == BT_CLOSED)) {
Johan Hedberg58a681e2012-01-16 06:47:28 +0200549 set_bit(HCI_CONN_POWER_SAVE, &acl->flags);
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700550 hci_conn_enter_active_mode(acl, BT_POWER_FORCE_ACTIVE_ON);
Nick Pellyc3902162009-11-13 14:16:32 -0800551
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200552 if (test_bit(HCI_CONN_MODE_CHANGE_PEND, &acl->flags)) {
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400553 /* defer SCO setup until mode change completed */
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200554 set_bit(HCI_CONN_SCO_SETUP_PEND, &acl->flags);
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400555 return sco;
556 }
557
558 hci_sco_setup(acl, 0x00);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200559 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200560
561 return sco;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563EXPORT_SYMBOL(hci_connect);
564
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200565/* Check link security requirement */
566int hci_conn_check_link_mode(struct hci_conn *conn)
567{
568 BT_DBG("conn %p", conn);
569
Johan Hedbergaa64a8b2012-01-18 21:33:12 +0200570 if (hci_conn_ssp_enabled(conn) && !(conn->link_mode & HCI_LM_ENCRYPT))
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200571 return 0;
572
573 return 1;
574}
575EXPORT_SYMBOL(hci_conn_check_link_mode);
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/* Authenticate remote device */
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100578static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 BT_DBG("conn %p", conn);
581
Johan Hedberg765c2a92011-01-19 12:06:52 +0530582 if (conn->pending_sec_level > sec_level)
583 sec_level = conn->pending_sec_level;
584
Marcel Holtmann96a31832009-02-12 16:23:03 +0100585 if (sec_level > conn->sec_level)
Johan Hedberg765c2a92011-01-19 12:06:52 +0530586 conn->pending_sec_level = sec_level;
Marcel Holtmann96a31832009-02-12 16:23:03 +0100587 else if (conn->link_mode & HCI_LM_AUTH)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return 1;
589
Johan Hedberg65cf6862011-01-19 12:06:49 +0530590 /* Make sure we preserve an existing MITM requirement*/
591 auth_type |= (conn->auth_type & 0x01);
592
Marcel Holtmann96a31832009-02-12 16:23:03 +0100593 conn->auth_type = auth_type;
594
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200595 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct hci_cp_auth_requested cp;
Peter Hurleyb7d05ba2012-01-13 15:11:30 +0100597
598 /* encrypt must be pending if auth is also pending */
599 set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
600
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700601 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200602 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED,
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300603 sizeof(cp), &cp);
Waldemar Rymarkiewicz19f8def2011-05-31 15:49:25 +0200604 if (conn->key_type != 0xff)
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200605 set_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return 0;
609}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200611/* Encrypt the the link */
612static void hci_conn_encrypt(struct hci_conn *conn)
613{
614 BT_DBG("conn %p", conn);
615
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200616 if (!test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200617 struct hci_cp_set_conn_encrypt cp;
618 cp.handle = cpu_to_le16(conn->handle);
619 cp.encrypt = 0x01;
620 hci_send_cmd(conn->hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300621 &cp);
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200622 }
623}
624
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100625/* Enable security */
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100626int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 BT_DBG("conn %p", conn);
629
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200630 /* For sdp we don't need the link key. */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100631 if (sec_level == BT_SECURITY_SDP)
632 return 1;
633
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200634 /* For non 2.1 devices and low security level we don't need the link
635 key. */
Johan Hedbergaa64a8b2012-01-18 21:33:12 +0200636 if (sec_level == BT_SECURITY_LOW && !hci_conn_ssp_enabled(conn))
Marcel Holtmann3fdca1e2009-04-28 09:04:55 -0700637 return 1;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100638
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200639 /* For other security levels we need the link key. */
640 if (!(conn->link_mode & HCI_LM_AUTH))
641 goto auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200643 /* An authenticated combination key has sufficient security for any
644 security level. */
645 if (conn->key_type == HCI_LK_AUTH_COMBINATION)
646 goto encrypt;
647
648 /* An unauthenticated combination key has sufficient security for
649 security level 1 and 2. */
650 if (conn->key_type == HCI_LK_UNAUTH_COMBINATION &&
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300651 (sec_level == BT_SECURITY_MEDIUM || sec_level == BT_SECURITY_LOW))
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200652 goto encrypt;
653
654 /* A combination key has always sufficient security for the security
655 levels 1 or 2. High security level requires the combination key
656 is generated using maximum PIN code length (16).
657 For pre 2.1 units. */
658 if (conn->key_type == HCI_LK_COMBINATION &&
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300659 (sec_level != BT_SECURITY_HIGH || conn->pin_length == 16))
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200660 goto encrypt;
661
662auth:
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200663 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return 0;
665
Luiz Augusto von Dentz6fdf6582011-06-13 15:37:35 +0300666 if (!hci_conn_auth(conn, sec_level, auth_type))
667 return 0;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100668
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200669encrypt:
670 if (conn->link_mode & HCI_LM_ENCRYPT)
671 return 1;
672
673 hci_conn_encrypt(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return 0;
675}
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100676EXPORT_SYMBOL(hci_conn_security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200678/* Check secure link requirement */
679int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level)
680{
681 BT_DBG("conn %p", conn);
682
683 if (sec_level != BT_SECURITY_HIGH)
684 return 1; /* Accept if non-secure is required */
685
Waldemar Rymarkiewiczef4177e2011-06-02 14:24:52 +0200686 if (conn->sec_level == BT_SECURITY_HIGH)
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200687 return 1;
688
689 return 0; /* Reject not secure link */
690}
691EXPORT_SYMBOL(hci_conn_check_secure);
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693/* Change link key */
694int hci_conn_change_link_key(struct hci_conn *conn)
695{
696 BT_DBG("conn %p", conn);
697
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200698 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 struct hci_cp_change_conn_link_key cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700700 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200701 hci_send_cmd(conn->hdev, HCI_OP_CHANGE_CONN_LINK_KEY,
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300702 sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return 0;
706}
707EXPORT_SYMBOL(hci_conn_change_link_key);
708
709/* Switch role */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100710int hci_conn_switch_role(struct hci_conn *conn, __u8 role)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
712 BT_DBG("conn %p", conn);
713
714 if (!role && conn->link_mode & HCI_LM_MASTER)
715 return 1;
716
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200717 if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct hci_cp_switch_role cp;
719 bacpy(&cp.bdaddr, &conn->dst);
720 cp.role = role;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200721 hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 0;
725}
726EXPORT_SYMBOL(hci_conn_switch_role);
727
Marcel Holtmann04837f62006-07-03 10:02:33 +0200728/* Enter active mode */
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700729void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200730{
731 struct hci_dev *hdev = conn->hdev;
732
733 BT_DBG("conn %p mode %d", conn, conn->mode);
734
735 if (test_bit(HCI_RAW, &hdev->flags))
736 return;
737
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700738 if (conn->mode != HCI_CM_SNIFF)
739 goto timer;
740
Johan Hedberg58a681e2012-01-16 06:47:28 +0200741 if (!test_bit(HCI_CONN_POWER_SAVE, &conn->flags) && !force_active)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200742 goto timer;
743
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200744 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200745 struct hci_cp_exit_sniff_mode cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700746 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200747 hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200748 }
749
750timer:
751 if (hdev->idle_timeout > 0)
752 mod_timer(&conn->idle_timer,
Gustavo Padovan5974e4c2012-05-17 00:36:25 -0300753 jiffies + msecs_to_jiffies(hdev->idle_timeout));
Marcel Holtmann04837f62006-07-03 10:02:33 +0200754}
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756/* Drop all connection on the device */
757void hci_conn_hash_flush(struct hci_dev *hdev)
758{
759 struct hci_conn_hash *h = &hdev->conn_hash;
Andrei Emeltchenko3c4e0df2012-02-02 10:32:17 +0200760 struct hci_conn *c, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 BT_DBG("hdev %s", hdev->name);
763
Andrei Emeltchenko3c4e0df2012-02-02 10:32:17 +0200764 list_for_each_entry_safe(c, n, &h->list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 c->state = BT_CLOSED;
766
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +0200767 hci_proto_disconn_cfm(c, HCI_ERROR_LOCAL_HOST_TERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 hci_conn_del(c);
769 }
770}
771
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200772/* Check pending connect attempts */
773void hci_conn_check_pending(struct hci_dev *hdev)
774{
775 struct hci_conn *conn;
776
777 BT_DBG("hdev %s", hdev->name);
778
779 hci_dev_lock(hdev);
780
781 conn = hci_conn_hash_lookup_state(hdev, ACL_LINK, BT_CONNECT2);
782 if (conn)
783 hci_acl_connect(conn);
784
785 hci_dev_unlock(hdev);
786}
787
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700788void hci_conn_hold_device(struct hci_conn *conn)
789{
790 atomic_inc(&conn->devref);
791}
792EXPORT_SYMBOL(hci_conn_hold_device);
793
794void hci_conn_put_device(struct hci_conn *conn)
795{
796 if (atomic_dec_and_test(&conn->devref))
797 hci_conn_del_sysfs(conn);
798}
799EXPORT_SYMBOL(hci_conn_put_device);
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801int hci_get_conn_list(void __user *arg)
802{
Gustavo Padovanfc5fef62012-05-23 04:04:19 -0300803 struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 struct hci_conn_list_req req, *cl;
805 struct hci_conn_info *ci;
806 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 int n = 0, size, err;
808
809 if (copy_from_user(&req, arg, sizeof(req)))
810 return -EFAULT;
811
812 if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci))
813 return -EINVAL;
814
815 size = sizeof(req) + req.conn_num * sizeof(*ci);
816
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200817 cl = kmalloc(size, GFP_KERNEL);
818 if (!cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return -ENOMEM;
820
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200821 hdev = hci_dev_get(req.dev_id);
822 if (!hdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 kfree(cl);
824 return -ENODEV;
825 }
826
827 ci = cl->conn_info;
828
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300829 hci_dev_lock(hdev);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200830 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 bacpy(&(ci + n)->bdaddr, &c->dst);
832 (ci + n)->handle = c->handle;
833 (ci + n)->type = c->type;
834 (ci + n)->out = c->out;
835 (ci + n)->state = c->state;
836 (ci + n)->link_mode = c->link_mode;
837 if (++n >= req.conn_num)
838 break;
839 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300840 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 cl->dev_id = hdev->id;
843 cl->conn_num = n;
844 size = sizeof(req) + n * sizeof(*ci);
845
846 hci_dev_put(hdev);
847
848 err = copy_to_user(arg, cl, size);
849 kfree(cl);
850
851 return err ? -EFAULT : 0;
852}
853
854int hci_get_conn_info(struct hci_dev *hdev, void __user *arg)
855{
856 struct hci_conn_info_req req;
857 struct hci_conn_info ci;
858 struct hci_conn *conn;
859 char __user *ptr = arg + sizeof(req);
860
861 if (copy_from_user(&req, arg, sizeof(req)))
862 return -EFAULT;
863
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300864 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr);
866 if (conn) {
867 bacpy(&ci.bdaddr, &conn->dst);
868 ci.handle = conn->handle;
869 ci.type = conn->type;
870 ci.out = conn->out;
871 ci.state = conn->state;
872 ci.link_mode = conn->link_mode;
873 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300874 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (!conn)
877 return -ENOENT;
878
879 return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
880}
Marcel Holtmann40be4922008-07-14 20:13:50 +0200881
882int hci_get_auth_info(struct hci_dev *hdev, void __user *arg)
883{
884 struct hci_auth_info_req req;
885 struct hci_conn *conn;
886
887 if (copy_from_user(&req, arg, sizeof(req)))
888 return -EFAULT;
889
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300890 hci_dev_lock(hdev);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200891 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &req.bdaddr);
892 if (conn)
893 req.type = conn->auth_type;
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300894 hci_dev_unlock(hdev);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200895
896 if (!conn)
897 return -ENOENT;
898
899 return copy_to_user(arg, &req, sizeof(req)) ? -EFAULT : 0;
900}
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200901
902struct hci_chan *hci_chan_create(struct hci_conn *conn)
903{
904 struct hci_dev *hdev = conn->hdev;
905 struct hci_chan *chan;
906
907 BT_DBG("%s conn %p", hdev->name, conn);
908
Andre Guedes75d77352012-01-30 09:22:10 -0300909 chan = kzalloc(sizeof(struct hci_chan), GFP_KERNEL);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200910 if (!chan)
911 return NULL;
912
913 chan->conn = conn;
914 skb_queue_head_init(&chan->data_q);
915
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -0200916 list_add_rcu(&chan->list, &conn->chan_list);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200917
918 return chan;
919}
920
921int hci_chan_del(struct hci_chan *chan)
922{
923 struct hci_conn *conn = chan->conn;
924 struct hci_dev *hdev = conn->hdev;
925
926 BT_DBG("%s conn %p chan %p", hdev->name, conn, chan);
927
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -0200928 list_del_rcu(&chan->list);
929
930 synchronize_rcu();
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200931
932 skb_queue_purge(&chan->data_q);
933 kfree(chan);
934
935 return 0;
936}
937
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200938void hci_chan_list_flush(struct hci_conn *conn)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200939{
Andrei Emeltchenko2a5a5ec2012-02-02 10:32:18 +0200940 struct hci_chan *chan, *n;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200941
942 BT_DBG("conn %p", conn);
943
Andrei Emeltchenko2a5a5ec2012-02-02 10:32:18 +0200944 list_for_each_entry_safe(chan, n, &conn->chan_list, list)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200945 hci_chan_del(chan);
946}