summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-graphics/xwayland/xwayland/CVE-2025-26596.patch49
-rw-r--r--meta/recipes-graphics/xwayland/xwayland_23.2.5.bb1
2 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xwayland/xwayland/CVE-2025-26596.patch b/meta/recipes-graphics/xwayland/xwayland/CVE-2025-26596.patch
new file mode 100644
index 0000000000..f9df8d75ea
--- /dev/null
+++ b/meta/recipes-graphics/xwayland/xwayland/CVE-2025-26596.patch
@@ -0,0 +1,49 @@
1From 80d69f01423fc065c950e1ff4e8ddf9f675df773 Mon Sep 17 00:00:00 2001
2From: Olivier Fourdan <ofourdan@redhat.com>
3Date: Thu, 28 Nov 2024 11:49:34 +0100
4Subject: [PATCH] xkb: Fix computation of XkbSizeKeySyms
5
6The computation of the length in XkbSizeKeySyms() differs from what is
7actually written in XkbWriteKeySyms(), leading to a heap overflow.
8
9Fix the calculation in XkbSizeKeySyms() to match what kbWriteKeySyms()
10does.
11
12CVE-2025-26596, ZDI-CAN-25543
13
14This vulnerability was discovered by:
15Jan-Niklas Sohn working with Trend Micro Zero Day Initiative
16
17Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
18Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
19Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1828>
20
21Upstream-Status: Backport [https://gitlab.freedesktop.org/xorg/xserver/-/commit/80d69f01]
22CVE: CVE-2025-26596
23Signed-off-by: Vijay Anusuri <vanusuri@mvista.com>
24---
25 xkb/xkb.c | 8 ++++----
26 1 file changed, 4 insertions(+), 4 deletions(-)
27
28diff --git a/xkb/xkb.c b/xkb/xkb.c
29index 85659382da..744dba63d7 100644
30--- a/xkb/xkb.c
31+++ b/xkb/xkb.c
32@@ -1095,10 +1095,10 @@ XkbSizeKeySyms(XkbDescPtr xkb, xkbGetMapReply * rep)
33 len = rep->nKeySyms * SIZEOF(xkbSymMapWireDesc);
34 symMap = &xkb->map->key_sym_map[rep->firstKeySym];
35 for (i = nSyms = 0; i < rep->nKeySyms; i++, symMap++) {
36- if (symMap->offset != 0) {
37- nSymsThisKey = XkbNumGroups(symMap->group_info) * symMap->width;
38- nSyms += nSymsThisKey;
39- }
40+ nSymsThisKey = XkbNumGroups(symMap->group_info) * symMap->width;
41+ if (nSymsThisKey == 0)
42+ continue;
43+ nSyms += nSymsThisKey;
44 }
45 len += nSyms * 4;
46 rep->totalSyms = nSyms;
47--
48GitLab
49
diff --git a/meta/recipes-graphics/xwayland/xwayland_23.2.5.bb b/meta/recipes-graphics/xwayland/xwayland_23.2.5.bb
index 2215d2fe4d..63803a7a44 100644
--- a/meta/recipes-graphics/xwayland/xwayland_23.2.5.bb
+++ b/meta/recipes-graphics/xwayland/xwayland_23.2.5.bb
@@ -14,6 +14,7 @@ SRC_URI = "https://www.x.org/archive/individual/xserver/xwayland-${PV}.tar.xz \
14 file://CVE-2025-26594-1.patch \ 14 file://CVE-2025-26594-1.patch \
15 file://CVE-2025-26594-2.patch \ 15 file://CVE-2025-26594-2.patch \
16 file://CVE-2025-26595.patch \ 16 file://CVE-2025-26595.patch \
17 file://CVE-2025-26596.patch \
17" 18"
18SRC_URI[sha256sum] = "33ec7ff2687a59faaa52b9b09aa8caf118e7ecb6aed8953f526a625ff9f4bd90" 19SRC_URI[sha256sum] = "33ec7ff2687a59faaa52b9b09aa8caf118e7ecb6aed8953f526a625ff9f4bd90"
19 20