diff options
| author | Archana Polampalli <archana.polampalli@windriver.com> | 2025-07-02 21:16:14 +0530 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2025-07-09 08:43:32 -0700 |
| commit | a1db9c900f419fe3b0a09f37071a897f1b59dbdd (patch) | |
| tree | acc1e20d2a50d6451a8085846e631b0b3272b69a /meta/recipes-graphics | |
| parent | 37be814fb24a679192abe16328daa9c2ef33afea (diff) | |
| download | poky-a1db9c900f419fe3b0a09f37071a897f1b59dbdd.tar.gz | |
xwayland: fix CVE-2025-49175
A flaw was found in the X Rendering extension's handling of animated cursors.
If a client provides no cursors, the server assumes at least one is present,
leading to an out-of-bounds read and potential crash.
(From OE-Core rev: fec7644b70452794fabfb7d967e2124918215440)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-graphics')
| -rw-r--r-- | meta/recipes-graphics/xwayland/xwayland/CVE-2025-49175.patch | 92 | ||||
| -rw-r--r-- | meta/recipes-graphics/xwayland/xwayland_23.2.5.bb | 1 |
2 files changed, 93 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xwayland/xwayland/CVE-2025-49175.patch b/meta/recipes-graphics/xwayland/xwayland/CVE-2025-49175.patch new file mode 100644 index 0000000000..bfb37fcea0 --- /dev/null +++ b/meta/recipes-graphics/xwayland/xwayland/CVE-2025-49175.patch | |||
| @@ -0,0 +1,92 @@ | |||
| 1 | From 0885e0b26225c90534642fe911632ec0779eebee Sep 17 00:00:00 2001 | ||
| 2 | From: Olivier Fourdan <ofourdan@redhat.com> | ||
| 3 | Date: Fri, 28 Mar 2025 09:43:52 +0100 | ||
| 4 | Subject: [PATCH] render: Avoid 0 or less animated cursors | ||
| 5 | MIME-Version: 1.0 | ||
| 6 | Content-Type: text/plain; charset=UTF-8 | ||
| 7 | Content-Transfer-Encoding: 8bit | ||
| 8 | |||
| 9 | Animated cursors use a series of cursors that the client can set. | ||
| 10 | |||
| 11 | By default, the Xserver assumes at least one cursor is specified | ||
| 12 | while a client may actually pass no cursor at all. | ||
| 13 | |||
| 14 | That causes an out-of-bound read creating the animated cursor and a | ||
| 15 | crash of the Xserver: | ||
| 16 | |||
| 17 | | Invalid read of size 8 | ||
| 18 | | at 0x5323F4: AnimCursorCreate (animcur.c:325) | ||
| 19 | | by 0x52D4C5: ProcRenderCreateAnimCursor (render.c:1817) | ||
| 20 | | by 0x52DC80: ProcRenderDispatch (render.c:1999) | ||
| 21 | | by 0x4A1E9D: Dispatch (dispatch.c:560) | ||
| 22 | | by 0x4B0169: dix_main (main.c:284) | ||
| 23 | | by 0x4287F5: main (stubmain.c:34) | ||
| 24 | | Address 0x59aa010 is 0 bytes after a block of size 0 alloc'd | ||
| 25 | | at 0x48468D3: reallocarray (vg_replace_malloc.c:1803) | ||
| 26 | | by 0x52D3DA: ProcRenderCreateAnimCursor (render.c:1802) | ||
| 27 | | by 0x52DC80: ProcRenderDispatch (render.c:1999) | ||
| 28 | | by 0x4A1E9D: Dispatch (dispatch.c:560) | ||
| 29 | | by 0x4B0169: dix_main (main.c:284) | ||
| 30 | | by 0x4287F5: main (stubmain.c:34) | ||
| 31 | | | ||
| 32 | | Invalid read of size 2 | ||
| 33 | | at 0x5323F7: AnimCursorCreate (animcur.c:325) | ||
| 34 | | by 0x52D4C5: ProcRenderCreateAnimCursor (render.c:1817) | ||
| 35 | | by 0x52DC80: ProcRenderDispatch (render.c:1999) | ||
| 36 | | by 0x4A1E9D: Dispatch (dispatch.c:560) | ||
| 37 | | by 0x4B0169: dix_main (main.c:284) | ||
| 38 | | by 0x4287F5: main (stubmain.c:34) | ||
| 39 | | Address 0x8 is not stack'd, malloc'd or (recently) free'd | ||
| 40 | |||
| 41 | To avoid the issue, check the number of cursors specified and return a | ||
| 42 | BadValue error in both the proc handler (early) and the animated cursor | ||
| 43 | creation (as this is a public function) if there is 0 or less cursor. | ||
| 44 | |||
| 45 | CVE-2025-49175 | ||
| 46 | |||
| 47 | This issue was discovered by Nils Emmerich <nemmerich@ernw.de> and | ||
| 48 | reported by Julian Suleder via ERNW Vulnerability Disclosure. | ||
| 49 | |||
| 50 | Signed-off-by: Olivier Fourdan <ofourdan@redhat.com> | ||
| 51 | Reviewed-by: José Expósito <jexposit@redhat.com> | ||
| 52 | Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/2024> | ||
| 53 | |||
| 54 | CVE: CVE-2025-49175 | ||
| 55 | |||
| 56 | Upstream-Status: Backport [https://gitlab.freedesktop.org/xorg/xserver/-/commit/0885e0b26225c90534642fe911632ec0779eebee] | ||
| 57 | |||
| 58 | Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> | ||
| 59 | --- | ||
| 60 | render/animcur.c | 3 +++ | ||
| 61 | render/render.c | 2 ++ | ||
| 62 | 2 files changed, 5 insertions(+) | ||
| 63 | |||
| 64 | diff --git a/render/animcur.c b/render/animcur.c | ||
| 65 | index ef27bda..77942d8 100644 | ||
| 66 | --- a/render/animcur.c | ||
| 67 | +++ b/render/animcur.c | ||
| 68 | @@ -304,6 +304,9 @@ AnimCursorCreate(CursorPtr *cursors, CARD32 *deltas, int ncursor, | ||
| 69 | int rc = BadAlloc, i; | ||
| 70 | AnimCurPtr ac; | ||
| 71 | |||
| 72 | + if (ncursor <= 0) | ||
| 73 | + return BadValue; | ||
| 74 | + | ||
| 75 | for (i = 0; i < screenInfo.numScreens; i++) | ||
| 76 | if (!GetAnimCurScreen(screenInfo.screens[i])) | ||
| 77 | return BadImplementation; | ||
| 78 | diff --git a/render/render.c b/render/render.c | ||
| 79 | index 5bc2a20..a8c2da0 100644 | ||
| 80 | --- a/render/render.c | ||
| 81 | +++ b/render/render.c | ||
| 82 | @@ -1795,6 +1795,8 @@ ProcRenderCreateAnimCursor(ClientPtr client) | ||
| 83 | ncursor = | ||
| 84 | (client->req_len - | ||
| 85 | (bytes_to_int32(sizeof(xRenderCreateAnimCursorReq)))) >> 1; | ||
| 86 | + if (ncursor <= 0) | ||
| 87 | + return BadValue; | ||
| 88 | cursors = xallocarray(ncursor, sizeof(CursorPtr) + sizeof(CARD32)); | ||
| 89 | if (!cursors) | ||
| 90 | return BadAlloc; | ||
| 91 | -- | ||
| 92 | 2.40.0 | ||
diff --git a/meta/recipes-graphics/xwayland/xwayland_23.2.5.bb b/meta/recipes-graphics/xwayland/xwayland_23.2.5.bb index 0265366393..b9b4aa1a6a 100644 --- a/meta/recipes-graphics/xwayland/xwayland_23.2.5.bb +++ b/meta/recipes-graphics/xwayland/xwayland_23.2.5.bb | |||
| @@ -24,6 +24,7 @@ SRC_URI = "https://www.x.org/archive/individual/xserver/xwayland-${PV}.tar.xz \ | |||
| 24 | file://CVE-2025-26601-2.patch \ | 24 | file://CVE-2025-26601-2.patch \ |
| 25 | file://CVE-2025-26601-3.patch \ | 25 | file://CVE-2025-26601-3.patch \ |
| 26 | file://CVE-2025-26601-4.patch \ | 26 | file://CVE-2025-26601-4.patch \ |
| 27 | file://CVE-2025-49175.patch \ | ||
| 27 | " | 28 | " |
| 28 | SRC_URI[sha256sum] = "33ec7ff2687a59faaa52b9b09aa8caf118e7ecb6aed8953f526a625ff9f4bd90" | 29 | SRC_URI[sha256sum] = "33ec7ff2687a59faaa52b9b09aa8caf118e7ecb6aed8953f526a625ff9f4bd90" |
| 29 | 30 | ||
