perf: Skip searching for the ZIP32 header if a valid ZIP64 header is present (#189)
This commit is contained in:
parent
a06fbaca08
commit
3eb2a0464b
1 changed files with 66 additions and 68 deletions
100
src/read.rs
100
src/read.rs
|
@ -650,50 +650,54 @@ impl<R: Read + Seek> ZipArchive<R> {
|
||||||
// Check if file has a zip64 footer
|
// Check if file has a zip64 footer
|
||||||
let mut results = Self::get_directory_info_zip64(&config, reader, footer, cde_start_pos)
|
let mut results = Self::get_directory_info_zip64(&config, reader, footer, cde_start_pos)
|
||||||
.unwrap_or_else(|e| vec![Err(e)]);
|
.unwrap_or_else(|e| vec![Err(e)]);
|
||||||
let zip32_result = Self::get_directory_info_zip32(&config, reader, footer, cde_start_pos);
|
|
||||||
let mut invalid_errors = Vec::new();
|
let mut invalid_errors = Vec::new();
|
||||||
let mut unsupported_errors = Vec::new();
|
let mut unsupported_errors = Vec::new();
|
||||||
let mut ok_results = Vec::new();
|
let mut ok_results = Vec::new();
|
||||||
results.iter_mut().for_each(|result| {
|
|
||||||
if let Ok(central_dir) = result {
|
|
||||||
if let Ok(zip32_central_dir) = &zip32_result {
|
|
||||||
// Both zip32 and zip64 footers exist, so check if the zip64 footer is valid; if not, try zip32
|
|
||||||
if central_dir.number_of_files != zip32_central_dir.number_of_files
|
|
||||||
&& zip32_central_dir.number_of_files != u16::MAX as usize
|
|
||||||
{
|
|
||||||
*result = Err(ZipError::InvalidArchive(
|
|
||||||
"ZIP32 and ZIP64 file counts don't match",
|
|
||||||
));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if central_dir.disk_number != zip32_central_dir.disk_number
|
|
||||||
&& zip32_central_dir.disk_number != u16::MAX as u32
|
|
||||||
{
|
|
||||||
*result = Err(ZipError::InvalidArchive(
|
|
||||||
"ZIP32 and ZIP64 disk numbers don't match",
|
|
||||||
));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if central_dir.disk_with_central_directory
|
|
||||||
!= zip32_central_dir.disk_with_central_directory
|
|
||||||
&& zip32_central_dir.disk_with_central_directory != u16::MAX as u32
|
|
||||||
{
|
|
||||||
*result = Err(ZipError::InvalidArchive(
|
|
||||||
"ZIP32 and ZIP64 last-disk numbers don't match",
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
results.push(zip32_result);
|
|
||||||
results
|
results
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|result| {
|
.map(|result| {
|
||||||
result.and_then(|dir_info| {
|
result.and_then(|dir_info| Self::read_central_header(dir_info, config, reader))
|
||||||
|
})
|
||||||
|
.for_each(|result| {
|
||||||
|
Self::sort_result(
|
||||||
|
result,
|
||||||
|
&mut invalid_errors,
|
||||||
|
&mut unsupported_errors,
|
||||||
|
&mut ok_results,
|
||||||
|
)
|
||||||
|
});
|
||||||
|
if ok_results.is_empty() {
|
||||||
|
let zip32_result =
|
||||||
|
Self::get_directory_info_zip32(&config, reader, footer, cde_start_pos);
|
||||||
|
Self::sort_result(
|
||||||
|
zip32_result.and_then(|result| Self::read_central_header(result, config, reader)),
|
||||||
|
&mut invalid_errors,
|
||||||
|
&mut unsupported_errors,
|
||||||
|
&mut ok_results,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if ok_results.is_empty() {
|
||||||
|
return Err(unsupported_errors
|
||||||
|
.into_iter()
|
||||||
|
.next()
|
||||||
|
.unwrap_or_else(|| invalid_errors.into_iter().next().unwrap()));
|
||||||
|
}
|
||||||
|
let shared = ok_results
|
||||||
|
.into_iter()
|
||||||
|
.max_by_key(|shared| (shared.dir_start - shared.offset, shared.dir_start))
|
||||||
|
.unwrap();
|
||||||
|
reader.seek(io::SeekFrom::Start(shared.dir_start))?;
|
||||||
|
Ok(shared)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn read_central_header(
|
||||||
|
dir_info: CentralDirectoryInfo,
|
||||||
|
config: Config,
|
||||||
|
reader: &mut R,
|
||||||
|
) -> Result<Shared, ZipError> {
|
||||||
// If the parsed number of files is greater than the offset then
|
// If the parsed number of files is greater than the offset then
|
||||||
// something fishy is going on and we shouldn't trust number_of_files.
|
// something fishy is going on and we shouldn't trust number_of_files.
|
||||||
let file_capacity =
|
let file_capacity = if dir_info.number_of_files > dir_info.directory_start as usize {
|
||||||
if dir_info.number_of_files > dir_info.directory_start as usize {
|
|
||||||
0
|
0
|
||||||
} else {
|
} else {
|
||||||
dir_info.number_of_files
|
dir_info.number_of_files
|
||||||
|
@ -717,27 +721,21 @@ impl<R: Read + Seek> ZipArchive<R> {
|
||||||
config,
|
config,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
})
|
|
||||||
.for_each(|result| match result {
|
fn sort_result(
|
||||||
|
result: Result<Shared, ZipError>,
|
||||||
|
mut invalid_errors: &mut Vec<ZipError>,
|
||||||
|
mut unsupported_errors: &mut Vec<ZipError>,
|
||||||
|
mut ok_results: &mut Vec<Shared>,
|
||||||
|
) {
|
||||||
|
match result {
|
||||||
Err(ZipError::UnsupportedArchive(e)) => {
|
Err(ZipError::UnsupportedArchive(e)) => {
|
||||||
unsupported_errors.push(ZipError::UnsupportedArchive(e))
|
unsupported_errors.push(ZipError::UnsupportedArchive(e))
|
||||||
}
|
}
|
||||||
Err(e) => invalid_errors.push(e),
|
Err(e) => invalid_errors.push(e),
|
||||||
Ok(o) => ok_results.push(o),
|
Ok(o) => ok_results.push(o),
|
||||||
});
|
|
||||||
if ok_results.is_empty() {
|
|
||||||
return Err(unsupported_errors
|
|
||||||
.into_iter()
|
|
||||||
.next()
|
|
||||||
.unwrap_or_else(|| invalid_errors.into_iter().next().unwrap()));
|
|
||||||
}
|
}
|
||||||
let shared = ok_results
|
|
||||||
.into_iter()
|
|
||||||
.max_by_key(|shared| (shared.dir_start - shared.offset, shared.dir_start))
|
|
||||||
.unwrap();
|
|
||||||
reader.seek(io::SeekFrom::Start(shared.dir_start))?;
|
|
||||||
Ok(shared)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the verification value and salt for the AES encryption of the file
|
/// Returns the verification value and salt for the AES encryption of the file
|
||||||
|
|
Loading…
Add table
Reference in a new issue