summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-connectivity/bluez5/bluez5.inc1
-rw-r--r--meta/recipes-connectivity/bluez5/bluez5/0001-adapter-Fix-up-address-type-when-loading-keys.patch52
2 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc
index 3f2f096aac..9cbeb5e99f 100644
--- a/meta/recipes-connectivity/bluez5/bluez5.inc
+++ b/meta/recipes-connectivity/bluez5/bluez5.inc
@@ -54,6 +54,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \
54 ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '', 'file://0001-Allow-using-obexd-without-systemd-in-the-user-sessio.patch', d)} \ 54 ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '', 'file://0001-Allow-using-obexd-without-systemd-in-the-user-sessio.patch', d)} \
55 file://0001-tests-add-a-target-for-building-tests-without-runnin.patch \ 55 file://0001-tests-add-a-target-for-building-tests-without-runnin.patch \
56 file://0001-test-gatt-Fix-hung-issue.patch \ 56 file://0001-test-gatt-Fix-hung-issue.patch \
57 file://0001-adapter-Fix-up-address-type-when-loading-keys.patch \
57 " 58 "
58S = "${WORKDIR}/bluez-${PV}" 59S = "${WORKDIR}/bluez-${PV}"
59 60
diff --git a/meta/recipes-connectivity/bluez5/bluez5/0001-adapter-Fix-up-address-type-when-loading-keys.patch b/meta/recipes-connectivity/bluez5/bluez5/0001-adapter-Fix-up-address-type-when-loading-keys.patch
new file mode 100644
index 0000000000..a2c067b5fa
--- /dev/null
+++ b/meta/recipes-connectivity/bluez5/bluez5/0001-adapter-Fix-up-address-type-when-loading-keys.patch
@@ -0,0 +1,52 @@
1From 366a8c522b648f47147de4852c5c030d69b916b3 Mon Sep 17 00:00:00 2001
2From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
3Date: Wed, 28 Aug 2024 11:30:16 -0400
4Subject: [PATCH] adapter: Fix up address type when loading keys
5
6Due to kernel change 59b047bc9808
7("Bluetooth: MGMT/SMP: Fix address type when using SMP over BREDR/LE")
8some keys maybe store using the wrong/invalid address type as per MGMT
9API, so this attempts to fix them up.
10
11Fixes: https://github.com/bluez/bluez/issues/875
12Upstream-Status: Backport [366a8c522b648f47147de4852c5c030d69b916b3]
13Signed-off-by: Hiago De Franco <hiago.franco@toradex.com>
14---
15 src/adapter.c | 20 ++++++++++++++++++--
16 1 file changed, 18 insertions(+), 2 deletions(-)
17
18diff --git a/src/adapter.c b/src/adapter.c
19index 245de4456868..9f44bdefa5f4 100644
20--- a/src/adapter.c
21+++ b/src/adapter.c
22@@ -5017,12 +5017,28 @@ static void load_devices(struct btd_adapter *adapter)
23 goto free;
24 }
25
26- if (key_info)
27+ if (key_info) {
28+ /* Fix up address type if it was stored with the wrong
29+ * address type since Load Link Keys are only meant to
30+ * work with BR/EDR addresses as per MGMT documentation.
31+ */
32+ if (key_info->bdaddr_type != BDADDR_BREDR)
33+ key_info->bdaddr_type = BDADDR_BREDR;
34+
35 adapter->load_keys = g_slist_append(adapter->load_keys,
36 key_info);
37+ }
38+
39+ if (ltk_info) {
40+ /* Fix up address type if it was stored with the wrong
41+ * address type since Load Long Term Keys are only meant
42+ * to work with LE addresses as per MGMT documentation.
43+ */
44+ if (ltk_info->bdaddr_type == BDADDR_BREDR)
45+ ltk_info->bdaddr_type = BDADDR_LE_PUBLIC;
46
47- if (ltk_info)
48 ltks = g_slist_append(ltks, ltk_info);
49+ }
50
51 if (peripheral_ltk_info)
52 ltks = g_slist_append(ltks, peripheral_ltk_info);