From: "Alexander Kanavin" <alex.kanavin@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: Alexander Kanavin <alex.kanavin@gmail.com>
Subject: [PATCH 04/16] util-linux: upgrade 2.37.1 -> 2.37.2
Date: Wed, 25 Aug 2021 13:37:52 +0200 [thread overview]
Message-ID: <20210825113804.779395-4-alex.kanavin@gmail.com> (raw)
In-Reply-To: <20210825113804.779395-1-alex.kanavin@gmail.com>
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
...2.37.1.bb => util-linux-libuuid_2.37.2.bb} | 0
meta/recipes-core/util-linux/util-linux.inc | 3 +-
.../util-linux/CVE-2021-37600.patch | 33 -------------------
...l-linux_2.37.1.bb => util-linux_2.37.2.bb} | 0
4 files changed, 1 insertion(+), 35 deletions(-)
rename meta/recipes-core/util-linux/{util-linux-libuuid_2.37.1.bb => util-linux-libuuid_2.37.2.bb} (100%)
delete mode 100644 meta/recipes-core/util-linux/util-linux/CVE-2021-37600.patch
rename meta/recipes-core/util-linux/{util-linux_2.37.1.bb => util-linux_2.37.2.bb} (100%)
diff --git a/meta/recipes-core/util-linux/util-linux-libuuid_2.37.1.bb b/meta/recipes-core/util-linux/util-linux-libuuid_2.37.2.bb
similarity index 100%
rename from meta/recipes-core/util-linux/util-linux-libuuid_2.37.1.bb
rename to meta/recipes-core/util-linux/util-linux-libuuid_2.37.2.bb
diff --git a/meta/recipes-core/util-linux/util-linux.inc b/meta/recipes-core/util-linux/util-linux.inc
index 0f17c73e86..1e3cd28801 100644
--- a/meta/recipes-core/util-linux/util-linux.inc
+++ b/meta/recipes-core/util-linux/util-linux.inc
@@ -35,7 +35,6 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/util-linux/v${MAJOR_VERSION}/util-lin
file://run-ptest \
file://display_testname_for_subtest.patch \
file://avoid_parallel_tests.patch \
- file://CVE-2021-37600.patch \
"
-SRC_URI[sha256sum] = "8e4bd42053b726cf86eb4d13a73bc1d9225a2c2e1a2e0d2a891f1020f83e6b76"
+SRC_URI[sha256sum] = "6a0764c1aae7fb607ef8a6dd2c0f6c47d5e5fd27aa08820abaad9ec14e28e9d9"
diff --git a/meta/recipes-core/util-linux/util-linux/CVE-2021-37600.patch b/meta/recipes-core/util-linux/util-linux/CVE-2021-37600.patch
deleted file mode 100644
index 2b306c435b..0000000000
--- a/meta/recipes-core/util-linux/util-linux/CVE-2021-37600.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c Mon Sep 17 00:00:00 2001
-From: Karel Zak <kzak@redhat.com>
-Date: Tue, 27 Jul 2021 11:58:31 +0200
-Subject: [PATCH] sys-utils/ipcutils: be careful when call calloc() for uint64
- nmembs
-
-Fix: https://github.com/karelzak/util-linux/issues/1395
-Signed-off-by: Karel Zak <kzak@redhat.com>
-
-CVE: CVE-2021-37600
-Upstream-Status: Backport [1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c]
-
-Signed-off-by: Dragos-Marian Panait <dragos.panait@windriver.com>
----
- sys-utils/ipcutils.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/sys-utils/ipcutils.c b/sys-utils/ipcutils.c
-index e784c4dcb..18868cfd3 100644
---- a/sys-utils/ipcutils.c
-+++ b/sys-utils/ipcutils.c
-@@ -218,7 +218,7 @@ static void get_sem_elements(struct sem_data *p)
- {
- size_t i;
-
-- if (!p || !p->sem_nsems || p->sem_perm.id < 0)
-+ if (!p || !p->sem_nsems || p->sem_nsems > SIZE_MAX || p->sem_perm.id < 0)
- return;
-
- p->elements = xcalloc(p->sem_nsems, sizeof(struct sem_elem));
---
-2.25.1
-
diff --git a/meta/recipes-core/util-linux/util-linux_2.37.1.bb b/meta/recipes-core/util-linux/util-linux_2.37.2.bb
similarity index 100%
rename from meta/recipes-core/util-linux/util-linux_2.37.1.bb
rename to meta/recipes-core/util-linux/util-linux_2.37.2.bb
--
2.31.1
next prev parent reply other threads:[~2021-08-25 11:38 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-25 11:37 [PATCH 01/16] binutils: drop target flex/bison from build dependencies Alexander Kanavin
2021-08-25 11:37 ` [PATCH 02/16] gnu-efi: update 3.0.13 -> 3.0.14 Alexander Kanavin
2021-08-25 11:37 ` [PATCH 03/16] glib-2.0: upgrade 2.68.3 -> 2.68.4 Alexander Kanavin
2021-08-25 11:37 ` Alexander Kanavin [this message]
2021-08-25 11:37 ` [PATCH 05/16] ccache: upgrade 4.3 -> 4.4 Alexander Kanavin
2021-08-25 11:37 ` [PATCH 06/16] git: upgrade 2.32.0 -> 2.33.0 Alexander Kanavin
2021-08-25 11:37 ` [PATCH 07/16] bind: upgrade 9.16.19 -> 9.16.20 Alexander Kanavin
2021-08-25 11:37 ` [PATCH 08/16] bluez5: upgrade 5.60 -> 5.61 Alexander Kanavin
2021-08-25 11:37 ` [PATCH 09/16] openssh: upgrade 8.6p1 -> 8.7p1 Alexander Kanavin
2021-08-25 11:37 ` [PATCH 10/16] ell: upgrade 0.42 -> 0.43 Alexander Kanavin
2021-08-25 11:37 ` [PATCH 11/16] python3-mako: upgrade 1.1.4 -> 1.1.5 Alexander Kanavin
2021-08-25 11:38 ` [PATCH 12/16] vala: upgrade 0.52.4 -> 0.52.5 Alexander Kanavin
2021-08-25 11:38 ` [PATCH 13/16] libnsl2: upgrade 1.3.0 -> 2.0.0 Alexander Kanavin
2021-08-26 17:22 ` [OE-core] " Khem Raj
2021-08-26 18:10 ` Alexander Kanavin
2021-08-25 11:38 ` [PATCH 14/16] gi-docgen: upgrade 2021.6 -> 2021.7 Alexander Kanavin
2021-08-25 11:38 ` [PATCH 15/16] json-glib: upgrade 1.6.2 -> 1.6.4 Alexander Kanavin
2021-08-25 11:38 ` [PATCH 16/16] harfbuzz: upgrade 2.8.2 -> 2.9.0 Alexander Kanavin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210825113804.779395-4-alex.kanavin@gmail.com \
--to=alex.kanavin@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox