diff options
Diffstat (limited to 'meta/recipes-extended')
7 files changed, 337 insertions, 0 deletions
diff --git a/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000877.patch b/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000877.patch new file mode 100644 index 0000000000..ce638370bd --- /dev/null +++ b/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000877.patch | |||
@@ -0,0 +1,38 @@ | |||
1 | CVE: CVE-2018-1000877 | ||
2 | Upstream-Status: Backport | ||
3 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
4 | |||
5 | From 021efa522ad729ff0f5806c4ce53e4a6cc1daa31 Mon Sep 17 00:00:00 2001 | ||
6 | From: Daniel Axtens <dja@axtens.net> | ||
7 | Date: Tue, 20 Nov 2018 17:56:29 +1100 | ||
8 | Subject: [PATCH] Avoid a double-free when a window size of 0 is specified | ||
9 | |||
10 | new_size can be 0 with a malicious or corrupted RAR archive. | ||
11 | |||
12 | realloc(area, 0) is equivalent to free(area), so the region would | ||
13 | be free()d here and the free()d again in the cleanup function. | ||
14 | |||
15 | Found with a setup running AFL, afl-rb, and qsym. | ||
16 | --- | ||
17 | libarchive/archive_read_support_format_rar.c | 5 +++++ | ||
18 | 1 file changed, 5 insertions(+) | ||
19 | |||
20 | diff --git a/libarchive/archive_read_support_format_rar.c b/libarchive/archive_read_support_format_rar.c | ||
21 | index 23452222..6f419c27 100644 | ||
22 | --- a/libarchive/archive_read_support_format_rar.c | ||
23 | +++ b/libarchive/archive_read_support_format_rar.c | ||
24 | @@ -2300,6 +2300,11 @@ parse_codes(struct archive_read *a) | ||
25 | new_size = DICTIONARY_MAX_SIZE; | ||
26 | else | ||
27 | new_size = rar_fls((unsigned int)rar->unp_size) << 1; | ||
28 | + if (new_size == 0) { | ||
29 | + archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT, | ||
30 | + "Zero window size is invalid."); | ||
31 | + return (ARCHIVE_FATAL); | ||
32 | + } | ||
33 | new_window = realloc(rar->lzss.window, new_size); | ||
34 | if (new_window == NULL) { | ||
35 | archive_set_error(&a->archive, ENOMEM, | ||
36 | -- | ||
37 | 2.20.0 | ||
38 | |||
diff --git a/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000878.patch b/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000878.patch new file mode 100644 index 0000000000..7468fd3c93 --- /dev/null +++ b/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000878.patch | |||
@@ -0,0 +1,79 @@ | |||
1 | CVE: CVE-2018-1000878 | ||
2 | Upstream-Status: Backport | ||
3 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
4 | |||
5 | From bfcfe6f04ed20db2504db8a254d1f40a1d84eb28 Mon Sep 17 00:00:00 2001 | ||
6 | From: Daniel Axtens <dja@axtens.net> | ||
7 | Date: Tue, 4 Dec 2018 00:55:22 +1100 | ||
8 | Subject: [PATCH] rar: file split across multi-part archives must match | ||
9 | |||
10 | Fuzzing uncovered some UAF and memory overrun bugs where a file in a | ||
11 | single file archive reported that it was split across multiple | ||
12 | volumes. This was caused by ppmd7 operations calling | ||
13 | rar_br_fillup. This would invoke rar_read_ahead, which would in some | ||
14 | situations invoke archive_read_format_rar_read_header. That would | ||
15 | check the new file name against the old file name, and if they didn't | ||
16 | match up it would free the ppmd7 buffer and allocate a new | ||
17 | one. However, because the ppmd7 decoder wasn't actually done with the | ||
18 | buffer, it would continue to used the freed buffer. Both reads and | ||
19 | writes to the freed region can be observed. | ||
20 | |||
21 | This is quite tricky to solve: once the buffer has been freed it is | ||
22 | too late, as the ppmd7 decoder functions almost universally assume | ||
23 | success - there's no way for ppmd_read to signal error, nor are there | ||
24 | good ways for functions like Range_Normalise to propagate them. So we | ||
25 | can't detect after the fact that we're in an invalid state - e.g. by | ||
26 | checking rar->cursor, we have to prevent ourselves from ever ending up | ||
27 | there. So, when we are in the dangerous part or rar_read_ahead that | ||
28 | assumes a valid split, we set a flag force read_header to either go | ||
29 | down the path for split files or bail. This means that the ppmd7 | ||
30 | decoder keeps a valid buffer and just runs out of data. | ||
31 | |||
32 | Found with a combination of AFL, afl-rb and qsym. | ||
33 | --- | ||
34 | libarchive/archive_read_support_format_rar.c | 9 +++++++++ | ||
35 | 1 file changed, 9 insertions(+) | ||
36 | |||
37 | diff --git a/libarchive/archive_read_support_format_rar.c b/libarchive/archive_read_support_format_rar.c | ||
38 | index 6f419c27..a8cc5c94 100644 | ||
39 | --- a/libarchive/archive_read_support_format_rar.c | ||
40 | +++ b/libarchive/archive_read_support_format_rar.c | ||
41 | @@ -258,6 +258,7 @@ struct rar | ||
42 | struct data_block_offsets *dbo; | ||
43 | unsigned int cursor; | ||
44 | unsigned int nodes; | ||
45 | + char filename_must_match; | ||
46 | |||
47 | /* LZSS members */ | ||
48 | struct huffman_code maincode; | ||
49 | @@ -1560,6 +1561,12 @@ read_header(struct archive_read *a, struct archive_entry *entry, | ||
50 | } | ||
51 | return ret; | ||
52 | } | ||
53 | + else if (rar->filename_must_match) | ||
54 | + { | ||
55 | + archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT, | ||
56 | + "Mismatch of file parts split across multi-volume archive"); | ||
57 | + return (ARCHIVE_FATAL); | ||
58 | + } | ||
59 | |||
60 | rar->filename_save = (char*)realloc(rar->filename_save, | ||
61 | filename_size + 1); | ||
62 | @@ -2933,12 +2940,14 @@ rar_read_ahead(struct archive_read *a, size_t min, ssize_t *avail) | ||
63 | else if (*avail == 0 && rar->main_flags & MHD_VOLUME && | ||
64 | rar->file_flags & FHD_SPLIT_AFTER) | ||
65 | { | ||
66 | + rar->filename_must_match = 1; | ||
67 | ret = archive_read_format_rar_read_header(a, a->entry); | ||
68 | if (ret == (ARCHIVE_EOF)) | ||
69 | { | ||
70 | rar->has_endarc_header = 1; | ||
71 | ret = archive_read_format_rar_read_header(a, a->entry); | ||
72 | } | ||
73 | + rar->filename_must_match = 0; | ||
74 | if (ret != (ARCHIVE_OK)) | ||
75 | return NULL; | ||
76 | return rar_read_ahead(a, min, avail); | ||
77 | -- | ||
78 | 2.20.0 | ||
79 | |||
diff --git a/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000879.patch b/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000879.patch new file mode 100644 index 0000000000..9f25932a1a --- /dev/null +++ b/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000879.patch | |||
@@ -0,0 +1,50 @@ | |||
1 | CVE: CVE-2018-1000879 | ||
2 | Upstream-Status: Backport | ||
3 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
4 | |||
5 | From 15bf44fd2c1ad0e3fd87048b3fcc90c4dcff1175 Mon Sep 17 00:00:00 2001 | ||
6 | From: Daniel Axtens <dja@axtens.net> | ||
7 | Date: Tue, 4 Dec 2018 14:29:42 +1100 | ||
8 | Subject: [PATCH] Skip 0-length ACL fields | ||
9 | |||
10 | Currently, it is possible to create an archive that crashes bsdtar | ||
11 | with a malformed ACL: | ||
12 | |||
13 | Program received signal SIGSEGV, Segmentation fault. | ||
14 | archive_acl_from_text_l (acl=<optimised out>, text=0x7e2e92 "", want_type=<optimised out>, sc=<optimised out>) at libarchive/archive_acl.c:1726 | ||
15 | 1726 switch (*s) { | ||
16 | (gdb) p n | ||
17 | $1 = 1 | ||
18 | (gdb) p field[n] | ||
19 | $2 = {start = 0x0, end = 0x0} | ||
20 | |||
21 | Stop this by checking that the length is not zero before beginning | ||
22 | the switch statement. | ||
23 | |||
24 | I am pretty sure this is the bug mentioned in the qsym paper [1], | ||
25 | and I was able to replicate it with a qsym + AFL + afl-rb setup. | ||
26 | |||
27 | [1] https://www.usenix.org/conference/usenixsecurity18/presentation/yun | ||
28 | --- | ||
29 | libarchive/archive_acl.c | 5 +++++ | ||
30 | 1 file changed, 5 insertions(+) | ||
31 | |||
32 | diff --git a/libarchive/archive_acl.c b/libarchive/archive_acl.c | ||
33 | index 512beee1..7beeee86 100644 | ||
34 | --- a/libarchive/archive_acl.c | ||
35 | +++ b/libarchive/archive_acl.c | ||
36 | @@ -1723,6 +1723,11 @@ archive_acl_from_text_l(struct archive_acl *acl, const char *text, | ||
37 | st = field[n].start + 1; | ||
38 | len = field[n].end - field[n].start; | ||
39 | |||
40 | + if (len == 0) { | ||
41 | + ret = ARCHIVE_WARN; | ||
42 | + continue; | ||
43 | + } | ||
44 | + | ||
45 | switch (*s) { | ||
46 | case 'u': | ||
47 | if (len == 1 || (len == 4 | ||
48 | -- | ||
49 | 2.20.0 | ||
50 | |||
diff --git a/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000880.patch b/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000880.patch new file mode 100644 index 0000000000..bc264a1242 --- /dev/null +++ b/meta/recipes-extended/libarchive/libarchive/CVE-2018-1000880.patch | |||
@@ -0,0 +1,44 @@ | |||
1 | CVE: CVE-2018-1000880 | ||
2 | Upstream-Status: Backport | ||
3 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
4 | |||
5 | From 9c84b7426660c09c18cc349f6d70b5f8168b5680 Mon Sep 17 00:00:00 2001 | ||
6 | From: Daniel Axtens <dja@axtens.net> | ||
7 | Date: Tue, 4 Dec 2018 16:33:42 +1100 | ||
8 | Subject: [PATCH] warc: consume data once read | ||
9 | |||
10 | The warc decoder only used read ahead, it wouldn't actually consume | ||
11 | data that had previously been printed. This means that if you specify | ||
12 | an invalid content length, it will just reprint the same data over | ||
13 | and over and over again until it hits the desired length. | ||
14 | |||
15 | This means that a WARC resource with e.g. | ||
16 | Content-Length: 666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666665 | ||
17 | but only a few hundred bytes of data, causes a quasi-infinite loop. | ||
18 | |||
19 | Consume data in subsequent calls to _warc_read. | ||
20 | |||
21 | Found with an AFL + afl-rb + qsym setup. | ||
22 | --- | ||
23 | libarchive/archive_read_support_format_warc.c | 5 +++++ | ||
24 | 1 file changed, 5 insertions(+) | ||
25 | |||
26 | diff --git a/libarchive/archive_read_support_format_warc.c b/libarchive/archive_read_support_format_warc.c | ||
27 | index e8753853..e8fc8428 100644 | ||
28 | --- a/libarchive/archive_read_support_format_warc.c | ||
29 | +++ b/libarchive/archive_read_support_format_warc.c | ||
30 | @@ -386,6 +386,11 @@ _warc_read(struct archive_read *a, const void **buf, size_t *bsz, int64_t *off) | ||
31 | return (ARCHIVE_EOF); | ||
32 | } | ||
33 | |||
34 | + if (w->unconsumed) { | ||
35 | + __archive_read_consume(a, w->unconsumed); | ||
36 | + w->unconsumed = 0U; | ||
37 | + } | ||
38 | + | ||
39 | rab = __archive_read_ahead(a, 1U, &nrd); | ||
40 | if (nrd < 0) { | ||
41 | *bsz = 0U; | ||
42 | -- | ||
43 | 2.20.0 | ||
44 | |||
diff --git a/meta/recipes-extended/libarchive/libarchive/CVE-2019-1000019.patch b/meta/recipes-extended/libarchive/libarchive/CVE-2019-1000019.patch new file mode 100644 index 0000000000..f6f1add5e0 --- /dev/null +++ b/meta/recipes-extended/libarchive/libarchive/CVE-2019-1000019.patch | |||
@@ -0,0 +1,59 @@ | |||
1 | CVE: CVE-2018-1000019 | ||
2 | Upstream-Status: Backport | ||
3 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
4 | |||
5 | From 65a23f5dbee4497064e9bb467f81138a62b0dae1 Mon Sep 17 00:00:00 2001 | ||
6 | From: Daniel Axtens <dja@axtens.net> | ||
7 | Date: Tue, 1 Jan 2019 16:01:40 +1100 | ||
8 | Subject: [PATCH 2/2] 7zip: fix crash when parsing certain archives | ||
9 | |||
10 | Fuzzing with CRCs disabled revealed that a call to get_uncompressed_data() | ||
11 | would sometimes fail to return at least 'minimum' bytes. This can cause | ||
12 | the crc32() invocation in header_bytes to read off into invalid memory. | ||
13 | |||
14 | A specially crafted archive can use this to cause a crash. | ||
15 | |||
16 | An ASAN trace is below, but ASAN is not required - an uninstrumented | ||
17 | binary will also crash. | ||
18 | |||
19 | ==7719==ERROR: AddressSanitizer: SEGV on unknown address 0x631000040000 (pc 0x7fbdb3b3ec1d bp 0x7ffe77a51310 sp 0x7ffe77a51150 T0) | ||
20 | ==7719==The signal is caused by a READ memory access. | ||
21 | #0 0x7fbdb3b3ec1c in crc32_z (/lib/x86_64-linux-gnu/libz.so.1+0x2c1c) | ||
22 | #1 0x84f5eb in header_bytes (/tmp/libarchive/bsdtar+0x84f5eb) | ||
23 | #2 0x856156 in read_Header (/tmp/libarchive/bsdtar+0x856156) | ||
24 | #3 0x84e134 in slurp_central_directory (/tmp/libarchive/bsdtar+0x84e134) | ||
25 | #4 0x849690 in archive_read_format_7zip_read_header (/tmp/libarchive/bsdtar+0x849690) | ||
26 | #5 0x5713b7 in _archive_read_next_header2 (/tmp/libarchive/bsdtar+0x5713b7) | ||
27 | #6 0x570e63 in _archive_read_next_header (/tmp/libarchive/bsdtar+0x570e63) | ||
28 | #7 0x6f08bd in archive_read_next_header (/tmp/libarchive/bsdtar+0x6f08bd) | ||
29 | #8 0x52373f in read_archive (/tmp/libarchive/bsdtar+0x52373f) | ||
30 | #9 0x5257be in tar_mode_x (/tmp/libarchive/bsdtar+0x5257be) | ||
31 | #10 0x51daeb in main (/tmp/libarchive/bsdtar+0x51daeb) | ||
32 | #11 0x7fbdb27cab96 in __libc_start_main /build/glibc-OTsEL5/glibc-2.27/csu/../csu/libc-start.c:310 | ||
33 | #12 0x41dd09 in _start (/tmp/libarchive/bsdtar+0x41dd09) | ||
34 | |||
35 | This was primarly done with afl and FairFuzz. Some early corpus entries | ||
36 | may have been generated by qsym. | ||
37 | --- | ||
38 | libarchive/archive_read_support_format_7zip.c | 8 +------- | ||
39 | 1 file changed, 1 insertion(+), 7 deletions(-) | ||
40 | |||
41 | diff --git a/libarchive/archive_read_support_format_7zip.c b/libarchive/archive_read_support_format_7zip.c | ||
42 | index bccbf8966..b6d1505d3 100644 | ||
43 | --- a/libarchive/archive_read_support_format_7zip.c | ||
44 | +++ b/libarchive/archive_read_support_format_7zip.c | ||
45 | @@ -2964,13 +2964,7 @@ get_uncompressed_data(struct archive_read *a, const void **buff, size_t size, | ||
46 | if (zip->codec == _7Z_COPY && zip->codec2 == (unsigned long)-1) { | ||
47 | /* Copy mode. */ | ||
48 | |||
49 | - /* | ||
50 | - * Note: '1' here is a performance optimization. | ||
51 | - * Recall that the decompression layer returns a count of | ||
52 | - * available bytes; asking for more than that forces the | ||
53 | - * decompressor to combine reads by copying data. | ||
54 | - */ | ||
55 | - *buff = __archive_read_ahead(a, 1, &bytes_avail); | ||
56 | + *buff = __archive_read_ahead(a, minimum, &bytes_avail); | ||
57 | if (bytes_avail <= 0) { | ||
58 | archive_set_error(&a->archive, | ||
59 | ARCHIVE_ERRNO_FILE_FORMAT, | ||
diff --git a/meta/recipes-extended/libarchive/libarchive/CVE-2019-1000020.patch b/meta/recipes-extended/libarchive/libarchive/CVE-2019-1000020.patch new file mode 100644 index 0000000000..3e63921346 --- /dev/null +++ b/meta/recipes-extended/libarchive/libarchive/CVE-2019-1000020.patch | |||
@@ -0,0 +1,61 @@ | |||
1 | CVE: CVE-2018-1000020 | ||
2 | Upstream-Status: Backport | ||
3 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
4 | |||
5 | From 8312eaa576014cd9b965012af51bc1f967b12423 Mon Sep 17 00:00:00 2001 | ||
6 | From: Daniel Axtens <dja@axtens.net> | ||
7 | Date: Tue, 1 Jan 2019 17:10:49 +1100 | ||
8 | Subject: [PATCH 1/2] iso9660: Fail when expected Rockridge extensions is | ||
9 | missing | ||
10 | |||
11 | A corrupted or malicious ISO9660 image can cause read_CE() to loop | ||
12 | forever. | ||
13 | |||
14 | read_CE() calls parse_rockridge(), expecting a Rockridge extension | ||
15 | to be read. However, parse_rockridge() is structured as a while | ||
16 | loop starting with a sanity check, and if the sanity check fails | ||
17 | before the loop has run, the function returns ARCHIVE_OK without | ||
18 | advancing the position in the file. This causes read_CE() to retry | ||
19 | indefinitely. | ||
20 | |||
21 | Make parse_rockridge() return ARCHIVE_WARN if it didn't read an | ||
22 | extension. As someone with no real knowledge of the format, this | ||
23 | seems more apt than ARCHIVE_FATAL, but both the call-sites escalate | ||
24 | it to a fatal error immediately anyway. | ||
25 | |||
26 | Found with a combination of AFL, afl-rb (FairFuzz) and qsym. | ||
27 | --- | ||
28 | libarchive/archive_read_support_format_iso9660.c | 11 ++++++++++- | ||
29 | 1 file changed, 10 insertions(+), 1 deletion(-) | ||
30 | |||
31 | diff --git a/libarchive/archive_read_support_format_iso9660.c b/libarchive/archive_read_support_format_iso9660.c | ||
32 | index 28acfefbb..bad8f1dfe 100644 | ||
33 | --- a/libarchive/archive_read_support_format_iso9660.c | ||
34 | +++ b/libarchive/archive_read_support_format_iso9660.c | ||
35 | @@ -2102,6 +2102,7 @@ parse_rockridge(struct archive_read *a, struct file_info *file, | ||
36 | const unsigned char *p, const unsigned char *end) | ||
37 | { | ||
38 | struct iso9660 *iso9660; | ||
39 | + int entry_seen = 0; | ||
40 | |||
41 | iso9660 = (struct iso9660 *)(a->format->data); | ||
42 | |||
43 | @@ -2257,8 +2258,16 @@ parse_rockridge(struct archive_read *a, struct file_info *file, | ||
44 | } | ||
45 | |||
46 | p += p[2]; | ||
47 | + entry_seen = 1; | ||
48 | + } | ||
49 | + | ||
50 | + if (entry_seen) | ||
51 | + return (ARCHIVE_OK); | ||
52 | + else { | ||
53 | + archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT, | ||
54 | + "Tried to parse Rockridge extensions, but none found"); | ||
55 | + return (ARCHIVE_WARN); | ||
56 | } | ||
57 | - return (ARCHIVE_OK); | ||
58 | } | ||
59 | |||
60 | static int | ||
61 | |||
diff --git a/meta/recipes-extended/libarchive/libarchive_3.3.3.bb b/meta/recipes-extended/libarchive/libarchive_3.3.3.bb index 46a3d43762..af5ca65297 100644 --- a/meta/recipes-extended/libarchive/libarchive_3.3.3.bb +++ b/meta/recipes-extended/libarchive/libarchive_3.3.3.bb | |||
@@ -34,6 +34,12 @@ EXTRA_OECONF += "--enable-largefile" | |||
34 | SRC_URI = "http://libarchive.org/downloads/libarchive-${PV}.tar.gz \ | 34 | SRC_URI = "http://libarchive.org/downloads/libarchive-${PV}.tar.gz \ |
35 | file://non-recursive-extract-and-list.patch \ | 35 | file://non-recursive-extract-and-list.patch \ |
36 | file://bug1066.patch \ | 36 | file://bug1066.patch \ |
37 | file://CVE-2018-1000877.patch \ | ||
38 | file://CVE-2018-1000878.patch \ | ||
39 | file://CVE-2018-1000879.patch \ | ||
40 | file://CVE-2018-1000880.patch \ | ||
41 | file://CVE-2019-1000019.patch \ | ||
42 | file://CVE-2019-1000020.patch \ | ||
37 | " | 43 | " |
38 | 44 | ||
39 | SRC_URI[md5sum] = "4038e366ca5b659dae3efcc744e72120" | 45 | SRC_URI[md5sum] = "4038e366ca5b659dae3efcc744e72120" |