summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/bluez5/bluez5/CVE-2023-45866.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/bluez5/bluez5/CVE-2023-45866.patch')
-rw-r--r--meta/recipes-connectivity/bluez5/bluez5/CVE-2023-45866.patch54
1 files changed, 54 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5/CVE-2023-45866.patch b/meta/recipes-connectivity/bluez5/bluez5/CVE-2023-45866.patch
new file mode 100644
index 0000000000..43670ab2b3
--- /dev/null
+++ b/meta/recipes-connectivity/bluez5/bluez5/CVE-2023-45866.patch
@@ -0,0 +1,54 @@
1From 25a471a83e02e1effb15d5a488b3f0085eaeb675 Mon Sep 17 00:00:00 2001
2From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
3Date: Tue, 10 Oct 2023 13:03:12 -0700
4Subject: input.conf: Change default of ClassicBondedOnly
5
6This changes the default of ClassicBondedOnly since defaulting to false
7is not inline with HID specification which mandates the of Security Mode
84:
9
10BLUETOOTH SPECIFICATION Page 84 of 123
11Human Interface Device (HID) Profile:
12
135.4.3.4.2 Security Modes
14Bluetooth HID Hosts shall use Security Mode 4 when interoperating with
15Bluetooth HID devices that are compliant to the Bluetooth Core
16Specification v2.1+EDR[6].
17
18Upstream-Status: Backport [https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=25a471a83e02e1effb15d5a488b3f0085eaeb675]
19CVE: CVE-2023-45866
20Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com>
21---
22 profiles/input/device.c | 2 +-
23 profiles/input/input.conf | 2 +-
24 2 files changed, 2 insertions(+), 2 deletions(-)
25
26diff --git a/profiles/input/device.c b/profiles/input/device.c
27index 375314e..0236488 100644
28--- a/profiles/input/device.c
29+++ b/profiles/input/device.c
30@@ -93,7 +93,7 @@ struct input_device {
31
32 static int idle_timeout = 0;
33 static bool uhid_enabled = false;
34-static bool classic_bonded_only = false;
35+static bool classic_bonded_only = true;
36
37 void input_set_idle_timeout(int timeout)
38 {
39diff --git a/profiles/input/input.conf b/profiles/input/input.conf
40index 4c70bc5..d8645f3 100644
41--- a/profiles/input/input.conf
42+++ b/profiles/input/input.conf
43@@ -17,7 +17,7 @@
44 # platforms may want to make sure that input connections only come from bonded
45 # device connections. Several older mice have been known for not supporting
46 # pairing/encryption.
47-# Defaults to false to maximize device compatibility.
48+# Defaults to true for security.
49 #ClassicBondedOnly=true
50
51 # LE upgrade security
52--
532.25.1
54