compression: zip_directory: improve error handling

when zipping a directory, our intention was to skip over files that
cannot be zipped (e.g. the file can't be read/vanished/etc.), so we
ignored errors and simply logged it.

but when 'add_entry' fails, we will never actually restore, since every
error there is fatal to the point that the zip cannot be finished thats
because we take the 'target' sink out of self, and only insert it again
after all writes succeeded. so if an error occurs in between 'target' is
not put into self again (and never will be) and the zip cannot be
finished (even if we would catch all those intermediate errors and
restore 'target', we don't know in which state the output was, so we're
unable to finish a valid zip)

to fix that, split the actual 'add_entry' part there out of the async
move block and treat its errors always as fatal

without this, we generate heaps of log lines even after an error
occurred, and can never recover

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2023-05-10 15:22:58 +02:00 committed by Wolfgang Bumiller
parent 39a486f574
commit af46b655d4

View File

@ -643,7 +643,7 @@ where
let entry_path = entry.path().to_owned();
let encoder = &mut encoder;
if let Err(err) = async move {
match async move {
let entry_path_no_base = entry.path().strip_prefix(base_path)?;
let metadata = entry.metadata()?;
let mtime = match metadata
@ -659,17 +659,21 @@ where
if entry.file_type().is_file() {
let file = tokio::fs::File::open(entry.path()).await?;
let ze = ZipEntry::new(entry_path_no_base, mtime, mode, true);
encoder.add_entry(ze, Some(file)).await?;
Ok(Some((ze, Some(file))))
} else if entry.file_type().is_dir() {
let ze = ZipEntry::new(entry_path_no_base, mtime, mode, false);
let content: Option<tokio::fs::File> = None;
encoder.add_entry(ze, content).await?;
}
Ok(Some((ze, content)))
} else {
// ignore other file types
Ok::<(), Error>(())
Ok::<_, Error>(None)
}
}
.await
{
Ok(Some((ze, content))) => encoder.add_entry(ze, content).await?,
Ok(None) => {}
Err(err) => {
eprintln!(
"zip: error encoding file or directory '{}': {}",
entry_path.display(),
@ -677,6 +681,7 @@ where
);
}
}
}
encoder.finish().await
}