diff --git a/fuzz/fuzz_targets/fuzz_write.rs b/fuzz/fuzz_targets/fuzz_write.rs index 8b1a9cd5..7ad45b5b 100644 --- a/fuzz/fuzz_targets/fuzz_write.rs +++ b/fuzz/fuzz_targets/fuzz_write.rs @@ -2,20 +2,29 @@ use libfuzzer_sys::fuzz_target; use arbitrary::Arbitrary; +use std::fmt::{Debug, Formatter}; use std::io::{Cursor, Read, Seek, Write}; -#[derive(Arbitrary,Debug)] -pub struct ExtraData { - pub header_id: u16, - pub data: Vec -} - #[derive(Arbitrary,Debug)] pub struct File { pub name: String, - pub contents: Vec>, - pub local_extra_data: Vec, - pub central_extra_data: Vec + pub contents: Vec> +} + +#[derive(Arbitrary)] +pub struct LargeFile { + pub name: String, + pub large_contents: [u8; u32::MAX as usize + 1], + pub extra_contents: Vec> +} + +impl Debug for LargeFile { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + f.debug_struct("LargeFile") + .field("name", &self.name) + .field("extra_contents", &self.extra_contents) + .finish() + } } #[derive(Arbitrary,Debug)] @@ -24,6 +33,10 @@ pub enum FileOperation { file: File, options: zip_next::write::FileOptions }, + WriteLarge { + file: LargeFile, + options: zip_next::write::FileOptions + }, ShallowCopy { base: Box, new_name: String @@ -38,6 +51,7 @@ impl FileOperation { pub fn get_name(&self) -> String { match self { FileOperation::Write {file, ..} => &file.name, + FileOperation::WriteLarge {file, ..} => &file.name, FileOperation::ShallowCopy {new_name, ..} => new_name, FileOperation::DeepCopy {new_name, ..} => new_name }.to_owned() @@ -57,6 +71,14 @@ fn do_operation(writer: &mut zip_next::ZipWriter, writer.write_all(chunk.as_slice())?; } } + FileOperation::WriteLarge {file, mut options} => { + options = options.large_file(true); + writer.start_file(file.name.to_owned(), options)?; + writer.write_all(&file.large_contents)?; + for chunk in &file.extra_contents { + writer.write_all(chunk.as_slice())?; + } + } FileOperation::ShallowCopy {base, new_name} => { do_operation(writer, base)?; writer.shallow_copy_file(&base.get_name(), new_name)?;