summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/file/file/CVE-2022-48554.patch35
-rw-r--r--meta/recipes-devtools/file/file_5.41.bb4
2 files changed, 38 insertions, 1 deletions
diff --git a/meta/recipes-devtools/file/file/CVE-2022-48554.patch b/meta/recipes-devtools/file/file/CVE-2022-48554.patch
new file mode 100644
index 0000000000..c285bd2c23
--- /dev/null
+++ b/meta/recipes-devtools/file/file/CVE-2022-48554.patch
@@ -0,0 +1,35 @@
1CVE: CVE-2022-48554
2Upstream-Status: Backport [ https://github.com/file/file/commit/497aabb29cd08d2a5aeb63e45798d65fcbe03502 ]
3Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
4
5From 497aabb29cd08d2a5aeb63e45798d65fcbe03502 Mon Sep 17 00:00:00 2001
6From: Christos Zoulas <christos@zoulas.com>
7Date: Mon, 14 Feb 2022 16:26:10 +0000
8Subject: [PATCH] PR/310: p870613: Don't use strlcpy to copy the string, it
9 will try to scan the source string to find out how much space is needed the
10 source string might not be NUL terminated.
11
12---
13 src/funcs.c | 11 +++++++----
14 1 file changed, 6 insertions(+), 3 deletions(-)
15
16diff --git a/src/funcs.c b/src/funcs.c
17index 89e1da597..dcfd352d2 100644
18--- a/src/funcs.c
19+++ b/src/funcs.c
20@@ -54,9 +54,12 @@ FILE_RCSID("@(#)$File: funcs.c,v 1.124 2022/01/10 14:15:08 christos Exp $")
21 protected char *
22 file_copystr(char *buf, size_t blen, size_t width, const char *str)
23 {
24- if (++width > blen)
25- width = blen;
26- strlcpy(buf, str, width);
27+ if (blen == 0)
28+ return buf;
29+ if (width >= blen)
30+ width = blen - 1;
31+ memcpy(buf, str, width);
32+ buf[width] = '\0';
33 return buf;
34 }
35
diff --git a/meta/recipes-devtools/file/file_5.41.bb b/meta/recipes-devtools/file/file_5.41.bb
index 653887e97a..6fd4f2c746 100644
--- a/meta/recipes-devtools/file/file_5.41.bb
+++ b/meta/recipes-devtools/file/file_5.41.bb
@@ -11,7 +11,9 @@ LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=0251eaec1188b20d9a72c502ecfdd
11DEPENDS = "file-replacement-native" 11DEPENDS = "file-replacement-native"
12DEPENDS:class-native = "bzip2-replacement-native" 12DEPENDS:class-native = "bzip2-replacement-native"
13 13
14SRC_URI = "git://github.com/file/file.git;branch=master;protocol=https" 14SRC_URI = "git://github.com/file/file.git;branch=master;protocol=https \
15 file://CVE-2022-48554.patch \
16"
15 17
16SRCREV = "504206e53a89fd6eed71aeaf878aa3512418eab1" 18SRCREV = "504206e53a89fd6eed71aeaf878aa3512418eab1"
17S = "${WORKDIR}/git" 19S = "${WORKDIR}/git"