Bluetooth: Fix conn_params list update in hci_connect_le_scan_cleanup
[deliverable/linux.git] / net / bluetooth / hci_conn.c
1 /*
2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
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
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
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
22 SOFTWARE IS DISCLAIMED.
23 */
24
25 /* Bluetooth HCI connection handling. */
26
27 #include <linux/export.h>
28 #include <linux/debugfs.h>
29
30 #include <net/bluetooth/bluetooth.h>
31 #include <net/bluetooth/hci_core.h>
32 #include <net/bluetooth/l2cap.h>
33
34 #include "hci_request.h"
35 #include "smp.h"
36 #include "a2mp.h"
37
38 struct sco_param {
39 u16 pkt_type;
40 u16 max_latency;
41 u8 retrans_effort;
42 };
43
44 static const struct sco_param esco_param_cvsd[] = {
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 */
50 };
51
52 static const struct sco_param sco_param_cvsd[] = {
53 { EDR_ESCO_MASK | ESCO_HV3, 0xffff, 0xff }, /* D1 */
54 { EDR_ESCO_MASK | ESCO_HV1, 0xffff, 0xff }, /* D0 */
55 };
56
57 static const struct sco_param esco_param_msbc[] = {
58 { EDR_ESCO_MASK & ~ESCO_2EV3, 0x000d, 0x02 }, /* T2 */
59 { EDR_ESCO_MASK | ESCO_EV3, 0x0008, 0x02 }, /* T1 */
60 };
61
62 static void hci_le_create_connection_cancel(struct hci_conn *conn)
63 {
64 hci_send_cmd(conn->hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 0, NULL);
65 }
66
67 /* This function requires the caller holds hdev->lock */
68 static 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 */
94 params->explicit_connect = false;
95
96 list_del_init(&params->action);
97
98 switch (params->auto_connect) {
99 case HCI_AUTO_CONN_EXPLICIT:
100 hci_conn_params_del(conn->hdev, bdaddr, bdaddr_type);
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;
112 }
113
114 hci_update_background_scan(conn->hdev);
115 }
116
117 static 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
140 /* This function requires the caller holds hdev->lock */
141 static void hci_connect_le_scan_remove(struct hci_conn *conn)
142 {
143 hci_connect_le_scan_cleanup(conn);
144
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);
152 }
153
154 static void hci_acl_create_connection(struct hci_conn *conn)
155 {
156 struct hci_dev *hdev = conn->hdev;
157 struct inquiry_entry *ie;
158 struct hci_cp_create_conn cp;
159
160 BT_DBG("hcon %p", conn);
161
162 conn->state = BT_CONNECT;
163 conn->out = true;
164 conn->role = HCI_ROLE_MASTER;
165
166 conn->attempt++;
167
168 conn->link_policy = hdev->link_policy;
169
170 memset(&cp, 0, sizeof(cp));
171 bacpy(&cp.bdaddr, &conn->dst);
172 cp.pscan_rep_mode = 0x02;
173
174 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
175 if (ie) {
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 |
180 cpu_to_le16(0x8000);
181 }
182
183 memcpy(conn->dev_class, ie->data.dev_class, 3);
184 if (ie->data.ssp_mode > 0)
185 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
186 }
187
188 cp.pkt_type = cpu_to_le16(conn->pkt_type);
189 if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER))
190 cp.role_switch = 0x01;
191 else
192 cp.role_switch = 0x00;
193
194 hci_send_cmd(hdev, HCI_OP_CREATE_CONN, sizeof(cp), &cp);
195 }
196
197 static void hci_acl_create_connection_cancel(struct hci_conn *conn)
198 {
199 struct hci_cp_create_conn_cancel cp;
200
201 BT_DBG("hcon %p", conn);
202
203 if (conn->hdev->hci_ver < BLUETOOTH_VER_1_2)
204 return;
205
206 bacpy(&cp.bdaddr, &conn->dst);
207 hci_send_cmd(conn->hdev, HCI_OP_CREATE_CONN_CANCEL, sizeof(cp), &cp);
208 }
209
210 static void hci_reject_sco(struct hci_conn *conn)
211 {
212 struct hci_cp_reject_sync_conn_req cp;
213
214 cp.reason = HCI_ERROR_REJ_LIMITED_RESOURCES;
215 bacpy(&cp.bdaddr, &conn->dst);
216
217 hci_send_cmd(conn->hdev, HCI_OP_REJECT_SYNC_CONN_REQ, sizeof(cp), &cp);
218 }
219
220 int hci_disconnect(struct hci_conn *conn, __u8 reason)
221 {
222 struct hci_cp_disconnect cp;
223
224 BT_DBG("hcon %p", conn);
225
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;
233 struct hci_cp_read_clock_offset clkoff_cp;
234
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);
238 }
239
240 conn->state = BT_DISCONN;
241
242 cp.handle = cpu_to_le16(conn->handle);
243 cp.reason = reason;
244 return hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp);
245 }
246
247 static void hci_amp_disconn(struct hci_conn *conn)
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);
256 cp.reason = hci_proto_disconn_ind(conn);
257 hci_send_cmd(conn->hdev, HCI_OP_DISCONN_PHY_LINK,
258 sizeof(cp), &cp);
259 }
260
261 static void hci_add_sco(struct hci_conn *conn, __u16 handle)
262 {
263 struct hci_dev *hdev = conn->hdev;
264 struct hci_cp_add_sco cp;
265
266 BT_DBG("hcon %p", conn);
267
268 conn->state = BT_CONNECT;
269 conn->out = true;
270
271 conn->attempt++;
272
273 cp.handle = cpu_to_le16(handle);
274 cp.pkt_type = cpu_to_le16(conn->pkt_type);
275
276 hci_send_cmd(hdev, HCI_OP_ADD_SCO, sizeof(cp), &cp);
277 }
278
279 bool hci_setup_sync(struct hci_conn *conn, __u16 handle)
280 {
281 struct hci_dev *hdev = conn->hdev;
282 struct hci_cp_setup_sync_conn cp;
283 const struct sco_param *param;
284
285 BT_DBG("hcon %p", conn);
286
287 conn->state = BT_CONNECT;
288 conn->out = true;
289
290 conn->attempt++;
291
292 cp.handle = cpu_to_le16(handle);
293
294 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
295 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
296 cp.voice_setting = cpu_to_le16(conn->setting);
297
298 switch (conn->setting & SCO_AIRMODE_MASK) {
299 case SCO_AIRMODE_TRANSP:
300 if (conn->attempt > ARRAY_SIZE(esco_param_msbc))
301 return false;
302 param = &esco_param_msbc[conn->attempt - 1];
303 break;
304 case SCO_AIRMODE_CVSD:
305 if (lmp_esco_capable(conn->link)) {
306 if (conn->attempt > ARRAY_SIZE(esco_param_cvsd))
307 return false;
308 param = &esco_param_cvsd[conn->attempt - 1];
309 } else {
310 if (conn->attempt > ARRAY_SIZE(sco_param_cvsd))
311 return false;
312 param = &sco_param_cvsd[conn->attempt - 1];
313 }
314 break;
315 default:
316 return false;
317 }
318
319 cp.retrans_effort = param->retrans_effort;
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;
327 }
328
329 u8 hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max, u16 latency,
330 u16 to_multiplier)
331 {
332 struct hci_dev *hdev = conn->hdev;
333 struct hci_conn_params *params;
334 struct hci_cp_le_conn_update cp;
335
336 hci_dev_lock(hdev);
337
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));
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);
354 cp.min_ce_len = cpu_to_le16(0x0000);
355 cp.max_ce_len = cpu_to_le16(0x0000);
356
357 hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp);
358
359 if (params)
360 return 0x01;
361
362 return 0x00;
363 }
364
365 void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __le64 rand,
366 __u8 ltk[16], __u8 key_size)
367 {
368 struct hci_dev *hdev = conn->hdev;
369 struct hci_cp_le_start_enc cp;
370
371 BT_DBG("hcon %p", conn);
372
373 memset(&cp, 0, sizeof(cp));
374
375 cp.handle = cpu_to_le16(conn->handle);
376 cp.rand = rand;
377 cp.ediv = ediv;
378 memcpy(cp.ltk, ltk, key_size);
379
380 hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp);
381 }
382
383 /* Device _must_ be locked */
384 void hci_sco_setup(struct hci_conn *conn, __u8 status)
385 {
386 struct hci_conn *sco = conn->link;
387
388 if (!sco)
389 return;
390
391 BT_DBG("hcon %p", conn);
392
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 {
399 hci_connect_cfm(sco, status);
400 hci_conn_del(sco);
401 }
402 }
403
404 static void hci_conn_timeout(struct work_struct *work)
405 {
406 struct hci_conn *conn = container_of(work, struct hci_conn,
407 disc_work.work);
408 int refcnt = atomic_read(&conn->refcnt);
409
410 BT_DBG("hcon %p state %s", conn, state_to_string(conn->state));
411
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)
422 return;
423
424 switch (conn->state) {
425 case BT_CONNECT:
426 case BT_CONNECT2:
427 if (conn->out) {
428 if (conn->type == ACL_LINK)
429 hci_acl_create_connection_cancel(conn);
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 }
436 } else if (conn->type == SCO_LINK || conn->type == ESCO_LINK) {
437 hci_reject_sco(conn);
438 }
439 break;
440 case BT_CONFIG:
441 case BT_CONNECTED:
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 }
448 break;
449 default:
450 conn->state = BT_CLOSED;
451 break;
452 }
453 }
454
455 /* Enter sniff mode */
456 static void hci_conn_idle(struct work_struct *work)
457 {
458 struct hci_conn *conn = container_of(work, struct hci_conn,
459 idle_work.work);
460 struct hci_dev *hdev = conn->hdev;
461
462 BT_DBG("hcon %p mode %d", conn, conn->mode);
463
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);
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);
476 hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp);
477 }
478
479 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
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);
484 cp.attempt = cpu_to_le16(4);
485 cp.timeout = cpu_to_le16(1);
486 hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp);
487 }
488 }
489
490 static void hci_conn_auto_accept(struct work_struct *work)
491 {
492 struct hci_conn *conn = container_of(work, struct hci_conn,
493 auto_accept_work.work);
494
495 hci_send_cmd(conn->hdev, HCI_OP_USER_CONFIRM_REPLY, sizeof(conn->dst),
496 &conn->dst);
497 }
498
499 static 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);
503 struct hci_dev *hdev = conn->hdev;
504
505 BT_DBG("");
506
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 */
512 if (conn->role == HCI_ROLE_SLAVE) {
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
520 hci_le_create_connection_cancel(conn);
521 }
522
523 struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst,
524 u8 role)
525 {
526 struct hci_conn *conn;
527
528 BT_DBG("%s dst %pMR", hdev->name, dst);
529
530 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
531 if (!conn)
532 return NULL;
533
534 bacpy(&conn->dst, dst);
535 bacpy(&conn->src, &hdev->bdaddr);
536 conn->hdev = hdev;
537 conn->type = type;
538 conn->role = role;
539 conn->mode = HCI_CM_ACTIVE;
540 conn->state = BT_OPEN;
541 conn->auth_type = HCI_AT_GENERAL_BONDING;
542 conn->io_capability = hdev->io_capability;
543 conn->remote_auth = 0xff;
544 conn->key_type = 0xff;
545 conn->rssi = HCI_RSSI_INVALID;
546 conn->tx_power = HCI_TX_POWER_INVALID;
547 conn->max_tx_power = HCI_TX_POWER_INVALID;
548
549 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
550 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
551
552 if (conn->role == HCI_ROLE_MASTER)
553 conn->out = true;
554
555 switch (type) {
556 case ACL_LINK:
557 conn->pkt_type = hdev->pkt_type & ACL_PTYPE_MASK;
558 break;
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;
563 case SCO_LINK:
564 if (lmp_esco_capable(hdev))
565 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
566 (hdev->esco_type & EDR_ESCO_MASK);
567 else
568 conn->pkt_type = hdev->pkt_type & SCO_PTYPE_MASK;
569 break;
570 case ESCO_LINK:
571 conn->pkt_type = hdev->esco_type & ~EDR_ESCO_MASK;
572 break;
573 }
574
575 skb_queue_head_init(&conn->data_q);
576
577 INIT_LIST_HEAD(&conn->chan_list);
578
579 INIT_DELAYED_WORK(&conn->disc_work, hci_conn_timeout);
580 INIT_DELAYED_WORK(&conn->auto_accept_work, hci_conn_auto_accept);
581 INIT_DELAYED_WORK(&conn->idle_work, hci_conn_idle);
582 INIT_DELAYED_WORK(&conn->le_conn_timeout, le_conn_timeout);
583
584 atomic_set(&conn->refcnt, 0);
585
586 hci_dev_hold(hdev);
587
588 hci_conn_hash_add(hdev, conn);
589 if (hdev->notify)
590 hdev->notify(hdev, HCI_NOTIFY_CONN_ADD);
591
592 hci_conn_init_sysfs(conn);
593
594 return conn;
595 }
596
597 int hci_conn_del(struct hci_conn *conn)
598 {
599 struct hci_dev *hdev = conn->hdev;
600
601 BT_DBG("%s hcon %p handle %d", hdev->name, conn, conn->handle);
602
603 cancel_delayed_work_sync(&conn->disc_work);
604 cancel_delayed_work_sync(&conn->auto_accept_work);
605 cancel_delayed_work_sync(&conn->idle_work);
606
607 if (conn->type == ACL_LINK) {
608 struct hci_conn *sco = conn->link;
609 if (sco)
610 sco->link = NULL;
611
612 /* Unacked frames */
613 hdev->acl_cnt += conn->sent;
614 } else if (conn->type == LE_LINK) {
615 cancel_delayed_work(&conn->le_conn_timeout);
616
617 if (hdev->le_pkts)
618 hdev->le_cnt += conn->sent;
619 else
620 hdev->acl_cnt += conn->sent;
621 } else {
622 struct hci_conn *acl = conn->link;
623 if (acl) {
624 acl->link = NULL;
625 hci_conn_drop(acl);
626 }
627 }
628
629 if (conn->amp_mgr)
630 amp_mgr_put(conn->amp_mgr);
631
632 skb_queue_purge(&conn->data_q);
633
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);
640
641 return 0;
642 }
643
644 struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src)
645 {
646 int use_src = bacmp(src, BDADDR_ANY);
647 struct hci_dev *hdev = NULL, *d;
648
649 BT_DBG("%pMR -> %pMR", src, dst);
650
651 read_lock(&hci_dev_list_lock);
652
653 list_for_each_entry(d, &hci_dev_list, list) {
654 if (!test_bit(HCI_UP, &d->flags) ||
655 hci_dev_test_flag(d, HCI_USER_CHANNEL) ||
656 d->dev_type != HCI_BREDR)
657 continue;
658
659 /* Simple routing:
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
678 read_unlock(&hci_dev_list_lock);
679 return hdev;
680 }
681 EXPORT_SYMBOL(hci_get_route);
682
683 /* This function requires the caller holds hdev->lock */
684 void hci_le_conn_failed(struct hci_conn *conn, u8 status)
685 {
686 struct hci_dev *hdev = conn->hdev;
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);
693 hci_conn_put(params->conn);
694 params->conn = NULL;
695 }
696
697 conn->state = BT_CLOSED;
698
699 mgmt_connect_failed(hdev, &conn->dst, conn->type, conn->dst_type,
700 status);
701
702 hci_connect_cfm(conn, status);
703
704 hci_conn_del(conn);
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);
710
711 /* Re-enable advertising in case this was a failed connection
712 * attempt as a peripheral.
713 */
714 mgmt_reenable_advertising(hdev);
715 }
716
717 static void create_le_conn_complete(struct hci_dev *hdev, u8 status, u16 opcode)
718 {
719 struct hci_conn *conn;
720
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 }
729
730 BT_ERR("HCI request failed to create LE connection: status 0x%2.2x",
731 status);
732
733 if (!conn)
734 goto done;
735
736 hci_le_conn_failed(conn, status);
737
738 done:
739 hci_dev_unlock(hdev);
740 }
741
742 static 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
752 * that we never connect with an non-resolvable address.
753 */
754 if (hci_update_random_address(req, false, &own_addr_type))
755 return;
756
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);
764 cp.conn_latency = cpu_to_le16(conn->le_conn_latency);
765 cp.supervision_timeout = cpu_to_le16(conn->le_supv_timeout);
766 cp.min_ce_len = cpu_to_le16(0x0000);
767 cp.max_ce_len = cpu_to_le16(0x0000);
768
769 hci_req_add(req, HCI_OP_LE_CREATE_CONN, sizeof(cp), &cp);
770
771 conn->state = BT_CONNECT;
772 clear_bit(HCI_CONN_SCANNING, &conn->flags);
773 }
774
775 static 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
783 /* Clear the HCI_LE_ADV bit temporarily so that the
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 */
788 hci_dev_clear_flag(hdev, HCI_LE_ADV);
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
811 struct hci_conn *hci_connect_le(struct hci_dev *hdev, bdaddr_t *dst,
812 u8 dst_type, u8 sec_level, u16 conn_timeout,
813 u8 role)
814 {
815 struct hci_conn_params *params;
816 struct hci_conn *conn, *conn_unfinished;
817 struct smp_irk *irk;
818 struct hci_request req;
819 int err;
820
821 /* Let's make sure that le is enabled.*/
822 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
823 if (lmp_le_capable(hdev))
824 return ERR_PTR(-ECONNREFUSED);
825
826 return ERR_PTR(-EOPNOTSUPP);
827 }
828
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 */
838 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, dst);
839 conn_unfinished = NULL;
840 if (conn) {
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 }
850 }
851
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 */
855 if (hci_lookup_le_connect(hdev))
856 return ERR_PTR(-EBUSY);
857
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 *
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 */
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
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
880 if (!conn)
881 return ERR_PTR(-ENOMEM);
882
883 conn->dst_type = dst_type;
884 conn->sec_level = BT_SECURITY_LOW;
885 conn->conn_timeout = conn_timeout;
886
887 if (!conn_unfinished)
888 conn->pending_sec_level = sec_level;
889
890 hci_req_init(&req, hdev);
891
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 */
898 if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
899 u8 enable = 0x00;
900 hci_req_add(&req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable),
901 &enable);
902 }
903
904 /* If requested to connect as slave use directed advertising */
905 if (conn->role == HCI_ROLE_SLAVE) {
906 /* If we're active scanning most controllers are unable
907 * to initiate advertising. Simply reject the attempt.
908 */
909 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
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
916 hci_req_directed_advertising(&req, conn);
917 goto create_conn;
918 }
919
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;
924 conn->le_conn_latency = params->conn_latency;
925 conn->le_supv_timeout = params->supervision_timeout;
926 } else {
927 conn->le_conn_min_interval = hdev->le_conn_min_interval;
928 conn->le_conn_max_interval = hdev->le_conn_max_interval;
929 conn->le_conn_latency = hdev->le_conn_latency;
930 conn->le_supv_timeout = hdev->le_supv_timeout;
931 }
932
933 /* If controller is scanning, we stop it since some controllers are
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.
938 */
939 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
940 hci_req_add_le_scan_disable(&req);
941 hci_dev_set_flag(hdev, HCI_LE_SCAN_INTERRUPTED);
942 }
943
944 hci_req_add_le_create_conn(&req, conn);
945
946 create_conn:
947 err = hci_req_run(&req, create_le_conn_complete);
948 if (err) {
949 hci_conn_del(conn);
950 return ERR_PTR(err);
951 }
952
953 done:
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
961 return conn;
962 }
963
964 static 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
984 static 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 */
1002 static 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 */
1018 if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
1019 params->auto_connect == HCI_AUTO_CONN_REPORT) {
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 */
1034 struct 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
1091 done:
1092 hci_conn_hold(conn);
1093 return conn;
1094 }
1095
1096 struct hci_conn *hci_connect_acl(struct hci_dev *hdev, bdaddr_t *dst,
1097 u8 sec_level, u8 auth_type)
1098 {
1099 struct hci_conn *acl;
1100
1101 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
1102 if (lmp_bredr_capable(hdev))
1103 return ERR_PTR(-ECONNREFUSED);
1104
1105 return ERR_PTR(-EOPNOTSUPP);
1106 }
1107
1108 acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst);
1109 if (!acl) {
1110 acl = hci_conn_add(hdev, ACL_LINK, dst, HCI_ROLE_MASTER);
1111 if (!acl)
1112 return ERR_PTR(-ENOMEM);
1113 }
1114
1115 hci_conn_hold(acl);
1116
1117 if (acl->state == BT_OPEN || acl->state == BT_CLOSED) {
1118 acl->sec_level = BT_SECURITY_LOW;
1119 acl->pending_sec_level = sec_level;
1120 acl->auth_type = auth_type;
1121 hci_acl_create_connection(acl);
1122 }
1123
1124 return acl;
1125 }
1126
1127 struct hci_conn *hci_connect_sco(struct hci_dev *hdev, int type, bdaddr_t *dst,
1128 __u16 setting)
1129 {
1130 struct hci_conn *acl;
1131 struct hci_conn *sco;
1132
1133 acl = hci_connect_acl(hdev, dst, BT_SECURITY_LOW, HCI_AT_NO_BONDING);
1134 if (IS_ERR(acl))
1135 return acl;
1136
1137 sco = hci_conn_hash_lookup_ba(hdev, type, dst);
1138 if (!sco) {
1139 sco = hci_conn_add(hdev, type, dst, HCI_ROLE_MASTER);
1140 if (!sco) {
1141 hci_conn_drop(acl);
1142 return ERR_PTR(-ENOMEM);
1143 }
1144 }
1145
1146 acl->link = sco;
1147 sco->link = acl;
1148
1149 hci_conn_hold(sco);
1150
1151 sco->setting = setting;
1152
1153 if (acl->state == BT_CONNECTED &&
1154 (sco->state == BT_OPEN || sco->state == BT_CLOSED)) {
1155 set_bit(HCI_CONN_POWER_SAVE, &acl->flags);
1156 hci_conn_enter_active_mode(acl, BT_POWER_FORCE_ACTIVE_ON);
1157
1158 if (test_bit(HCI_CONN_MODE_CHANGE_PEND, &acl->flags)) {
1159 /* defer SCO setup until mode change completed */
1160 set_bit(HCI_CONN_SCO_SETUP_PEND, &acl->flags);
1161 return sco;
1162 }
1163
1164 hci_sco_setup(acl, 0x00);
1165 }
1166
1167 return sco;
1168 }
1169
1170 /* Check link security requirement */
1171 int hci_conn_check_link_mode(struct hci_conn *conn)
1172 {
1173 BT_DBG("hcon %p", conn);
1174
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 */
1179 if (hci_dev_test_flag(conn->hdev, HCI_SC_ONLY)) {
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
1186 if (hci_conn_ssp_enabled(conn) &&
1187 !test_bit(HCI_CONN_ENCRYPT, &conn->flags))
1188 return 0;
1189
1190 return 1;
1191 }
1192
1193 /* Authenticate remote device */
1194 static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
1195 {
1196 BT_DBG("hcon %p", conn);
1197
1198 if (conn->pending_sec_level > sec_level)
1199 sec_level = conn->pending_sec_level;
1200
1201 if (sec_level > conn->sec_level)
1202 conn->pending_sec_level = sec_level;
1203 else if (test_bit(HCI_CONN_AUTH, &conn->flags))
1204 return 1;
1205
1206 /* Make sure we preserve an existing MITM requirement*/
1207 auth_type |= (conn->auth_type & 0x01);
1208
1209 conn->auth_type = auth_type;
1210
1211 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
1212 struct hci_cp_auth_requested cp;
1213
1214 cp.handle = cpu_to_le16(conn->handle);
1215 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED,
1216 sizeof(cp), &cp);
1217
1218 /* If we're already encrypted set the REAUTH_PEND flag,
1219 * otherwise set the ENCRYPT_PEND.
1220 */
1221 if (test_bit(HCI_CONN_ENCRYPT, &conn->flags))
1222 set_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
1223 else
1224 set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
1225 }
1226
1227 return 0;
1228 }
1229
1230 /* Encrypt the the link */
1231 static void hci_conn_encrypt(struct hci_conn *conn)
1232 {
1233 BT_DBG("hcon %p", conn);
1234
1235 if (!test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
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),
1240 &cp);
1241 }
1242 }
1243
1244 /* Enable security */
1245 int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type,
1246 bool initiator)
1247 {
1248 BT_DBG("hcon %p", conn);
1249
1250 if (conn->type == LE_LINK)
1251 return smp_conn_security(conn, sec_level);
1252
1253 /* For sdp we don't need the link key. */
1254 if (sec_level == BT_SECURITY_SDP)
1255 return 1;
1256
1257 /* For non 2.1 devices and low security level we don't need the link
1258 key. */
1259 if (sec_level == BT_SECURITY_LOW && !hci_conn_ssp_enabled(conn))
1260 return 1;
1261
1262 /* For other security levels we need the link key. */
1263 if (!test_bit(HCI_CONN_AUTH, &conn->flags))
1264 goto auth;
1265
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)
1277 goto encrypt;
1278
1279 /* An unauthenticated combination key has sufficient security for
1280 security level 1 and 2. */
1281 if ((conn->key_type == HCI_LK_UNAUTH_COMBINATION_P192 ||
1282 conn->key_type == HCI_LK_UNAUTH_COMBINATION_P256) &&
1283 (sec_level == BT_SECURITY_MEDIUM || sec_level == BT_SECURITY_LOW))
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 &&
1291 (sec_level == BT_SECURITY_MEDIUM || sec_level == BT_SECURITY_LOW ||
1292 conn->pin_length == 16))
1293 goto encrypt;
1294
1295 auth:
1296 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags))
1297 return 0;
1298
1299 if (initiator)
1300 set_bit(HCI_CONN_AUTH_INITIATOR, &conn->flags);
1301
1302 if (!hci_conn_auth(conn, sec_level, auth_type))
1303 return 0;
1304
1305 encrypt:
1306 if (test_bit(HCI_CONN_ENCRYPT, &conn->flags))
1307 return 1;
1308
1309 hci_conn_encrypt(conn);
1310 return 0;
1311 }
1312 EXPORT_SYMBOL(hci_conn_security);
1313
1314 /* Check secure link requirement */
1315 int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level)
1316 {
1317 BT_DBG("hcon %p", conn);
1318
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;
1322
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)
1326 return 1;
1327
1328 /* Reject not secure link */
1329 return 0;
1330 }
1331 EXPORT_SYMBOL(hci_conn_check_secure);
1332
1333 /* Switch role */
1334 int hci_conn_switch_role(struct hci_conn *conn, __u8 role)
1335 {
1336 BT_DBG("hcon %p", conn);
1337
1338 if (role == conn->role)
1339 return 1;
1340
1341 if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->flags)) {
1342 struct hci_cp_switch_role cp;
1343 bacpy(&cp.bdaddr, &conn->dst);
1344 cp.role = role;
1345 hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp);
1346 }
1347
1348 return 0;
1349 }
1350 EXPORT_SYMBOL(hci_conn_switch_role);
1351
1352 /* Enter active mode */
1353 void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active)
1354 {
1355 struct hci_dev *hdev = conn->hdev;
1356
1357 BT_DBG("hcon %p mode %d", conn, conn->mode);
1358
1359 if (conn->mode != HCI_CM_SNIFF)
1360 goto timer;
1361
1362 if (!test_bit(HCI_CONN_POWER_SAVE, &conn->flags) && !force_active)
1363 goto timer;
1364
1365 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
1366 struct hci_cp_exit_sniff_mode cp;
1367 cp.handle = cpu_to_le16(conn->handle);
1368 hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
1369 }
1370
1371 timer:
1372 if (hdev->idle_timeout > 0)
1373 queue_delayed_work(hdev->workqueue, &conn->idle_work,
1374 msecs_to_jiffies(hdev->idle_timeout));
1375 }
1376
1377 /* Drop all connection on the device */
1378 void hci_conn_hash_flush(struct hci_dev *hdev)
1379 {
1380 struct hci_conn_hash *h = &hdev->conn_hash;
1381 struct hci_conn *c, *n;
1382
1383 BT_DBG("hdev %s", hdev->name);
1384
1385 list_for_each_entry_safe(c, n, &h->list, list) {
1386 c->state = BT_CLOSED;
1387
1388 hci_disconn_cfm(c, HCI_ERROR_LOCAL_HOST_TERM);
1389 hci_conn_del(c);
1390 }
1391 }
1392
1393 /* Check pending connect attempts */
1394 void 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)
1404 hci_acl_create_connection(conn);
1405
1406 hci_dev_unlock(hdev);
1407 }
1408
1409 static u32 get_link_mode(struct hci_conn *conn)
1410 {
1411 u32 link_mode = 0;
1412
1413 if (conn->role == HCI_ROLE_MASTER)
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
1431 int hci_get_conn_list(void __user *arg)
1432 {
1433 struct hci_conn *c;
1434 struct hci_conn_list_req req, *cl;
1435 struct hci_conn_info *ci;
1436 struct hci_dev *hdev;
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
1447 cl = kmalloc(size, GFP_KERNEL);
1448 if (!cl)
1449 return -ENOMEM;
1450
1451 hdev = hci_dev_get(req.dev_id);
1452 if (!hdev) {
1453 kfree(cl);
1454 return -ENODEV;
1455 }
1456
1457 ci = cl->conn_info;
1458
1459 hci_dev_lock(hdev);
1460 list_for_each_entry(c, &hdev->conn_hash.list, list) {
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;
1466 (ci + n)->link_mode = get_link_mode(c);
1467 if (++n >= req.conn_num)
1468 break;
1469 }
1470 hci_dev_unlock(hdev);
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
1484 int 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
1494 hci_dev_lock(hdev);
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;
1502 ci.link_mode = get_link_mode(conn);
1503 }
1504 hci_dev_unlock(hdev);
1505
1506 if (!conn)
1507 return -ENOENT;
1508
1509 return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
1510 }
1511
1512 int 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
1520 hci_dev_lock(hdev);
1521 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &req.bdaddr);
1522 if (conn)
1523 req.type = conn->auth_type;
1524 hci_dev_unlock(hdev);
1525
1526 if (!conn)
1527 return -ENOENT;
1528
1529 return copy_to_user(arg, &req, sizeof(req)) ? -EFAULT : 0;
1530 }
1531
1532 struct hci_chan *hci_chan_create(struct hci_conn *conn)
1533 {
1534 struct hci_dev *hdev = conn->hdev;
1535 struct hci_chan *chan;
1536
1537 BT_DBG("%s hcon %p", hdev->name, conn);
1538
1539 if (test_bit(HCI_CONN_DROP, &conn->flags)) {
1540 BT_DBG("Refusing to create new hci_chan");
1541 return NULL;
1542 }
1543
1544 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
1545 if (!chan)
1546 return NULL;
1547
1548 chan->conn = hci_conn_get(conn);
1549 skb_queue_head_init(&chan->data_q);
1550 chan->state = BT_CONNECTED;
1551
1552 list_add_rcu(&chan->list, &conn->chan_list);
1553
1554 return chan;
1555 }
1556
1557 void hci_chan_del(struct hci_chan *chan)
1558 {
1559 struct hci_conn *conn = chan->conn;
1560 struct hci_dev *hdev = conn->hdev;
1561
1562 BT_DBG("%s hcon %p chan %p", hdev->name, conn, chan);
1563
1564 list_del_rcu(&chan->list);
1565
1566 synchronize_rcu();
1567
1568 /* Prevent new hci_chan's to be created for this hci_conn */
1569 set_bit(HCI_CONN_DROP, &conn->flags);
1570
1571 hci_conn_put(conn);
1572
1573 skb_queue_purge(&chan->data_q);
1574 kfree(chan);
1575 }
1576
1577 void hci_chan_list_flush(struct hci_conn *conn)
1578 {
1579 struct hci_chan *chan, *n;
1580
1581 BT_DBG("hcon %p", conn);
1582
1583 list_for_each_entry_safe(chan, n, &conn->chan_list, list)
1584 hci_chan_del(chan);
1585 }
1586
1587 static 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
1600 struct 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 }
This page took 0.064133 seconds and 6 git commands to generate.