Update vendor/libarchive/dist to git d6d3799d6b309593f271c4c319dfba92efc95772
Relevant vendor changes: PR #1217: RAR5 reader - fix ARM filter going beyond window buffer boundary (OSS-Fuzz 15431) PR #1218: Fixes to sparse file handling
This commit is contained in:
parent
c31a08f64d
commit
085fce401b
10
.cirrus.yml
10
.cirrus.yml
@ -35,8 +35,6 @@ MacOS_task:
|
||||
matrix:
|
||||
osx_instance:
|
||||
image: mojave-xcode-10.2
|
||||
osx_instance:
|
||||
image: high-sierra-xcode-10.0
|
||||
prepare_script:
|
||||
- ./build/ci/cirrus_ci/ci.sh prepare
|
||||
configure_script:
|
||||
@ -50,9 +48,9 @@ MacOS_task:
|
||||
install_script:
|
||||
- ./build/ci/build.sh -a install
|
||||
|
||||
Fedora_29_task:
|
||||
Fedora_30_task:
|
||||
container:
|
||||
dockerfile: build/ci/cirrus_ci/Dockerfile.fc29
|
||||
dockerfile: build/ci/cirrus_ci/Dockerfile.fc30
|
||||
matrix:
|
||||
env:
|
||||
BS: autotools
|
||||
@ -68,9 +66,9 @@ Fedora_29_task:
|
||||
install_script:
|
||||
- ./build/ci/build.sh -a install
|
||||
|
||||
Fedora_29_distcheck_task:
|
||||
Fedora_30_distcheck_task:
|
||||
container:
|
||||
dockerfile: build/ci/cirrus_ci/Dockerfile.fc29.distcheck
|
||||
dockerfile: build/ci/cirrus_ci/Dockerfile.fc30.distcheck
|
||||
env:
|
||||
BS: autotools
|
||||
configure_script:
|
||||
|
@ -865,6 +865,7 @@ libarchive_test_EXTRA_DIST=\
|
||||
libarchive/test/test_read_format_rar5_symlink.rar.uu \
|
||||
libarchive/test/test_read_format_rar5_truncated_huff.rar.uu \
|
||||
libarchive/test/test_read_format_rar5_win32.rar.uu \
|
||||
libarchive/test/test_read_format_rar5_arm_filter_on_window_boundary.rar.uu \
|
||||
libarchive/test/test_read_format_raw.bufr.uu \
|
||||
libarchive/test/test_read_format_raw.data.gz.uu \
|
||||
libarchive/test/test_read_format_raw.data.Z.uu \
|
||||
|
@ -1,3 +1,3 @@
|
||||
FROM fedora:29
|
||||
FROM fedora:30
|
||||
|
||||
RUN dnf -y install make cmake gcc gcc-c++ kernel-devel automake libtool bison sharutils pkgconf libacl-devel libasan librichacl-devel bzip2-devel libzip-devel zlib-devel xz-devel lz4-devel libzstd-devel openssl-devel
|
@ -1,3 +1,3 @@
|
||||
FROM fedora:29
|
||||
FROM fedora:30
|
||||
|
||||
RUN dnf -y install make cmake gcc gcc-c++ kernel-devel automake libtool bison sharutils pkgconf libacl-devel libasan librichacl-devel bzip2-devel libzip-devel zlib-devel xz-devel lz4-devel libzstd-devel openssl-devel groff ghostscript
|
@ -844,7 +844,8 @@ archive_read_data(struct archive *_a, void *buff, size_t s)
|
||||
dest = (char *)buff;
|
||||
|
||||
while (s > 0) {
|
||||
if (a->read_data_remaining == 0) {
|
||||
if (a->read_data_offset == a->read_data_output_offset &&
|
||||
a->read_data_remaining == 0) {
|
||||
read_buf = a->read_data_block;
|
||||
a->read_data_is_posix_read = 1;
|
||||
a->read_data_requested = s;
|
||||
|
@ -1143,6 +1143,8 @@ _archive_read_next_header2(struct archive *_a, struct archive_entry *entry)
|
||||
t->entry_fd = -1;
|
||||
}
|
||||
|
||||
archive_entry_clear(entry);
|
||||
|
||||
for (;;) {
|
||||
r = next_entry(a, t, entry);
|
||||
if (t->entry_fd >= 0) {
|
||||
|
@ -1126,6 +1126,8 @@ _archive_read_next_header2(struct archive *_a, struct archive_entry *entry)
|
||||
t->entry_fh = INVALID_HANDLE_VALUE;
|
||||
}
|
||||
|
||||
archive_entry_clear(entry);
|
||||
|
||||
while ((r = next_entry(a, t, entry)) == ARCHIVE_RETRY)
|
||||
archive_entry_clear(entry);
|
||||
|
||||
|
@ -623,9 +623,9 @@ static int run_arm_filter(struct rar5* rar, struct filter_info* flt) {
|
||||
for(i = 0; i < flt->block_length - 3; i += 4) {
|
||||
uint8_t* b = &rar->cstate.window_buf[
|
||||
(rar->cstate.solid_offset +
|
||||
flt->block_start + i) & rar->cstate.window_mask];
|
||||
flt->block_start + i + 3) & rar->cstate.window_mask];
|
||||
|
||||
if(b[3] == 0xEB) {
|
||||
if(*b == 0xEB) {
|
||||
/* 0xEB = ARM's BL (branch + link) instruction. */
|
||||
offset = read_filter_data(rar,
|
||||
(rar->cstate.solid_offset + flt->block_start + i) &
|
||||
|
@ -1215,3 +1215,18 @@ DEFINE_TEST(test_read_format_rar5_different_window_size)
|
||||
|
||||
EPILOGUE();
|
||||
}
|
||||
|
||||
DEFINE_TEST(test_read_format_rar5_arm_filter_on_window_boundary)
|
||||
{
|
||||
char buf[4096];
|
||||
PROLOGUE("test_read_format_rar5_arm_filter_on_window_boundary.rar");
|
||||
|
||||
/* Return codes of those calls are ignored, because this sample file
|
||||
* is invalid. However, the unpacker shouldn't produce any SIGSEGV
|
||||
* errors during processing. */
|
||||
|
||||
(void) archive_read_next_header(a, &ae);
|
||||
while(0 != archive_read_data(a, buf, sizeof(buf))) {}
|
||||
|
||||
EPILOGUE();
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
begin 600 test_read_format_rar5_arm_filter_on_window_boundary.rar
|
||||
M4F%R(1H'`0"-[P+2``(''(`'`/[_(`#_!``"(0$``/X(TB`!'O___P@``/W_
|
||||
M_Q``_]U84%"0_P1LAFVQ9,S,M[$`20"#__\`_P#_`/G___!DSR0V2+$`20`Z
|
||||
M@R[_______\I:!<**-@P70D`KB1!<YOZFQ/___^<`^5L*0```/________\_
|
||||
M`0#__RE@%PHHV#!="0"N)$%S"```_?]84/7___]0D/\$;(9ML63,S/\R'Q\?
|
||||
M'Q\?'Q\?'Q\?'Q\?'[$`20"#__\`_P#_`/G___!DSR0V2+$`20`Z@R[_____
|
||||
0_Q\?'Q\?'Q\?'Q]5"E`*4```
|
||||
`
|
||||
end
|
Loading…
Reference in New Issue
Block a user