* [Dunfell][PATCH 0/1] Dunfell delayed patch
@ 2021-08-27 0:03 Armin Kuster
2021-08-27 0:03 ` [Dunfell][PATCH 1/1] lz4: Security Fix for CVE-2021-3520 Armin Kuster
0 siblings, 1 reply; 2+ messages in thread
From: Armin Kuster @ 2021-08-27 0:03 UTC (permalink / raw)
To: openembedded-core
Patch after Master gets fixed which should be shortly.
Armin Kuster (1):
lz4: Security Fix for CVE-2021-3520
.../lz4/files/CVE-2021-3520.patch | 27 +++++++++++++++++++
meta/recipes-support/lz4/lz4_1.9.2.bb | 1 +
2 files changed, 28 insertions(+)
create mode 100644 meta/recipes-support/lz4/files/CVE-2021-3520.patch
--
2.25.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Dunfell][PATCH 1/1] lz4: Security Fix for CVE-2021-3520
2021-08-27 0:03 [Dunfell][PATCH 0/1] Dunfell delayed patch Armin Kuster
@ 2021-08-27 0:03 ` Armin Kuster
0 siblings, 0 replies; 2+ messages in thread
From: Armin Kuster @ 2021-08-27 0:03 UTC (permalink / raw)
To: openembedded-core; +Cc: Armin Kuster
From: Armin Kuster <akuster@mvista.com>
Source: https://github.com/lz4/lz4
MR: 111604
Type: Security Fix
Disposition: Backport from https://github.com/lz4/lz4/commit/8301a21773ef61656225e264f4f06ae14462bca7#diff-7055e9cf14c488aea9837aaf9f528b58ee3c22988d7d0d81d172ec62d94a88a7
ChangeID: 58492f950164e75954a97cf084df6f9af3d88244
Description:
Signed-off-by: Armin Kuster <akuster@mvista.com>
---
.../lz4/files/CVE-2021-3520.patch | 27 +++++++++++++++++++
meta/recipes-support/lz4/lz4_1.9.2.bb | 1 +
2 files changed, 28 insertions(+)
create mode 100644 meta/recipes-support/lz4/files/CVE-2021-3520.patch
diff --git a/meta/recipes-support/lz4/files/CVE-2021-3520.patch b/meta/recipes-support/lz4/files/CVE-2021-3520.patch
new file mode 100644
index 0000000000..5ac8f6691f
--- /dev/null
+++ b/meta/recipes-support/lz4/files/CVE-2021-3520.patch
@@ -0,0 +1,27 @@
+From 8301a21773ef61656225e264f4f06ae14462bca7 Mon Sep 17 00:00:00 2001
+From: Jasper Lievisse Adriaanse <j@jasper.la>
+Date: Fri, 26 Feb 2021 15:21:20 +0100
+Subject: [PATCH] Fix potential memory corruption with negative memmove() size
+
+Upstream-Status: Backport
+https://github.com/lz4/lz4/commit/8301a21773ef61656225e264f4f06ae14462bca7#diff-7055e9cf14c488aea9837aaf9f528b58ee3c22988d7d0d81d172ec62d94a88a7
+CVE: CVE-2021-3520
+Signed-off-by: Armin Kuster <akuster@mvista.com>
+
+---
+ lib/lz4.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: git/lib/lz4.c
+===================================================================
+--- git.orig/lib/lz4.c
++++ git/lib/lz4.c
+@@ -1665,7 +1665,7 @@ LZ4_decompress_generic(
+ const size_t dictSize /* note : = 0 if noDict */
+ )
+ {
+- if (src == NULL) { return -1; }
++ if ((src == NULL) || (outputSize < 0)) { return -1; }
+
+ { const BYTE* ip = (const BYTE*) src;
+ const BYTE* const iend = ip + srcSize;
diff --git a/meta/recipes-support/lz4/lz4_1.9.2.bb b/meta/recipes-support/lz4/lz4_1.9.2.bb
index 20719fcc58..546bed39b0 100644
--- a/meta/recipes-support/lz4/lz4_1.9.2.bb
+++ b/meta/recipes-support/lz4/lz4_1.9.2.bb
@@ -14,6 +14,7 @@ SRCREV = "fdf2ef5809ca875c454510610764d9125ef2ebbd"
SRC_URI = "git://github.com/lz4/lz4.git;branch=dev \
file://run-ptest \
+ file://CVE-2021-3520.patch \
"
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)"
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-08-27 0:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-27 0:03 [Dunfell][PATCH 0/1] Dunfell delayed patch Armin Kuster
2021-08-27 0:03 ` [Dunfell][PATCH 1/1] lz4: Security Fix for CVE-2021-3520 Armin Kuster
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox