2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
4 Copyright 2023-2024 NXP
6 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License version 2 as
10 published by the Free Software Foundation;
12 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
13 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
15 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
16 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
17 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
22 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
23 SOFTWARE IS DISCLAIMED.
26 /* Bluetooth HCI connection handling. */
28 #include <linux/export.h>
29 #include <linux/debugfs.h>
30 #include <linux/errqueue.h>
32 #include <net/bluetooth/bluetooth.h>
33 #include <net/bluetooth/hci_core.h>
34 #include <net/bluetooth/l2cap.h>
35 #include <net/bluetooth/iso.h>
36 #include <net/bluetooth/mgmt.h>
47 struct conn_handle_t {
48 struct hci_conn *conn;
52 static const struct sco_param esco_param_cvsd[] = {
53 { EDR_ESCO_MASK & ~ESCO_2EV3, 0x000a, 0x01 }, /* S3 */
54 { EDR_ESCO_MASK & ~ESCO_2EV3, 0x0007, 0x01 }, /* S2 */
55 { EDR_ESCO_MASK | ESCO_EV3, 0x0007, 0x01 }, /* S1 */
56 { EDR_ESCO_MASK | ESCO_HV3, 0xffff, 0x01 }, /* D1 */
57 { EDR_ESCO_MASK | ESCO_HV1, 0xffff, 0x01 }, /* D0 */
60 static const struct sco_param sco_param_cvsd[] = {
61 { EDR_ESCO_MASK | ESCO_HV3, 0xffff, 0xff }, /* D1 */
62 { EDR_ESCO_MASK | ESCO_HV1, 0xffff, 0xff }, /* D0 */
65 static const struct sco_param esco_param_msbc[] = {
66 { EDR_ESCO_MASK & ~ESCO_2EV3, 0x000d, 0x02 }, /* T2 */
67 { EDR_ESCO_MASK | ESCO_EV3, 0x0008, 0x02 }, /* T1 */
70 /* This function requires the caller holds hdev->lock */
71 void hci_connect_le_scan_cleanup(struct hci_conn *conn, u8 status)
73 struct hci_conn_params *params;
74 struct hci_dev *hdev = conn->hdev;
80 bdaddr_type = conn->dst_type;
82 /* Check if we need to convert to identity address */
83 irk = hci_get_irk(hdev, bdaddr, bdaddr_type);
85 bdaddr = &irk->bdaddr;
86 bdaddr_type = irk->addr_type;
89 params = hci_pend_le_action_lookup(&hdev->pend_le_conns, bdaddr,
95 hci_conn_drop(params->conn);
96 hci_conn_put(params->conn);
100 if (!params->explicit_connect)
103 /* If the status indicates successful cancellation of
104 * the attempt (i.e. Unknown Connection Id) there's no point of
105 * notifying failure since we'll go back to keep trying to
106 * connect. The only exception is explicit connect requests
107 * where a timeout + cancel does indicate an actual failure.
109 if (status && status != HCI_ERROR_UNKNOWN_CONN_ID)
110 mgmt_connect_failed(hdev, conn, status);
112 /* The connection attempt was doing scan for new RPA, and is
113 * in scan phase. If params are not associated with any other
114 * autoconnect action, remove them completely. If they are, just unmark
115 * them as waiting for connection, by clearing explicit_connect field.
117 params->explicit_connect = false;
119 hci_pend_le_list_del_init(params);
121 switch (params->auto_connect) {
122 case HCI_AUTO_CONN_EXPLICIT:
123 hci_conn_params_del(hdev, bdaddr, bdaddr_type);
124 /* return instead of break to avoid duplicate scan update */
126 case HCI_AUTO_CONN_DIRECT:
127 case HCI_AUTO_CONN_ALWAYS:
128 hci_pend_le_list_add(params, &hdev->pend_le_conns);
130 case HCI_AUTO_CONN_REPORT:
131 hci_pend_le_list_add(params, &hdev->pend_le_reports);
137 hci_update_passive_scan(hdev);
140 static void hci_conn_cleanup(struct hci_conn *conn)
142 struct hci_dev *hdev = conn->hdev;
144 if (test_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags))
145 hci_conn_params_del(conn->hdev, &conn->dst, conn->dst_type);
147 if (test_and_clear_bit(HCI_CONN_FLUSH_KEY, &conn->flags))
148 hci_remove_link_key(hdev, &conn->dst);
150 hci_chan_list_flush(conn);
152 hci_conn_hash_del(hdev, conn);
154 if (HCI_CONN_HANDLE_UNSET(conn->handle))
155 ida_free(&hdev->unset_handle_ida, conn->handle);
160 if (conn->type == SCO_LINK || conn->type == ESCO_LINK) {
161 switch (conn->setting & SCO_AIRMODE_MASK) {
162 case SCO_AIRMODE_CVSD:
163 case SCO_AIRMODE_TRANSP:
165 hdev->notify(hdev, HCI_NOTIFY_DISABLE_SCO);
170 hdev->notify(hdev, HCI_NOTIFY_CONN_DEL);
173 debugfs_remove_recursive(conn->debugfs);
175 hci_conn_del_sysfs(conn);
180 int hci_disconnect(struct hci_conn *conn, __u8 reason)
182 BT_DBG("hcon %p", conn);
184 /* When we are central of an established connection and it enters
185 * the disconnect timeout, then go ahead and try to read the
186 * current clock offset. Processing of the result is done
187 * within the event handling and hci_clock_offset_evt function.
189 if (conn->type == ACL_LINK && conn->role == HCI_ROLE_MASTER &&
190 (conn->state == BT_CONNECTED || conn->state == BT_CONFIG)) {
191 struct hci_dev *hdev = conn->hdev;
192 struct hci_cp_read_clock_offset clkoff_cp;
194 clkoff_cp.handle = cpu_to_le16(conn->handle);
195 hci_send_cmd(hdev, HCI_OP_READ_CLOCK_OFFSET, sizeof(clkoff_cp),
199 return hci_abort_conn(conn, reason);
202 static void hci_add_sco(struct hci_conn *conn, __u16 handle)
204 struct hci_dev *hdev = conn->hdev;
205 struct hci_cp_add_sco cp;
207 BT_DBG("hcon %p", conn);
209 conn->state = BT_CONNECT;
214 cp.handle = cpu_to_le16(handle);
215 cp.pkt_type = cpu_to_le16(conn->pkt_type);
217 hci_send_cmd(hdev, HCI_OP_ADD_SCO, sizeof(cp), &cp);
220 static bool find_next_esco_param(struct hci_conn *conn,
221 const struct sco_param *esco_param, int size)
226 for (; conn->attempt <= size; conn->attempt++) {
227 if (lmp_esco_2m_capable(conn->parent) ||
228 (esco_param[conn->attempt - 1].pkt_type & ESCO_2EV3))
230 BT_DBG("hcon %p skipped attempt %d, eSCO 2M not supported",
231 conn, conn->attempt);
234 return conn->attempt <= size;
237 static int configure_datapath_sync(struct hci_dev *hdev, struct bt_codec *codec)
240 __u8 vnd_len, *vnd_data = NULL;
241 struct hci_op_configure_data_path *cmd = NULL;
243 /* Do not take below 2 checks as error since the 1st means user do not
244 * want to use HFP offload mode and the 2nd means the vendor controller
245 * do not need to send below HCI command for offload mode.
247 if (!codec->data_path || !hdev->get_codec_config_data)
250 err = hdev->get_codec_config_data(hdev, ESCO_LINK, codec, &vnd_len,
255 cmd = kzalloc(sizeof(*cmd) + vnd_len, GFP_KERNEL);
261 err = hdev->get_data_path_id(hdev, &cmd->data_path_id);
265 cmd->vnd_len = vnd_len;
266 memcpy(cmd->vnd_data, vnd_data, vnd_len);
268 cmd->direction = 0x00;
269 __hci_cmd_sync_status(hdev, HCI_CONFIGURE_DATA_PATH,
270 sizeof(*cmd) + vnd_len, cmd, HCI_CMD_TIMEOUT);
272 cmd->direction = 0x01;
273 err = __hci_cmd_sync_status(hdev, HCI_CONFIGURE_DATA_PATH,
274 sizeof(*cmd) + vnd_len, cmd,
283 static int hci_enhanced_setup_sync(struct hci_dev *hdev, void *data)
285 struct conn_handle_t *conn_handle = data;
286 struct hci_conn *conn = conn_handle->conn;
287 __u16 handle = conn_handle->handle;
288 struct hci_cp_enhanced_setup_sync_conn cp;
289 const struct sco_param *param;
293 if (!hci_conn_valid(hdev, conn))
296 bt_dev_dbg(hdev, "hcon %p", conn);
298 configure_datapath_sync(hdev, &conn->codec);
300 conn->state = BT_CONNECT;
305 memset(&cp, 0x00, sizeof(cp));
307 cp.handle = cpu_to_le16(handle);
309 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
310 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
312 switch (conn->codec.id) {
314 if (!find_next_esco_param(conn, esco_param_msbc,
315 ARRAY_SIZE(esco_param_msbc)))
318 param = &esco_param_msbc[conn->attempt - 1];
319 cp.tx_coding_format.id = 0x05;
320 cp.rx_coding_format.id = 0x05;
321 cp.tx_codec_frame_size = __cpu_to_le16(60);
322 cp.rx_codec_frame_size = __cpu_to_le16(60);
323 cp.in_bandwidth = __cpu_to_le32(32000);
324 cp.out_bandwidth = __cpu_to_le32(32000);
325 cp.in_coding_format.id = 0x04;
326 cp.out_coding_format.id = 0x04;
327 cp.in_coded_data_size = __cpu_to_le16(16);
328 cp.out_coded_data_size = __cpu_to_le16(16);
329 cp.in_pcm_data_format = 2;
330 cp.out_pcm_data_format = 2;
331 cp.in_pcm_sample_payload_msb_pos = 0;
332 cp.out_pcm_sample_payload_msb_pos = 0;
333 cp.in_data_path = conn->codec.data_path;
334 cp.out_data_path = conn->codec.data_path;
335 cp.in_transport_unit_size = 1;
336 cp.out_transport_unit_size = 1;
339 case BT_CODEC_TRANSPARENT:
340 if (!find_next_esco_param(conn, esco_param_msbc,
341 ARRAY_SIZE(esco_param_msbc)))
343 param = &esco_param_msbc[conn->attempt - 1];
344 cp.tx_coding_format.id = 0x03;
345 cp.rx_coding_format.id = 0x03;
346 cp.tx_codec_frame_size = __cpu_to_le16(60);
347 cp.rx_codec_frame_size = __cpu_to_le16(60);
348 cp.in_bandwidth = __cpu_to_le32(0x1f40);
349 cp.out_bandwidth = __cpu_to_le32(0x1f40);
350 cp.in_coding_format.id = 0x03;
351 cp.out_coding_format.id = 0x03;
352 cp.in_coded_data_size = __cpu_to_le16(16);
353 cp.out_coded_data_size = __cpu_to_le16(16);
354 cp.in_pcm_data_format = 2;
355 cp.out_pcm_data_format = 2;
356 cp.in_pcm_sample_payload_msb_pos = 0;
357 cp.out_pcm_sample_payload_msb_pos = 0;
358 cp.in_data_path = conn->codec.data_path;
359 cp.out_data_path = conn->codec.data_path;
360 cp.in_transport_unit_size = 1;
361 cp.out_transport_unit_size = 1;
365 if (conn->parent && lmp_esco_capable(conn->parent)) {
366 if (!find_next_esco_param(conn, esco_param_cvsd,
367 ARRAY_SIZE(esco_param_cvsd)))
369 param = &esco_param_cvsd[conn->attempt - 1];
371 if (conn->attempt > ARRAY_SIZE(sco_param_cvsd))
373 param = &sco_param_cvsd[conn->attempt - 1];
375 cp.tx_coding_format.id = 2;
376 cp.rx_coding_format.id = 2;
377 cp.tx_codec_frame_size = __cpu_to_le16(60);
378 cp.rx_codec_frame_size = __cpu_to_le16(60);
379 cp.in_bandwidth = __cpu_to_le32(16000);
380 cp.out_bandwidth = __cpu_to_le32(16000);
381 cp.in_coding_format.id = 4;
382 cp.out_coding_format.id = 4;
383 cp.in_coded_data_size = __cpu_to_le16(16);
384 cp.out_coded_data_size = __cpu_to_le16(16);
385 cp.in_pcm_data_format = 2;
386 cp.out_pcm_data_format = 2;
387 cp.in_pcm_sample_payload_msb_pos = 0;
388 cp.out_pcm_sample_payload_msb_pos = 0;
389 cp.in_data_path = conn->codec.data_path;
390 cp.out_data_path = conn->codec.data_path;
391 cp.in_transport_unit_size = 16;
392 cp.out_transport_unit_size = 16;
398 cp.retrans_effort = param->retrans_effort;
399 cp.pkt_type = __cpu_to_le16(param->pkt_type);
400 cp.max_latency = __cpu_to_le16(param->max_latency);
402 if (hci_send_cmd(hdev, HCI_OP_ENHANCED_SETUP_SYNC_CONN, sizeof(cp), &cp) < 0)
408 static bool hci_setup_sync_conn(struct hci_conn *conn, __u16 handle)
410 struct hci_dev *hdev = conn->hdev;
411 struct hci_cp_setup_sync_conn cp;
412 const struct sco_param *param;
414 bt_dev_dbg(hdev, "hcon %p", conn);
416 conn->state = BT_CONNECT;
421 cp.handle = cpu_to_le16(handle);
423 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
424 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
425 cp.voice_setting = cpu_to_le16(conn->setting);
427 switch (conn->setting & SCO_AIRMODE_MASK) {
428 case SCO_AIRMODE_TRANSP:
429 if (!find_next_esco_param(conn, esco_param_msbc,
430 ARRAY_SIZE(esco_param_msbc)))
432 param = &esco_param_msbc[conn->attempt - 1];
434 case SCO_AIRMODE_CVSD:
435 if (conn->parent && lmp_esco_capable(conn->parent)) {
436 if (!find_next_esco_param(conn, esco_param_cvsd,
437 ARRAY_SIZE(esco_param_cvsd)))
439 param = &esco_param_cvsd[conn->attempt - 1];
441 if (conn->attempt > ARRAY_SIZE(sco_param_cvsd))
443 param = &sco_param_cvsd[conn->attempt - 1];
450 cp.retrans_effort = param->retrans_effort;
451 cp.pkt_type = __cpu_to_le16(param->pkt_type);
452 cp.max_latency = __cpu_to_le16(param->max_latency);
454 if (hci_send_cmd(hdev, HCI_OP_SETUP_SYNC_CONN, sizeof(cp), &cp) < 0)
460 bool hci_setup_sync(struct hci_conn *conn, __u16 handle)
463 struct conn_handle_t *conn_handle;
465 if (enhanced_sync_conn_capable(conn->hdev)) {
466 conn_handle = kzalloc(sizeof(*conn_handle), GFP_KERNEL);
471 conn_handle->conn = conn;
472 conn_handle->handle = handle;
473 result = hci_cmd_sync_queue(conn->hdev, hci_enhanced_setup_sync,
481 return hci_setup_sync_conn(conn, handle);
484 u8 hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max, u16 latency,
487 struct hci_dev *hdev = conn->hdev;
488 struct hci_conn_params *params;
489 struct hci_cp_le_conn_update cp;
493 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
495 params->conn_min_interval = min;
496 params->conn_max_interval = max;
497 params->conn_latency = latency;
498 params->supervision_timeout = to_multiplier;
501 hci_dev_unlock(hdev);
503 memset(&cp, 0, sizeof(cp));
504 cp.handle = cpu_to_le16(conn->handle);
505 cp.conn_interval_min = cpu_to_le16(min);
506 cp.conn_interval_max = cpu_to_le16(max);
507 cp.conn_latency = cpu_to_le16(latency);
508 cp.supervision_timeout = cpu_to_le16(to_multiplier);
509 cp.min_ce_len = cpu_to_le16(0x0000);
510 cp.max_ce_len = cpu_to_le16(0x0000);
512 hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp);
520 void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __le64 rand,
521 __u8 ltk[16], __u8 key_size)
523 struct hci_dev *hdev = conn->hdev;
524 struct hci_cp_le_start_enc cp;
526 BT_DBG("hcon %p", conn);
528 memset(&cp, 0, sizeof(cp));
530 cp.handle = cpu_to_le16(conn->handle);
533 memcpy(cp.ltk, ltk, key_size);
535 hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp);
538 /* Device _must_ be locked */
539 void hci_sco_setup(struct hci_conn *conn, __u8 status)
541 struct hci_link *link;
543 link = list_first_entry_or_null(&conn->link_list, struct hci_link, list);
544 if (!link || !link->conn)
547 BT_DBG("hcon %p", conn);
550 if (lmp_esco_capable(conn->hdev))
551 hci_setup_sync(link->conn, conn->handle);
553 hci_add_sco(link->conn, conn->handle);
555 hci_connect_cfm(link->conn, status);
556 hci_conn_del(link->conn);
560 static void hci_conn_timeout(struct work_struct *work)
562 struct hci_conn *conn = container_of(work, struct hci_conn,
564 int refcnt = atomic_read(&conn->refcnt);
566 BT_DBG("hcon %p state %s", conn, state_to_string(conn->state));
570 /* FIXME: It was observed that in pairing failed scenario, refcnt
571 * drops below 0. Probably this is because l2cap_conn_del calls
572 * l2cap_chan_del for each channel, and inside l2cap_chan_del conn is
573 * dropped. After that loop hci_chan_del is called which also drops
574 * conn. For now make sure that ACL is alive if refcnt is higher then 0,
580 hci_abort_conn(conn, hci_proto_disconn_ind(conn));
583 /* Enter sniff mode */
584 static void hci_conn_idle(struct work_struct *work)
586 struct hci_conn *conn = container_of(work, struct hci_conn,
588 struct hci_dev *hdev = conn->hdev;
590 BT_DBG("hcon %p mode %d", conn, conn->mode);
592 if (!lmp_sniff_capable(hdev) || !lmp_sniff_capable(conn))
595 if (conn->mode != HCI_CM_ACTIVE || !(conn->link_policy & HCI_LP_SNIFF))
598 if (lmp_sniffsubr_capable(hdev) && lmp_sniffsubr_capable(conn)) {
599 struct hci_cp_sniff_subrate cp;
600 cp.handle = cpu_to_le16(conn->handle);
601 cp.max_latency = cpu_to_le16(0);
602 cp.min_remote_timeout = cpu_to_le16(0);
603 cp.min_local_timeout = cpu_to_le16(0);
604 hci_send_cmd(hdev, HCI_OP_SNIFF_SUBRATE, sizeof(cp), &cp);
607 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
608 struct hci_cp_sniff_mode cp;
609 cp.handle = cpu_to_le16(conn->handle);
610 cp.max_interval = cpu_to_le16(hdev->sniff_max_interval);
611 cp.min_interval = cpu_to_le16(hdev->sniff_min_interval);
612 cp.attempt = cpu_to_le16(4);
613 cp.timeout = cpu_to_le16(1);
614 hci_send_cmd(hdev, HCI_OP_SNIFF_MODE, sizeof(cp), &cp);
618 static void hci_conn_auto_accept(struct work_struct *work)
620 struct hci_conn *conn = container_of(work, struct hci_conn,
621 auto_accept_work.work);
623 hci_send_cmd(conn->hdev, HCI_OP_USER_CONFIRM_REPLY, sizeof(conn->dst),
627 static void le_disable_advertising(struct hci_dev *hdev)
629 if (ext_adv_capable(hdev)) {
630 struct hci_cp_le_set_ext_adv_enable cp;
633 cp.num_of_sets = 0x00;
635 hci_send_cmd(hdev, HCI_OP_LE_SET_EXT_ADV_ENABLE, sizeof(cp),
639 hci_send_cmd(hdev, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable),
644 static void le_conn_timeout(struct work_struct *work)
646 struct hci_conn *conn = container_of(work, struct hci_conn,
647 le_conn_timeout.work);
648 struct hci_dev *hdev = conn->hdev;
652 /* We could end up here due to having done directed advertising,
653 * so clean up the state if necessary. This should however only
654 * happen with broken hardware or if low duty cycle was used
655 * (which doesn't have a timeout of its own).
657 if (conn->role == HCI_ROLE_SLAVE) {
658 /* Disable LE Advertising */
659 le_disable_advertising(hdev);
661 hci_conn_failed(conn, HCI_ERROR_ADVERTISING_TIMEOUT);
662 hci_dev_unlock(hdev);
666 hci_abort_conn(conn, HCI_ERROR_REMOTE_USER_TERM);
669 struct iso_list_data {
685 static void bis_list(struct hci_conn *conn, void *data)
687 struct iso_list_data *d = data;
689 /* Skip if not broadcast/ANY address */
690 if (bacmp(&conn->dst, BDADDR_ANY))
693 if (d->big != conn->iso_qos.bcast.big || d->bis == BT_ISO_QOS_BIS_UNSET ||
694 d->bis != conn->iso_qos.bcast.bis)
700 static int terminate_big_sync(struct hci_dev *hdev, void *data)
702 struct iso_list_data *d = data;
704 bt_dev_dbg(hdev, "big 0x%2.2x bis 0x%2.2x", d->big, d->bis);
706 hci_disable_per_advertising_sync(hdev, d->bis);
707 hci_remove_ext_adv_instance_sync(hdev, d->bis, NULL);
709 /* Only terminate BIG if it has been created */
713 return hci_le_terminate_big_sync(hdev, d->big,
714 HCI_ERROR_LOCAL_HOST_TERM);
717 static void terminate_big_destroy(struct hci_dev *hdev, void *data, int err)
722 static int hci_le_terminate_big(struct hci_dev *hdev, struct hci_conn *conn)
724 struct iso_list_data *d;
727 bt_dev_dbg(hdev, "big 0x%2.2x bis 0x%2.2x", conn->iso_qos.bcast.big,
728 conn->iso_qos.bcast.bis);
730 d = kzalloc(sizeof(*d), GFP_KERNEL);
734 d->big = conn->iso_qos.bcast.big;
735 d->bis = conn->iso_qos.bcast.bis;
736 d->big_term = test_and_clear_bit(HCI_CONN_BIG_CREATED, &conn->flags);
738 ret = hci_cmd_sync_queue(hdev, terminate_big_sync, d,
739 terminate_big_destroy);
746 static int big_terminate_sync(struct hci_dev *hdev, void *data)
748 struct iso_list_data *d = data;
750 bt_dev_dbg(hdev, "big 0x%2.2x sync_handle 0x%4.4x", d->big,
753 if (d->big_sync_term)
754 hci_le_big_terminate_sync(hdev, d->big);
757 return hci_le_pa_terminate_sync(hdev, d->sync_handle);
762 static void find_bis(struct hci_conn *conn, void *data)
764 struct iso_list_data *d = data;
766 /* Ignore if BIG doesn't match */
767 if (d->big != conn->iso_qos.bcast.big)
773 static int hci_le_big_terminate(struct hci_dev *hdev, u8 big, struct hci_conn *conn)
775 struct iso_list_data *d;
778 bt_dev_dbg(hdev, "big 0x%2.2x sync_handle 0x%4.4x", big, conn->sync_handle);
780 d = kzalloc(sizeof(*d), GFP_KERNEL);
785 d->sync_handle = conn->sync_handle;
787 if (test_and_clear_bit(HCI_CONN_PA_SYNC, &conn->flags)) {
788 hci_conn_hash_list_flag(hdev, find_bis, BIS_LINK,
789 HCI_CONN_PA_SYNC, d);
792 d->pa_sync_term = true;
797 if (test_and_clear_bit(HCI_CONN_BIG_SYNC, &conn->flags)) {
798 hci_conn_hash_list_flag(hdev, find_bis, BIS_LINK,
799 HCI_CONN_BIG_SYNC, d);
802 d->big_sync_term = true;
805 ret = hci_cmd_sync_queue(hdev, big_terminate_sync, d,
806 terminate_big_destroy);
813 /* Cleanup BIS connection
815 * Detects if there any BIS left connected in a BIG
816 * broadcaster: Remove advertising instance and terminate BIG.
817 * broadcaster receiver: Teminate BIG sync and terminate PA sync.
819 static void bis_cleanup(struct hci_conn *conn)
821 struct hci_dev *hdev = conn->hdev;
822 struct hci_conn *bis;
824 bt_dev_dbg(hdev, "conn %p", conn);
826 if (conn->role == HCI_ROLE_MASTER) {
827 if (!test_and_clear_bit(HCI_CONN_PER_ADV, &conn->flags))
830 /* Check if ISO connection is a BIS and terminate advertising
831 * set and BIG if there are no other connections using it.
833 bis = hci_conn_hash_lookup_big(hdev, conn->iso_qos.bcast.big);
837 hci_le_terminate_big(hdev, conn);
839 hci_le_big_terminate(hdev, conn->iso_qos.bcast.big,
844 static int remove_cig_sync(struct hci_dev *hdev, void *data)
846 u8 handle = PTR_UINT(data);
848 return hci_le_remove_cig_sync(hdev, handle);
851 static int hci_le_remove_cig(struct hci_dev *hdev, u8 handle)
853 bt_dev_dbg(hdev, "handle 0x%2.2x", handle);
855 return hci_cmd_sync_queue(hdev, remove_cig_sync, UINT_PTR(handle),
859 static void find_cis(struct hci_conn *conn, void *data)
861 struct iso_list_data *d = data;
863 /* Ignore broadcast or if CIG don't match */
864 if (!bacmp(&conn->dst, BDADDR_ANY) || d->cig != conn->iso_qos.ucast.cig)
870 /* Cleanup CIS connection:
872 * Detects if there any CIS left connected in a CIG and remove it.
874 static void cis_cleanup(struct hci_conn *conn)
876 struct hci_dev *hdev = conn->hdev;
877 struct iso_list_data d;
879 if (conn->iso_qos.ucast.cig == BT_ISO_QOS_CIG_UNSET)
882 memset(&d, 0, sizeof(d));
883 d.cig = conn->iso_qos.ucast.cig;
885 /* Check if ISO connection is a CIS and remove CIG if there are
886 * no other connections using it.
888 hci_conn_hash_list_state(hdev, find_cis, CIS_LINK, BT_BOUND, &d);
889 hci_conn_hash_list_state(hdev, find_cis, CIS_LINK, BT_CONNECT,
891 hci_conn_hash_list_state(hdev, find_cis, CIS_LINK, BT_CONNECTED,
896 hci_le_remove_cig(hdev, conn->iso_qos.ucast.cig);
899 static int hci_conn_hash_alloc_unset(struct hci_dev *hdev)
901 return ida_alloc_range(&hdev->unset_handle_ida, HCI_CONN_HANDLE_MAX + 1,
902 U16_MAX, GFP_ATOMIC);
905 static struct hci_conn *__hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst,
908 struct hci_conn *conn;
913 return ERR_PTR(-ECONNREFUSED);
918 /* Dedicated ISO Buffer exists */
922 if (hdev->le_mtu && hdev->le_mtu < HCI_MIN_LE_MTU)
923 return ERR_PTR(-ECONNREFUSED);
924 if (!hdev->le_mtu && hdev->acl_mtu < HCI_MIN_LE_MTU)
925 return ERR_PTR(-ECONNREFUSED);
930 /* Controller does not support SCO or eSCO over HCI */
931 return ERR_PTR(-ECONNREFUSED);
934 return ERR_PTR(-ECONNREFUSED);
937 bt_dev_dbg(hdev, "dst %pMR handle 0x%4.4x", dst, handle);
939 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
941 return ERR_PTR(-ENOMEM);
943 bacpy(&conn->dst, dst);
944 bacpy(&conn->src, &hdev->bdaddr);
945 conn->handle = handle;
949 conn->mode = HCI_CM_ACTIVE;
950 conn->state = BT_OPEN;
951 conn->auth_type = HCI_AT_GENERAL_BONDING;
952 conn->io_capability = hdev->io_capability;
953 conn->remote_auth = 0xff;
954 conn->key_type = 0xff;
955 conn->rssi = HCI_RSSI_INVALID;
956 conn->tx_power = HCI_TX_POWER_INVALID;
957 conn->max_tx_power = HCI_TX_POWER_INVALID;
958 conn->sync_handle = HCI_SYNC_HANDLE_INVALID;
959 conn->sid = HCI_SID_INVALID;
961 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
962 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
964 /* Set Default Authenticated payload timeout to 30s */
965 conn->auth_payload_timeout = DEFAULT_AUTH_PAYLOAD_TIMEOUT;
967 if (conn->role == HCI_ROLE_MASTER)
972 conn->pkt_type = hdev->pkt_type & ACL_PTYPE_MASK;
973 conn->mtu = hdev->acl_mtu;
976 /* conn->src should reflect the local identity address */
977 hci_copy_identity_address(hdev, &conn->src, &conn->src_type);
978 conn->mtu = hdev->le_mtu ? hdev->le_mtu : hdev->acl_mtu;
982 /* conn->src should reflect the local identity address */
983 hci_copy_identity_address(hdev, &conn->src, &conn->src_type);
985 /* set proper cleanup function */
986 if (!bacmp(dst, BDADDR_ANY))
987 conn->cleanup = bis_cleanup;
988 else if (conn->role == HCI_ROLE_MASTER)
989 conn->cleanup = cis_cleanup;
991 conn->mtu = hdev->iso_mtu ? hdev->iso_mtu :
992 hdev->le_mtu ? hdev->le_mtu : hdev->acl_mtu;
995 if (lmp_esco_capable(hdev))
996 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
997 (hdev->esco_type & EDR_ESCO_MASK);
999 conn->pkt_type = hdev->pkt_type & SCO_PTYPE_MASK;
1001 conn->mtu = hdev->sco_mtu;
1004 conn->pkt_type = hdev->esco_type & ~EDR_ESCO_MASK;
1005 conn->mtu = hdev->sco_mtu;
1009 skb_queue_head_init(&conn->data_q);
1010 skb_queue_head_init(&conn->tx_q.queue);
1012 INIT_LIST_HEAD(&conn->chan_list);
1013 INIT_LIST_HEAD(&conn->link_list);
1015 INIT_DELAYED_WORK(&conn->disc_work, hci_conn_timeout);
1016 INIT_DELAYED_WORK(&conn->auto_accept_work, hci_conn_auto_accept);
1017 INIT_DELAYED_WORK(&conn->idle_work, hci_conn_idle);
1018 INIT_DELAYED_WORK(&conn->le_conn_timeout, le_conn_timeout);
1020 atomic_set(&conn->refcnt, 0);
1024 hci_conn_hash_add(hdev, conn);
1026 /* The SCO and eSCO connections will only be notified when their
1027 * setup has been completed. This is different to ACL links which
1028 * can be notified right away.
1030 if (conn->type != SCO_LINK && conn->type != ESCO_LINK) {
1032 hdev->notify(hdev, HCI_NOTIFY_CONN_ADD);
1035 hci_conn_init_sysfs(conn);
1040 struct hci_conn *hci_conn_add_unset(struct hci_dev *hdev, int type,
1041 bdaddr_t *dst, u8 role)
1045 bt_dev_dbg(hdev, "dst %pMR", dst);
1047 handle = hci_conn_hash_alloc_unset(hdev);
1048 if (unlikely(handle < 0))
1049 return ERR_PTR(-ECONNREFUSED);
1051 return __hci_conn_add(hdev, type, dst, role, handle);
1054 struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst,
1055 u8 role, u16 handle)
1057 if (handle > HCI_CONN_HANDLE_MAX)
1058 return ERR_PTR(-EINVAL);
1060 return __hci_conn_add(hdev, type, dst, role, handle);
1063 static void hci_conn_cleanup_child(struct hci_conn *conn, u8 reason)
1066 reason = HCI_ERROR_REMOTE_USER_TERM;
1068 /* Due to race, SCO/ISO conn might be not established yet at this point,
1069 * and nothing else will clean it up. In other cases it is done via HCI
1072 switch (conn->type) {
1075 if (HCI_CONN_HANDLE_UNSET(conn->handle))
1076 hci_conn_failed(conn, reason);
1080 if ((conn->state != BT_CONNECTED &&
1081 !test_bit(HCI_CONN_CREATE_CIS, &conn->flags)) ||
1082 test_bit(HCI_CONN_BIG_CREATED, &conn->flags))
1083 hci_conn_failed(conn, reason);
1088 static void hci_conn_unlink(struct hci_conn *conn)
1090 struct hci_dev *hdev = conn->hdev;
1092 bt_dev_dbg(hdev, "hcon %p", conn);
1094 if (!conn->parent) {
1095 struct hci_link *link, *t;
1097 list_for_each_entry_safe(link, t, &conn->link_list, list) {
1098 struct hci_conn *child = link->conn;
1100 hci_conn_unlink(child);
1102 /* If hdev is down it means
1103 * hci_dev_close_sync/hci_conn_hash_flush is in progress
1104 * and links don't need to be cleanup as all connections
1107 if (!test_bit(HCI_UP, &hdev->flags))
1110 hci_conn_cleanup_child(child, conn->abort_reason);
1119 list_del_rcu(&conn->link->list);
1122 hci_conn_drop(conn->parent);
1123 hci_conn_put(conn->parent);
1124 conn->parent = NULL;
1130 void hci_conn_del(struct hci_conn *conn)
1132 struct hci_dev *hdev = conn->hdev;
1134 BT_DBG("%s hcon %p handle %d", hdev->name, conn, conn->handle);
1136 hci_conn_unlink(conn);
1138 disable_delayed_work_sync(&conn->disc_work);
1139 disable_delayed_work_sync(&conn->auto_accept_work);
1140 disable_delayed_work_sync(&conn->idle_work);
1142 if (conn->type == ACL_LINK) {
1143 /* Unacked frames */
1144 hdev->acl_cnt += conn->sent;
1145 } else if (conn->type == LE_LINK) {
1146 cancel_delayed_work(&conn->le_conn_timeout);
1149 hdev->le_cnt += conn->sent;
1151 hdev->acl_cnt += conn->sent;
1153 /* Unacked ISO frames */
1154 if (conn->type == CIS_LINK ||
1155 conn->type == BIS_LINK) {
1157 hdev->iso_cnt += conn->sent;
1158 else if (hdev->le_pkts)
1159 hdev->le_cnt += conn->sent;
1161 hdev->acl_cnt += conn->sent;
1165 skb_queue_purge(&conn->data_q);
1166 skb_queue_purge(&conn->tx_q.queue);
1168 /* Remove the connection from the list and cleanup its remaining
1169 * state. This is a separate function since for some cases like
1170 * BT_CONNECT_SCAN we *only* want the cleanup part without the
1171 * rest of hci_conn_del.
1173 hci_conn_cleanup(conn);
1175 /* Dequeue callbacks using connection pointer as data */
1176 hci_cmd_sync_dequeue(hdev, NULL, conn, NULL);
1179 struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src, uint8_t src_type)
1181 int use_src = bacmp(src, BDADDR_ANY);
1182 struct hci_dev *hdev = NULL, *d;
1184 BT_DBG("%pMR -> %pMR", src, dst);
1186 read_lock(&hci_dev_list_lock);
1188 list_for_each_entry(d, &hci_dev_list, list) {
1189 if (!test_bit(HCI_UP, &d->flags) ||
1190 hci_dev_test_flag(d, HCI_USER_CHANNEL))
1194 * No source address - find interface with bdaddr != dst
1195 * Source address - find interface with bdaddr == src
1202 if (src_type == BDADDR_BREDR) {
1203 if (!lmp_bredr_capable(d))
1205 bacpy(&id_addr, &d->bdaddr);
1206 id_addr_type = BDADDR_BREDR;
1208 if (!lmp_le_capable(d))
1211 hci_copy_identity_address(d, &id_addr,
1214 /* Convert from HCI to three-value type */
1215 if (id_addr_type == ADDR_LE_DEV_PUBLIC)
1216 id_addr_type = BDADDR_LE_PUBLIC;
1218 id_addr_type = BDADDR_LE_RANDOM;
1221 if (!bacmp(&id_addr, src) && id_addr_type == src_type) {
1225 if (bacmp(&d->bdaddr, dst)) {
1232 hdev = hci_dev_hold(hdev);
1234 read_unlock(&hci_dev_list_lock);
1237 EXPORT_SYMBOL(hci_get_route);
1239 /* This function requires the caller holds hdev->lock */
1240 static void hci_le_conn_failed(struct hci_conn *conn, u8 status)
1242 struct hci_dev *hdev = conn->hdev;
1244 hci_connect_le_scan_cleanup(conn, status);
1246 /* Enable advertising in case this was a failed connection
1247 * attempt as a peripheral.
1249 hci_enable_advertising(hdev);
1252 /* This function requires the caller holds hdev->lock */
1253 void hci_conn_failed(struct hci_conn *conn, u8 status)
1255 struct hci_dev *hdev = conn->hdev;
1257 bt_dev_dbg(hdev, "status 0x%2.2x", status);
1259 switch (conn->type) {
1261 hci_le_conn_failed(conn, status);
1264 mgmt_connect_failed(hdev, conn, status);
1268 /* In case of BIG/PA sync failed, clear conn flags so that
1269 * the conns will be correctly cleaned up by ISO layer
1271 test_and_clear_bit(HCI_CONN_BIG_SYNC_FAILED, &conn->flags);
1272 test_and_clear_bit(HCI_CONN_PA_SYNC_FAILED, &conn->flags);
1274 conn->state = BT_CLOSED;
1275 hci_connect_cfm(conn, status);
1279 /* This function requires the caller holds hdev->lock */
1280 u8 hci_conn_set_handle(struct hci_conn *conn, u16 handle)
1282 struct hci_dev *hdev = conn->hdev;
1284 bt_dev_dbg(hdev, "hcon %p handle 0x%4.4x", conn, handle);
1286 if (conn->handle == handle)
1289 if (handle > HCI_CONN_HANDLE_MAX) {
1290 bt_dev_err(hdev, "Invalid handle: 0x%4.4x > 0x%4.4x",
1291 handle, HCI_CONN_HANDLE_MAX);
1292 return HCI_ERROR_INVALID_PARAMETERS;
1295 /* If abort_reason has been sent it means the connection is being
1296 * aborted and the handle shall not be changed.
1298 if (conn->abort_reason)
1299 return conn->abort_reason;
1301 if (HCI_CONN_HANDLE_UNSET(conn->handle))
1302 ida_free(&hdev->unset_handle_ida, conn->handle);
1304 conn->handle = handle;
1309 struct hci_conn *hci_connect_le(struct hci_dev *hdev, bdaddr_t *dst,
1310 u8 dst_type, bool dst_resolved, u8 sec_level,
1311 u16 conn_timeout, u8 role, u8 phy, u8 sec_phy)
1313 struct hci_conn *conn;
1314 struct smp_irk *irk;
1317 /* Let's make sure that le is enabled.*/
1318 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
1319 if (lmp_le_capable(hdev))
1320 return ERR_PTR(-ECONNREFUSED);
1322 return ERR_PTR(-EOPNOTSUPP);
1325 /* Since the controller supports only one LE connection attempt at a
1326 * time, we return -EBUSY if there is any connection attempt running.
1328 if (hci_lookup_le_connect(hdev))
1329 return ERR_PTR(-EBUSY);
1331 /* If there's already a connection object but it's not in
1332 * scanning state it means it must already be established, in
1333 * which case we can't do anything else except report a failure
1336 conn = hci_conn_hash_lookup_le(hdev, dst, dst_type);
1337 if (conn && !test_bit(HCI_CONN_SCANNING, &conn->flags)) {
1338 return ERR_PTR(-EBUSY);
1341 /* Check if the destination address has been resolved by the controller
1342 * since if it did then the identity address shall be used.
1344 if (!dst_resolved) {
1345 /* When given an identity address with existing identity
1346 * resolving key, the connection needs to be established
1347 * to a resolvable random address.
1349 * Storing the resolvable random address is required here
1350 * to handle connection failures. The address will later
1351 * be resolved back into the original identity address
1352 * from the connect request.
1354 irk = hci_find_irk_by_addr(hdev, dst, dst_type);
1355 if (irk && bacmp(&irk->rpa, BDADDR_ANY)) {
1357 dst_type = ADDR_LE_DEV_RANDOM;
1362 bacpy(&conn->dst, dst);
1364 conn = hci_conn_add_unset(hdev, LE_LINK, dst, role);
1367 hci_conn_hold(conn);
1368 conn->pending_sec_level = sec_level;
1371 conn->dst_type = dst_type;
1372 conn->sec_level = BT_SECURITY_LOW;
1373 conn->conn_timeout = conn_timeout;
1374 conn->le_adv_phy = phy;
1375 conn->le_adv_sec_phy = sec_phy;
1377 err = hci_connect_le_sync(hdev, conn);
1380 return ERR_PTR(err);
1386 static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
1388 struct hci_conn *conn;
1390 conn = hci_conn_hash_lookup_le(hdev, addr, type);
1394 if (conn->state != BT_CONNECTED)
1400 /* This function requires the caller holds hdev->lock */
1401 static int hci_explicit_conn_params_set(struct hci_dev *hdev,
1402 bdaddr_t *addr, u8 addr_type)
1404 struct hci_conn_params *params;
1406 if (is_connected(hdev, addr, addr_type))
1409 params = hci_conn_params_lookup(hdev, addr, addr_type);
1411 params = hci_conn_params_add(hdev, addr, addr_type);
1415 /* If we created new params, mark them to be deleted in
1416 * hci_connect_le_scan_cleanup. It's different case than
1417 * existing disabled params, those will stay after cleanup.
1419 params->auto_connect = HCI_AUTO_CONN_EXPLICIT;
1422 /* We're trying to connect, so make sure params are at pend_le_conns */
1423 if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
1424 params->auto_connect == HCI_AUTO_CONN_REPORT ||
1425 params->auto_connect == HCI_AUTO_CONN_EXPLICIT) {
1426 hci_pend_le_list_del_init(params);
1427 hci_pend_le_list_add(params, &hdev->pend_le_conns);
1430 params->explicit_connect = true;
1432 BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
1433 params->auto_connect);
1438 static int qos_set_big(struct hci_dev *hdev, struct bt_iso_qos *qos)
1440 struct hci_conn *conn;
1443 /* Allocate a BIG if not set */
1444 if (qos->bcast.big == BT_ISO_QOS_BIG_UNSET) {
1445 for (big = 0x00; big < 0xef; big++) {
1447 conn = hci_conn_hash_lookup_big(hdev, big);
1453 return -EADDRNOTAVAIL;
1456 qos->bcast.big = big;
1462 static int qos_set_bis(struct hci_dev *hdev, struct bt_iso_qos *qos)
1464 struct hci_conn *conn;
1467 /* Allocate BIS if not set */
1468 if (qos->bcast.bis == BT_ISO_QOS_BIS_UNSET) {
1469 if (qos->bcast.big != BT_ISO_QOS_BIG_UNSET) {
1470 conn = hci_conn_hash_lookup_big(hdev, qos->bcast.big);
1473 /* If the BIG handle is already matched to an advertising
1474 * handle, do not allocate a new one.
1476 qos->bcast.bis = conn->iso_qos.bcast.bis;
1481 /* Find an unused adv set to advertise BIS, skip instance 0x00
1482 * since it is reserved as general purpose set.
1484 for (bis = 0x01; bis < hdev->le_num_of_adv_sets;
1487 conn = hci_conn_hash_lookup_bis(hdev, BDADDR_ANY, bis);
1492 if (bis == hdev->le_num_of_adv_sets)
1493 return -EADDRNOTAVAIL;
1496 qos->bcast.bis = bis;
1502 /* This function requires the caller holds hdev->lock */
1503 static struct hci_conn *hci_add_bis(struct hci_dev *hdev, bdaddr_t *dst,
1504 __u8 sid, struct bt_iso_qos *qos,
1505 __u8 base_len, __u8 *base)
1507 struct hci_conn *conn;
1510 /* Let's make sure that le is enabled.*/
1511 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
1512 if (lmp_le_capable(hdev))
1513 return ERR_PTR(-ECONNREFUSED);
1514 return ERR_PTR(-EOPNOTSUPP);
1517 err = qos_set_big(hdev, qos);
1519 return ERR_PTR(err);
1521 err = qos_set_bis(hdev, qos);
1523 return ERR_PTR(err);
1525 /* Check if the LE Create BIG command has already been sent */
1526 conn = hci_conn_hash_lookup_per_adv_bis(hdev, dst, qos->bcast.big,
1529 return ERR_PTR(-EADDRINUSE);
1531 /* Check BIS settings against other bound BISes, since all
1532 * BISes in a BIG must have the same value for all parameters
1534 conn = hci_conn_hash_lookup_big(hdev, qos->bcast.big);
1536 if (conn && (memcmp(qos, &conn->iso_qos, sizeof(*qos)) ||
1537 base_len != conn->le_per_adv_data_len ||
1538 memcmp(conn->le_per_adv_data, base, base_len)))
1539 return ERR_PTR(-EADDRINUSE);
1541 conn = hci_conn_add_unset(hdev, BIS_LINK, dst, HCI_ROLE_MASTER);
1545 conn->state = BT_CONNECT;
1548 hci_conn_hold(conn);
1552 /* This function requires the caller holds hdev->lock */
1553 struct hci_conn *hci_connect_le_scan(struct hci_dev *hdev, bdaddr_t *dst,
1554 u8 dst_type, u8 sec_level,
1556 enum conn_reasons conn_reason)
1558 struct hci_conn *conn;
1560 /* Let's make sure that le is enabled.*/
1561 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
1562 if (lmp_le_capable(hdev))
1563 return ERR_PTR(-ECONNREFUSED);
1565 return ERR_PTR(-EOPNOTSUPP);
1568 /* Some devices send ATT messages as soon as the physical link is
1569 * established. To be able to handle these ATT messages, the user-
1570 * space first establishes the connection and then starts the pairing
1573 * So if a hci_conn object already exists for the following connection
1574 * attempt, we simply update pending_sec_level and auth_type fields
1575 * and return the object found.
1577 conn = hci_conn_hash_lookup_le(hdev, dst, dst_type);
1579 if (conn->pending_sec_level < sec_level)
1580 conn->pending_sec_level = sec_level;
1584 BT_DBG("requesting refresh of dst_addr");
1586 conn = hci_conn_add_unset(hdev, LE_LINK, dst, HCI_ROLE_MASTER);
1590 if (hci_explicit_conn_params_set(hdev, dst, dst_type) < 0) {
1592 return ERR_PTR(-EBUSY);
1595 conn->state = BT_CONNECT;
1596 set_bit(HCI_CONN_SCANNING, &conn->flags);
1597 conn->dst_type = dst_type;
1598 conn->sec_level = BT_SECURITY_LOW;
1599 conn->pending_sec_level = sec_level;
1600 conn->conn_timeout = conn_timeout;
1601 conn->conn_reason = conn_reason;
1603 hci_update_passive_scan(hdev);
1606 hci_conn_hold(conn);
1610 struct hci_conn *hci_connect_acl(struct hci_dev *hdev, bdaddr_t *dst,
1611 u8 sec_level, u8 auth_type,
1612 enum conn_reasons conn_reason, u16 timeout)
1614 struct hci_conn *acl;
1616 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
1617 if (lmp_bredr_capable(hdev))
1618 return ERR_PTR(-ECONNREFUSED);
1620 return ERR_PTR(-EOPNOTSUPP);
1623 /* Reject outgoing connection to device with same BD ADDR against
1626 if (!bacmp(&hdev->bdaddr, dst)) {
1627 bt_dev_dbg(hdev, "Reject connection with same BD_ADDR %pMR\n",
1629 return ERR_PTR(-ECONNREFUSED);
1632 acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst);
1634 acl = hci_conn_add_unset(hdev, ACL_LINK, dst, HCI_ROLE_MASTER);
1641 acl->conn_reason = conn_reason;
1642 if (acl->state == BT_OPEN || acl->state == BT_CLOSED) {
1645 acl->sec_level = BT_SECURITY_LOW;
1646 acl->pending_sec_level = sec_level;
1647 acl->auth_type = auth_type;
1648 acl->conn_timeout = timeout;
1650 err = hci_connect_acl_sync(hdev, acl);
1653 return ERR_PTR(err);
1660 static struct hci_link *hci_conn_link(struct hci_conn *parent,
1661 struct hci_conn *conn)
1663 struct hci_dev *hdev = parent->hdev;
1664 struct hci_link *link;
1666 bt_dev_dbg(hdev, "parent %p hcon %p", parent, conn);
1674 link = kzalloc(sizeof(*link), GFP_KERNEL);
1678 link->conn = hci_conn_hold(conn);
1680 conn->parent = hci_conn_get(parent);
1682 /* Use list_add_tail_rcu append to the list */
1683 list_add_tail_rcu(&link->list, &parent->link_list);
1688 struct hci_conn *hci_connect_sco(struct hci_dev *hdev, int type, bdaddr_t *dst,
1689 __u16 setting, struct bt_codec *codec,
1692 struct hci_conn *acl;
1693 struct hci_conn *sco;
1694 struct hci_link *link;
1696 acl = hci_connect_acl(hdev, dst, BT_SECURITY_LOW, HCI_AT_NO_BONDING,
1697 CONN_REASON_SCO_CONNECT, timeout);
1701 sco = hci_conn_hash_lookup_ba(hdev, type, dst);
1703 sco = hci_conn_add_unset(hdev, type, dst, HCI_ROLE_MASTER);
1710 link = hci_conn_link(acl, sco);
1714 return ERR_PTR(-ENOLINK);
1717 sco->setting = setting;
1718 sco->codec = *codec;
1720 if (acl->state == BT_CONNECTED &&
1721 (sco->state == BT_OPEN || sco->state == BT_CLOSED)) {
1722 set_bit(HCI_CONN_POWER_SAVE, &acl->flags);
1723 hci_conn_enter_active_mode(acl, BT_POWER_FORCE_ACTIVE_ON);
1725 if (test_bit(HCI_CONN_MODE_CHANGE_PEND, &acl->flags)) {
1726 /* defer SCO setup until mode change completed */
1727 set_bit(HCI_CONN_SCO_SETUP_PEND, &acl->flags);
1731 hci_sco_setup(acl, 0x00);
1737 static int hci_le_create_big(struct hci_conn *conn, struct bt_iso_qos *qos)
1739 struct hci_dev *hdev = conn->hdev;
1740 struct hci_cp_le_create_big cp;
1741 struct iso_list_data data;
1743 memset(&cp, 0, sizeof(cp));
1745 data.big = qos->bcast.big;
1746 data.bis = qos->bcast.bis;
1749 /* Create a BIS for each bound connection */
1750 hci_conn_hash_list_state(hdev, bis_list, BIS_LINK,
1753 cp.handle = qos->bcast.big;
1754 cp.adv_handle = qos->bcast.bis;
1755 cp.num_bis = data.count;
1756 hci_cpu_to_le24(qos->bcast.out.interval, cp.bis.sdu_interval);
1757 cp.bis.sdu = cpu_to_le16(qos->bcast.out.sdu);
1758 cp.bis.latency = cpu_to_le16(qos->bcast.out.latency);
1759 cp.bis.rtn = qos->bcast.out.rtn;
1760 cp.bis.phy = qos->bcast.out.phy;
1761 cp.bis.packing = qos->bcast.packing;
1762 cp.bis.framing = qos->bcast.framing;
1763 cp.bis.encryption = qos->bcast.encryption;
1764 memcpy(cp.bis.bcode, qos->bcast.bcode, sizeof(cp.bis.bcode));
1766 return hci_send_cmd(hdev, HCI_OP_LE_CREATE_BIG, sizeof(cp), &cp);
1769 static int set_cig_params_sync(struct hci_dev *hdev, void *data)
1771 DEFINE_FLEX(struct hci_cp_le_set_cig_params, pdu, cis, num_cis, 0x1f);
1772 u8 cig_id = PTR_UINT(data);
1773 struct hci_conn *conn;
1774 struct bt_iso_qos *qos;
1778 conn = hci_conn_hash_lookup_cig(hdev, cig_id);
1782 qos = &conn->iso_qos;
1783 pdu->cig_id = cig_id;
1784 hci_cpu_to_le24(qos->ucast.out.interval, pdu->c_interval);
1785 hci_cpu_to_le24(qos->ucast.in.interval, pdu->p_interval);
1786 pdu->sca = qos->ucast.sca;
1787 pdu->packing = qos->ucast.packing;
1788 pdu->framing = qos->ucast.framing;
1789 pdu->c_latency = cpu_to_le16(qos->ucast.out.latency);
1790 pdu->p_latency = cpu_to_le16(qos->ucast.in.latency);
1792 /* Reprogram all CIS(s) with the same CIG, valid range are:
1793 * num_cis: 0x00 to 0x1F
1794 * cis_id: 0x00 to 0xEF
1796 for (cis_id = 0x00; cis_id < 0xf0 &&
1797 aux_num_cis < pdu->num_cis; cis_id++) {
1798 struct hci_cis_params *cis;
1800 conn = hci_conn_hash_lookup_cis(hdev, NULL, 0, cig_id, cis_id);
1804 qos = &conn->iso_qos;
1806 cis = &pdu->cis[aux_num_cis++];
1807 cis->cis_id = cis_id;
1808 cis->c_sdu = cpu_to_le16(conn->iso_qos.ucast.out.sdu);
1809 cis->p_sdu = cpu_to_le16(conn->iso_qos.ucast.in.sdu);
1810 cis->c_phy = qos->ucast.out.phy ? qos->ucast.out.phy :
1812 cis->p_phy = qos->ucast.in.phy ? qos->ucast.in.phy :
1814 cis->c_rtn = qos->ucast.out.rtn;
1815 cis->p_rtn = qos->ucast.in.rtn;
1817 pdu->num_cis = aux_num_cis;
1822 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_CIG_PARAMS,
1823 struct_size(pdu, cis, pdu->num_cis),
1824 pdu, HCI_CMD_TIMEOUT);
1827 static bool hci_le_set_cig_params(struct hci_conn *conn, struct bt_iso_qos *qos)
1829 struct hci_dev *hdev = conn->hdev;
1830 struct iso_list_data data;
1832 memset(&data, 0, sizeof(data));
1834 /* Allocate first still reconfigurable CIG if not set */
1835 if (qos->ucast.cig == BT_ISO_QOS_CIG_UNSET) {
1836 for (data.cig = 0x00; data.cig < 0xf0; data.cig++) {
1839 hci_conn_hash_list_state(hdev, find_cis, CIS_LINK,
1844 hci_conn_hash_list_state(hdev, find_cis, CIS_LINK,
1845 BT_CONNECTED, &data);
1850 if (data.cig == 0xf0)
1854 qos->ucast.cig = data.cig;
1857 if (qos->ucast.cis != BT_ISO_QOS_CIS_UNSET) {
1858 if (hci_conn_hash_lookup_cis(hdev, NULL, 0, qos->ucast.cig,
1864 /* Allocate first available CIS if not set */
1865 for (data.cig = qos->ucast.cig, data.cis = 0x00; data.cis < 0xf0;
1867 if (!hci_conn_hash_lookup_cis(hdev, NULL, 0, data.cig,
1870 qos->ucast.cis = data.cis;
1875 if (qos->ucast.cis == BT_ISO_QOS_CIS_UNSET)
1879 if (hci_cmd_sync_queue(hdev, set_cig_params_sync,
1880 UINT_PTR(qos->ucast.cig), NULL) < 0)
1886 struct hci_conn *hci_bind_cis(struct hci_dev *hdev, bdaddr_t *dst,
1887 __u8 dst_type, struct bt_iso_qos *qos)
1889 struct hci_conn *cis;
1891 cis = hci_conn_hash_lookup_cis(hdev, dst, dst_type, qos->ucast.cig,
1894 cis = hci_conn_add_unset(hdev, CIS_LINK, dst,
1898 cis->cleanup = cis_cleanup;
1899 cis->dst_type = dst_type;
1900 cis->iso_qos.ucast.cig = BT_ISO_QOS_CIG_UNSET;
1901 cis->iso_qos.ucast.cis = BT_ISO_QOS_CIS_UNSET;
1904 if (cis->state == BT_CONNECTED)
1907 /* Check if CIS has been set and the settings matches */
1908 if (cis->state == BT_BOUND &&
1909 !memcmp(&cis->iso_qos, qos, sizeof(*qos)))
1912 /* Update LINK PHYs according to QoS preference */
1913 cis->le_tx_phy = qos->ucast.out.phy;
1914 cis->le_rx_phy = qos->ucast.in.phy;
1916 /* If output interval is not set use the input interval as it cannot be
1919 if (!qos->ucast.out.interval)
1920 qos->ucast.out.interval = qos->ucast.in.interval;
1922 /* If input interval is not set use the output interval as it cannot be
1925 if (!qos->ucast.in.interval)
1926 qos->ucast.in.interval = qos->ucast.out.interval;
1928 /* If output latency is not set use the input latency as it cannot be
1931 if (!qos->ucast.out.latency)
1932 qos->ucast.out.latency = qos->ucast.in.latency;
1934 /* If input latency is not set use the output latency as it cannot be
1937 if (!qos->ucast.in.latency)
1938 qos->ucast.in.latency = qos->ucast.out.latency;
1940 if (!hci_le_set_cig_params(cis, qos)) {
1942 return ERR_PTR(-EINVAL);
1947 cis->iso_qos = *qos;
1948 cis->state = BT_BOUND;
1953 bool hci_iso_setup_path(struct hci_conn *conn)
1955 struct hci_dev *hdev = conn->hdev;
1956 struct hci_cp_le_setup_iso_path cmd;
1958 memset(&cmd, 0, sizeof(cmd));
1960 if (conn->iso_qos.ucast.out.sdu) {
1961 cmd.handle = cpu_to_le16(conn->handle);
1962 cmd.direction = 0x00; /* Input (Host to Controller) */
1963 cmd.path = 0x00; /* HCI path if enabled */
1964 cmd.codec = 0x03; /* Transparent Data */
1966 if (hci_send_cmd(hdev, HCI_OP_LE_SETUP_ISO_PATH, sizeof(cmd),
1971 if (conn->iso_qos.ucast.in.sdu) {
1972 cmd.handle = cpu_to_le16(conn->handle);
1973 cmd.direction = 0x01; /* Output (Controller to Host) */
1974 cmd.path = 0x00; /* HCI path if enabled */
1975 cmd.codec = 0x03; /* Transparent Data */
1977 if (hci_send_cmd(hdev, HCI_OP_LE_SETUP_ISO_PATH, sizeof(cmd),
1985 int hci_conn_check_create_cis(struct hci_conn *conn)
1987 if (conn->type != CIS_LINK)
1990 if (!conn->parent || conn->parent->state != BT_CONNECTED ||
1991 conn->state != BT_CONNECT || HCI_CONN_HANDLE_UNSET(conn->handle))
1997 static int hci_create_cis_sync(struct hci_dev *hdev, void *data)
1999 return hci_le_create_cis_sync(hdev);
2002 int hci_le_create_cis_pending(struct hci_dev *hdev)
2004 struct hci_conn *conn;
2005 bool pending = false;
2009 list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) {
2010 if (test_bit(HCI_CONN_CREATE_CIS, &conn->flags)) {
2015 if (!hci_conn_check_create_cis(conn))
2024 /* Queue Create CIS */
2025 return hci_cmd_sync_queue(hdev, hci_create_cis_sync, NULL, NULL);
2028 static void hci_iso_qos_setup(struct hci_dev *hdev, struct hci_conn *conn,
2029 struct bt_iso_io_qos *qos, __u8 phy)
2031 /* Only set MTU if PHY is enabled */
2032 if (!qos->sdu && qos->phy)
2033 qos->sdu = conn->mtu;
2035 /* Use the same PHY as ACL if set to any */
2036 if (qos->phy == BT_ISO_PHY_ANY)
2039 /* Use LE ACL connection interval if not set */
2041 /* ACL interval unit in 1.25 ms to us */
2042 qos->interval = conn->le_conn_interval * 1250;
2044 /* Use LE ACL connection latency if not set */
2046 qos->latency = conn->le_conn_latency;
2049 static int create_big_sync(struct hci_dev *hdev, void *data)
2051 struct hci_conn *conn = data;
2052 struct bt_iso_qos *qos = &conn->iso_qos;
2053 u16 interval, sync_interval = 0;
2057 if (qos->bcast.out.phy == 0x02)
2058 flags |= MGMT_ADV_FLAG_SEC_2M;
2060 /* Align intervals */
2061 interval = (qos->bcast.out.interval / 1250) * qos->bcast.sync_factor;
2064 sync_interval = interval * 4;
2066 err = hci_start_per_adv_sync(hdev, qos->bcast.bis, conn->sid,
2067 conn->le_per_adv_data_len,
2068 conn->le_per_adv_data, flags, interval,
2069 interval, sync_interval);
2073 return hci_le_create_big(conn, &conn->iso_qos);
2076 struct hci_conn *hci_pa_create_sync(struct hci_dev *hdev, bdaddr_t *dst,
2077 __u8 dst_type, __u8 sid,
2078 struct bt_iso_qos *qos)
2080 struct hci_conn *conn;
2082 bt_dev_dbg(hdev, "dst %pMR type %d sid %d", dst, dst_type, sid);
2084 conn = hci_conn_add_unset(hdev, BIS_LINK, dst, HCI_ROLE_SLAVE);
2088 conn->iso_qos = *qos;
2089 conn->dst_type = dst_type;
2091 conn->state = BT_LISTEN;
2092 conn->conn_timeout = msecs_to_jiffies(qos->bcast.sync_timeout * 10);
2094 hci_conn_hold(conn);
2096 hci_connect_pa_sync(hdev, conn);
2101 int hci_conn_big_create_sync(struct hci_dev *hdev, struct hci_conn *hcon,
2102 struct bt_iso_qos *qos, __u16 sync_handle,
2103 __u8 num_bis, __u8 bis[])
2107 if (num_bis < 0x01 || num_bis > ISO_MAX_NUM_BIS)
2110 err = qos_set_big(hdev, qos);
2115 /* Update hcon QoS */
2116 hcon->iso_qos = *qos;
2118 hcon->num_bis = num_bis;
2119 memcpy(hcon->bis, bis, num_bis);
2120 hcon->conn_timeout = msecs_to_jiffies(qos->bcast.timeout * 10);
2123 return hci_connect_big_sync(hdev, hcon);
2126 static void create_big_complete(struct hci_dev *hdev, void *data, int err)
2128 struct hci_conn *conn = data;
2130 bt_dev_dbg(hdev, "conn %p", conn);
2133 bt_dev_err(hdev, "Unable to create BIG: %d", err);
2134 hci_connect_cfm(conn, err);
2139 struct hci_conn *hci_bind_bis(struct hci_dev *hdev, bdaddr_t *dst, __u8 sid,
2140 struct bt_iso_qos *qos,
2141 __u8 base_len, __u8 *base)
2143 struct hci_conn *conn;
2144 struct hci_conn *parent;
2145 __u8 eir[HCI_MAX_PER_AD_LENGTH];
2146 struct hci_link *link;
2148 /* Look for any BIS that is open for rebinding */
2149 conn = hci_conn_hash_lookup_big_state(hdev, qos->bcast.big, BT_OPEN);
2151 memcpy(qos, &conn->iso_qos, sizeof(*qos));
2152 conn->state = BT_CONNECTED;
2156 if (base_len && base)
2157 base_len = eir_append_service_data(eir, 0, 0x1851,
2160 /* We need hci_conn object using the BDADDR_ANY as dst */
2161 conn = hci_add_bis(hdev, dst, sid, qos, base_len, eir);
2165 /* Update LINK PHYs according to QoS preference */
2166 conn->le_tx_phy = qos->bcast.out.phy;
2167 conn->le_tx_phy = qos->bcast.out.phy;
2169 /* Add Basic Announcement into Peridic Adv Data if BASE is set */
2170 if (base_len && base) {
2171 memcpy(conn->le_per_adv_data, eir, sizeof(eir));
2172 conn->le_per_adv_data_len = base_len;
2175 hci_iso_qos_setup(hdev, conn, &qos->bcast.out,
2176 conn->le_tx_phy ? conn->le_tx_phy :
2177 hdev->le_tx_def_phys);
2179 conn->iso_qos = *qos;
2180 conn->state = BT_BOUND;
2182 /* Link BISes together */
2183 parent = hci_conn_hash_lookup_big(hdev,
2184 conn->iso_qos.bcast.big);
2185 if (parent && parent != conn) {
2186 link = hci_conn_link(parent, conn);
2187 hci_conn_drop(conn);
2189 return ERR_PTR(-ENOLINK);
2195 static void bis_mark_per_adv(struct hci_conn *conn, void *data)
2197 struct iso_list_data *d = data;
2199 /* Skip if not broadcast/ANY address */
2200 if (bacmp(&conn->dst, BDADDR_ANY))
2203 if (d->big != conn->iso_qos.bcast.big ||
2204 d->bis == BT_ISO_QOS_BIS_UNSET ||
2205 d->bis != conn->iso_qos.bcast.bis)
2208 set_bit(HCI_CONN_PER_ADV, &conn->flags);
2211 struct hci_conn *hci_connect_bis(struct hci_dev *hdev, bdaddr_t *dst,
2212 __u8 dst_type, __u8 sid,
2213 struct bt_iso_qos *qos,
2214 __u8 base_len, __u8 *base)
2216 struct hci_conn *conn;
2218 struct iso_list_data data;
2220 conn = hci_bind_bis(hdev, dst, sid, qos, base_len, base);
2224 if (conn->state == BT_CONNECTED)
2227 /* Check if SID needs to be allocated then search for the first
2230 if (conn->sid == HCI_SID_INVALID) {
2233 for (sid = 0; sid <= 0x0f; sid++) {
2234 if (!hci_find_adv_sid(hdev, sid)) {
2241 data.big = qos->bcast.big;
2242 data.bis = qos->bcast.bis;
2244 /* Set HCI_CONN_PER_ADV for all bound connections, to mark that
2245 * the start periodic advertising and create BIG commands have
2248 hci_conn_hash_list_state(hdev, bis_mark_per_adv, BIS_LINK,
2251 /* Queue start periodic advertising and create BIG */
2252 err = hci_cmd_sync_queue(hdev, create_big_sync, conn,
2253 create_big_complete);
2255 hci_conn_drop(conn);
2256 return ERR_PTR(err);
2262 struct hci_conn *hci_connect_cis(struct hci_dev *hdev, bdaddr_t *dst,
2263 __u8 dst_type, struct bt_iso_qos *qos)
2265 struct hci_conn *le;
2266 struct hci_conn *cis;
2267 struct hci_link *link;
2269 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
2270 le = hci_connect_le(hdev, dst, dst_type, false,
2272 HCI_LE_CONN_TIMEOUT,
2273 HCI_ROLE_SLAVE, 0, 0);
2275 le = hci_connect_le_scan(hdev, dst, dst_type,
2277 HCI_LE_CONN_TIMEOUT,
2278 CONN_REASON_ISO_CONNECT);
2282 hci_iso_qos_setup(hdev, le, &qos->ucast.out,
2283 le->le_tx_phy ? le->le_tx_phy : hdev->le_tx_def_phys);
2284 hci_iso_qos_setup(hdev, le, &qos->ucast.in,
2285 le->le_rx_phy ? le->le_rx_phy : hdev->le_rx_def_phys);
2287 cis = hci_bind_cis(hdev, dst, dst_type, qos);
2293 link = hci_conn_link(le, cis);
2297 return ERR_PTR(-ENOLINK);
2300 cis->state = BT_CONNECT;
2302 hci_le_create_cis_pending(hdev);
2307 /* Check link security requirement */
2308 int hci_conn_check_link_mode(struct hci_conn *conn)
2310 BT_DBG("hcon %p", conn);
2312 /* In Secure Connections Only mode, it is required that Secure
2313 * Connections is used and the link is encrypted with AES-CCM
2314 * using a P-256 authenticated combination key.
2316 if (hci_dev_test_flag(conn->hdev, HCI_SC_ONLY)) {
2317 if (!hci_conn_sc_enabled(conn) ||
2318 !test_bit(HCI_CONN_AES_CCM, &conn->flags) ||
2319 conn->key_type != HCI_LK_AUTH_COMBINATION_P256)
2323 /* AES encryption is required for Level 4:
2325 * BLUETOOTH CORE SPECIFICATION Version 5.2 | Vol 3, Part C
2328 * 128-bit equivalent strength for link and encryption keys
2329 * required using FIPS approved algorithms (E0 not allowed,
2330 * SAFER+ not allowed, and P-192 not allowed; encryption key
2333 if (conn->sec_level == BT_SECURITY_FIPS &&
2334 !test_bit(HCI_CONN_AES_CCM, &conn->flags)) {
2335 bt_dev_err(conn->hdev,
2336 "Invalid security: Missing AES-CCM usage");
2340 if (hci_conn_ssp_enabled(conn) &&
2341 !test_bit(HCI_CONN_ENCRYPT, &conn->flags))
2347 /* Authenticate remote device */
2348 static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
2350 BT_DBG("hcon %p", conn);
2352 if (conn->pending_sec_level > sec_level)
2353 sec_level = conn->pending_sec_level;
2355 if (sec_level > conn->sec_level)
2356 conn->pending_sec_level = sec_level;
2357 else if (test_bit(HCI_CONN_AUTH, &conn->flags))
2360 /* Make sure we preserve an existing MITM requirement*/
2361 auth_type |= (conn->auth_type & 0x01);
2363 conn->auth_type = auth_type;
2365 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
2366 struct hci_cp_auth_requested cp;
2368 cp.handle = cpu_to_le16(conn->handle);
2369 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED,
2372 /* Set the ENCRYPT_PEND to trigger encryption after
2375 if (!test_bit(HCI_CONN_ENCRYPT, &conn->flags))
2376 set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
2382 /* Encrypt the link */
2383 static void hci_conn_encrypt(struct hci_conn *conn)
2385 BT_DBG("hcon %p", conn);
2387 if (!test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
2388 struct hci_cp_set_conn_encrypt cp;
2389 cp.handle = cpu_to_le16(conn->handle);
2391 hci_send_cmd(conn->hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
2396 /* Enable security */
2397 int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type,
2400 BT_DBG("hcon %p", conn);
2402 if (conn->type == LE_LINK)
2403 return smp_conn_security(conn, sec_level);
2405 /* For sdp we don't need the link key. */
2406 if (sec_level == BT_SECURITY_SDP)
2409 /* For non 2.1 devices and low security level we don't need the link
2411 if (sec_level == BT_SECURITY_LOW && !hci_conn_ssp_enabled(conn))
2414 /* For other security levels we need the link key. */
2415 if (!test_bit(HCI_CONN_AUTH, &conn->flags))
2418 switch (conn->key_type) {
2419 case HCI_LK_AUTH_COMBINATION_P256:
2420 /* An authenticated FIPS approved combination key has
2421 * sufficient security for security level 4 or lower.
2423 if (sec_level <= BT_SECURITY_FIPS)
2426 case HCI_LK_AUTH_COMBINATION_P192:
2427 /* An authenticated combination key has sufficient security for
2428 * security level 3 or lower.
2430 if (sec_level <= BT_SECURITY_HIGH)
2433 case HCI_LK_UNAUTH_COMBINATION_P192:
2434 case HCI_LK_UNAUTH_COMBINATION_P256:
2435 /* An unauthenticated combination key has sufficient security
2436 * for security level 2 or lower.
2438 if (sec_level <= BT_SECURITY_MEDIUM)
2441 case HCI_LK_COMBINATION:
2442 /* A combination key has always sufficient security for the
2443 * security levels 2 or lower. High security level requires the
2444 * combination key is generated using maximum PIN code length
2445 * (16). For pre 2.1 units.
2447 if (sec_level <= BT_SECURITY_MEDIUM || conn->pin_length == 16)
2455 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags))
2459 set_bit(HCI_CONN_AUTH_INITIATOR, &conn->flags);
2461 if (!hci_conn_auth(conn, sec_level, auth_type))
2465 if (test_bit(HCI_CONN_ENCRYPT, &conn->flags)) {
2466 /* Ensure that the encryption key size has been read,
2467 * otherwise stall the upper layer responses.
2469 if (!conn->enc_key_size)
2472 /* Nothing else needed, all requirements are met */
2476 hci_conn_encrypt(conn);
2479 EXPORT_SYMBOL(hci_conn_security);
2481 /* Check secure link requirement */
2482 int hci_conn_check_secure(struct hci_conn *conn, __u8 sec_level)
2484 BT_DBG("hcon %p", conn);
2486 /* Accept if non-secure or higher security level is required */
2487 if (sec_level != BT_SECURITY_HIGH && sec_level != BT_SECURITY_FIPS)
2490 /* Accept if secure or higher security level is already present */
2491 if (conn->sec_level == BT_SECURITY_HIGH ||
2492 conn->sec_level == BT_SECURITY_FIPS)
2495 /* Reject not secure link */
2498 EXPORT_SYMBOL(hci_conn_check_secure);
2501 int hci_conn_switch_role(struct hci_conn *conn, __u8 role)
2503 BT_DBG("hcon %p", conn);
2505 if (role == conn->role)
2508 if (!test_and_set_bit(HCI_CONN_RSWITCH_PEND, &conn->flags)) {
2509 struct hci_cp_switch_role cp;
2510 bacpy(&cp.bdaddr, &conn->dst);
2512 hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp);
2517 EXPORT_SYMBOL(hci_conn_switch_role);
2519 /* Enter active mode */
2520 void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active)
2522 struct hci_dev *hdev = conn->hdev;
2524 BT_DBG("hcon %p mode %d", conn, conn->mode);
2526 if (conn->mode != HCI_CM_SNIFF)
2529 if (!test_bit(HCI_CONN_POWER_SAVE, &conn->flags) && !force_active)
2532 if (!test_and_set_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags)) {
2533 struct hci_cp_exit_sniff_mode cp;
2534 cp.handle = cpu_to_le16(conn->handle);
2535 hci_send_cmd(hdev, HCI_OP_EXIT_SNIFF_MODE, sizeof(cp), &cp);
2539 if (hdev->idle_timeout > 0)
2540 queue_delayed_work(hdev->workqueue, &conn->idle_work,
2541 msecs_to_jiffies(hdev->idle_timeout));
2544 /* Drop all connection on the device */
2545 void hci_conn_hash_flush(struct hci_dev *hdev)
2547 struct list_head *head = &hdev->conn_hash.list;
2548 struct hci_conn *conn;
2550 BT_DBG("hdev %s", hdev->name);
2552 /* We should not traverse the list here, because hci_conn_del
2553 * can remove extra links, which may cause the list traversal
2554 * to hit items that have already been released.
2556 while ((conn = list_first_entry_or_null(head,
2559 conn->state = BT_CLOSED;
2560 hci_disconn_cfm(conn, HCI_ERROR_LOCAL_HOST_TERM);
2565 static u32 get_link_mode(struct hci_conn *conn)
2569 if (conn->role == HCI_ROLE_MASTER)
2570 link_mode |= HCI_LM_MASTER;
2572 if (test_bit(HCI_CONN_ENCRYPT, &conn->flags))
2573 link_mode |= HCI_LM_ENCRYPT;
2575 if (test_bit(HCI_CONN_AUTH, &conn->flags))
2576 link_mode |= HCI_LM_AUTH;
2578 if (test_bit(HCI_CONN_SECURE, &conn->flags))
2579 link_mode |= HCI_LM_SECURE;
2581 if (test_bit(HCI_CONN_FIPS, &conn->flags))
2582 link_mode |= HCI_LM_FIPS;
2587 int hci_get_conn_list(void __user *arg)
2590 struct hci_conn_list_req req, *cl;
2591 struct hci_conn_info *ci;
2592 struct hci_dev *hdev;
2593 int n = 0, size, err;
2595 if (copy_from_user(&req, arg, sizeof(req)))
2598 if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci))
2601 size = sizeof(req) + req.conn_num * sizeof(*ci);
2603 cl = kmalloc(size, GFP_KERNEL);
2607 hdev = hci_dev_get(req.dev_id);
2616 list_for_each_entry(c, &hdev->conn_hash.list, list) {
2617 bacpy(&(ci + n)->bdaddr, &c->dst);
2618 (ci + n)->handle = c->handle;
2619 (ci + n)->type = c->type;
2620 (ci + n)->out = c->out;
2621 (ci + n)->state = c->state;
2622 (ci + n)->link_mode = get_link_mode(c);
2623 if (++n >= req.conn_num)
2626 hci_dev_unlock(hdev);
2628 cl->dev_id = hdev->id;
2630 size = sizeof(req) + n * sizeof(*ci);
2634 err = copy_to_user(arg, cl, size);
2637 return err ? -EFAULT : 0;
2640 int hci_get_conn_info(struct hci_dev *hdev, void __user *arg)
2642 struct hci_conn_info_req req;
2643 struct hci_conn_info ci;
2644 struct hci_conn *conn;
2645 char __user *ptr = arg + sizeof(req);
2647 if (copy_from_user(&req, arg, sizeof(req)))
2651 conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr);
2653 bacpy(&ci.bdaddr, &conn->dst);
2654 ci.handle = conn->handle;
2655 ci.type = conn->type;
2657 ci.state = conn->state;
2658 ci.link_mode = get_link_mode(conn);
2660 hci_dev_unlock(hdev);
2665 return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
2668 int hci_get_auth_info(struct hci_dev *hdev, void __user *arg)
2670 struct hci_auth_info_req req;
2671 struct hci_conn *conn;
2673 if (copy_from_user(&req, arg, sizeof(req)))
2677 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &req.bdaddr);
2679 req.type = conn->auth_type;
2680 hci_dev_unlock(hdev);
2685 return copy_to_user(arg, &req, sizeof(req)) ? -EFAULT : 0;
2688 struct hci_chan *hci_chan_create(struct hci_conn *conn)
2690 struct hci_dev *hdev = conn->hdev;
2691 struct hci_chan *chan;
2693 BT_DBG("%s hcon %p", hdev->name, conn);
2695 if (test_bit(HCI_CONN_DROP, &conn->flags)) {
2696 BT_DBG("Refusing to create new hci_chan");
2700 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
2704 chan->conn = hci_conn_get(conn);
2705 skb_queue_head_init(&chan->data_q);
2706 chan->state = BT_CONNECTED;
2708 list_add_rcu(&chan->list, &conn->chan_list);
2713 void hci_chan_del(struct hci_chan *chan)
2715 struct hci_conn *conn = chan->conn;
2716 struct hci_dev *hdev = conn->hdev;
2718 BT_DBG("%s hcon %p chan %p", hdev->name, conn, chan);
2720 list_del_rcu(&chan->list);
2724 /* Prevent new hci_chan's to be created for this hci_conn */
2725 set_bit(HCI_CONN_DROP, &conn->flags);
2729 skb_queue_purge(&chan->data_q);
2733 void hci_chan_list_flush(struct hci_conn *conn)
2735 struct hci_chan *chan, *n;
2737 BT_DBG("hcon %p", conn);
2739 list_for_each_entry_safe(chan, n, &conn->chan_list, list)
2743 static struct hci_chan *__hci_chan_lookup_handle(struct hci_conn *hcon,
2746 struct hci_chan *hchan;
2748 list_for_each_entry(hchan, &hcon->chan_list, list) {
2749 if (hchan->handle == handle)
2756 struct hci_chan *hci_chan_lookup_handle(struct hci_dev *hdev, __u16 handle)
2758 struct hci_conn_hash *h = &hdev->conn_hash;
2759 struct hci_conn *hcon;
2760 struct hci_chan *hchan = NULL;
2764 list_for_each_entry_rcu(hcon, &h->list, list) {
2765 hchan = __hci_chan_lookup_handle(hcon, handle);
2775 u32 hci_conn_get_phy(struct hci_conn *conn)
2779 /* BLUETOOTH CORE SPECIFICATION Version 5.2 | Vol 2, Part B page 471:
2780 * Table 6.2: Packets defined for synchronous, asynchronous, and
2781 * CPB logical transport types.
2783 switch (conn->type) {
2785 /* SCO logical transport (1 Mb/s):
2786 * HV1, HV2, HV3 and DV.
2788 phys |= BT_PHY_BR_1M_1SLOT;
2793 /* ACL logical transport (1 Mb/s) ptt=0:
2794 * DH1, DM3, DH3, DM5 and DH5.
2796 phys |= BT_PHY_BR_1M_1SLOT;
2798 if (conn->pkt_type & (HCI_DM3 | HCI_DH3))
2799 phys |= BT_PHY_BR_1M_3SLOT;
2801 if (conn->pkt_type & (HCI_DM5 | HCI_DH5))
2802 phys |= BT_PHY_BR_1M_5SLOT;
2804 /* ACL logical transport (2 Mb/s) ptt=1:
2805 * 2-DH1, 2-DH3 and 2-DH5.
2807 if (!(conn->pkt_type & HCI_2DH1))
2808 phys |= BT_PHY_EDR_2M_1SLOT;
2810 if (!(conn->pkt_type & HCI_2DH3))
2811 phys |= BT_PHY_EDR_2M_3SLOT;
2813 if (!(conn->pkt_type & HCI_2DH5))
2814 phys |= BT_PHY_EDR_2M_5SLOT;
2816 /* ACL logical transport (3 Mb/s) ptt=1:
2817 * 3-DH1, 3-DH3 and 3-DH5.
2819 if (!(conn->pkt_type & HCI_3DH1))
2820 phys |= BT_PHY_EDR_3M_1SLOT;
2822 if (!(conn->pkt_type & HCI_3DH3))
2823 phys |= BT_PHY_EDR_3M_3SLOT;
2825 if (!(conn->pkt_type & HCI_3DH5))
2826 phys |= BT_PHY_EDR_3M_5SLOT;
2831 /* eSCO logical transport (1 Mb/s): EV3, EV4 and EV5 */
2832 phys |= BT_PHY_BR_1M_1SLOT;
2834 if (!(conn->pkt_type & (ESCO_EV4 | ESCO_EV5)))
2835 phys |= BT_PHY_BR_1M_3SLOT;
2837 /* eSCO logical transport (2 Mb/s): 2-EV3, 2-EV5 */
2838 if (!(conn->pkt_type & ESCO_2EV3))
2839 phys |= BT_PHY_EDR_2M_1SLOT;
2841 if (!(conn->pkt_type & ESCO_2EV5))
2842 phys |= BT_PHY_EDR_2M_3SLOT;
2844 /* eSCO logical transport (3 Mb/s): 3-EV3, 3-EV5 */
2845 if (!(conn->pkt_type & ESCO_3EV3))
2846 phys |= BT_PHY_EDR_3M_1SLOT;
2848 if (!(conn->pkt_type & ESCO_3EV5))
2849 phys |= BT_PHY_EDR_3M_3SLOT;
2854 if (conn->le_tx_phy & HCI_LE_SET_PHY_1M)
2855 phys |= BT_PHY_LE_1M_TX;
2857 if (conn->le_rx_phy & HCI_LE_SET_PHY_1M)
2858 phys |= BT_PHY_LE_1M_RX;
2860 if (conn->le_tx_phy & HCI_LE_SET_PHY_2M)
2861 phys |= BT_PHY_LE_2M_TX;
2863 if (conn->le_rx_phy & HCI_LE_SET_PHY_2M)
2864 phys |= BT_PHY_LE_2M_RX;
2866 if (conn->le_tx_phy & HCI_LE_SET_PHY_CODED)
2867 phys |= BT_PHY_LE_CODED_TX;
2869 if (conn->le_rx_phy & HCI_LE_SET_PHY_CODED)
2870 phys |= BT_PHY_LE_CODED_RX;
2878 static int abort_conn_sync(struct hci_dev *hdev, void *data)
2880 struct hci_conn *conn = data;
2882 if (!hci_conn_valid(hdev, conn))
2885 return hci_abort_conn_sync(hdev, conn, conn->abort_reason);
2888 int hci_abort_conn(struct hci_conn *conn, u8 reason)
2890 struct hci_dev *hdev = conn->hdev;
2892 /* If abort_reason has already been set it means the connection is
2893 * already being aborted so don't attempt to overwrite it.
2895 if (conn->abort_reason)
2898 bt_dev_dbg(hdev, "handle 0x%2.2x reason 0x%2.2x", conn->handle, reason);
2900 conn->abort_reason = reason;
2902 /* If the connection is pending check the command opcode since that
2903 * might be blocking on hci_cmd_sync_work while waiting its respective
2904 * event so we need to hci_cmd_sync_cancel to cancel it.
2906 * hci_connect_le serializes the connection attempts so only one
2907 * connection can be in BT_CONNECT at time.
2909 if (conn->state == BT_CONNECT && hdev->req_status == HCI_REQ_PEND) {
2910 switch (hci_skb_event(hdev->sent_cmd)) {
2911 case HCI_EV_CONN_COMPLETE:
2912 case HCI_EV_LE_CONN_COMPLETE:
2913 case HCI_EV_LE_ENHANCED_CONN_COMPLETE:
2914 case HCI_EVT_LE_CIS_ESTABLISHED:
2915 hci_cmd_sync_cancel(hdev, ECANCELED);
2918 /* Cancel connect attempt if still queued/pending */
2919 } else if (!hci_cancel_connect_sync(hdev, conn)) {
2923 /* Run immediately if on cmd_sync_work since this may be called
2924 * as a result to MGMT_OP_DISCONNECT/MGMT_OP_UNPAIR which does
2925 * already queue its callback on cmd_sync_work.
2927 return hci_cmd_sync_run_once(hdev, abort_conn_sync, conn, NULL);
2930 void hci_setup_tx_timestamp(struct sk_buff *skb, size_t key_offset,
2931 const struct sockcm_cookie *sockc)
2933 struct sock *sk = skb ? skb->sk : NULL;
2936 /* This shall be called on a single skb of those generated by user
2937 * sendmsg(), and only when the sendmsg() does not return error to
2938 * user. This is required for keeping the tskey that increments here in
2939 * sync with possible sendmsg() counting by user.
2941 * Stream sockets shall set key_offset to sendmsg() length in bytes
2942 * and call with the last fragment, others to 1 and first fragment.
2945 if (!skb || !sockc || !sk || !key_offset)
2948 sock_tx_timestamp(sk, sockc, &skb_shinfo(skb)->tx_flags);
2950 if (sk->sk_type == SOCK_STREAM)
2951 key = atomic_add_return(key_offset, &sk->sk_tskey);
2953 if (sockc->tsflags & SOF_TIMESTAMPING_OPT_ID &&
2954 sockc->tsflags & SOF_TIMESTAMPING_TX_RECORD_MASK) {
2955 if (sockc->tsflags & SOCKCM_FLAG_TS_OPT_ID) {
2956 skb_shinfo(skb)->tskey = sockc->ts_opt_id;
2958 if (sk->sk_type != SOCK_STREAM)
2959 key = atomic_inc_return(&sk->sk_tskey);
2960 skb_shinfo(skb)->tskey = key - 1;
2965 void hci_conn_tx_queue(struct hci_conn *conn, struct sk_buff *skb)
2967 struct tx_queue *comp = &conn->tx_q;
2970 /* Emit SND now, ie. just before sending to driver */
2971 if (skb_shinfo(skb)->tx_flags & SKBTX_SW_TSTAMP)
2972 __skb_tstamp_tx(skb, NULL, NULL, skb->sk, SCM_TSTAMP_SND);
2974 /* COMPLETION tstamp is emitted for tracked skb later in Number of
2975 * Completed Packets event. Available only for flow controlled cases.
2977 * TODO: SCO support without flowctl (needs to be done in drivers)
2979 switch (conn->type) {
2987 if (!hci_dev_test_flag(conn->hdev, HCI_SCO_FLOWCTL))
2994 if (skb->sk && (skb_shinfo(skb)->tx_flags & SKBTX_COMPLETION_TSTAMP))
2997 /* If nothing is tracked, just count extra skbs at the queue head */
2998 if (!track && !comp->tracked) {
3004 skb = skb_clone_sk(skb);
3010 skb = skb_clone(skb, GFP_KERNEL);
3015 skb_queue_tail(&comp->queue, skb);
3019 /* Stop tracking skbs, and only count. This will not emit timestamps for
3020 * the packets, but if we get here something is more seriously wrong.
3023 comp->extra += skb_queue_len(&comp->queue) + 1;
3024 skb_queue_purge(&comp->queue);
3027 void hci_conn_tx_dequeue(struct hci_conn *conn)
3029 struct tx_queue *comp = &conn->tx_q;
3030 struct sk_buff *skb;
3032 /* If there are tracked skbs, the counted extra go before dequeuing real
3033 * skbs, to keep ordering. When nothing is tracked, the ordering doesn't
3034 * matter so dequeue real skbs first to get rid of them ASAP.
3036 if (comp->extra && (comp->tracked || skb_queue_empty(&comp->queue))) {
3041 skb = skb_dequeue(&comp->queue);
3047 __skb_tstamp_tx(skb, NULL, NULL, skb->sk,
3048 SCM_TSTAMP_COMPLETION);
3054 u8 *hci_conn_key_enc_size(struct hci_conn *conn)
3056 if (conn->type == ACL_LINK) {
3057 struct link_key *key;
3059 key = hci_find_link_key(conn->hdev, &conn->dst);
3063 return &key->pin_len;
3064 } else if (conn->type == LE_LINK) {
3065 struct smp_ltk *ltk;
3067 ltk = hci_find_ltk(conn->hdev, &conn->dst, conn->dst_type,
3072 return <k->enc_size;
3078 int hci_ethtool_ts_info(unsigned int index, int sk_proto,
3079 struct kernel_ethtool_ts_info *info)
3081 struct hci_dev *hdev;
3083 hdev = hci_dev_get(index);
3087 info->so_timestamping =
3088 SOF_TIMESTAMPING_RX_SOFTWARE |
3089 SOF_TIMESTAMPING_SOFTWARE;
3090 info->phc_index = -1;
3091 info->tx_types = BIT(HWTSTAMP_TX_OFF);
3092 info->rx_filters = BIT(HWTSTAMP_FILTER_NONE);
3097 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE;
3098 info->so_timestamping |= SOF_TIMESTAMPING_TX_COMPLETION;
3101 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE;
3102 if (hci_dev_test_flag(hdev, HCI_SCO_FLOWCTL))
3103 info->so_timestamping |= SOF_TIMESTAMPING_TX_COMPLETION;