blob: ce67d0ff486ff696ab87cddf007632442557ba1a [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;
54 conn->out = 1;
Vinicius Costa Gomesb92a6222011-02-10 22:38:52 -030055 conn->link_mode |= HCI_LM_MASTER;
Ville Tervofcd89c02011-02-10 22:38:47 -030056
57 memset(&cp, 0, sizeof(cp));
58 cp.scan_interval = cpu_to_le16(0x0004);
59 cp.scan_window = cpu_to_le16(0x0004);
60 bacpy(&cp.peer_addr, &conn->dst);
Andre Guedes6d3ce0e72011-05-31 14:20:57 -030061 cp.peer_addr_type = conn->dst_type;
Ville Tervofcd89c02011-02-10 22:38:47 -030062 cp.conn_interval_min = cpu_to_le16(0x0008);
63 cp.conn_interval_max = cpu_to_le16(0x0100);
64 cp.supervision_timeout = cpu_to_le16(0x0064);
65 cp.min_ce_len = cpu_to_le16(0x0001);
66 cp.max_ce_len = cpu_to_le16(0x0001);
67
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
82 BT_DBG("%p", conn);
83
84 conn->state = BT_CONNECT;
Marcel Holtmanna8746412008-07-14 20:13:46 +020085 conn->out = 1;
86
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);
Marcel Holtmann41a96212008-07-14 20:13:48 +0200107 conn->ssp_mode = ie->data.ssp_mode;
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
125 if (conn->hdev->hci_ver < 2)
126 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;
153 conn->out = 1;
154
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;
171 conn->out = 1;
172
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,
188 u16 latency, u16 to_multiplier)
189{
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
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400207/* Device _must_ be locked */
208void hci_sco_setup(struct hci_conn *conn, __u8 status)
209{
210 struct hci_conn *sco = conn->link;
211
212 BT_DBG("%p", conn);
213
214 if (!sco)
215 return;
216
217 if (!status) {
218 if (lmp_esco_capable(conn->hdev))
219 hci_setup_sync(sco, conn->handle);
220 else
221 hci_add_sco(sco, conn->handle);
222 } else {
223 hci_proto_connect_cfm(sco, status);
224 hci_conn_del(sco);
225 }
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static void hci_conn_timeout(unsigned long arg)
229{
Marcel Holtmann04837f62006-07-03 10:02:33 +0200230 struct hci_conn *conn = (void *) arg;
231 struct hci_dev *hdev = conn->hdev;
Marcel Holtmann2950f212009-02-12 14:02:50 +0100232 __u8 reason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 BT_DBG("conn %p state %d", conn, conn->state);
235
236 if (atomic_read(&conn->refcnt))
237 return;
238
239 hci_dev_lock(hdev);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200240
241 switch (conn->state) {
242 case BT_CONNECT:
Marcel Holtmann769be972008-07-14 20:13:49 +0200243 case BT_CONNECT2:
Ville Tervofcd89c02011-02-10 22:38:47 -0300244 if (conn->out) {
245 if (conn->type == ACL_LINK)
246 hci_acl_connect_cancel(conn);
247 else if (conn->type == LE_LINK)
248 hci_le_connect_cancel(conn);
249 }
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200250 break;
Marcel Holtmann769be972008-07-14 20:13:49 +0200251 case BT_CONFIG:
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900252 case BT_CONNECTED:
Marcel Holtmann2950f212009-02-12 14:02:50 +0100253 reason = hci_proto_disconn_ind(conn);
254 hci_acl_disconn(conn, reason);
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200255 break;
256 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 conn->state = BT_CLOSED;
Marcel Holtmann6ac59342006-09-26 09:43:48 +0200258 break;
259 }
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Marcel Holtmann04837f62006-07-03 10:02:33 +0200264static void hci_conn_idle(unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Marcel Holtmann04837f62006-07-03 10:02:33 +0200266 struct hci_conn *conn = (void *) arg;
267
268 BT_DBG("conn %p mode %d", conn, conn->mode);
269
270 hci_conn_enter_sniff_mode(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Johan Hedberg9f616562011-04-28 11:28:54 -0700273static void hci_conn_auto_accept(unsigned long arg)
274{
275 struct hci_conn *conn = (void *) arg;
276 struct hci_dev *hdev = conn->hdev;
277
278 hci_dev_lock(hdev);
279
280 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY, sizeof(conn->dst),
281 &conn->dst);
282
283 hci_dev_unlock(hdev);
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst)
287{
288 struct hci_conn *conn;
289
290 BT_DBG("%s dst %s", hdev->name, batostr(dst));
291
Marcel Holtmann04837f62006-07-03 10:02:33 +0200292 conn = kzalloc(sizeof(struct hci_conn), GFP_ATOMIC);
293 if (!conn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 bacpy(&conn->dst, dst);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200297 conn->hdev = hdev;
298 conn->type = type;
299 conn->mode = HCI_CM_ACTIVE;
300 conn->state = BT_OPEN;
Andrei Emeltchenko93f19c92009-09-03 12:34:19 +0300301 conn->auth_type = HCI_AT_GENERAL_BONDING;
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200302 conn->io_capability = hdev->io_capability;
Johan Hedberga9583552011-02-19 12:06:01 -0300303 conn->remote_auth = 0xff;
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200304 conn->key_type = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Marcel Holtmann04837f62006-07-03 10:02:33 +0200306 conn->power_save = 1;
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200307 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200308
Marcel Holtmanna8746412008-07-14 20:13:46 +0200309 switch (type) {
310 case ACL_LINK:
311 conn->pkt_type = hdev->pkt_type & ACL_PTYPE_MASK;
312 break;
313 case SCO_LINK:
314 if (lmp_esco_capable(hdev))
Marcel Holtmannefc76882009-02-06 09:13:37 +0100315 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
316 (hdev->esco_type & EDR_ESCO_MASK);
Marcel Holtmanna8746412008-07-14 20:13:46 +0200317 else
318 conn->pkt_type = hdev->pkt_type & SCO_PTYPE_MASK;
319 break;
320 case ESCO_LINK:
Marcel Holtmannefc76882009-02-06 09:13:37 +0100321 conn->pkt_type = hdev->esco_type & ~EDR_ESCO_MASK;
Marcel Holtmanna8746412008-07-14 20:13:46 +0200322 break;
323 }
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 skb_queue_head_init(&conn->data_q);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200326
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800327 setup_timer(&conn->disc_timer, hci_conn_timeout, (unsigned long)conn);
328 setup_timer(&conn->idle_timer, hci_conn_idle, (unsigned long)conn);
Johan Hedberg9f616562011-04-28 11:28:54 -0700329 setup_timer(&conn->auto_accept_timer, hci_conn_auto_accept,
330 (unsigned long) conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 atomic_set(&conn->refcnt, 0);
333
334 hci_dev_hold(hdev);
335
336 tasklet_disable(&hdev->tx_task);
337
338 hci_conn_hash_add(hdev, conn);
339 if (hdev->notify)
340 hdev->notify(hdev, HCI_NOTIFY_CONN_ADD);
341
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700342 atomic_set(&conn->devref, 0);
343
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700344 hci_conn_init_sysfs(conn);
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 tasklet_enable(&hdev->tx_task);
347
348 return conn;
349}
350
351int hci_conn_del(struct hci_conn *conn)
352{
353 struct hci_dev *hdev = conn->hdev;
354
355 BT_DBG("%s conn %p handle %d", hdev->name, conn, conn->handle);
356
Marcel Holtmann04837f62006-07-03 10:02:33 +0200357 del_timer(&conn->idle_timer);
358
359 del_timer(&conn->disc_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Johan Hedberg9f616562011-04-28 11:28:54 -0700361 del_timer(&conn->auto_accept_timer);
362
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200363 if (conn->type == ACL_LINK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct hci_conn *sco = conn->link;
365 if (sco)
366 sco->link = NULL;
367
368 /* Unacked frames */
369 hdev->acl_cnt += conn->sent;
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300370 } else if (conn->type == LE_LINK) {
371 if (hdev->le_pkts)
372 hdev->le_cnt += conn->sent;
373 else
374 hdev->acl_cnt += conn->sent;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200375 } else {
376 struct hci_conn *acl = conn->link;
377 if (acl) {
378 acl->link = NULL;
379 hci_conn_put(acl);
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383 tasklet_disable(&hdev->tx_task);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +0200384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 hci_conn_hash_del(hdev, conn);
386 if (hdev->notify)
387 hdev->notify(hdev, HCI_NOTIFY_CONN_DEL);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +0200388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 tasklet_enable(&hdev->tx_task);
Marcel Holtmann7d0db0a2008-07-14 20:13:51 +0200390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 skb_queue_purge(&conn->data_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700393 hci_conn_put_device(conn);
Dave Young2ae9a6b2009-02-21 16:13:34 +0800394
Marcel Holtmann384943e2009-05-08 18:20:43 -0700395 hci_dev_put(hdev);
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return 0;
398}
399
400struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src)
401{
402 int use_src = bacmp(src, BDADDR_ANY);
403 struct hci_dev *hdev = NULL;
404 struct list_head *p;
405
406 BT_DBG("%s -> %s", batostr(src), batostr(dst));
407
408 read_lock_bh(&hci_dev_list_lock);
409
410 list_for_each(p, &hci_dev_list) {
411 struct hci_dev *d = list_entry(p, struct hci_dev, list);
412
413 if (!test_bit(HCI_UP, &d->flags) || test_bit(HCI_RAW, &d->flags))
414 continue;
415
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900416 /* Simple routing:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * No source address - find interface with bdaddr != dst
418 * Source address - find interface with bdaddr == src
419 */
420
421 if (use_src) {
422 if (!bacmp(&d->bdaddr, src)) {
423 hdev = d; break;
424 }
425 } else {
426 if (bacmp(&d->bdaddr, dst)) {
427 hdev = d; break;
428 }
429 }
430 }
431
432 if (hdev)
433 hdev = hci_dev_hold(hdev);
434
435 read_unlock_bh(&hci_dev_list_lock);
436 return hdev;
437}
438EXPORT_SYMBOL(hci_get_route);
439
Ville Tervofcd89c02011-02-10 22:38:47 -0300440/* Create SCO, ACL or LE connection.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * Device _must_ be locked */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100442struct 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 -0700443{
444 struct hci_conn *acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200445 struct hci_conn *sco;
Ville Tervofcd89c02011-02-10 22:38:47 -0300446 struct hci_conn *le;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 BT_DBG("%s dst %s", hdev->name, batostr(dst));
449
Ville Tervofcd89c02011-02-10 22:38:47 -0300450 if (type == LE_LINK) {
Andre Guedeseda42b52011-05-31 14:20:56 -0300451 struct adv_entry *entry;
452
Ville Tervofcd89c02011-02-10 22:38:47 -0300453 le = hci_conn_hash_lookup_ba(hdev, LE_LINK, dst);
Anderson Briglia15c47942011-02-21 15:09:23 -0300454 if (le)
Ville Tervo30e76272011-02-22 16:10:53 -0300455 return ERR_PTR(-EBUSY);
Andre Guedeseda42b52011-05-31 14:20:56 -0300456
457 entry = hci_find_adv_entry(hdev, dst);
458 if (!entry)
459 return ERR_PTR(-EHOSTUNREACH);
460
Anderson Briglia15c47942011-02-21 15:09:23 -0300461 le = hci_conn_add(hdev, LE_LINK, dst);
Ville Tervofcd89c02011-02-10 22:38:47 -0300462 if (!le)
Ville Tervo30e76272011-02-22 16:10:53 -0300463 return ERR_PTR(-ENOMEM);
Andre Guedes893d6752011-05-31 14:20:55 -0300464
Andre Guedeseda42b52011-05-31 14:20:56 -0300465 le->dst_type = entry->bdaddr_type;
466
Andre Guedes893d6752011-05-31 14:20:55 -0300467 hci_le_connect(le);
Ville Tervofcd89c02011-02-10 22:38:47 -0300468
469 hci_conn_hold(le);
470
471 return le;
472 }
473
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200474 acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst);
475 if (!acl) {
476 acl = hci_conn_add(hdev, ACL_LINK, dst);
477 if (!acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return NULL;
479 }
480
481 hci_conn_hold(acl);
482
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200483 if (acl->state == BT_OPEN || acl->state == BT_CLOSED) {
Johan Hedberg765c2a92011-01-19 12:06:52 +0530484 acl->sec_level = BT_SECURITY_LOW;
485 acl->pending_sec_level = sec_level;
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200486 acl->auth_type = auth_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 hci_acl_connect(acl);
Marcel Holtmann09ab6f42008-09-09 07:19:20 +0200488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200490 if (type == ACL_LINK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return acl;
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200492
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200493 sco = hci_conn_hash_lookup_ba(hdev, type, dst);
494 if (!sco) {
495 sco = hci_conn_add(hdev, type, dst);
496 if (!sco) {
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200497 hci_conn_put(acl);
498 return NULL;
499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200501
502 acl->link = sco;
503 sco->link = acl;
504
505 hci_conn_hold(sco);
506
507 if (acl->state == BT_CONNECTED &&
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200508 (sco->state == BT_OPEN || sco->state == BT_CLOSED)) {
Nick Pellyc3902162009-11-13 14:16:32 -0800509 acl->power_save = 1;
510 hci_conn_enter_active_mode(acl);
511
Marcel Holtmanne73439d2010-07-26 10:06:00 -0400512 if (test_bit(HCI_CONN_MODE_CHANGE_PEND, &acl->pend)) {
513 /* defer SCO setup until mode change completed */
514 set_bit(HCI_CONN_SCO_SETUP_PEND, &acl->pend);
515 return sco;
516 }
517
518 hci_sco_setup(acl, 0x00);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +0200519 }
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200520
521 return sco;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523EXPORT_SYMBOL(hci_connect);
524
Marcel Holtmanne7c29cb2008-09-09 07:19:20 +0200525/* Check link security requirement */
526int hci_conn_check_link_mode(struct hci_conn *conn)
527{
528 BT_DBG("conn %p", conn);
529
530 if (conn->ssp_mode > 0 && conn->hdev->ssp_mode > 0 &&
531 !(conn->link_mode & HCI_LM_ENCRYPT))
532 return 0;
533
534 return 1;
535}
536EXPORT_SYMBOL(hci_conn_check_link_mode);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/* Authenticate remote device */
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100539static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 BT_DBG("conn %p", conn);
542
Johan Hedberg765c2a92011-01-19 12:06:52 +0530543 if (conn->pending_sec_level > sec_level)
544 sec_level = conn->pending_sec_level;
545
Marcel Holtmann96a31832009-02-12 16:23:03 +0100546 if (sec_level > conn->sec_level)
Johan Hedberg765c2a92011-01-19 12:06:52 +0530547 conn->pending_sec_level = sec_level;
Marcel Holtmann96a31832009-02-12 16:23:03 +0100548 else if (conn->link_mode & HCI_LM_AUTH)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return 1;
550
Johan Hedberg65cf6862011-01-19 12:06:49 +0530551 /* Make sure we preserve an existing MITM requirement*/
552 auth_type |= (conn->auth_type & 0x01);
553
Marcel Holtmann96a31832009-02-12 16:23:03 +0100554 conn->auth_type = auth_type;
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
557 struct hci_cp_auth_requested cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700558 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200559 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED,
560 sizeof(cp), &cp);
Waldemar Rymarkiewicz19f8def2011-05-31 15:49:25 +0200561 if (conn->key_type != 0xff)
562 set_bit(HCI_CONN_REAUTH_PEND, &conn->pend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return 0;
566}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200568/* Encrypt the the link */
569static void hci_conn_encrypt(struct hci_conn *conn)
570{
571 BT_DBG("conn %p", conn);
572
573 if (!test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend)) {
574 struct hci_cp_set_conn_encrypt cp;
575 cp.handle = cpu_to_le16(conn->handle);
576 cp.encrypt = 0x01;
577 hci_send_cmd(conn->hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
578 &cp);
579 }
580}
581
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100582/* Enable security */
Marcel Holtmann0684e5f2009-02-09 02:48:38 +0100583int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
585 BT_DBG("conn %p", conn);
586
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200587 /* For sdp we don't need the link key. */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100588 if (sec_level == BT_SECURITY_SDP)
589 return 1;
590
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200591 /* For non 2.1 devices and low security level we don't need the link
592 key. */
Marcel Holtmann3fdca1e2009-04-28 09:04:55 -0700593 if (sec_level == BT_SECURITY_LOW &&
594 (!conn->ssp_mode || !conn->hdev->ssp_mode))
595 return 1;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100596
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200597 /* For other security levels we need the link key. */
598 if (!(conn->link_mode & HCI_LM_AUTH))
599 goto auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200601 /* An authenticated combination key has sufficient security for any
602 security level. */
603 if (conn->key_type == HCI_LK_AUTH_COMBINATION)
604 goto encrypt;
605
606 /* An unauthenticated combination key has sufficient security for
607 security level 1 and 2. */
608 if (conn->key_type == HCI_LK_UNAUTH_COMBINATION &&
609 (sec_level == BT_SECURITY_MEDIUM ||
610 sec_level == BT_SECURITY_LOW))
611 goto encrypt;
612
613 /* A combination key has always sufficient security for the security
614 levels 1 or 2. High security level requires the combination key
615 is generated using maximum PIN code length (16).
616 For pre 2.1 units. */
617 if (conn->key_type == HCI_LK_COMBINATION &&
618 (sec_level != BT_SECURITY_HIGH ||
619 conn->pin_length == 16))
620 goto encrypt;
621
622auth:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend))
624 return 0;
625
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200626 hci_conn_auth(conn, sec_level, auth_type);
627 return 0;
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100628
Waldemar Rymarkiewicz13d39312011-04-28 12:07:55 +0200629encrypt:
630 if (conn->link_mode & HCI_LM_ENCRYPT)
631 return 1;
632
633 hci_conn_encrypt(conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return 0;
635}
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100636EXPORT_SYMBOL(hci_conn_security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Waldemar Rymarkiewiczb3b1b062011-05-06 09:42:31 +0200638/* Check secure link requirement */
639int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level)
640{
641 BT_DBG("conn %p", conn);
642
643 if (sec_level != BT_SECURITY_HIGH)
644 return 1; /* Accept if non-secure is required */
645
646 if (conn->key_type == HCI_LK_AUTH_COMBINATION ||
647 (conn->key_type == HCI_LK_COMBINATION &&
648 conn->pin_length == 16))
649 return 1;
650
651 return 0; /* Reject not secure link */
652}
653EXPORT_SYMBOL(hci_conn_check_secure);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655/* Change link key */
656int hci_conn_change_link_key(struct hci_conn *conn)
657{
658 BT_DBG("conn %p", conn);
659
660 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->pend)) {
661 struct hci_cp_change_conn_link_key cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700662 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmann40be4922008-07-14 20:13:50 +0200663 hci_send_cmd(conn->hdev, HCI_OP_CHANGE_CONN_LINK_KEY,
664 sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return 0;
668}
669EXPORT_SYMBOL(hci_conn_change_link_key);
670
671/* Switch role */
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100672int hci_conn_switch_role(struct hci_conn *conn, __u8 role)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 BT_DBG("conn %p", conn);
675
676 if (!role && conn->link_mode & HCI_LM_MASTER)
677 return 1;
678
679 if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->pend)) {
680 struct hci_cp_switch_role cp;
681 bacpy(&cp.bdaddr, &conn->dst);
682 cp.role = role;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200683 hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
Marcel Holtmann8c1b2352009-01-15 21:58:04 +0100685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return 0;
687}
688EXPORT_SYMBOL(hci_conn_switch_role);
689
Marcel Holtmann04837f62006-07-03 10:02:33 +0200690/* Enter active mode */
691void hci_conn_enter_active_mode(struct hci_conn *conn)
692{
693 struct hci_dev *hdev = conn->hdev;
694
695 BT_DBG("conn %p mode %d", conn, conn->mode);
696
697 if (test_bit(HCI_RAW, &hdev->flags))
698 return;
699
700 if (conn->mode != HCI_CM_SNIFF || !conn->power_save)
701 goto timer;
702
703 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) {
704 struct hci_cp_exit_sniff_mode cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700705 cp.handle = cpu_to_le16(conn->handle);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200706 hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200707 }
708
709timer:
710 if (hdev->idle_timeout > 0)
711 mod_timer(&conn->idle_timer,
712 jiffies + msecs_to_jiffies(hdev->idle_timeout));
713}
714
715/* Enter sniff mode */
716void hci_conn_enter_sniff_mode(struct hci_conn *conn)
717{
718 struct hci_dev *hdev = conn->hdev;
719
720 BT_DBG("conn %p mode %d", conn, conn->mode);
721
722 if (test_bit(HCI_RAW, &hdev->flags))
723 return;
724
725 if (!lmp_sniff_capable(hdev) || !lmp_sniff_capable(conn))
726 return;
727
728 if (conn->mode != HCI_CM_ACTIVE || !(conn->link_policy & HCI_LP_SNIFF))
729 return;
730
731 if (lmp_sniffsubr_capable(hdev) && lmp_sniffsubr_capable(conn)) {
732 struct hci_cp_sniff_subrate cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700733 cp.handle = cpu_to_le16(conn->handle);
734 cp.max_latency = cpu_to_le16(0);
735 cp.min_remote_timeout = cpu_to_le16(0);
736 cp.min_local_timeout = cpu_to_le16(0);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200737 hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200738 }
739
740 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->pend)) {
741 struct hci_cp_sniff_mode cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700742 cp.handle = cpu_to_le16(conn->handle);
743 cp.max_interval = cpu_to_le16(hdev->sniff_max_interval);
744 cp.min_interval = cpu_to_le16(hdev->sniff_min_interval);
745 cp.attempt = cpu_to_le16(4);
746 cp.timeout = cpu_to_le16(1);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200747 hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200748 }
749}
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751/* Drop all connection on the device */
752void hci_conn_hash_flush(struct hci_dev *hdev)
753{
754 struct hci_conn_hash *h = &hdev->conn_hash;
755 struct list_head *p;
756
757 BT_DBG("hdev %s", hdev->name);
758
759 p = h->list.next;
760 while (p != &h->list) {
761 struct hci_conn *c;
762
763 c = list_entry(p, struct hci_conn, list);
764 p = p->next;
765
766 c->state = BT_CLOSED;
767
Marcel Holtmann2950f212009-02-12 14:02:50 +0100768 hci_proto_disconn_cfm(c, 0x16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 hci_conn_del(c);
770 }
771}
772
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200773/* Check pending connect attempts */
774void hci_conn_check_pending(struct hci_dev *hdev)
775{
776 struct hci_conn *conn;
777
778 BT_DBG("hdev %s", hdev->name);
779
780 hci_dev_lock(hdev);
781
782 conn = hci_conn_hash_lookup_state(hdev, ACL_LINK, BT_CONNECT2);
783 if (conn)
784 hci_acl_connect(conn);
785
786 hci_dev_unlock(hdev);
787}
788
Marcel Holtmann9eba32b2009-08-22 14:19:26 -0700789void hci_conn_hold_device(struct hci_conn *conn)
790{
791 atomic_inc(&conn->devref);
792}
793EXPORT_SYMBOL(hci_conn_hold_device);
794
795void hci_conn_put_device(struct hci_conn *conn)
796{
797 if (atomic_dec_and_test(&conn->devref))
798 hci_conn_del_sysfs(conn);
799}
800EXPORT_SYMBOL(hci_conn_put_device);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802int hci_get_conn_list(void __user *arg)
803{
804 struct hci_conn_list_req req, *cl;
805 struct hci_conn_info *ci;
806 struct hci_dev *hdev;
807 struct list_head *p;
808 int n = 0, size, err;
809
810 if (copy_from_user(&req, arg, sizeof(req)))
811 return -EFAULT;
812
813 if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci))
814 return -EINVAL;
815
816 size = sizeof(req) + req.conn_num * sizeof(*ci);
817
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200818 cl = kmalloc(size, GFP_KERNEL);
819 if (!cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return -ENOMEM;
821
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200822 hdev = hci_dev_get(req.dev_id);
823 if (!hdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 kfree(cl);
825 return -ENODEV;
826 }
827
828 ci = cl->conn_info;
829
830 hci_dev_lock_bh(hdev);
831 list_for_each(p, &hdev->conn_hash.list) {
832 register struct hci_conn *c;
833 c = list_entry(p, struct hci_conn, list);
834
835 bacpy(&(ci + n)->bdaddr, &c->dst);
836 (ci + n)->handle = c->handle;
837 (ci + n)->type = c->type;
838 (ci + n)->out = c->out;
839 (ci + n)->state = c->state;
840 (ci + n)->link_mode = c->link_mode;
841 if (++n >= req.conn_num)
842 break;
843 }
844 hci_dev_unlock_bh(hdev);
845
846 cl->dev_id = hdev->id;
847 cl->conn_num = n;
848 size = sizeof(req) + n * sizeof(*ci);
849
850 hci_dev_put(hdev);
851
852 err = copy_to_user(arg, cl, size);
853 kfree(cl);
854
855 return err ? -EFAULT : 0;
856}
857
858int hci_get_conn_info(struct hci_dev *hdev, void __user *arg)
859{
860 struct hci_conn_info_req req;
861 struct hci_conn_info ci;
862 struct hci_conn *conn;
863 char __user *ptr = arg + sizeof(req);
864
865 if (copy_from_user(&req, arg, sizeof(req)))
866 return -EFAULT;
867
868 hci_dev_lock_bh(hdev);
869 conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr);
870 if (conn) {
871 bacpy(&ci.bdaddr, &conn->dst);
872 ci.handle = conn->handle;
873 ci.type = conn->type;
874 ci.out = conn->out;
875 ci.state = conn->state;
876 ci.link_mode = conn->link_mode;
877 }
878 hci_dev_unlock_bh(hdev);
879
880 if (!conn)
881 return -ENOENT;
882
883 return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
884}
Marcel Holtmann40be4922008-07-14 20:13:50 +0200885
886int hci_get_auth_info(struct hci_dev *hdev, void __user *arg)
887{
888 struct hci_auth_info_req req;
889 struct hci_conn *conn;
890
891 if (copy_from_user(&req, arg, sizeof(req)))
892 return -EFAULT;
893
894 hci_dev_lock_bh(hdev);
895 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &req.bdaddr);
896 if (conn)
897 req.type = conn->auth_type;
898 hci_dev_unlock_bh(hdev);
899
900 if (!conn)
901 return -ENOENT;
902
903 return copy_to_user(arg, &req, sizeof(req)) ? -EFAULT : 0;
904}