blob: 6ec259e84b95158109ca8cb95c6e9ec068d070d2 [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>
38#include <linux/notifier.h>
39#include <net/sock.h>
40
41#include <asm/system.h>
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020042#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/unaligned.h>
44
45#include <net/bluetooth/bluetooth.h>
46#include <net/bluetooth/hci_core.h>
47
Ville Tervofcd89c02011-02-10 22:38:47 -030048static void hci_le_connect(struct hci_conn *conn)
49{
50 struct hci_dev *hdev = conn->hdev;
51 struct hci_cp_le_create_conn cp;
52
53 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +020054 conn->out = true;
Vinicius Costa Gomesb92a6222011-02-10 22:38:52 -030055 conn->link_mode |= HCI_LM_MASTER;
Vinicius Costa Gomes7b5c0d52011-06-09 18:50:50 -030056 conn->sec_level = BT_SECURITY_LOW;
Ville Tervofcd89c02011-02-10 22:38:47 -030057
58 memset(&cp, 0, sizeof(cp));
Anderson Lizardo0e833912011-07-27 18:40:09 -030059 cp.scan_interval = cpu_to_le16(0x0060);
60 cp.scan_window = cpu_to_le16(0x0030);
Ville Tervofcd89c02011-02-10 22:38:47 -030061 bacpy(&cp.peer_addr, &conn->dst);
Andre Guedes6d3ce0e72011-05-31 14:20:57 -030062 cp.peer_addr_type = conn->dst_type;
Anderson Lizardo0e833912011-07-27 18:40:09 -030063 cp.conn_interval_min = cpu_to_le16(0x0028);
64 cp.conn_interval_max = cpu_to_le16(0x0038);
65 cp.supervision_timeout = cpu_to_le16(0x002a);
66 cp.min_ce_len = cpu_to_le16(0x0000);
67 cp.max_ce_len = cpu_to_le16(0x0000);
Ville Tervofcd89c02011-02-10 22:38:47 -030068
69 hci_send_cmd(hdev, HCI_OP_LE_CREATE_CONN, sizeof(cp), &cp);
70}
71
72static void hci_le_connect_cancel(struct hci_conn *conn)
73{
74 hci_send_cmd(conn->hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 0, NULL);
75}
76
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020077void hci_acl_connect(struct hci_conn *conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 struct hci_dev *hdev = conn->hdev;
80 struct inquiry_entry *ie;
81 struct hci_cp_create_conn cp;
82
83 BT_DBG("%p", conn);
84
85 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +020086 conn->out = true;
Marcel Holtmanna8746412008-07-14 20:13:46 +020087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 conn->link_mode = HCI_LM_MASTER;
89
Marcel Holtmann4c67bc72006-10-15 17:30:56 +020090 conn->attempt++;
91
Marcel Holtmanne4e8e372008-07-14 20:13:47 +020092 conn->link_policy = hdev->link_policy;
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 memset(&cp, 0, sizeof(cp));
95 bacpy(&cp.bdaddr, &conn->dst);
96 cp.pscan_rep_mode = 0x02;
97
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020098 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
99 if (ie) {
Marcel Holtmann41a96212008-07-14 20:13:48 +0200100 if (inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) {
101 cp.pscan_rep_mode = ie->data.pscan_rep_mode;
102 cp.pscan_mode = ie->data.pscan_mode;
103 cp.clock_offset = ie->data.clock_offset |
104 cpu_to_le16(0x8000);
105 }
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 memcpy(conn->dev_class, ie->data.dev_class, 3);
Johan Hedberg58a681e2012-01-16 06:47:28 +0200108 if (ie->data.ssp_mode > 0)
109 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111
Marcel Holtmanna8746412008-07-14 20:13:46 +0200112 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER))
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200114 cp.role_switch = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 else
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200116 cp.role_switch = 0x00;
Marcel Holtmann4c67bc72006-10-15 17:30:56 +0200117
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200118 hci_send_cmd(hdev, HCI_OP_CREATE_CONN, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200121static void hci_acl_connect_cancel(struct hci_conn *conn)
122{
123 struct hci_cp_create_conn_cancel cp;
124
125 BT_DBG("%p", conn);
126
Andrei Emeltchenkod095c1e2011-12-01 14:33:27 +0200127 if (conn->hdev->hci_ver < BLUETOOTH_VER_1_2)
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200128 return;
129
130 bacpy(&cp.bdaddr, &conn->dst);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200131 hci_send_cmd(conn->hdev, HCI_OP_CREATE_CONN_CANCEL, sizeof(cp), &cp);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134void hci_acl_disconn(struct hci_conn *conn, __u8 reason)
135{
136 struct hci_cp_disconnect cp;
137
138 BT_DBG("%p", conn);
139
140 conn->state = BT_DISCONN;
141
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700142 cp.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 cp.reason = reason;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200144 hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
147void hci_add_sco(struct hci_conn *conn, __u16 handle)
148{
149 struct hci_dev *hdev = conn->hdev;
150 struct hci_cp_add_sco cp;
151
152 BT_DBG("%p", conn);
153
154 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +0200155 conn->out = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Marcel Holtmannefc76882009-02-06 09:13:37 +0100157 conn->attempt++;
158
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700159 cp.handle = cpu_to_le16(handle);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200160 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200162 hci_send_cmd(hdev, HCI_OP_ADD_SCO, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200165void hci_setup_sync(struct hci_conn *conn, __u16 handle)
166{
167 struct hci_dev *hdev = conn->hdev;
168 struct hci_cp_setup_sync_conn cp;
169
170 BT_DBG("%p", conn);
171
172 conn->state = BT_CONNECT;
Johan Hedberga0c808b2012-01-16 09:49:58 +0200173 conn->out = true;
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200174
Marcel Holtmannefc76882009-02-06 09:13:37 +0100175 conn->attempt++;
176
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200177 cp.handle = cpu_to_le16(handle);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200178 cp.pkt_type = cpu_to_le16(conn->pkt_type);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200179
180 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
181 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
182 cp.max_latency = cpu_to_le16(0xffff);
183 cp.voice_setting = cpu_to_le16(hdev->voice_setting);
184 cp.retrans_effort = 0xff;
185
186 hci_send_cmd(hdev, HCI_OP_SETUP_SYNC_CONN, sizeof(cp), &cp);
187}
188
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200189void hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max,
190 u16 latency, u16 to_multiplier)
191{
192 struct hci_cp_le_conn_update cp;
193 struct hci_dev *hdev = conn->hdev;
194
195 memset(&cp, 0, sizeof(cp));
196
197 cp.handle = cpu_to_le16(conn->handle);
198 cp.conn_interval_min = cpu_to_le16(min);
199 cp.conn_interval_max = cpu_to_le16(max);
200 cp.conn_latency = cpu_to_le16(latency);
201 cp.supervision_timeout = cpu_to_le16(to_multiplier);
202 cp.min_ce_len = cpu_to_le16(0x0001);
203 cp.max_ce_len = cpu_to_le16(0x0001);
204
205 hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp);
206}
207EXPORT_SYMBOL(hci_le_conn_update);
208
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300209void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8],
210 __u8 ltk[16])
211{
212 struct hci_dev *hdev = conn->hdev;
213 struct hci_cp_le_start_enc cp;
214
215 BT_DBG("%p", conn);
216
217 memset(&cp, 0, sizeof(cp));
218
219 cp.handle = cpu_to_le16(conn->handle);
220 memcpy(cp.ltk, ltk, sizeof(cp.ltk));
221 cp.ediv = ediv;
Anderson Briglia51beabd2011-09-19 14:41:09 -0400222 memcpy(cp.rand, rand, sizeof(cp.rand));
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300223
224 hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp);
225}
226EXPORT_SYMBOL(hci_le_start_enc);
227
228void hci_le_ltk_reply(struct hci_conn *conn, u8 ltk[16])
229{
230 struct hci_dev *hdev = conn->hdev;
231 struct hci_cp_le_ltk_reply cp;
232
233 BT_DBG("%p", conn);
234
235 memset(&cp, 0, sizeof(cp));
236
237 cp.handle = cpu_to_le16(conn->handle);
238 memcpy(cp.ltk, ltk, sizeof(ltk));
239
240 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
241}
242EXPORT_SYMBOL(hci_le_ltk_reply);
243
244void hci_le_ltk_neg_reply(struct hci_conn *conn)
245{
246 struct hci_dev *hdev = conn->hdev;
247 struct hci_cp_le_ltk_neg_reply cp;
248
249 BT_DBG("%p", conn);
250
251 memset(&cp, 0, sizeof(cp));
252
253 cp.handle = cpu_to_le16(conn->handle);
254
255 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(cp), &cp);
256}
257
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400258/* Device _must_ be locked */
259void hci_sco_setup(struct hci_conn *conn, __u8 status)
260{
261 struct hci_conn *sco = conn->link;
262
263 BT_DBG("%p", conn);
264
265 if (!sco)
266 return;
267
268 if (!status) {
269 if (lmp_esco_capable(conn->hdev))
270 hci_setup_sync(sco, conn->handle);
271 else
272 hci_add_sco(sco, conn->handle);
273 } else {
274 hci_proto_connect_cfm(sco, status);
275 hci_conn_del(sco);
276 }
277}
278
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300279static void hci_conn_timeout(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300281 struct hci_conn *conn = container_of(work, struct hci_conn,
282 disc_work.work);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200283 struct hci_dev *hdev = conn->hdev;
Marcel Holtmann2950f212009-02-12 14:02:50 +0100284 __u8 reason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 BT_DBG("conn %p state %d", conn, conn->state);
287
288 if (atomic_read(&conn->refcnt))
289 return;
290
291 hci_dev_lock(hdev);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200292
293 switch (conn->state) {
294 case BT_CONNECT:
Marcel Holtmann769be972008-07-14 20:13:49 +0200295 case BT_CONNECT2:
Ville Tervofcd89c02011-02-10 22:38:47 -0300296 if (conn->out) {
297 if (conn->type == ACL_LINK)
298 hci_acl_connect_cancel(conn);
299 else if (conn->type == LE_LINK)
300 hci_le_connect_cancel(conn);
301 }
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200302 break;
Marcel Holtmann769be972008-07-14 20:13:49 +0200303 case BT_CONFIG:
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900304 case BT_CONNECTED:
Marcel Holtmann2950f212009-02-12 14:02:50 +0100305 reason = hci_proto_disconn_ind(conn);
306 hci_acl_disconn(conn, reason);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200307 break;
308 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 conn->state = BT_CLOSED;
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200310 break;
311 }
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Gustavo F. Padovan416dc942011-12-07 13:24:33 -0200316/* Enter sniff mode */
317static void hci_conn_enter_sniff_mode(struct hci_conn *conn)
318{
319 struct hci_dev *hdev = conn->hdev;
320
321 BT_DBG("conn %p mode %d", conn, conn->mode);
322
323 if (test_bit(HCI_RAW, &hdev->flags))
324 return;
325
326 if (!lmp_sniff_capable(hdev) || !lmp_sniff_capable(conn))
327 return;
328
329 if (conn->mode != HCI_CM_ACTIVE || !(conn->link_policy & HCI_LP_SNIFF))
330 return;
331
332 if (lmp_sniffsubr_capable(hdev) && lmp_sniffsubr_capable(conn)) {
333 struct hci_cp_sniff_subrate cp;
334 cp.handle = cpu_to_le16(conn->handle);
335 cp.max_latency = cpu_to_le16(0);
336 cp.min_remote_timeout = cpu_to_le16(0);
337 cp.min_local_timeout = cpu_to_le16(0);
338 hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp);
339 }
340
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200341 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
Gustavo F. Padovan416dc942011-12-07 13:24:33 -0200342 struct hci_cp_sniff_mode cp;
343 cp.handle = cpu_to_le16(conn->handle);
344 cp.max_interval = cpu_to_le16(hdev->sniff_max_interval);
345 cp.min_interval = cpu_to_le16(hdev->sniff_min_interval);
346 cp.attempt = cpu_to_le16(4);
347 cp.timeout = cpu_to_le16(1);
348 hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp);
349 }
350}
351
Marcel Holtmann04837f62006-07-03 10:02:33 +0200352static void hci_conn_idle(unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Marcel Holtmann04837f62006-07-03 10:02:33 +0200354 struct hci_conn *conn = (void *) arg;
355
356 BT_DBG("conn %p mode %d", conn, conn->mode);
357
358 hci_conn_enter_sniff_mode(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Johan Hedberg9f616562011-04-28 11:28:54 -0700361static void hci_conn_auto_accept(unsigned long arg)
362{
363 struct hci_conn *conn = (void *) arg;
364 struct hci_dev *hdev = conn->hdev;
365
Johan Hedberg9f616562011-04-28 11:28:54 -0700366 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY, sizeof(conn->dst),
367 &conn->dst);
Johan Hedberg9f616562011-04-28 11:28:54 -0700368}
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst)
371{
372 struct hci_conn *conn;
373
374 BT_DBG("%s dst %s", hdev->name, batostr(dst));
375
Marcel Holtmann04837f62006-07-03 10:02:33 +0200376 conn = kzalloc(sizeof(struct hci_conn), GFP_ATOMIC);
377 if (!conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 bacpy(&conn->dst, dst);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200381 conn->hdev = hdev;
382 conn->type = type;
383 conn->mode = HCI_CM_ACTIVE;
384 conn->state = BT_OPEN;
Andrei Emeltchenko93f19c92009-09-03 12:34:19 +0300385 conn->auth_type = HCI_AT_GENERAL_BONDING;
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200386 conn->io_capability = hdev->io_capability;
Johan Hedberga9583552011-02-19 12:06:01 -0300387 conn->remote_auth = 0xff;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200388 conn->key_type = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Johan Hedberg58a681e2012-01-16 06:47:28 +0200390 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200391 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200392
Marcel Holtmanna8746412008-07-14 20:13:46 +0200393 switch (type) {
394 case ACL_LINK:
395 conn->pkt_type = hdev->pkt_type & ACL_PTYPE_MASK;
396 break;
397 case SCO_LINK:
398 if (lmp_esco_capable(hdev))
Marcel Holtmannefc76882009-02-06 09:13:37 +0100399 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
400 (hdev->esco_type & EDR_ESCO_MASK);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200401 else
402 conn->pkt_type = hdev->pkt_type & SCO_PTYPE_MASK;
403 break;
404 case ESCO_LINK:
Marcel Holtmannefc76882009-02-06 09:13:37 +0100405 conn->pkt_type = hdev->esco_type & ~EDR_ESCO_MASK;
Marcel Holtmanna8746412008-07-14 20:13:46 +0200406 break;
407 }
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 skb_queue_head_init(&conn->data_q);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200410
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200411 INIT_LIST_HEAD(&conn->chan_list);;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200412
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300413 INIT_DELAYED_WORK(&conn->disc_work, hci_conn_timeout);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800414 setup_timer(&conn->idle_timer, hci_conn_idle, (unsigned long)conn);
Johan Hedberg9f616562011-04-28 11:28:54 -0700415 setup_timer(&conn->auto_accept_timer, hci_conn_auto_accept,
416 (unsigned long) conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 atomic_set(&conn->refcnt, 0);
419
420 hci_dev_hold(hdev);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 hci_conn_hash_add(hdev, conn);
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200423 if (hdev->notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 hdev->notify(hdev, HCI_NOTIFY_CONN_ADD);
425
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700426 atomic_set(&conn->devref, 0);
427
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700428 hci_conn_init_sysfs(conn);
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return conn;
431}
432
433int hci_conn_del(struct hci_conn *conn)
434{
435 struct hci_dev *hdev = conn->hdev;
436
437 BT_DBG("%s conn %p handle %d", hdev->name, conn, conn->handle);
438
Marcel Holtmann04837f62006-07-03 10:02:33 +0200439 del_timer(&conn->idle_timer);
440
Gustavo F. Padovan19c40e32011-06-17 13:03:21 -0300441 cancel_delayed_work_sync(&conn->disc_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Johan Hedberg9f616562011-04-28 11:28:54 -0700443 del_timer(&conn->auto_accept_timer);
444
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200445 if (conn->type == ACL_LINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 struct hci_conn *sco = conn->link;
447 if (sco)
448 sco->link = NULL;
449
450 /* Unacked frames */
451 hdev->acl_cnt += conn->sent;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300452 } else if (conn->type == LE_LINK) {
453 if (hdev->le_pkts)
454 hdev->le_cnt += conn->sent;
455 else
456 hdev->acl_cnt += conn->sent;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200457 } else {
458 struct hci_conn *acl = conn->link;
459 if (acl) {
460 acl->link = NULL;
461 hci_conn_put(acl);
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +0200465
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200466 hci_chan_list_flush(conn);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 hci_conn_hash_del(hdev, conn);
Gustavo F. Padovan3c547112011-12-14 22:58:44 -0200469 if (hdev->notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 hdev->notify(hdev, HCI_NOTIFY_CONN_DEL);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +0200471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 skb_queue_purge(&conn->data_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700474 hci_conn_put_device(conn);
Dave Young2ae9a6b2009-02-21 16:13:34 +0800475
Marcel Holtmann384943e2009-05-08 18:20:43 -0700476 hci_dev_put(hdev);
477
Tomas Targownik163f4da2011-06-30 16:30:44 -0300478 if (conn->handle == 0)
479 kfree(conn);
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return 0;
482}
483
484struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src)
485{
486 int use_src = bacmp(src, BDADDR_ANY);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200487 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 BT_DBG("%s -> %s", batostr(src), batostr(dst));
490
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200491 read_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200493 list_for_each_entry(d, &hci_dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (!test_bit(HCI_UP, &d->flags) || test_bit(HCI_RAW, &d->flags))
495 continue;
496
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900497 /* Simple routing:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * No source address - find interface with bdaddr != dst
499 * Source address - find interface with bdaddr == src
500 */
501
502 if (use_src) {
503 if (!bacmp(&d->bdaddr, src)) {
504 hdev = d; break;
505 }
506 } else {
507 if (bacmp(&d->bdaddr, dst)) {
508 hdev = d; break;
509 }
510 }
511 }
512
513 if (hdev)
514 hdev = hci_dev_hold(hdev);
515
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200516 read_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return hdev;
518}
519EXPORT_SYMBOL(hci_get_route);
520
Ville Tervofcd89c02011-02-10 22:38:47 -0300521/* Create SCO, ACL or LE connection.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * Device _must_ be locked */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100523struct 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 -0700524{
525 struct hci_conn *acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200526 struct hci_conn *sco;
Ville Tervofcd89c02011-02-10 22:38:47 -0300527 struct hci_conn *le;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 BT_DBG("%s dst %s", hdev->name, batostr(dst));
530
Ville Tervofcd89c02011-02-10 22:38:47 -0300531 if (type == LE_LINK) {
Andre Guedeseda42b52011-05-31 14:20:56 -0300532 struct adv_entry *entry;
533
Ville Tervofcd89c02011-02-10 22:38:47 -0300534 le = hci_conn_hash_lookup_ba(hdev, LE_LINK, dst);
Anderson Briglia15c47942011-02-21 15:09:23 -0300535 if (le)
Ville Tervo30e76272011-02-22 16:10:53 -0300536 return ERR_PTR(-EBUSY);
Andre Guedeseda42b52011-05-31 14:20:56 -0300537
538 entry = hci_find_adv_entry(hdev, dst);
539 if (!entry)
540 return ERR_PTR(-EHOSTUNREACH);
541
Anderson Briglia15c47942011-02-21 15:09:23 -0300542 le = hci_conn_add(hdev, LE_LINK, dst);
Ville Tervofcd89c02011-02-10 22:38:47 -0300543 if (!le)
Ville Tervo30e76272011-02-22 16:10:53 -0300544 return ERR_PTR(-ENOMEM);
Andre Guedes893d6752011-05-31 14:20:55 -0300545
Andre Guedeseda42b52011-05-31 14:20:56 -0300546 le->dst_type = entry->bdaddr_type;
547
Andre Guedes893d6752011-05-31 14:20:55 -0300548 hci_le_connect(le);
Ville Tervofcd89c02011-02-10 22:38:47 -0300549
550 hci_conn_hold(le);
551
552 return le;
553 }
554
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200555 acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst);
556 if (!acl) {
557 acl = hci_conn_add(hdev, ACL_LINK, dst);
558 if (!acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return NULL;
560 }
561
562 hci_conn_hold(acl);
563
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200564 if (acl->state == BT_OPEN || acl->state == BT_CLOSED) {
Johan Hedberg765c2a92011-01-19 12:06:52 +0530565 acl->sec_level = BT_SECURITY_LOW;
566 acl->pending_sec_level = sec_level;
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200567 acl->auth_type = auth_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 hci_acl_connect(acl);
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200571 if (type == ACL_LINK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200573
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200574 sco = hci_conn_hash_lookup_ba(hdev, type, dst);
575 if (!sco) {
576 sco = hci_conn_add(hdev, type, dst);
577 if (!sco) {
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200578 hci_conn_put(acl);
579 return NULL;
580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200582
583 acl->link = sco;
584 sco->link = acl;
585
586 hci_conn_hold(sco);
587
588 if (acl->state == BT_CONNECTED &&
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200589 (sco->state == BT_OPEN || sco->state == BT_CLOSED)) {
Johan Hedberg58a681e2012-01-16 06:47:28 +0200590 set_bit(HCI_CONN_POWER_SAVE, &acl->flags);
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700591 hci_conn_enter_active_mode(acl, BT_POWER_FORCE_ACTIVE_ON);
Nick Pellyc3902162009-11-13 14:16:32 -0800592
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200593 if (test_bit(HCI_CONN_MODE_CHANGE_PEND, &acl->flags)) {
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400594 /* defer SCO setup until mode change completed */
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200595 set_bit(HCI_CONN_SCO_SETUP_PEND, &acl->flags);
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400596 return sco;
597 }
598
599 hci_sco_setup(acl, 0x00);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200600 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200601
602 return sco;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604EXPORT_SYMBOL(hci_connect);
605
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200606/* Check link security requirement */
607int hci_conn_check_link_mode(struct hci_conn *conn)
608{
609 BT_DBG("conn %p", conn);
610
Johan Hedberg58a681e2012-01-16 06:47:28 +0200611 if (test_bit(HCI_CONN_SSP_ENABLED, &conn->flags) &&
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200612 test_bit(HCI_SSP_ENABLED, &conn->hdev->dev_flags) &&
613 !(conn->link_mode & HCI_LM_ENCRYPT))
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200614 return 0;
615
616 return 1;
617}
618EXPORT_SYMBOL(hci_conn_check_link_mode);
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/* Authenticate remote device */
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100621static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 BT_DBG("conn %p", conn);
624
Johan Hedberg765c2a92011-01-19 12:06:52 +0530625 if (conn->pending_sec_level > sec_level)
626 sec_level = conn->pending_sec_level;
627
Marcel Holtmann96a31832009-02-12 16:23:03 +0100628 if (sec_level > conn->sec_level)
Johan Hedberg765c2a92011-01-19 12:06:52 +0530629 conn->pending_sec_level = sec_level;
Marcel Holtmann96a31832009-02-12 16:23:03 +0100630 else if (conn->link_mode & HCI_LM_AUTH)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return 1;
632
Johan Hedberg65cf6862011-01-19 12:06:49 +0530633 /* Make sure we preserve an existing MITM requirement*/
634 auth_type |= (conn->auth_type & 0x01);
635
Marcel Holtmann96a31832009-02-12 16:23:03 +0100636 conn->auth_type = auth_type;
637
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200638 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 struct hci_cp_auth_requested cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700640 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200641 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED,
642 sizeof(cp), &cp);
Waldemar Rymarkiewicz19f8def2011-05-31 15:49:25 +0200643 if (conn->key_type != 0xff)
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200644 set_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return 0;
648}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200650/* Encrypt the the link */
651static void hci_conn_encrypt(struct hci_conn *conn)
652{
653 BT_DBG("conn %p", conn);
654
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200655 if (!test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200656 struct hci_cp_set_conn_encrypt cp;
657 cp.handle = cpu_to_le16(conn->handle);
658 cp.encrypt = 0x01;
659 hci_send_cmd(conn->hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
660 &cp);
661 }
662}
663
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100664/* Enable security */
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100665int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 BT_DBG("conn %p", conn);
668
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200669 /* For sdp we don't need the link key. */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100670 if (sec_level == BT_SECURITY_SDP)
671 return 1;
672
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200673 /* For non 2.1 devices and low security level we don't need the link
674 key. */
Marcel Holtmann3fdca1e2009-04-28 09:04:55 -0700675 if (sec_level == BT_SECURITY_LOW &&
Johan Hedberg58a681e2012-01-16 06:47:28 +0200676 (!test_bit(HCI_CONN_SSP_ENABLED, &conn->flags) ||
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200677 !test_bit(HCI_SSP_ENABLED, &conn->hdev->dev_flags)))
Marcel Holtmann3fdca1e2009-04-28 09:04:55 -0700678 return 1;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100679
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200680 /* For other security levels we need the link key. */
681 if (!(conn->link_mode & HCI_LM_AUTH))
682 goto auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200684 /* An authenticated combination key has sufficient security for any
685 security level. */
686 if (conn->key_type == HCI_LK_AUTH_COMBINATION)
687 goto encrypt;
688
689 /* An unauthenticated combination key has sufficient security for
690 security level 1 and 2. */
691 if (conn->key_type == HCI_LK_UNAUTH_COMBINATION &&
692 (sec_level == BT_SECURITY_MEDIUM ||
693 sec_level == BT_SECURITY_LOW))
694 goto encrypt;
695
696 /* A combination key has always sufficient security for the security
697 levels 1 or 2. High security level requires the combination key
698 is generated using maximum PIN code length (16).
699 For pre 2.1 units. */
700 if (conn->key_type == HCI_LK_COMBINATION &&
701 (sec_level != BT_SECURITY_HIGH ||
702 conn->pin_length == 16))
703 goto encrypt;
704
705auth:
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200706 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708
Luiz Augusto von Dentz6fdf6582011-06-13 15:37:35 +0300709 if (!hci_conn_auth(conn, sec_level, auth_type))
710 return 0;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100711
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200712encrypt:
713 if (conn->link_mode & HCI_LM_ENCRYPT)
714 return 1;
715
716 hci_conn_encrypt(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 0;
718}
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100719EXPORT_SYMBOL(hci_conn_security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200721/* Check secure link requirement */
722int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level)
723{
724 BT_DBG("conn %p", conn);
725
726 if (sec_level != BT_SECURITY_HIGH)
727 return 1; /* Accept if non-secure is required */
728
Waldemar Rymarkiewiczef4177e2011-06-02 14:24:52 +0200729 if (conn->sec_level == BT_SECURITY_HIGH)
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200730 return 1;
731
732 return 0; /* Reject not secure link */
733}
734EXPORT_SYMBOL(hci_conn_check_secure);
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/* Change link key */
737int hci_conn_change_link_key(struct hci_conn *conn)
738{
739 BT_DBG("conn %p", conn);
740
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200741 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct hci_cp_change_conn_link_key cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700743 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200744 hci_send_cmd(conn->hdev, HCI_OP_CHANGE_CONN_LINK_KEY,
745 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_change_link_key);
751
752/* Switch role */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100753int hci_conn_switch_role(struct hci_conn *conn, __u8 role)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 BT_DBG("conn %p", conn);
756
757 if (!role && conn->link_mode & HCI_LM_MASTER)
758 return 1;
759
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200760 if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 struct hci_cp_switch_role cp;
762 bacpy(&cp.bdaddr, &conn->dst);
763 cp.role = role;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200764 hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return 0;
768}
769EXPORT_SYMBOL(hci_conn_switch_role);
770
Marcel Holtmann04837f62006-07-03 10:02:33 +0200771/* Enter active mode */
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700772void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200773{
774 struct hci_dev *hdev = conn->hdev;
775
776 BT_DBG("conn %p mode %d", conn, conn->mode);
777
778 if (test_bit(HCI_RAW, &hdev->flags))
779 return;
780
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -0700781 if (conn->mode != HCI_CM_SNIFF)
782 goto timer;
783
Johan Hedberg58a681e2012-01-16 06:47:28 +0200784 if (!test_bit(HCI_CONN_POWER_SAVE, &conn->flags) && !force_active)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200785 goto timer;
786
Johan Hedberg51a8efd2012-01-16 06:10:31 +0200787 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
Marcel Holtmann04837f62006-07-03 10:02:33 +0200788 struct hci_cp_exit_sniff_mode cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700789 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200790 hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200791 }
792
793timer:
794 if (hdev->idle_timeout > 0)
795 mod_timer(&conn->idle_timer,
796 jiffies + msecs_to_jiffies(hdev->idle_timeout));
797}
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799/* Drop all connection on the device */
800void hci_conn_hash_flush(struct hci_dev *hdev)
801{
802 struct hci_conn_hash *h = &hdev->conn_hash;
Gustavo F. Padovan3e9c40a2011-12-14 22:52:31 -0200803 struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 BT_DBG("hdev %s", hdev->name);
806
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -0200807 list_for_each_entry_rcu(c, &h->list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 c->state = BT_CLOSED;
809
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +0200810 hci_proto_disconn_cfm(c, HCI_ERROR_LOCAL_HOST_TERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 hci_conn_del(c);
812 }
813}
814
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200815/* Check pending connect attempts */
816void hci_conn_check_pending(struct hci_dev *hdev)
817{
818 struct hci_conn *conn;
819
820 BT_DBG("hdev %s", hdev->name);
821
822 hci_dev_lock(hdev);
823
824 conn = hci_conn_hash_lookup_state(hdev, ACL_LINK, BT_CONNECT2);
825 if (conn)
826 hci_acl_connect(conn);
827
828 hci_dev_unlock(hdev);
829}
830
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700831void hci_conn_hold_device(struct hci_conn *conn)
832{
833 atomic_inc(&conn->devref);
834}
835EXPORT_SYMBOL(hci_conn_hold_device);
836
837void hci_conn_put_device(struct hci_conn *conn)
838{
839 if (atomic_dec_and_test(&conn->devref))
840 hci_conn_del_sysfs(conn);
841}
842EXPORT_SYMBOL(hci_conn_put_device);
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844int hci_get_conn_list(void __user *arg)
845{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200846 register struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 struct hci_conn_list_req req, *cl;
848 struct hci_conn_info *ci;
849 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 int n = 0, size, err;
851
852 if (copy_from_user(&req, arg, sizeof(req)))
853 return -EFAULT;
854
855 if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci))
856 return -EINVAL;
857
858 size = sizeof(req) + req.conn_num * sizeof(*ci);
859
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200860 cl = kmalloc(size, GFP_KERNEL);
861 if (!cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return -ENOMEM;
863
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200864 hdev = hci_dev_get(req.dev_id);
865 if (!hdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 kfree(cl);
867 return -ENODEV;
868 }
869
870 ci = cl->conn_info;
871
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300872 hci_dev_lock(hdev);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200873 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 bacpy(&(ci + n)->bdaddr, &c->dst);
875 (ci + n)->handle = c->handle;
876 (ci + n)->type = c->type;
877 (ci + n)->out = c->out;
878 (ci + n)->state = c->state;
879 (ci + n)->link_mode = c->link_mode;
880 if (++n >= req.conn_num)
881 break;
882 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300883 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 cl->dev_id = hdev->id;
886 cl->conn_num = n;
887 size = sizeof(req) + n * sizeof(*ci);
888
889 hci_dev_put(hdev);
890
891 err = copy_to_user(arg, cl, size);
892 kfree(cl);
893
894 return err ? -EFAULT : 0;
895}
896
897int hci_get_conn_info(struct hci_dev *hdev, void __user *arg)
898{
899 struct hci_conn_info_req req;
900 struct hci_conn_info ci;
901 struct hci_conn *conn;
902 char __user *ptr = arg + sizeof(req);
903
904 if (copy_from_user(&req, arg, sizeof(req)))
905 return -EFAULT;
906
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300907 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr);
909 if (conn) {
910 bacpy(&ci.bdaddr, &conn->dst);
911 ci.handle = conn->handle;
912 ci.type = conn->type;
913 ci.out = conn->out;
914 ci.state = conn->state;
915 ci.link_mode = conn->link_mode;
916 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300917 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 if (!conn)
920 return -ENOENT;
921
922 return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
923}
Marcel Holtmann40be4922008-07-14 20:13:50 +0200924
925int hci_get_auth_info(struct hci_dev *hdev, void __user *arg)
926{
927 struct hci_auth_info_req req;
928 struct hci_conn *conn;
929
930 if (copy_from_user(&req, arg, sizeof(req)))
931 return -EFAULT;
932
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300933 hci_dev_lock(hdev);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200934 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &req.bdaddr);
935 if (conn)
936 req.type = conn->auth_type;
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300937 hci_dev_unlock(hdev);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200938
939 if (!conn)
940 return -ENOENT;
941
942 return copy_to_user(arg, &req, sizeof(req)) ? -EFAULT : 0;
943}
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200944
945struct hci_chan *hci_chan_create(struct hci_conn *conn)
946{
947 struct hci_dev *hdev = conn->hdev;
948 struct hci_chan *chan;
949
950 BT_DBG("%s conn %p", hdev->name, conn);
951
952 chan = kzalloc(sizeof(struct hci_chan), GFP_ATOMIC);
953 if (!chan)
954 return NULL;
955
956 chan->conn = conn;
957 skb_queue_head_init(&chan->data_q);
958
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -0200959 list_add_rcu(&chan->list, &conn->chan_list);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200960
961 return chan;
962}
963
964int hci_chan_del(struct hci_chan *chan)
965{
966 struct hci_conn *conn = chan->conn;
967 struct hci_dev *hdev = conn->hdev;
968
969 BT_DBG("%s conn %p chan %p", hdev->name, conn, chan);
970
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -0200971 list_del_rcu(&chan->list);
972
973 synchronize_rcu();
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200974
975 skb_queue_purge(&chan->data_q);
976 kfree(chan);
977
978 return 0;
979}
980
Gustavo F. Padovan2c33c062011-12-14 13:02:51 -0200981void hci_chan_list_flush(struct hci_conn *conn)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200982{
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -0200983 struct hci_chan *chan;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200984
985 BT_DBG("conn %p", conn);
986
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -0200987 list_for_each_entry_rcu(chan, &conn->chan_list, list)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +0200988 hci_chan_del(chan);
989}