diff options
-rw-r--r-- | meta/recipes-connectivity/ofono/ofono/CVE-2024-7540_CVE-2024-7541_CVE-2024-7542.patch | 52 | ||||
-rw-r--r-- | meta/recipes-connectivity/ofono/ofono_1.34.bb | 1 |
2 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/ofono/ofono/CVE-2024-7540_CVE-2024-7541_CVE-2024-7542.patch b/meta/recipes-connectivity/ofono/ofono/CVE-2024-7540_CVE-2024-7541_CVE-2024-7542.patch new file mode 100644 index 0000000000..0b06e057e5 --- /dev/null +++ b/meta/recipes-connectivity/ofono/ofono/CVE-2024-7540_CVE-2024-7541_CVE-2024-7542.patch | |||
@@ -0,0 +1,52 @@ | |||
1 | From 29ff6334b492504ace101be748b256e6953d2c2f Mon Sep 17 00:00:00 2001 | ||
2 | From: "Sicelo A. Mhlongo" <absicsz@gmail.com> | ||
3 | Date: Tue, 17 Dec 2024 11:31:28 +0200 | ||
4 | Subject: [PATCH] atmodem: sms: ensure buffer is initialized before use | ||
5 | |||
6 | Fixes: CVE-2024-7540 | ||
7 | Fixes: CVE-2024-7541 | ||
8 | Fixes: CVE-2024-7542 | ||
9 | |||
10 | CVE: CVE-2024-7540 | ||
11 | CVE: CVE-2024-7541 | ||
12 | CVE: CVE-2024-7542 | ||
13 | Upstream-Status: Backport [https://git.kernel.org/pub/scm/network/ofono/ofono.git/commit/?id=29ff6334b492504ace101be748b256e6953d2c2f] | ||
14 | Signed-off-by: Peter Marko <peter.marko@siemens.com> | ||
15 | --- | ||
16 | drivers/atmodem/sms.c | 6 +++--- | ||
17 | 1 file changed, 3 insertions(+), 3 deletions(-) | ||
18 | |||
19 | diff --git a/drivers/atmodem/sms.c b/drivers/atmodem/sms.c | ||
20 | index d994856b..0668c631 100644 | ||
21 | --- a/drivers/atmodem/sms.c | ||
22 | +++ b/drivers/atmodem/sms.c | ||
23 | @@ -412,7 +412,7 @@ static void at_cmt_notify(GAtResult *result, gpointer user_data) | ||
24 | struct sms_data *data = ofono_sms_get_data(sms); | ||
25 | GAtResultIter iter; | ||
26 | const char *hexpdu; | ||
27 | - unsigned char pdu[176]; | ||
28 | + unsigned char pdu[176] = {0}; | ||
29 | long pdu_len; | ||
30 | int tpdu_len; | ||
31 | |||
32 | @@ -479,7 +479,7 @@ static void at_cmgr_notify(GAtResult *result, gpointer user_data) | ||
33 | struct sms_data *data = ofono_sms_get_data(sms); | ||
34 | GAtResultIter iter; | ||
35 | const char *hexpdu; | ||
36 | - unsigned char pdu[176]; | ||
37 | + unsigned char pdu[176] = {0}; | ||
38 | long pdu_len; | ||
39 | int tpdu_len; | ||
40 | |||
41 | @@ -661,7 +661,7 @@ static void at_cmgl_notify(GAtResult *result, gpointer user_data) | ||
42 | struct sms_data *data = ofono_sms_get_data(sms); | ||
43 | GAtResultIter iter; | ||
44 | const char *hexpdu; | ||
45 | - unsigned char pdu[176]; | ||
46 | + unsigned char pdu[176] = {0}; | ||
47 | long pdu_len; | ||
48 | int tpdu_len; | ||
49 | int index; | ||
50 | -- | ||
51 | 2.30.2 | ||
52 | |||
diff --git a/meta/recipes-connectivity/ofono/ofono_1.34.bb b/meta/recipes-connectivity/ofono/ofono_1.34.bb index 8205ea683d..1083b91d56 100644 --- a/meta/recipes-connectivity/ofono/ofono_1.34.bb +++ b/meta/recipes-connectivity/ofono/ofono_1.34.bb | |||
@@ -24,6 +24,7 @@ SRC_URI = "\ | |||
24 | file://CVE-2024-7545.patch \ | 24 | file://CVE-2024-7545.patch \ |
25 | file://CVE-2024-7546.patch \ | 25 | file://CVE-2024-7546.patch \ |
26 | file://CVE-2024-7547.patch \ | 26 | file://CVE-2024-7547.patch \ |
27 | file://CVE-2024-7540_CVE-2024-7541_CVE-2024-7542.patch \ | ||
27 | " | 28 | " |
28 | SRC_URI[sha256sum] = "c0b96d3013447ec2bcb74579bef90e4e59c68dbfa4b9c6fbce5d12401a43aac7" | 29 | SRC_URI[sha256sum] = "c0b96d3013447ec2bcb74579bef90e4e59c68dbfa4b9c6fbce5d12401a43aac7" |
29 | 30 | ||