summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorChangqing Li <changqing.li@windriver.com>2023-02-27 11:20:29 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-09 13:19:02 +0000
commitbcbb64e7afd1e3a15ac6475661e849214cf59f7e (patch)
tree81df1e62d89d4349a2d09838bfe37e51c06e00f6 /meta
parent6a1554f16dbac6a11a4006c42aafffc0255f54ee (diff)
downloadpoky-bcbb64e7afd1e3a15ac6475661e849214cf59f7e.tar.gz
libsdl2: fix CVE-2022-4743
(From OE-Core rev: 41e13e88dd1f9d251d1e86ee1de543165789a579) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-potential-memory-leak-in-GLES_CreateTextur.patch40
-rw-r--r--meta/recipes-graphics/libsdl2/libsdl2_2.0.20.bb1
2 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-potential-memory-leak-in-GLES_CreateTextur.patch b/meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-potential-memory-leak-in-GLES_CreateTextur.patch
new file mode 100644
index 0000000000..31bda54dd3
--- /dev/null
+++ b/meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-potential-memory-leak-in-GLES_CreateTextur.patch
@@ -0,0 +1,40 @@
1From 3cf2048b647484cc3a6abd0d78be60cead47b42d Mon Sep 17 00:00:00 2001
2From: Changqing Li <changqing.li@windriver.com>
3Date: Fri, 24 Feb 2023 16:59:19 +0800
4Subject: [PATCH] Fix potential memory leak in GLES_CreateTextur
5
6CVE: CVE-2022-4743
7Upstream-Status: Backport [https://github.com/libsdl-org/SDL/commit/00b67f55727bc0944c3266e2b875440da132ce4b]
8
9Signed-off-by: Changqing Li <changqing.li@windriver.com>
10---
11 src/render/opengles/SDL_render_gles.c | 6 ++++++
12 1 file changed, 6 insertions(+)
13
14diff --git a/src/render/opengles/SDL_render_gles.c b/src/render/opengles/SDL_render_gles.c
15index a6b58f2..237b1d6 100644
16--- a/src/render/opengles/SDL_render_gles.c
17+++ b/src/render/opengles/SDL_render_gles.c
18@@ -368,6 +368,9 @@ GLES_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
19 renderdata->glGenTextures(1, &data->texture);
20 result = renderdata->glGetError();
21 if (result != GL_NO_ERROR) {
22+ if (texture->access == SDL_TEXTUREACCESS_STREAMING) {
23+ SDL_free(data->pixels);
24+ }
25 SDL_free(data);
26 return GLES_SetError("glGenTextures()", result);
27 }
28@@ -396,6 +399,9 @@ GLES_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
29
30 result = renderdata->glGetError();
31 if (result != GL_NO_ERROR) {
32+ if (texture->access == SDL_TEXTUREACCESS_STREAMING) {
33+ SDL_free(data->pixels);
34+ }
35 SDL_free(data);
36 return GLES_SetError("glTexImage2D()", result);
37 }
38--
392.25.1
40
diff --git a/meta/recipes-graphics/libsdl2/libsdl2_2.0.20.bb b/meta/recipes-graphics/libsdl2/libsdl2_2.0.20.bb
index c1c827af79..abcf232e25 100644
--- a/meta/recipes-graphics/libsdl2/libsdl2_2.0.20.bb
+++ b/meta/recipes-graphics/libsdl2/libsdl2_2.0.20.bb
@@ -24,6 +24,7 @@ PROVIDES = "virtual/libsdl2"
24SRC_URI = "http://www.libsdl.org/release/SDL2-${PV}.tar.gz \ 24SRC_URI = "http://www.libsdl.org/release/SDL2-${PV}.tar.gz \
25 file://optional-libunwind-generic.patch \ 25 file://optional-libunwind-generic.patch \
26 file://0001-sdlchecks.cmake-pass-cflags-to-the-appropriate-cmake.patch \ 26 file://0001-sdlchecks.cmake-pass-cflags-to-the-appropriate-cmake.patch \
27 file://0001-Fix-potential-memory-leak-in-GLES_CreateTextur.patch \
27 " 28 "
28SRC_URI:append:class-native = " file://0001-Disable-libunwind-in-native-OE-builds-by-not-looking.patch" 29SRC_URI:append:class-native = " file://0001-Disable-libunwind-in-native-OE-builds-by-not-looking.patch"
29 30