Bug fixes and formatting

This commit is contained in:
Chris Hennick 2023-05-05 09:15:46 -07:00
parent 29a3f30a72
commit 0beb5b4294
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -321,16 +321,14 @@ impl<R: Read + Seek> ZipArchive<R> {
// have its signature 20 bytes in front of the standard footer. The // have its signature 20 bytes in front of the standard footer. The
// standard footer, in turn, is 22+N bytes large, where N is the // standard footer, in turn, is 22+N bytes large, where N is the
// comment length. Therefore: // comment length. Therefore:
let locator64 = reader reader.seek(io::SeekFrom::End(
.seek(io::SeekFrom::End( -(20 + 22 + footer.zip_file_comment.len() as i64),
-(20 + 22 + footer.zip_file_comment.len() as i64), ))?;
))?; let locator64 = spec::Zip64CentralDirectoryEndLocator::parse(reader)?;
if !footer.record_too_small() if !footer.record_too_small()
&& footer.disk_number as u32 != locator64.disk_with_central_directory && footer.disk_number as u32 != locator64.disk_with_central_directory
{ {
return unsupported_zip_error( return unsupported_zip_error("Support for multi-disk files is not implemented");
"Support for multi-disk files is not implemented",
);
} }
// We need to reassess `archive_offset`. We know where the ZIP64 // We need to reassess `archive_offset`. We know where the ZIP64
@ -353,17 +351,15 @@ impl<R: Read + Seek> ZipArchive<R> {
)?; )?;
if footer.disk_number != footer.disk_with_central_directory { if footer.disk_number != footer.disk_with_central_directory {
return unsupported_zip_error( return unsupported_zip_error("Support for multi-disk files is not implemented");
"Support for multi-disk files is not implemented",
);
} }
let directory_start = footer let directory_start = footer
.central_directory_offset .central_directory_offset
.checked_add(archive_offset) .checked_add(archive_offset)
.ok_or({ .ok_or(ZipError::InvalidArchive(
ZipError::InvalidArchive("Invalid central directory size or offset") "Invalid central directory size or offset",
})?; ))?;
Ok(( Ok((
archive_offset, archive_offset,
@ -380,9 +376,8 @@ impl<R: Read + Seek> ZipArchive<R> {
cde_start_pos: u64, cde_start_pos: u64,
) -> ZipResult<(u64, u64, usize)> { ) -> ZipResult<(u64, u64, usize)> {
// Check if file is valid as ZIP64 first; if not, try it as ZIP32 // Check if file is valid as ZIP64 first; if not, try it as ZIP32
Self::get_directory_counts_zip64(reader, footer, cde_start_pos).or_else( Self::get_directory_counts_zip64(reader, footer, cde_start_pos)
|| get_directory_counts_zip32(footer, cde_start_pos) .or_else(|_| Self::get_directory_counts_zip32(footer, cde_start_pos))
)
} }
/// Read a ZIP archive, collecting the files it contains /// Read a ZIP archive, collecting the files it contains
@ -1019,9 +1014,7 @@ impl<'a> Drop for ZipFile<'a> {
/// * `comment`: set to an empty string /// * `comment`: set to an empty string
/// * `data_start`: set to 0 /// * `data_start`: set to 0
/// * `external_attributes`: `unix_mode()`: will return None /// * `external_attributes`: `unix_mode()`: will return None
pub fn read_zipfile_from_stream<'a, R: Read>( pub fn read_zipfile_from_stream<'a, R: Read>(reader: &'a mut R) -> ZipResult<Option<ZipFile<'_>>> {
reader: &'a mut R,
) -> ZipResult<Option<ZipFile<'_>>> {
let signature = reader.read_u32::<LittleEndian>()?; let signature = reader.read_u32::<LittleEndian>()?;
match signature { match signature {