diff options
| author | Vijay Anusuri <vanusuri@mvista.com> | 2025-11-19 13:14:08 +0530 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2025-11-24 06:57:39 -0800 |
| commit | 42d2a2e8cd33b6f12c4ad68c540fee6e409bad52 (patch) | |
| tree | f6810c52bfad329a6eb7094042bb16e520eedfa4 /meta | |
| parent | 940e5e75b9d3cdaa31c537f86dd12a34029e568e (diff) | |
| download | poky-42d2a2e8cd33b6f12c4ad68c540fee6e409bad52.tar.gz | |
xwayland: Fix for CVE-2025-62231
Upstream-Status: Backport from https://gitlab.freedesktop.org/xorg/xserver/-/commit/3baad99f9c15028ed8c3e3d8408e5ec35db155aa
(From OE-Core rev: 24a1574d6f61a45ce104ab6ee01697df2575fd51)
Signed-off-by: Vijay Anusuri <vanusuri@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/recipes-graphics/xwayland/xwayland/CVE-2025-62231.patch | 53 | ||||
| -rw-r--r-- | meta/recipes-graphics/xwayland/xwayland_22.1.8.bb | 1 |
2 files changed, 54 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xwayland/xwayland/CVE-2025-62231.patch b/meta/recipes-graphics/xwayland/xwayland/CVE-2025-62231.patch new file mode 100644 index 0000000000..4bcf362531 --- /dev/null +++ b/meta/recipes-graphics/xwayland/xwayland/CVE-2025-62231.patch | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | From 3baad99f9c15028ed8c3e3d8408e5ec35db155aa Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Olivier Fourdan <ofourdan@redhat.com> | ||
| 3 | Date: Wed, 10 Sep 2025 16:30:29 +0200 | ||
| 4 | Subject: [PATCH] xkb: Prevent overflow in XkbSetCompatMap() | ||
| 5 | MIME-Version: 1.0 | ||
| 6 | Content-Type: text/plain; charset=UTF-8 | ||
| 7 | Content-Transfer-Encoding: 8bit | ||
| 8 | |||
| 9 | The XkbCompatMap structure stores its "num_si" and "size_si" fields | ||
| 10 | using an unsigned short. | ||
| 11 | |||
| 12 | However, the function _XkbSetCompatMap() will store the sum of the | ||
| 13 | input data "firstSI" and "nSI" in both XkbCompatMap's "num_si" and | ||
| 14 | "size_si" without first checking if the sum overflows the maximum | ||
| 15 | unsigned short value, leading to a possible overflow. | ||
| 16 | |||
| 17 | To avoid the issue, check whether the sum does not exceed the maximum | ||
| 18 | unsigned short value, or return a "BadValue" error otherwise. | ||
| 19 | |||
| 20 | CVE-2025-62231, ZDI-CAN-27560 | ||
| 21 | |||
| 22 | This vulnerability was discovered by: | ||
| 23 | Jan-Niklas Sohn working with Trend Micro Zero Day Initiative | ||
| 24 | |||
| 25 | Signed-off-by: Olivier Fourdan <ofourdan@redhat.com> | ||
| 26 | Reviewed-by: Michel Dänzer <mdaenzer@redhat.com> | ||
| 27 | (cherry picked from commit 475d9f49acd0e55bc0b089ed77f732ad18585470) | ||
| 28 | |||
| 29 | Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/2087> | ||
| 30 | |||
| 31 | Upstream-Status: Backport [https://gitlab.freedesktop.org/xorg/xserver/-/commit/3baad99f9c15028ed8c3e3d8408e5ec35db155aa] | ||
| 32 | CVE: CVE-2025-62231 | ||
| 33 | Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> | ||
| 34 | --- | ||
| 35 | xkb/xkb.c | 2 ++ | ||
| 36 | 1 file changed, 2 insertions(+) | ||
| 37 | |||
| 38 | diff --git a/xkb/xkb.c b/xkb/xkb.c | ||
| 39 | index 26d965d482..137d70da27 100644 | ||
| 40 | --- a/xkb/xkb.c | ||
| 41 | +++ b/xkb/xkb.c | ||
| 42 | @@ -2992,6 +2992,8 @@ _XkbSetCompatMap(ClientPtr client, DeviceIntPtr dev, | ||
| 43 | XkbSymInterpretPtr sym; | ||
| 44 | unsigned int skipped = 0; | ||
| 45 | |||
| 46 | + if ((unsigned) (req->firstSI + req->nSI) > USHRT_MAX) | ||
| 47 | + return BadValue; | ||
| 48 | if ((unsigned) (req->firstSI + req->nSI) > compat->size_si) { | ||
| 49 | compat->num_si = compat->size_si = req->firstSI + req->nSI; | ||
| 50 | compat->sym_interpret = reallocarray(compat->sym_interpret, | ||
| 51 | -- | ||
| 52 | GitLab | ||
| 53 | |||
diff --git a/meta/recipes-graphics/xwayland/xwayland_22.1.8.bb b/meta/recipes-graphics/xwayland/xwayland_22.1.8.bb index 4fa88fbcff..745a2dd2ef 100644 --- a/meta/recipes-graphics/xwayland/xwayland_22.1.8.bb +++ b/meta/recipes-graphics/xwayland/xwayland_22.1.8.bb | |||
| @@ -53,6 +53,7 @@ SRC_URI = "https://www.x.org/archive/individual/xserver/xwayland-${PV}.tar.xz \ | |||
| 53 | file://CVE-2025-62229.patch \ | 53 | file://CVE-2025-62229.patch \ |
| 54 | file://CVE-2025-62230-1.patch \ | 54 | file://CVE-2025-62230-1.patch \ |
| 55 | file://CVE-2025-62230-2.patch \ | 55 | file://CVE-2025-62230-2.patch \ |
| 56 | file://CVE-2025-62231.patch \ | ||
| 56 | " | 57 | " |
| 57 | SRC_URI[sha256sum] = "d11eeee73290b88ea8da42a7d9350dedfaba856ce4ae44e58c045ad9ecaa2f73" | 58 | SRC_URI[sha256sum] = "d11eeee73290b88ea8da42a7d9350dedfaba856ce4ae44e58c045ad9ecaa2f73" |
| 58 | 59 | ||
