diff options
author | Ross Burton <ross@burtonini.com> | 2021-05-17 12:19:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-06-03 16:30:55 +0100 |
commit | 0b6e24d0ddb407127f6310fac5380cf7d3343826 (patch) | |
tree | 895279ee1d6b248796336901a739d1f78ff6203e | |
parent | 6ebb33bdaccaeadff0c85aab27acf35723df00d8 (diff) | |
download | poky-0b6e24d0ddb407127f6310fac5380cf7d3343826.tar.gz |
cups: whitelist CVE-2021-25317
This CVE relates to bad ownership of /var/log/cups, which we don't have.
(From OE-Core rev: 68ee8fd1ec0f09c6477578de40e1adfc7ba35027)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0792312f3637ec160d2ef90781a8cb1f75b84940)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/cups/cups.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc index acad3c98c1..151ef065fe 100644 --- a/meta/recipes-extended/cups/cups.inc +++ b/meta/recipes-extended/cups/cups.inc | |||
@@ -116,3 +116,7 @@ SYSROOT_PREPROCESS_FUNCS += "cups_sysroot_preprocess" | |||
116 | cups_sysroot_preprocess () { | 116 | cups_sysroot_preprocess () { |
117 | sed -i ${SYSROOT_DESTDIR}${bindir_crossscripts}/cups-config -e 's:cups_datadir=.*:cups_datadir=${datadir}/cups:' -e 's:cups_serverbin=.*:cups_serverbin=${libexecdir}/cups:' | 117 | sed -i ${SYSROOT_DESTDIR}${bindir_crossscripts}/cups-config -e 's:cups_datadir=.*:cups_datadir=${datadir}/cups:' -e 's:cups_serverbin=.*:cups_serverbin=${libexecdir}/cups:' |
118 | } | 118 | } |
119 | |||
120 | # -25317 concerns /var/log/cups having lp ownership. Our /var/log/cups is | ||
121 | # root:root, so this doesn't apply. | ||
122 | CVE_CHECK_WHITELIST += "CVE-2021-25317" \ No newline at end of file | ||