]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - net/bluetooth/hci_conn.c
Bluetooth: Fix conn_params list update in hci_connect_le_scan_cleanup
[mirror_ubuntu-zesty-kernel.git] / net / bluetooth / hci_conn.c
CommitLineData
8e87d142 1/*
1da177e4 2 BlueZ - Bluetooth protocol stack for Linux
2d0a0346 3 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
1da177e4
LT
4
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
8e87d142
YH
15 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
1da177e4
LT
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
8e87d142
YH
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
1da177e4
LT
22 SOFTWARE IS DISCLAIMED.
23*/
24
25/* Bluetooth HCI connection handling. */
26
8c520a59 27#include <linux/export.h>
23b9ceb7 28#include <linux/debugfs.h>
1da177e4
LT
29
30#include <net/bluetooth/bluetooth.h>
31#include <net/bluetooth/hci_core.h>
4bc58f51 32#include <net/bluetooth/l2cap.h>
1da177e4 33
0857dd3b 34#include "hci_request.h"
ac4b7236 35#include "smp.h"
7024728e
MH
36#include "a2mp.h"
37
2dea632f
FD
38struct sco_param {
39 u16 pkt_type;
40 u16 max_latency;
c7da5797 41 u8 retrans_effort;
2dea632f
FD
42};
43
48e68ff5 44static const struct sco_param esco_param_cvsd[] = {
c7da5797
JH
45 { EDR_ESCO_MASK & ~ESCO_2EV3, 0x000a, 0x01 }, /* S3 */
46 { EDR_ESCO_MASK & ~ESCO_2EV3, 0x0007, 0x01 }, /* S2 */
47 { EDR_ESCO_MASK | ESCO_EV3, 0x0007, 0x01 }, /* S1 */
48 { EDR_ESCO_MASK | ESCO_HV3, 0xffff, 0x01 }, /* D1 */
49 { EDR_ESCO_MASK | ESCO_HV1, 0xffff, 0x01 }, /* D0 */
2dea632f
FD
50};
51
48e68ff5 52static const struct sco_param sco_param_cvsd[] = {
c7da5797
JH
53 { EDR_ESCO_MASK | ESCO_HV3, 0xffff, 0xff }, /* D1 */
54 { EDR_ESCO_MASK | ESCO_HV1, 0xffff, 0xff }, /* D0 */
48e68ff5
BT
55};
56
565766b0 57static const struct sco_param esco_param_msbc[] = {
c7da5797
JH
58 { EDR_ESCO_MASK & ~ESCO_2EV3, 0x000d, 0x02 }, /* T2 */
59 { EDR_ESCO_MASK | ESCO_EV3, 0x0008, 0x02 }, /* T1 */
2dea632f
FD
60};
61
1aef8669 62static void hci_le_create_connection_cancel(struct hci_conn *conn)
fcd89c09
VT
63{
64 hci_send_cmd(conn->hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 0, NULL);
65}
66
f75113a2
JP
67/* This function requires the caller holds hdev->lock */
68static void hci_connect_le_scan_cleanup(struct hci_conn *conn)
69{
70 struct hci_conn_params *params;
71 struct smp_irk *irk;
72 bdaddr_t *bdaddr;
73 u8 bdaddr_type;
74
75 bdaddr = &conn->dst;
76 bdaddr_type = conn->dst_type;
77
78 /* Check if we need to convert to identity address */
79 irk = hci_get_irk(conn->hdev, bdaddr, bdaddr_type);
80 if (irk) {
81 bdaddr = &irk->bdaddr;
82 bdaddr_type = irk->addr_type;
83 }
84
85 params = hci_explicit_connect_lookup(conn->hdev, bdaddr, bdaddr_type);
86 if (!params)
87 return;
88
89 /* The connection attempt was doing scan for new RPA, and is
90 * in scan phase. If params are not associated with any other
91 * autoconnect action, remove them completely. If they are, just unmark
92 * them as waiting for connection, by clearing explicit_connect field.
93 */
9ad3e6ff
JH
94 params->explicit_connect = false;
95
96 list_del_init(&params->action);
97
98 switch (params->auto_connect) {
99 case HCI_AUTO_CONN_EXPLICIT:
f75113a2 100 hci_conn_params_del(conn->hdev, bdaddr, bdaddr_type);
9ad3e6ff
JH
101 /* return instead of break to avoid duplicate scan update */
102 return;
103 case HCI_AUTO_CONN_DIRECT:
104 case HCI_AUTO_CONN_ALWAYS:
105 list_add(&params->action, &conn->hdev->pend_le_conns);
106 break;
107 case HCI_AUTO_CONN_REPORT:
108 list_add(&params->action, &conn->hdev->pend_le_reports);
109 break;
110 default:
111 break;
168b8a25 112 }
9ad3e6ff
JH
113
114 hci_update_background_scan(conn->hdev);
f75113a2
JP
115}
116
b958f9a3
JH
117static void hci_conn_cleanup(struct hci_conn *conn)
118{
119 struct hci_dev *hdev = conn->hdev;
120
121 if (test_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags))
122 hci_conn_params_del(conn->hdev, &conn->dst, conn->dst_type);
123
124 hci_chan_list_flush(conn);
125
126 hci_conn_hash_del(hdev, conn);
127
128 if (hdev->notify)
129 hdev->notify(hdev, HCI_NOTIFY_CONN_DEL);
130
131 hci_conn_del_sysfs(conn);
132
133 debugfs_remove_recursive(conn->debugfs);
134
135 hci_dev_put(hdev);
136
137 hci_conn_put(conn);
138}
139
f75113a2
JP
140/* This function requires the caller holds hdev->lock */
141static void hci_connect_le_scan_remove(struct hci_conn *conn)
142{
143 hci_connect_le_scan_cleanup(conn);
144
b958f9a3
JH
145 /* We can't call hci_conn_del here since that would deadlock
146 * with trying to call cancel_delayed_work_sync(&conn->disc_work).
147 * Instead, call just hci_conn_cleanup() which contains the bare
148 * minimum cleanup operations needed for a connection in this
149 * state.
150 */
151 hci_conn_cleanup(conn);
f75113a2
JP
152}
153
1aef8669 154static void hci_acl_create_connection(struct hci_conn *conn)
1da177e4
LT
155{
156 struct hci_dev *hdev = conn->hdev;
157 struct inquiry_entry *ie;
158 struct hci_cp_create_conn cp;
159
42d2d87c 160 BT_DBG("hcon %p", conn);
1da177e4
LT
161
162 conn->state = BT_CONNECT;
a0c808b3 163 conn->out = true;
40bef302 164 conn->role = HCI_ROLE_MASTER;
1da177e4 165
4c67bc74
MH
166 conn->attempt++;
167
e4e8e37c
MH
168 conn->link_policy = hdev->link_policy;
169
1da177e4
LT
170 memset(&cp, 0, sizeof(cp));
171 bacpy(&cp.bdaddr, &conn->dst);
172 cp.pscan_rep_mode = 0x02;
173
70f23020
AE
174 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
175 if (ie) {
41a96212
MH
176 if (inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) {
177 cp.pscan_rep_mode = ie->data.pscan_rep_mode;
178 cp.pscan_mode = ie->data.pscan_mode;
179 cp.clock_offset = ie->data.clock_offset |
dcf4adbf 180 cpu_to_le16(0x8000);
41a96212
MH
181 }
182
1da177e4 183 memcpy(conn->dev_class, ie->data.dev_class, 3);
58a681ef
JH
184 if (ie->data.ssp_mode > 0)
185 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
1da177e4
LT
186 }
187
a8746417 188 cp.pkt_type = cpu_to_le16(conn->pkt_type);
1da177e4 189 if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER))
b6a0dc82 190 cp.role_switch = 0x01;
1da177e4 191 else
b6a0dc82 192 cp.role_switch = 0x00;
4c67bc74 193
a9de9248 194 hci_send_cmd(hdev, HCI_OP_CREATE_CONN, sizeof(cp), &cp);
1da177e4
LT
195}
196
1aef8669 197static void hci_acl_create_connection_cancel(struct hci_conn *conn)
6ac59344
MH
198{
199 struct hci_cp_create_conn_cancel cp;
200
38b3fef1 201 BT_DBG("hcon %p", conn);
6ac59344 202
d095c1eb 203 if (conn->hdev->hci_ver < BLUETOOTH_VER_1_2)
6ac59344
MH
204 return;
205
206 bacpy(&cp.bdaddr, &conn->dst);
a9de9248 207 hci_send_cmd(conn->hdev, HCI_OP_CREATE_CONN_CANCEL, sizeof(cp), &cp);
6ac59344
MH
208}
209
93796fa6
CT
210static void hci_reject_sco(struct hci_conn *conn)
211{
212 struct hci_cp_reject_sync_conn_req cp;
213
d41c15cf 214 cp.reason = HCI_ERROR_REJ_LIMITED_RESOURCES;
93796fa6
CT
215 bacpy(&cp.bdaddr, &conn->dst);
216
217 hci_send_cmd(conn->hdev, HCI_OP_REJECT_SYNC_CONN_REQ, sizeof(cp), &cp);
218}
219
e3b679d5 220int hci_disconnect(struct hci_conn *conn, __u8 reason)
1da177e4
LT
221{
222 struct hci_cp_disconnect cp;
223
38b3fef1 224 BT_DBG("hcon %p", conn);
1da177e4 225
839035a7
JH
226 /* When we are master of an established connection and it enters
227 * the disconnect timeout, then go ahead and try to read the
228 * current clock offset. Processing of the result is done
229 * within the event handling and hci_clock_offset_evt function.
230 */
231 if (conn->type == ACL_LINK && conn->role == HCI_ROLE_MASTER) {
232 struct hci_dev *hdev = conn->hdev;
4f639ede 233 struct hci_cp_read_clock_offset clkoff_cp;
839035a7 234
4f639ede
FF
235 clkoff_cp.handle = cpu_to_le16(conn->handle);
236 hci_send_cmd(hdev, HCI_OP_READ_CLOCK_OFFSET, sizeof(clkoff_cp),
237 &clkoff_cp);
839035a7
JH
238 }
239
1da177e4
LT
240 conn->state = BT_DISCONN;
241
aca3192c 242 cp.handle = cpu_to_le16(conn->handle);
1da177e4 243 cp.reason = reason;
e3b679d5 244 return hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp);
1da177e4
LT
245}
246
a2b1976b 247static void hci_amp_disconn(struct hci_conn *conn)
53502d69
AE
248{
249 struct hci_cp_disconn_phy_link cp;
250
251 BT_DBG("hcon %p", conn);
252
253 conn->state = BT_DISCONN;
254
255 cp.phy_handle = HCI_PHY_HANDLE(conn->handle);
a2b1976b 256 cp.reason = hci_proto_disconn_ind(conn);
53502d69
AE
257 hci_send_cmd(conn->hdev, HCI_OP_DISCONN_PHY_LINK,
258 sizeof(cp), &cp);
259}
260
57f5d0d1 261static void hci_add_sco(struct hci_conn *conn, __u16 handle)
1da177e4
LT
262{
263 struct hci_dev *hdev = conn->hdev;
264 struct hci_cp_add_sco cp;
265
38b3fef1 266 BT_DBG("hcon %p", conn);
1da177e4
LT
267
268 conn->state = BT_CONNECT;
a0c808b3 269 conn->out = true;
1da177e4 270
efc7688b
MH
271 conn->attempt++;
272
aca3192c 273 cp.handle = cpu_to_le16(handle);
a8746417 274 cp.pkt_type = cpu_to_le16(conn->pkt_type);
1da177e4 275
a9de9248 276 hci_send_cmd(hdev, HCI_OP_ADD_SCO, sizeof(cp), &cp);
1da177e4
LT
277}
278
2dea632f 279bool hci_setup_sync(struct hci_conn *conn, __u16 handle)
b6a0dc82
MH
280{
281 struct hci_dev *hdev = conn->hdev;
282 struct hci_cp_setup_sync_conn cp;
2dea632f 283 const struct sco_param *param;
b6a0dc82 284
38b3fef1 285 BT_DBG("hcon %p", conn);
b6a0dc82
MH
286
287 conn->state = BT_CONNECT;
a0c808b3 288 conn->out = true;
b6a0dc82 289
efc7688b
MH
290 conn->attempt++;
291
b6a0dc82 292 cp.handle = cpu_to_le16(handle);
b6a0dc82 293
dcf4adbf
JP
294 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
295 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
10c62ddc
FD
296 cp.voice_setting = cpu_to_le16(conn->setting);
297
298 switch (conn->setting & SCO_AIRMODE_MASK) {
299 case SCO_AIRMODE_TRANSP:
565766b0 300 if (conn->attempt > ARRAY_SIZE(esco_param_msbc))
2dea632f 301 return false;
565766b0 302 param = &esco_param_msbc[conn->attempt - 1];
10c62ddc
FD
303 break;
304 case SCO_AIRMODE_CVSD:
48e68ff5
BT
305 if (lmp_esco_capable(conn->link)) {
306 if (conn->attempt > ARRAY_SIZE(esco_param_cvsd))
307 return false;
48e68ff5
BT
308 param = &esco_param_cvsd[conn->attempt - 1];
309 } else {
310 if (conn->attempt > ARRAY_SIZE(sco_param_cvsd))
311 return false;
48e68ff5
BT
312 param = &sco_param_cvsd[conn->attempt - 1];
313 }
10c62ddc 314 break;
2dea632f
FD
315 default:
316 return false;
10c62ddc 317 }
b6a0dc82 318
c7da5797 319 cp.retrans_effort = param->retrans_effort;
2dea632f
FD
320 cp.pkt_type = __cpu_to_le16(param->pkt_type);
321 cp.max_latency = __cpu_to_le16(param->max_latency);
322
323 if (hci_send_cmd(hdev, HCI_OP_SETUP_SYNC_CONN, sizeof(cp), &cp) < 0)
324 return false;
325
326 return true;
b6a0dc82
MH
327}
328
7d6ca693
JH
329u8 hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max, u16 latency,
330 u16 to_multiplier)
2ce603eb 331{
2ce603eb 332 struct hci_dev *hdev = conn->hdev;
f044eb05
MH
333 struct hci_conn_params *params;
334 struct hci_cp_le_conn_update cp;
2ce603eb 335
f044eb05 336 hci_dev_lock(hdev);
2ce603eb 337
f044eb05
MH
338 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
339 if (params) {
340 params->conn_min_interval = min;
341 params->conn_max_interval = max;
342 params->conn_latency = latency;
343 params->supervision_timeout = to_multiplier;
344 }
345
346 hci_dev_unlock(hdev);
347
348 memset(&cp, 0, sizeof(cp));
2ce603eb
CT
349 cp.handle = cpu_to_le16(conn->handle);
350 cp.conn_interval_min = cpu_to_le16(min);
351 cp.conn_interval_max = cpu_to_le16(max);
352 cp.conn_latency = cpu_to_le16(latency);
353 cp.supervision_timeout = cpu_to_le16(to_multiplier);
dcf4adbf
JP
354 cp.min_ce_len = cpu_to_le16(0x0000);
355 cp.max_ce_len = cpu_to_le16(0x0000);
2ce603eb
CT
356
357 hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp);
7d6ca693
JH
358
359 if (params)
360 return 0x01;
361
362 return 0x00;
2ce603eb 363}
2ce603eb 364
fe39c7b2 365void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __le64 rand,
8b76ce34 366 __u8 ltk[16], __u8 key_size)
a7a595f6
VCG
367{
368 struct hci_dev *hdev = conn->hdev;
369 struct hci_cp_le_start_enc cp;
370
38b3fef1 371 BT_DBG("hcon %p", conn);
a7a595f6
VCG
372
373 memset(&cp, 0, sizeof(cp));
374
375 cp.handle = cpu_to_le16(conn->handle);
fe39c7b2 376 cp.rand = rand;
a7a595f6 377 cp.ediv = ediv;
8b76ce34 378 memcpy(cp.ltk, ltk, key_size);
a7a595f6
VCG
379
380 hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp);
381}
a7a595f6 382
e73439d8
MH
383/* Device _must_ be locked */
384void hci_sco_setup(struct hci_conn *conn, __u8 status)
385{
386 struct hci_conn *sco = conn->link;
387
e73439d8
MH
388 if (!sco)
389 return;
390
38b3fef1
AE
391 BT_DBG("hcon %p", conn);
392
e73439d8
MH
393 if (!status) {
394 if (lmp_esco_capable(conn->hdev))
395 hci_setup_sync(sco, conn->handle);
396 else
397 hci_add_sco(sco, conn->handle);
398 } else {
539c496d 399 hci_connect_cfm(sco, status);
e73439d8
MH
400 hci_conn_del(sco);
401 }
402}
403
19c40e3b 404static void hci_conn_timeout(struct work_struct *work)
1da177e4 405{
19c40e3b 406 struct hci_conn *conn = container_of(work, struct hci_conn,
5974e4c4 407 disc_work.work);
1d56dc4f 408 int refcnt = atomic_read(&conn->refcnt);
1da177e4 409
38b3fef1 410 BT_DBG("hcon %p state %s", conn, state_to_string(conn->state));
1da177e4 411
1d56dc4f
LR
412 WARN_ON(refcnt < 0);
413
414 /* FIXME: It was observed that in pairing failed scenario, refcnt
415 * drops below 0. Probably this is because l2cap_conn_del calls
416 * l2cap_chan_del for each channel, and inside l2cap_chan_del conn is
417 * dropped. After that loop hci_chan_del is called which also drops
418 * conn. For now make sure that ACL is alive if refcnt is higher then 0,
419 * otherwise drop it.
420 */
421 if (refcnt > 0)
1da177e4
LT
422 return;
423
6ac59344
MH
424 switch (conn->state) {
425 case BT_CONNECT:
769be974 426 case BT_CONNECT2:
fcd89c09
VT
427 if (conn->out) {
428 if (conn->type == ACL_LINK)
1aef8669 429 hci_acl_create_connection_cancel(conn);
cc2b6911
JP
430 else if (conn->type == LE_LINK) {
431 if (test_bit(HCI_CONN_SCANNING, &conn->flags))
432 hci_connect_le_scan_remove(conn);
433 else
434 hci_le_create_connection_cancel(conn);
435 }
93796fa6
CT
436 } else if (conn->type == SCO_LINK || conn->type == ESCO_LINK) {
437 hci_reject_sco(conn);
fcd89c09 438 }
6ac59344 439 break;
769be974 440 case BT_CONFIG:
8e87d142 441 case BT_CONNECTED:
40051e46
MH
442 if (conn->type == AMP_LINK) {
443 hci_amp_disconn(conn);
444 } else {
445 __u8 reason = hci_proto_disconn_ind(conn);
446 hci_disconnect(conn, reason);
447 }
6ac59344
MH
448 break;
449 default:
1da177e4 450 conn->state = BT_CLOSED;
6ac59344
MH
451 break;
452 }
1da177e4
LT
453}
454
416dc94b 455/* Enter sniff mode */
a74a84f6 456static void hci_conn_idle(struct work_struct *work)
416dc94b 457{
a74a84f6
JH
458 struct hci_conn *conn = container_of(work, struct hci_conn,
459 idle_work.work);
416dc94b
GP
460 struct hci_dev *hdev = conn->hdev;
461
38b3fef1 462 BT_DBG("hcon %p mode %d", conn, conn->mode);
416dc94b 463
416dc94b
GP
464 if (!lmp_sniff_capable(hdev) || !lmp_sniff_capable(conn))
465 return;
466
467 if (conn->mode != HCI_CM_ACTIVE || !(conn->link_policy & HCI_LP_SNIFF))
468 return;
469
470 if (lmp_sniffsubr_capable(hdev) && lmp_sniffsubr_capable(conn)) {
471 struct hci_cp_sniff_subrate cp;
472 cp.handle = cpu_to_le16(conn->handle);
dcf4adbf
JP
473 cp.max_latency = cpu_to_le16(0);
474 cp.min_remote_timeout = cpu_to_le16(0);
475 cp.min_local_timeout = cpu_to_le16(0);
416dc94b
GP
476 hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp);
477 }
478
51a8efd7 479 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
416dc94b
GP
480 struct hci_cp_sniff_mode cp;
481 cp.handle = cpu_to_le16(conn->handle);
482 cp.max_interval = cpu_to_le16(hdev->sniff_max_interval);
483 cp.min_interval = cpu_to_le16(hdev->sniff_min_interval);
dcf4adbf
JP
484 cp.attempt = cpu_to_le16(4);
485 cp.timeout = cpu_to_le16(1);
416dc94b
GP
486 hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp);
487 }
488}
489
7bc18d9d 490static void hci_conn_auto_accept(struct work_struct *work)
9f61656a 491{
7bc18d9d
JH
492 struct hci_conn *conn = container_of(work, struct hci_conn,
493 auto_accept_work.work);
9f61656a 494
7bc18d9d 495 hci_send_cmd(conn->hdev, HCI_OP_USER_CONFIRM_REPLY, sizeof(conn->dst),
5974e4c4 496 &conn->dst);
9f61656a
JH
497}
498
9489eca4
JH
499static void le_conn_timeout(struct work_struct *work)
500{
501 struct hci_conn *conn = container_of(work, struct hci_conn,
502 le_conn_timeout.work);
3c857757 503 struct hci_dev *hdev = conn->hdev;
9489eca4
JH
504
505 BT_DBG("");
506
3c857757
JH
507 /* We could end up here due to having done directed advertising,
508 * so clean up the state if necessary. This should however only
509 * happen with broken hardware or if low duty cycle was used
510 * (which doesn't have a timeout of its own).
511 */
0b1db38c 512 if (conn->role == HCI_ROLE_SLAVE) {
3c857757
JH
513 u8 enable = 0x00;
514 hci_send_cmd(hdev, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable),
515 &enable);
516 hci_le_conn_failed(conn, HCI_ERROR_ADVERTISING_TIMEOUT);
517 return;
518 }
519
9489eca4
JH
520 hci_le_create_connection_cancel(conn);
521}
522
a5c4e309
JH
523struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst,
524 u8 role)
1da177e4
LT
525{
526 struct hci_conn *conn;
527
6ed93dc6 528 BT_DBG("%s dst %pMR", hdev->name, dst);
1da177e4 529
27f70f3e 530 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
04837f64 531 if (!conn)
1da177e4 532 return NULL;
1da177e4
LT
533
534 bacpy(&conn->dst, dst);
662e8820 535 bacpy(&conn->src, &hdev->bdaddr);
a8746417
MH
536 conn->hdev = hdev;
537 conn->type = type;
a5c4e309 538 conn->role = role;
a8746417
MH
539 conn->mode = HCI_CM_ACTIVE;
540 conn->state = BT_OPEN;
93f19c9f 541 conn->auth_type = HCI_AT_GENERAL_BONDING;
17fa4b9d 542 conn->io_capability = hdev->io_capability;
a9583556 543 conn->remote_auth = 0xff;
13d39315 544 conn->key_type = 0xff;
ebf86aa3 545 conn->rssi = HCI_RSSI_INVALID;
5a134fae 546 conn->tx_power = HCI_TX_POWER_INVALID;
d0455ed9 547 conn->max_tx_power = HCI_TX_POWER_INVALID;
1da177e4 548
58a681ef 549 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
052b30b0 550 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
04837f64 551
a5c4e309
JH
552 if (conn->role == HCI_ROLE_MASTER)
553 conn->out = true;
554
a8746417
MH
555 switch (type) {
556 case ACL_LINK:
557 conn->pkt_type = hdev->pkt_type & ACL_PTYPE_MASK;
558 break;
9c84d1da
JH
559 case LE_LINK:
560 /* conn->src should reflect the local identity address */
561 hci_copy_identity_address(hdev, &conn->src, &conn->src_type);
562 break;
a8746417
MH
563 case SCO_LINK:
564 if (lmp_esco_capable(hdev))
efc7688b
MH
565 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
566 (hdev->esco_type & EDR_ESCO_MASK);
a8746417
MH
567 else
568 conn->pkt_type = hdev->pkt_type & SCO_PTYPE_MASK;
569 break;
570 case ESCO_LINK:
efc7688b 571 conn->pkt_type = hdev->esco_type & ~EDR_ESCO_MASK;
a8746417
MH
572 break;
573 }
574
1da177e4 575 skb_queue_head_init(&conn->data_q);
04837f64 576
70c1f20b 577 INIT_LIST_HEAD(&conn->chan_list);
73d80deb 578
19c40e3b 579 INIT_DELAYED_WORK(&conn->disc_work, hci_conn_timeout);
7bc18d9d 580 INIT_DELAYED_WORK(&conn->auto_accept_work, hci_conn_auto_accept);
a74a84f6 581 INIT_DELAYED_WORK(&conn->idle_work, hci_conn_idle);
9489eca4 582 INIT_DELAYED_WORK(&conn->le_conn_timeout, le_conn_timeout);
1da177e4
LT
583
584 atomic_set(&conn->refcnt, 0);
585
586 hci_dev_hold(hdev);
587
1da177e4 588 hci_conn_hash_add(hdev, conn);
3c54711c 589 if (hdev->notify)
1da177e4
LT
590 hdev->notify(hdev, HCI_NOTIFY_CONN_ADD);
591
a67e899c
MH
592 hci_conn_init_sysfs(conn);
593
1da177e4
LT
594 return conn;
595}
596
597int hci_conn_del(struct hci_conn *conn)
598{
599 struct hci_dev *hdev = conn->hdev;
600
38b3fef1 601 BT_DBG("%s hcon %p handle %d", hdev->name, conn, conn->handle);
1da177e4 602
19c40e3b 603 cancel_delayed_work_sync(&conn->disc_work);
7bc18d9d 604 cancel_delayed_work_sync(&conn->auto_accept_work);
a74a84f6 605 cancel_delayed_work_sync(&conn->idle_work);
9f61656a 606
5b7f9909 607 if (conn->type == ACL_LINK) {
1da177e4
LT
608 struct hci_conn *sco = conn->link;
609 if (sco)
610 sco->link = NULL;
611
612 /* Unacked frames */
613 hdev->acl_cnt += conn->sent;
6ed58ec5 614 } else if (conn->type == LE_LINK) {
980ffc0a 615 cancel_delayed_work(&conn->le_conn_timeout);
9489eca4 616
6ed58ec5
VT
617 if (hdev->le_pkts)
618 hdev->le_cnt += conn->sent;
619 else
620 hdev->acl_cnt += conn->sent;
5b7f9909
MH
621 } else {
622 struct hci_conn *acl = conn->link;
623 if (acl) {
624 acl->link = NULL;
76a68ba0 625 hci_conn_drop(acl);
5b7f9909 626 }
1da177e4
LT
627 }
628
9740e49d
AE
629 if (conn->amp_mgr)
630 amp_mgr_put(conn->amp_mgr);
631
1da177e4 632 skb_queue_purge(&conn->data_q);
1da177e4 633
b958f9a3
JH
634 /* Remove the connection from the list and cleanup its remaining
635 * state. This is a separate function since for some cases like
636 * BT_CONNECT_SCAN we *only* want the cleanup part without the
637 * rest of hci_conn_del.
638 */
639 hci_conn_cleanup(conn);
163f4dab 640
1da177e4
LT
641 return 0;
642}
643
644struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src)
645{
646 int use_src = bacmp(src, BDADDR_ANY);
8035ded4 647 struct hci_dev *hdev = NULL, *d;
1da177e4 648
6ed93dc6 649 BT_DBG("%pMR -> %pMR", src, dst);
1da177e4 650
f20d09d5 651 read_lock(&hci_dev_list_lock);
1da177e4 652
8035ded4 653 list_for_each_entry(d, &hci_dev_list, list) {
8fc9ced3 654 if (!test_bit(HCI_UP, &d->flags) ||
d7a5a11d 655 hci_dev_test_flag(d, HCI_USER_CHANNEL) ||
d300fa9b 656 d->dev_type != HCI_BREDR)
1da177e4
LT
657 continue;
658
8e87d142 659 /* Simple routing:
1da177e4
LT
660 * No source address - find interface with bdaddr != dst
661 * Source address - find interface with bdaddr == src
662 */
663
664 if (use_src) {
665 if (!bacmp(&d->bdaddr, src)) {
666 hdev = d; break;
667 }
668 } else {
669 if (bacmp(&d->bdaddr, dst)) {
670 hdev = d; break;
671 }
672 }
673 }
674
675 if (hdev)
676 hdev = hci_dev_hold(hdev);
677
f20d09d5 678 read_unlock(&hci_dev_list_lock);
1da177e4
LT
679 return hdev;
680}
681EXPORT_SYMBOL(hci_get_route);
682
9bb3c01f 683/* This function requires the caller holds hdev->lock */
06c053fb 684void hci_le_conn_failed(struct hci_conn *conn, u8 status)
9bb3c01f
AG
685{
686 struct hci_dev *hdev = conn->hdev;
f161dd41
JH
687 struct hci_conn_params *params;
688
689 params = hci_pend_le_action_lookup(&hdev->pend_le_conns, &conn->dst,
690 conn->dst_type);
691 if (params && params->conn) {
692 hci_conn_drop(params->conn);
f8aaf9b6 693 hci_conn_put(params->conn);
f161dd41
JH
694 params->conn = NULL;
695 }
9bb3c01f
AG
696
697 conn->state = BT_CLOSED;
698
699 mgmt_connect_failed(hdev, &conn->dst, conn->type, conn->dst_type,
700 status);
701
539c496d 702 hci_connect_cfm(conn, status);
9bb3c01f
AG
703
704 hci_conn_del(conn);
a4790dbd
AG
705
706 /* Since we may have temporarily stopped the background scanning in
707 * favor of connection establishment, we should restart it.
708 */
709 hci_update_background_scan(hdev);
3c857757
JH
710
711 /* Re-enable advertising in case this was a failed connection
712 * attempt as a peripheral.
713 */
714 mgmt_reenable_advertising(hdev);
9bb3c01f
AG
715}
716
1904a853 717static void create_le_conn_complete(struct hci_dev *hdev, u8 status, u16 opcode)
1d399ae5
AG
718{
719 struct hci_conn *conn;
720
28a667c9
JP
721 hci_dev_lock(hdev);
722
723 conn = hci_lookup_le_connect(hdev);
724
725 if (!status) {
726 hci_connect_le_scan_cleanup(conn);
727 goto done;
728 }
1d399ae5
AG
729
730 BT_ERR("HCI request failed to create LE connection: status 0x%2.2x",
731 status);
732
1d399ae5
AG
733 if (!conn)
734 goto done;
735
06c053fb 736 hci_le_conn_failed(conn, status);
1d399ae5
AG
737
738done:
739 hci_dev_unlock(hdev);
740}
741
2acf3d90
AG
742static void hci_req_add_le_create_conn(struct hci_request *req,
743 struct hci_conn *conn)
744{
745 struct hci_cp_le_create_conn cp;
746 struct hci_dev *hdev = conn->hdev;
747 u8 own_addr_type;
748
749 memset(&cp, 0, sizeof(cp));
750
751 /* Update random address, but set require_privacy to false so
9437d2ed 752 * that we never connect with an non-resolvable address.
2acf3d90
AG
753 */
754 if (hci_update_random_address(req, false, &own_addr_type))
755 return;
756
2acf3d90
AG
757 cp.scan_interval = cpu_to_le16(hdev->le_scan_interval);
758 cp.scan_window = cpu_to_le16(hdev->le_scan_window);
759 bacpy(&cp.peer_addr, &conn->dst);
760 cp.peer_addr_type = conn->dst_type;
761 cp.own_address_type = own_addr_type;
762 cp.conn_interval_min = cpu_to_le16(conn->le_conn_min_interval);
763 cp.conn_interval_max = cpu_to_le16(conn->le_conn_max_interval);
037fc415
MH
764 cp.conn_latency = cpu_to_le16(conn->le_conn_latency);
765 cp.supervision_timeout = cpu_to_le16(conn->le_supv_timeout);
dcf4adbf
JP
766 cp.min_ce_len = cpu_to_le16(0x0000);
767 cp.max_ce_len = cpu_to_le16(0x0000);
2acf3d90
AG
768
769 hci_req_add(req, HCI_OP_LE_CREATE_CONN, sizeof(cp), &cp);
b46e0030
JH
770
771 conn->state = BT_CONNECT;
28a667c9 772 clear_bit(HCI_CONN_SCANNING, &conn->flags);
2acf3d90
AG
773}
774
3c857757
JH
775static void hci_req_directed_advertising(struct hci_request *req,
776 struct hci_conn *conn)
777{
778 struct hci_dev *hdev = req->hdev;
779 struct hci_cp_le_set_adv_param cp;
780 u8 own_addr_type;
781 u8 enable;
782
5ce194c4 783 /* Clear the HCI_LE_ADV bit temporarily so that the
3c857757
JH
784 * hci_update_random_address knows that it's safe to go ahead
785 * and write a new random address. The flag will be set back on
786 * as soon as the SET_ADV_ENABLE HCI command completes.
787 */
a358dc11 788 hci_dev_clear_flag(hdev, HCI_LE_ADV);
3c857757
JH
789
790 /* Set require_privacy to false so that the remote device has a
791 * chance of identifying us.
792 */
793 if (hci_update_random_address(req, false, &own_addr_type) < 0)
794 return;
795
796 memset(&cp, 0, sizeof(cp));
797 cp.type = LE_ADV_DIRECT_IND;
798 cp.own_address_type = own_addr_type;
799 cp.direct_addr_type = conn->dst_type;
800 bacpy(&cp.direct_addr, &conn->dst);
801 cp.channel_map = hdev->le_adv_channel_map;
802
803 hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);
804
805 enable = 0x01;
806 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
807
808 conn->state = BT_CONNECT;
809}
810
04a6c589 811struct hci_conn *hci_connect_le(struct hci_dev *hdev, bdaddr_t *dst,
cdd6275e 812 u8 dst_type, u8 sec_level, u16 conn_timeout,
e804d25d 813 u8 role)
1da177e4 814{
4292f1f3 815 struct hci_conn_params *params;
28a667c9 816 struct hci_conn *conn, *conn_unfinished;
1ebfcc1f 817 struct smp_irk *irk;
2acf3d90 818 struct hci_request req;
1d399ae5 819 int err;
1da177e4 820
152d386e 821 /* Let's make sure that le is enabled.*/
d7a5a11d 822 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
152d386e
LR
823 if (lmp_le_capable(hdev))
824 return ERR_PTR(-ECONNREFUSED);
825
826 return ERR_PTR(-EOPNOTSUPP);
827 }
828
620ad521
AG
829 /* Some devices send ATT messages as soon as the physical link is
830 * established. To be able to handle these ATT messages, the user-
831 * space first establishes the connection and then starts the pairing
832 * process.
833 *
834 * So if a hci_conn object already exists for the following connection
835 * attempt, we simply update pending_sec_level and auth_type fields
836 * and return the object found.
837 */
f1e5d547 838 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, dst);
28a667c9 839 conn_unfinished = NULL;
620ad521 840 if (conn) {
28a667c9
JP
841 if (conn->state == BT_CONNECT &&
842 test_bit(HCI_CONN_SCANNING, &conn->flags)) {
843 BT_DBG("will continue unfinished conn %pMR", dst);
844 conn_unfinished = conn;
845 } else {
846 if (conn->pending_sec_level < sec_level)
847 conn->pending_sec_level = sec_level;
848 goto done;
849 }
620ad521 850 }
dfc94dbd 851
620ad521
AG
852 /* Since the controller supports only one LE connection attempt at a
853 * time, we return -EBUSY if there is any connection attempt running.
854 */
e7d9ab73 855 if (hci_lookup_le_connect(hdev))
620ad521 856 return ERR_PTR(-EBUSY);
46a190cb 857
edb4b466
MH
858 /* When given an identity address with existing identity
859 * resolving key, the connection needs to be established
860 * to a resolvable random address.
861 *
edb4b466
MH
862 * Storing the resolvable random address is required here
863 * to handle connection failures. The address will later
864 * be resolved back into the original identity address
865 * from the connect request.
866 */
1ebfcc1f
JH
867 irk = hci_find_irk_by_addr(hdev, dst, dst_type);
868 if (irk && bacmp(&irk->rpa, BDADDR_ANY)) {
869 dst = &irk->rpa;
870 dst_type = ADDR_LE_DEV_RANDOM;
871 }
872
28a667c9
JP
873 if (conn_unfinished) {
874 conn = conn_unfinished;
875 bacpy(&conn->dst, dst);
876 } else {
877 conn = hci_conn_add(hdev, LE_LINK, dst, role);
878 }
879
620ad521
AG
880 if (!conn)
881 return ERR_PTR(-ENOMEM);
9f0caeb1 882
1ebfcc1f 883 conn->dst_type = dst_type;
620ad521 884 conn->sec_level = BT_SECURITY_LOW;
09ae260b 885 conn->conn_timeout = conn_timeout;
4292f1f3 886
28a667c9
JP
887 if (!conn_unfinished)
888 conn->pending_sec_level = sec_level;
889
3c857757
JH
890 hci_req_init(&req, hdev);
891
376f54c1
JH
892 /* Disable advertising if we're active. For master role
893 * connections most controllers will refuse to connect if
894 * advertising is enabled, and for slave role connections we
895 * anyway have to disable it in order to start directed
896 * advertising.
897 */
d7a5a11d 898 if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
376f54c1
JH
899 u8 enable = 0x00;
900 hci_req_add(&req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable),
901 &enable);
902 }
903
cdd6275e 904 /* If requested to connect as slave use directed advertising */
e804d25d 905 if (conn->role == HCI_ROLE_SLAVE) {
e8bb6b97
JH
906 /* If we're active scanning most controllers are unable
907 * to initiate advertising. Simply reject the attempt.
908 */
d7a5a11d 909 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
e8bb6b97
JH
910 hdev->le_scan_type == LE_SCAN_ACTIVE) {
911 skb_queue_purge(&req.cmd_q);
912 hci_conn_del(conn);
913 return ERR_PTR(-EBUSY);
914 }
915
3c857757
JH
916 hci_req_directed_advertising(&req, conn);
917 goto create_conn;
918 }
919
4292f1f3
AG
920 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
921 if (params) {
922 conn->le_conn_min_interval = params->conn_min_interval;
923 conn->le_conn_max_interval = params->conn_max_interval;
037fc415
MH
924 conn->le_conn_latency = params->conn_latency;
925 conn->le_supv_timeout = params->supervision_timeout;
4292f1f3
AG
926 } else {
927 conn->le_conn_min_interval = hdev->le_conn_min_interval;
928 conn->le_conn_max_interval = hdev->le_conn_max_interval;
04fb7d90
MH
929 conn->le_conn_latency = hdev->le_conn_latency;
930 conn->le_supv_timeout = hdev->le_supv_timeout;
4292f1f3 931 }
eda42b50 932
2acf3d90 933 /* If controller is scanning, we stop it since some controllers are
81ad6fd9
JH
934 * not able to scan and connect at the same time. Also set the
935 * HCI_LE_SCAN_INTERRUPTED flag so that the command complete
936 * handler for scan disabling knows to set the correct discovery
937 * state.
2acf3d90 938 */
d7a5a11d 939 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
2acf3d90 940 hci_req_add_le_scan_disable(&req);
a1536da2 941 hci_dev_set_flag(hdev, HCI_LE_SCAN_INTERRUPTED);
2acf3d90
AG
942 }
943
81ad6fd9
JH
944 hci_req_add_le_create_conn(&req, conn);
945
3c857757 946create_conn:
81ad6fd9 947 err = hci_req_run(&req, create_le_conn_complete);
2acf3d90
AG
948 if (err) {
949 hci_conn_del(conn);
620ad521 950 return ERR_PTR(err);
2acf3d90 951 }
fcd89c09 952
620ad521 953done:
28a667c9
JP
954 /* If this is continuation of connect started by hci_connect_le_scan,
955 * it already called hci_conn_hold and calling it again would mess the
956 * counter.
957 */
958 if (!conn_unfinished)
959 hci_conn_hold(conn);
960
f1e5d547 961 return conn;
d04aef4c 962}
fcd89c09 963
f75113a2
JP
964static void hci_connect_le_scan_complete(struct hci_dev *hdev, u8 status,
965 u16 opcode)
966{
967 struct hci_conn *conn;
968
969 if (!status)
970 return;
971
972 BT_ERR("Failed to add device to auto conn whitelist: status 0x%2.2x",
973 status);
974
975 hci_dev_lock(hdev);
976
977 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
978 if (conn)
979 hci_le_conn_failed(conn, status);
980
981 hci_dev_unlock(hdev);
982}
983
984static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
985{
986 struct hci_conn *conn;
987
988 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
989 if (!conn)
990 return false;
991
992 if (conn->dst_type != type)
993 return false;
994
995 if (conn->state != BT_CONNECTED)
996 return false;
997
998 return true;
999}
1000
1001/* This function requires the caller holds hdev->lock */
1002static int hci_explicit_conn_params_set(struct hci_request *req,
1003 bdaddr_t *addr, u8 addr_type)
1004{
1005 struct hci_dev *hdev = req->hdev;
1006 struct hci_conn_params *params;
1007
1008 if (is_connected(hdev, addr, addr_type))
1009 return -EISCONN;
1010
1011 params = hci_conn_params_add(hdev, addr, addr_type);
1012 if (!params)
1013 return -EIO;
1014
1015 /* If we created new params, or existing params were marked as disabled,
1016 * mark them to be used just once to connect.
1017 */
49c50922
JH
1018 if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
1019 params->auto_connect == HCI_AUTO_CONN_REPORT) {
f75113a2
JP
1020 list_del_init(&params->action);
1021 list_add(&params->action, &hdev->pend_le_conns);
1022 }
1023
1024 params->explicit_connect = true;
1025 __hci_update_background_scan(req);
1026
1027 BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
1028 params->auto_connect);
1029
1030 return 0;
1031}
1032
1033/* This function requires the caller holds hdev->lock */
1034struct hci_conn *hci_connect_le_scan(struct hci_dev *hdev, bdaddr_t *dst,
1035 u8 dst_type, u8 sec_level,
1036 u16 conn_timeout, u8 role)
1037{
1038 struct hci_conn *conn;
1039 struct hci_request req;
1040 int err;
1041
1042 /* Let's make sure that le is enabled.*/
1043 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
1044 if (lmp_le_capable(hdev))
1045 return ERR_PTR(-ECONNREFUSED);
1046
1047 return ERR_PTR(-EOPNOTSUPP);
1048 }
1049
1050 /* Some devices send ATT messages as soon as the physical link is
1051 * established. To be able to handle these ATT messages, the user-
1052 * space first establishes the connection and then starts the pairing
1053 * process.
1054 *
1055 * So if a hci_conn object already exists for the following connection
1056 * attempt, we simply update pending_sec_level and auth_type fields
1057 * and return the object found.
1058 */
1059 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, dst);
1060 if (conn) {
1061 if (conn->pending_sec_level < sec_level)
1062 conn->pending_sec_level = sec_level;
1063 goto done;
1064 }
1065
1066 BT_DBG("requesting refresh of dst_addr");
1067
1068 conn = hci_conn_add(hdev, LE_LINK, dst, role);
1069 if (!conn)
1070 return ERR_PTR(-ENOMEM);
1071
1072 hci_req_init(&req, hdev);
1073
1074 if (hci_explicit_conn_params_set(&req, dst, dst_type) < 0)
1075 return ERR_PTR(-EBUSY);
1076
1077 conn->state = BT_CONNECT;
1078 set_bit(HCI_CONN_SCANNING, &conn->flags);
1079
1080 err = hci_req_run(&req, hci_connect_le_scan_complete);
1081 if (err && err != -ENODATA) {
1082 hci_conn_del(conn);
1083 return ERR_PTR(err);
1084 }
1085
1086 conn->dst_type = dst_type;
1087 conn->sec_level = BT_SECURITY_LOW;
1088 conn->pending_sec_level = sec_level;
1089 conn->conn_timeout = conn_timeout;
1090
1091done:
1092 hci_conn_hold(conn);
1093 return conn;
1094}
1095
04a6c589
AG
1096struct hci_conn *hci_connect_acl(struct hci_dev *hdev, bdaddr_t *dst,
1097 u8 sec_level, u8 auth_type)
1da177e4
LT
1098{
1099 struct hci_conn *acl;
fcd89c09 1100
d7a5a11d 1101 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
c411110e
LR
1102 if (lmp_bredr_capable(hdev))
1103 return ERR_PTR(-ECONNREFUSED);
1104
beb19e4c 1105 return ERR_PTR(-EOPNOTSUPP);
c411110e 1106 }
56f87901 1107
70f23020
AE
1108 acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst);
1109 if (!acl) {
a5c4e309 1110 acl = hci_conn_add(hdev, ACL_LINK, dst, HCI_ROLE_MASTER);
70f23020 1111 if (!acl)
48c7aba9 1112 return ERR_PTR(-ENOMEM);
1da177e4
LT
1113 }
1114
1115 hci_conn_hold(acl);
1116
09ab6f4c 1117 if (acl->state == BT_OPEN || acl->state == BT_CLOSED) {
765c2a96
JH
1118 acl->sec_level = BT_SECURITY_LOW;
1119 acl->pending_sec_level = sec_level;
09ab6f4c 1120 acl->auth_type = auth_type;
1aef8669 1121 hci_acl_create_connection(acl);
09ab6f4c 1122 }
1da177e4 1123
db474275
VCG
1124 return acl;
1125}
1126
10c62ddc
FD
1127struct hci_conn *hci_connect_sco(struct hci_dev *hdev, int type, bdaddr_t *dst,
1128 __u16 setting)
db474275
VCG
1129{
1130 struct hci_conn *acl;
1131 struct hci_conn *sco;
1132
e660ed6c 1133 acl = hci_connect_acl(hdev, dst, BT_SECURITY_LOW, HCI_AT_NO_BONDING);
db474275 1134 if (IS_ERR(acl))
5b7f9909 1135 return acl;
1da177e4 1136
70f23020
AE
1137 sco = hci_conn_hash_lookup_ba(hdev, type, dst);
1138 if (!sco) {
a5c4e309 1139 sco = hci_conn_add(hdev, type, dst, HCI_ROLE_MASTER);
70f23020 1140 if (!sco) {
76a68ba0 1141 hci_conn_drop(acl);
48c7aba9 1142 return ERR_PTR(-ENOMEM);
1da177e4 1143 }
5b7f9909 1144 }
1da177e4 1145
5b7f9909
MH
1146 acl->link = sco;
1147 sco->link = acl;
1da177e4 1148
5b7f9909 1149 hci_conn_hold(sco);
1da177e4 1150
10c62ddc
FD
1151 sco->setting = setting;
1152
5b7f9909 1153 if (acl->state == BT_CONNECTED &&
5974e4c4 1154 (sco->state == BT_OPEN || sco->state == BT_CLOSED)) {
58a681ef 1155 set_bit(HCI_CONN_POWER_SAVE, &acl->flags);
14b12d0b 1156 hci_conn_enter_active_mode(acl, BT_POWER_FORCE_ACTIVE_ON);
c390216b 1157
51a8efd7 1158 if (test_bit(HCI_CONN_MODE_CHANGE_PEND, &acl->flags)) {
e73439d8 1159 /* defer SCO setup until mode change completed */
51a8efd7 1160 set_bit(HCI_CONN_SCO_SETUP_PEND, &acl->flags);
e73439d8
MH
1161 return sco;
1162 }
1163
1164 hci_sco_setup(acl, 0x00);
b6a0dc82 1165 }
5b7f9909
MH
1166
1167 return sco;
1da177e4 1168}
1da177e4 1169
e7c29cb1
MH
1170/* Check link security requirement */
1171int hci_conn_check_link_mode(struct hci_conn *conn)
1172{
38b3fef1 1173 BT_DBG("hcon %p", conn);
e7c29cb1 1174
40b552aa
MH
1175 /* In Secure Connections Only mode, it is required that Secure
1176 * Connections is used and the link is encrypted with AES-CCM
1177 * using a P-256 authenticated combination key.
1178 */
d7a5a11d 1179 if (hci_dev_test_flag(conn->hdev, HCI_SC_ONLY)) {
40b552aa
MH
1180 if (!hci_conn_sc_enabled(conn) ||
1181 !test_bit(HCI_CONN_AES_CCM, &conn->flags) ||
1182 conn->key_type != HCI_LK_AUTH_COMBINATION_P256)
1183 return 0;
1184 }
1185
4dae2798
JH
1186 if (hci_conn_ssp_enabled(conn) &&
1187 !test_bit(HCI_CONN_ENCRYPT, &conn->flags))
e7c29cb1
MH
1188 return 0;
1189
1190 return 1;
1191}
e7c29cb1 1192
1da177e4 1193/* Authenticate remote device */
0684e5f9 1194static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
1da177e4 1195{
38b3fef1 1196 BT_DBG("hcon %p", conn);
1da177e4 1197
765c2a96
JH
1198 if (conn->pending_sec_level > sec_level)
1199 sec_level = conn->pending_sec_level;
1200
96a31833 1201 if (sec_level > conn->sec_level)
765c2a96 1202 conn->pending_sec_level = sec_level;
4dae2798 1203 else if (test_bit(HCI_CONN_AUTH, &conn->flags))
1da177e4
LT
1204 return 1;
1205
65cf686e
JH
1206 /* Make sure we preserve an existing MITM requirement*/
1207 auth_type |= (conn->auth_type & 0x01);
1208
96a31833
MH
1209 conn->auth_type = auth_type;
1210
51a8efd7 1211 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
1da177e4 1212 struct hci_cp_auth_requested cp;
b7d05bad 1213
aca3192c 1214 cp.handle = cpu_to_le16(conn->handle);
40be492f 1215 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED,
5974e4c4 1216 sizeof(cp), &cp);
09da1f34
JH
1217
1218 /* If we're already encrypted set the REAUTH_PEND flag,
1219 * otherwise set the ENCRYPT_PEND.
1220 */
4dae2798 1221 if (test_bit(HCI_CONN_ENCRYPT, &conn->flags))
51a8efd7 1222 set_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
09da1f34
JH
1223 else
1224 set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
1da177e4 1225 }
8c1b2355 1226
1da177e4
LT
1227 return 0;
1228}
1da177e4 1229
13d39315
WR
1230/* Encrypt the the link */
1231static void hci_conn_encrypt(struct hci_conn *conn)
1232{
38b3fef1 1233 BT_DBG("hcon %p", conn);
13d39315 1234
51a8efd7 1235 if (!test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
13d39315
WR
1236 struct hci_cp_set_conn_encrypt cp;
1237 cp.handle = cpu_to_le16(conn->handle);
1238 cp.encrypt = 0x01;
1239 hci_send_cmd(conn->hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
5974e4c4 1240 &cp);
13d39315
WR
1241 }
1242}
1243
8c1b2355 1244/* Enable security */
e7cafc45
JH
1245int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type,
1246 bool initiator)
1da177e4 1247{
38b3fef1 1248 BT_DBG("hcon %p", conn);
1da177e4 1249
d8343f12
VCG
1250 if (conn->type == LE_LINK)
1251 return smp_conn_security(conn, sec_level);
1252
13d39315 1253 /* For sdp we don't need the link key. */
8c1b2355
MH
1254 if (sec_level == BT_SECURITY_SDP)
1255 return 1;
1256
13d39315
WR
1257 /* For non 2.1 devices and low security level we don't need the link
1258 key. */
aa64a8b5 1259 if (sec_level == BT_SECURITY_LOW && !hci_conn_ssp_enabled(conn))
3fdca1e1 1260 return 1;
8c1b2355 1261
13d39315 1262 /* For other security levels we need the link key. */
4dae2798 1263 if (!test_bit(HCI_CONN_AUTH, &conn->flags))
13d39315
WR
1264 goto auth;
1265
7b5a9241
MH
1266 /* An authenticated FIPS approved combination key has sufficient
1267 * security for security level 4. */
1268 if (conn->key_type == HCI_LK_AUTH_COMBINATION_P256 &&
1269 sec_level == BT_SECURITY_FIPS)
1270 goto encrypt;
1271
1272 /* An authenticated combination key has sufficient security for
1273 security level 3. */
1274 if ((conn->key_type == HCI_LK_AUTH_COMBINATION_P192 ||
1275 conn->key_type == HCI_LK_AUTH_COMBINATION_P256) &&
1276 sec_level == BT_SECURITY_HIGH)
13d39315
WR
1277 goto encrypt;
1278
1279 /* An unauthenticated combination key has sufficient security for
1280 security level 1 and 2. */
66138ce8
MH
1281 if ((conn->key_type == HCI_LK_UNAUTH_COMBINATION_P192 ||
1282 conn->key_type == HCI_LK_UNAUTH_COMBINATION_P256) &&
5974e4c4 1283 (sec_level == BT_SECURITY_MEDIUM || sec_level == BT_SECURITY_LOW))
13d39315
WR
1284 goto encrypt;
1285
1286 /* A combination key has always sufficient security for the security
1287 levels 1 or 2. High security level requires the combination key
1288 is generated using maximum PIN code length (16).
1289 For pre 2.1 units. */
1290 if (conn->key_type == HCI_LK_COMBINATION &&
7b5a9241
MH
1291 (sec_level == BT_SECURITY_MEDIUM || sec_level == BT_SECURITY_LOW ||
1292 conn->pin_length == 16))
13d39315
WR
1293 goto encrypt;
1294
1295auth:
51a8efd7 1296 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags))
1da177e4
LT
1297 return 0;
1298
977f8fce
JH
1299 if (initiator)
1300 set_bit(HCI_CONN_AUTH_INITIATOR, &conn->flags);
1301
6fdf658c
LAD
1302 if (!hci_conn_auth(conn, sec_level, auth_type))
1303 return 0;
13d39315
WR
1304
1305encrypt:
4dae2798 1306 if (test_bit(HCI_CONN_ENCRYPT, &conn->flags))
13d39315 1307 return 1;
8c1b2355 1308
13d39315 1309 hci_conn_encrypt(conn);
1da177e4
LT
1310 return 0;
1311}
8c1b2355 1312EXPORT_SYMBOL(hci_conn_security);
1da177e4 1313
b3b1b061
WR
1314/* Check secure link requirement */
1315int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level)
1316{
38b3fef1 1317 BT_DBG("hcon %p", conn);
b3b1b061 1318
9cb2e030
MH
1319 /* Accept if non-secure or higher security level is required */
1320 if (sec_level != BT_SECURITY_HIGH && sec_level != BT_SECURITY_FIPS)
1321 return 1;
b3b1b061 1322
9cb2e030
MH
1323 /* Accept if secure or higher security level is already present */
1324 if (conn->sec_level == BT_SECURITY_HIGH ||
1325 conn->sec_level == BT_SECURITY_FIPS)
b3b1b061
WR
1326 return 1;
1327
9cb2e030
MH
1328 /* Reject not secure link */
1329 return 0;
b3b1b061
WR
1330}
1331EXPORT_SYMBOL(hci_conn_check_secure);
1332
1da177e4 1333/* Switch role */
8c1b2355 1334int hci_conn_switch_role(struct hci_conn *conn, __u8 role)
1da177e4 1335{
38b3fef1 1336 BT_DBG("hcon %p", conn);
1da177e4 1337
40bef302 1338 if (role == conn->role)
1da177e4
LT
1339 return 1;
1340
51a8efd7 1341 if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->flags)) {
1da177e4
LT
1342 struct hci_cp_switch_role cp;
1343 bacpy(&cp.bdaddr, &conn->dst);
1344 cp.role = role;
a9de9248 1345 hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp);
1da177e4 1346 }
8c1b2355 1347
1da177e4
LT
1348 return 0;
1349}
1350EXPORT_SYMBOL(hci_conn_switch_role);
1351
04837f64 1352/* Enter active mode */
14b12d0b 1353void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active)
04837f64
MH
1354{
1355 struct hci_dev *hdev = conn->hdev;
1356
38b3fef1 1357 BT_DBG("hcon %p mode %d", conn, conn->mode);
04837f64 1358
14b12d0b
JG
1359 if (conn->mode != HCI_CM_SNIFF)
1360 goto timer;
1361
58a681ef 1362 if (!test_bit(HCI_CONN_POWER_SAVE, &conn->flags) && !force_active)
04837f64
MH
1363 goto timer;
1364
51a8efd7 1365 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
04837f64 1366 struct hci_cp_exit_sniff_mode cp;
aca3192c 1367 cp.handle = cpu_to_le16(conn->handle);
a9de9248 1368 hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
04837f64
MH
1369 }
1370
1371timer:
1372 if (hdev->idle_timeout > 0)
a74a84f6
JH
1373 queue_delayed_work(hdev->workqueue, &conn->idle_work,
1374 msecs_to_jiffies(hdev->idle_timeout));
04837f64
MH
1375}
1376
1da177e4
LT
1377/* Drop all connection on the device */
1378void hci_conn_hash_flush(struct hci_dev *hdev)
1379{
1380 struct hci_conn_hash *h = &hdev->conn_hash;
3c4e0df0 1381 struct hci_conn *c, *n;
1da177e4
LT
1382
1383 BT_DBG("hdev %s", hdev->name);
1384
3c4e0df0 1385 list_for_each_entry_safe(c, n, &h->list, list) {
1da177e4
LT
1386 c->state = BT_CLOSED;
1387
3a6d576b 1388 hci_disconn_cfm(c, HCI_ERROR_LOCAL_HOST_TERM);
1da177e4
LT
1389 hci_conn_del(c);
1390 }
1391}
1392
a9de9248
MH
1393/* Check pending connect attempts */
1394void hci_conn_check_pending(struct hci_dev *hdev)
1395{
1396 struct hci_conn *conn;
1397
1398 BT_DBG("hdev %s", hdev->name);
1399
1400 hci_dev_lock(hdev);
1401
1402 conn = hci_conn_hash_lookup_state(hdev, ACL_LINK, BT_CONNECT2);
1403 if (conn)
1aef8669 1404 hci_acl_create_connection(conn);
a9de9248
MH
1405
1406 hci_dev_unlock(hdev);
1407}
1408
4dae2798
JH
1409static u32 get_link_mode(struct hci_conn *conn)
1410{
1411 u32 link_mode = 0;
1412
40bef302 1413 if (conn->role == HCI_ROLE_MASTER)
4dae2798
JH
1414 link_mode |= HCI_LM_MASTER;
1415
1416 if (test_bit(HCI_CONN_ENCRYPT, &conn->flags))
1417 link_mode |= HCI_LM_ENCRYPT;
1418
1419 if (test_bit(HCI_CONN_AUTH, &conn->flags))
1420 link_mode |= HCI_LM_AUTH;
1421
1422 if (test_bit(HCI_CONN_SECURE, &conn->flags))
1423 link_mode |= HCI_LM_SECURE;
1424
1425 if (test_bit(HCI_CONN_FIPS, &conn->flags))
1426 link_mode |= HCI_LM_FIPS;
1427
1428 return link_mode;
1429}
1430
1da177e4
LT
1431int hci_get_conn_list(void __user *arg)
1432{
fc5fef61 1433 struct hci_conn *c;
1da177e4
LT
1434 struct hci_conn_list_req req, *cl;
1435 struct hci_conn_info *ci;
1436 struct hci_dev *hdev;
1da177e4
LT
1437 int n = 0, size, err;
1438
1439 if (copy_from_user(&req, arg, sizeof(req)))
1440 return -EFAULT;
1441
1442 if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci))
1443 return -EINVAL;
1444
1445 size = sizeof(req) + req.conn_num * sizeof(*ci);
1446
70f23020
AE
1447 cl = kmalloc(size, GFP_KERNEL);
1448 if (!cl)
1da177e4
LT
1449 return -ENOMEM;
1450
70f23020
AE
1451 hdev = hci_dev_get(req.dev_id);
1452 if (!hdev) {
1da177e4
LT
1453 kfree(cl);
1454 return -ENODEV;
1455 }
1456
1457 ci = cl->conn_info;
1458
09fd0de5 1459 hci_dev_lock(hdev);
8035ded4 1460 list_for_each_entry(c, &hdev->conn_hash.list, list) {
1da177e4
LT
1461 bacpy(&(ci + n)->bdaddr, &c->dst);
1462 (ci + n)->handle = c->handle;
1463 (ci + n)->type = c->type;
1464 (ci + n)->out = c->out;
1465 (ci + n)->state = c->state;
4dae2798 1466 (ci + n)->link_mode = get_link_mode(c);
1da177e4
LT
1467 if (++n >= req.conn_num)
1468 break;
1469 }
09fd0de5 1470 hci_dev_unlock(hdev);
1da177e4
LT
1471
1472 cl->dev_id = hdev->id;
1473 cl->conn_num = n;
1474 size = sizeof(req) + n * sizeof(*ci);
1475
1476 hci_dev_put(hdev);
1477
1478 err = copy_to_user(arg, cl, size);
1479 kfree(cl);
1480
1481 return err ? -EFAULT : 0;
1482}
1483
1484int hci_get_conn_info(struct hci_dev *hdev, void __user *arg)
1485{
1486 struct hci_conn_info_req req;
1487 struct hci_conn_info ci;
1488 struct hci_conn *conn;
1489 char __user *ptr = arg + sizeof(req);
1490
1491 if (copy_from_user(&req, arg, sizeof(req)))
1492 return -EFAULT;
1493
09fd0de5 1494 hci_dev_lock(hdev);
1da177e4
LT
1495 conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr);
1496 if (conn) {
1497 bacpy(&ci.bdaddr, &conn->dst);
1498 ci.handle = conn->handle;
1499 ci.type = conn->type;
1500 ci.out = conn->out;
1501 ci.state = conn->state;
4dae2798 1502 ci.link_mode = get_link_mode(conn);
1da177e4 1503 }
09fd0de5 1504 hci_dev_unlock(hdev);
1da177e4
LT
1505
1506 if (!conn)
1507 return -ENOENT;
1508
1509 return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
1510}
40be492f
MH
1511
1512int hci_get_auth_info(struct hci_dev *hdev, void __user *arg)
1513{
1514 struct hci_auth_info_req req;
1515 struct hci_conn *conn;
1516
1517 if (copy_from_user(&req, arg, sizeof(req)))
1518 return -EFAULT;
1519
09fd0de5 1520 hci_dev_lock(hdev);
40be492f
MH
1521 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &req.bdaddr);
1522 if (conn)
1523 req.type = conn->auth_type;
09fd0de5 1524 hci_dev_unlock(hdev);
40be492f
MH
1525
1526 if (!conn)
1527 return -ENOENT;
1528
1529 return copy_to_user(arg, &req, sizeof(req)) ? -EFAULT : 0;
1530}
73d80deb
LAD
1531
1532struct hci_chan *hci_chan_create(struct hci_conn *conn)
1533{
1534 struct hci_dev *hdev = conn->hdev;
1535 struct hci_chan *chan;
1536
38b3fef1 1537 BT_DBG("%s hcon %p", hdev->name, conn);
73d80deb 1538
f94b665d
JH
1539 if (test_bit(HCI_CONN_DROP, &conn->flags)) {
1540 BT_DBG("Refusing to create new hci_chan");
1541 return NULL;
1542 }
1543
27f70f3e 1544 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
73d80deb
LAD
1545 if (!chan)
1546 return NULL;
1547
6c388d32 1548 chan->conn = hci_conn_get(conn);
73d80deb 1549 skb_queue_head_init(&chan->data_q);
168df8e5 1550 chan->state = BT_CONNECTED;
73d80deb 1551
8192edef 1552 list_add_rcu(&chan->list, &conn->chan_list);
73d80deb
LAD
1553
1554 return chan;
1555}
1556
9472007c 1557void hci_chan_del(struct hci_chan *chan)
73d80deb
LAD
1558{
1559 struct hci_conn *conn = chan->conn;
1560 struct hci_dev *hdev = conn->hdev;
1561
38b3fef1 1562 BT_DBG("%s hcon %p chan %p", hdev->name, conn, chan);
73d80deb 1563
8192edef
GP
1564 list_del_rcu(&chan->list);
1565
1566 synchronize_rcu();
73d80deb 1567
bcbb655a 1568 /* Prevent new hci_chan's to be created for this hci_conn */
f94b665d 1569 set_bit(HCI_CONN_DROP, &conn->flags);
b3ff670a 1570
6c388d32 1571 hci_conn_put(conn);
e9b02748 1572
73d80deb
LAD
1573 skb_queue_purge(&chan->data_q);
1574 kfree(chan);
73d80deb
LAD
1575}
1576
2c33c06a 1577void hci_chan_list_flush(struct hci_conn *conn)
73d80deb 1578{
2a5a5ec6 1579 struct hci_chan *chan, *n;
73d80deb 1580
38b3fef1 1581 BT_DBG("hcon %p", conn);
73d80deb 1582
2a5a5ec6 1583 list_for_each_entry_safe(chan, n, &conn->chan_list, list)
73d80deb
LAD
1584 hci_chan_del(chan);
1585}
42c4e53e
AE
1586
1587static struct hci_chan *__hci_chan_lookup_handle(struct hci_conn *hcon,
1588 __u16 handle)
1589{
1590 struct hci_chan *hchan;
1591
1592 list_for_each_entry(hchan, &hcon->chan_list, list) {
1593 if (hchan->handle == handle)
1594 return hchan;
1595 }
1596
1597 return NULL;
1598}
1599
1600struct hci_chan *hci_chan_lookup_handle(struct hci_dev *hdev, __u16 handle)
1601{
1602 struct hci_conn_hash *h = &hdev->conn_hash;
1603 struct hci_conn *hcon;
1604 struct hci_chan *hchan = NULL;
1605
1606 rcu_read_lock();
1607
1608 list_for_each_entry_rcu(hcon, &h->list, list) {
1609 hchan = __hci_chan_lookup_handle(hcon, handle);
1610 if (hchan)
1611 break;
1612 }
1613
1614 rcu_read_unlock();
1615
1616 return hchan;
1617}