mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
libarchive: CVE-2022-36227 NULL pointer dereference in archive_write.c
Upstream-Status: Backport from https://github.com/libarchive/libarchive/commit/bff38efe8c110469c5080d387bec62a6ca15b1a5 (From OE-Core rev: e723e791b4faa3d5c755b4669b0901ebd0c368c9) Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
39c76401c0
commit
873eb777a0
@@ -0,0 +1,42 @@
|
|||||||
|
From b5332ed6d59ba5113a0a2c67fd82b69fcd5cde68 Mon Sep 17 00:00:00 2001
|
||||||
|
From: obiwac <obiwac@gmail.com>
|
||||||
|
Date: Fri, 22 Jul 2022 22:41:10 +0200
|
||||||
|
Subject: [PATCH] libarchive: CVE-2022-36227 Handle a `calloc` returning NULL
|
||||||
|
(fixes #1754)
|
||||||
|
|
||||||
|
Upstream-Status: Backport [https://github.com/libarchive/libarchive/commit/bff38efe8c110469c5080d387bec62a6ca15b1a5]
|
||||||
|
CVE: CVE-2022-36227
|
||||||
|
Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com
|
||||||
|
---
|
||||||
|
libarchive/archive_write.c | 8 ++++++++
|
||||||
|
1 file changed, 8 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/libarchive/archive_write.c b/libarchive/archive_write.c
|
||||||
|
index 66592e8..27626b5 100644
|
||||||
|
--- a/libarchive/archive_write.c
|
||||||
|
+++ b/libarchive/archive_write.c
|
||||||
|
@@ -201,6 +201,10 @@ __archive_write_allocate_filter(struct archive *_a)
|
||||||
|
struct archive_write_filter *f;
|
||||||
|
|
||||||
|
f = calloc(1, sizeof(*f));
|
||||||
|
+
|
||||||
|
+ if (f == NULL)
|
||||||
|
+ return (NULL);
|
||||||
|
+
|
||||||
|
f->archive = _a;
|
||||||
|
f->state = ARCHIVE_WRITE_FILTER_STATE_NEW;
|
||||||
|
if (a->filter_first == NULL)
|
||||||
|
@@ -548,6 +552,10 @@ archive_write_open2(struct archive *_a, void *client_data,
|
||||||
|
a->client_data = client_data;
|
||||||
|
|
||||||
|
client_filter = __archive_write_allocate_filter(_a);
|
||||||
|
+
|
||||||
|
+ if (client_filter == NULL)
|
||||||
|
+ return (ARCHIVE_FATAL);
|
||||||
|
+
|
||||||
|
client_filter->open = archive_write_client_open;
|
||||||
|
client_filter->write = archive_write_client_write;
|
||||||
|
client_filter->close = archive_write_client_close;
|
||||||
|
--
|
||||||
|
2.25.1
|
||||||
|
|
||||||
@@ -32,7 +32,9 @@ PACKAGECONFIG[zstd] = "--with-zstd,--without-zstd,zstd,"
|
|||||||
|
|
||||||
EXTRA_OECONF += "--enable-largefile"
|
EXTRA_OECONF += "--enable-largefile"
|
||||||
|
|
||||||
SRC_URI = "http://libarchive.org/downloads/libarchive-${PV}.tar.gz"
|
SRC_URI = "http://libarchive.org/downloads/libarchive-${PV}.tar.gz \
|
||||||
|
file://CVE-2022-36227.patch \
|
||||||
|
"
|
||||||
UPSTREAM_CHECK_URI = "http://libarchive.org/"
|
UPSTREAM_CHECK_URI = "http://libarchive.org/"
|
||||||
|
|
||||||
SRC_URI[sha256sum] = "c676146577d989189940f1959d9e3980d28513d74eedfbc6b7f15ea45fe54ee2"
|
SRC_URI[sha256sum] = "c676146577d989189940f1959d9e3980d28513d74eedfbc6b7f15ea45fe54ee2"
|
||||||
|
|||||||
Reference in New Issue
Block a user