c3fc865
From 65a23f5dbee4497064e9bb467f81138a62b0dae1 Mon Sep 17 00:00:00 2001
c3fc865
From: Daniel Axtens <dja@axtens.net>
c3fc865
Date: Tue, 1 Jan 2019 16:01:40 +1100
c3fc865
Subject: [PATCH 2/2] 7zip: fix crash when parsing certain archives
c3fc865
c3fc865
Fuzzing with CRCs disabled revealed that a call to get_uncompressed_data()
c3fc865
would sometimes fail to return at least 'minimum' bytes. This can cause
c3fc865
the crc32() invocation in header_bytes to read off into invalid memory.
c3fc865
c3fc865
A specially crafted archive can use this to cause a crash.
c3fc865
c3fc865
An ASAN trace is below, but ASAN is not required - an uninstrumented
c3fc865
binary will also crash.
c3fc865
c3fc865
==7719==ERROR: AddressSanitizer: SEGV on unknown address 0x631000040000 (pc 0x7fbdb3b3ec1d bp 0x7ffe77a51310 sp 0x7ffe77a51150 T0)
c3fc865
==7719==The signal is caused by a READ memory access.
c3fc865
    #0 0x7fbdb3b3ec1c in crc32_z (/lib/x86_64-linux-gnu/libz.so.1+0x2c1c)
c3fc865
    #1 0x84f5eb in header_bytes (/tmp/libarchive/bsdtar+0x84f5eb)
c3fc865
    #2 0x856156 in read_Header (/tmp/libarchive/bsdtar+0x856156)
c3fc865
    #3 0x84e134 in slurp_central_directory (/tmp/libarchive/bsdtar+0x84e134)
c3fc865
    #4 0x849690 in archive_read_format_7zip_read_header (/tmp/libarchive/bsdtar+0x849690)
c3fc865
    #5 0x5713b7 in _archive_read_next_header2 (/tmp/libarchive/bsdtar+0x5713b7)
c3fc865
    #6 0x570e63 in _archive_read_next_header (/tmp/libarchive/bsdtar+0x570e63)
c3fc865
    #7 0x6f08bd in archive_read_next_header (/tmp/libarchive/bsdtar+0x6f08bd)
c3fc865
    #8 0x52373f in read_archive (/tmp/libarchive/bsdtar+0x52373f)
c3fc865
    #9 0x5257be in tar_mode_x (/tmp/libarchive/bsdtar+0x5257be)
c3fc865
    #10 0x51daeb in main (/tmp/libarchive/bsdtar+0x51daeb)
c3fc865
    #11 0x7fbdb27cab96 in __libc_start_main /build/glibc-OTsEL5/glibc-2.27/csu/../csu/libc-start.c:310
c3fc865
    #12 0x41dd09 in _start (/tmp/libarchive/bsdtar+0x41dd09)
c3fc865
c3fc865
This was primarly done with afl and FairFuzz. Some early corpus entries
c3fc865
may have been generated by qsym.
c3fc865
---
c3fc865
 libarchive/archive_read_support_format_7zip.c | 8 +-------
c3fc865
 1 file changed, 1 insertion(+), 7 deletions(-)
c3fc865
c3fc865
diff --git a/libarchive/archive_read_support_format_7zip.c b/libarchive/archive_read_support_format_7zip.c
c3fc865
index bccbf896..b6d1505d 100644
c3fc865
--- a/libarchive/archive_read_support_format_7zip.c
c3fc865
+++ b/libarchive/archive_read_support_format_7zip.c
c3fc865
@@ -2964,13 +2964,7 @@ get_uncompressed_data(struct archive_read *a, const void **buff, size_t size,
c3fc865
 	if (zip->codec == _7Z_COPY && zip->codec2 == (unsigned long)-1) {
c3fc865
 		/* Copy mode. */
c3fc865
 
c3fc865
-		/*
c3fc865
-		 * Note: '1' here is a performance optimization.
c3fc865
-		 * Recall that the decompression layer returns a count of
c3fc865
-		 * available bytes; asking for more than that forces the
c3fc865
-		 * decompressor to combine reads by copying data.
c3fc865
-		 */
c3fc865
-		*buff = __archive_read_ahead(a, 1, &bytes_avail);
c3fc865
+		*buff = __archive_read_ahead(a, minimum, &bytes_avail);
c3fc865
 		if (bytes_avail <= 0) {
c3fc865
 			archive_set_error(&a->archive,
c3fc865
 			    ARCHIVE_ERRNO_FILE_FORMAT,
c3fc865
-- 
c3fc865
2.20.1
c3fc865