From 23068ad7c2cca2dfa8ba4c42dc1f4d9ec4b02f13 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 15 May 2024 15:22:49 -0700 Subject: [PATCH] chore: Fix error-type conversion on Windows --- src/read.rs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/read.rs b/src/read.rs index bcb322b5..21966b55 100644 --- a/src/read.rs +++ b/src/read.rs @@ -13,6 +13,7 @@ use crate::types::{AesMode, AesVendorVersion, DateTime, System, ZipFileData}; use crate::zipcrypto::{ZipCryptoReader, ZipCryptoReaderValid, ZipCryptoValidator}; use indexmap::IndexMap; use std::borrow::Cow; +use std::convert::Infallible; use std::ffi::OsString; use std::fs::create_dir_all; use std::io::{self, copy, prelude::*, sink}; @@ -689,7 +690,9 @@ impl ZipArchive { if file.is_symlink() && (cfg!(unix) || cfg!(windows)) { let mut target = Vec::with_capacity(file.size() as usize); file.read_exact(&mut target)?; - let target = try_utf8_to_os_string(target)?; + let Ok(target) = try_utf8_to_os_string(target) else { + return Err(ZipError::InvalidArchive("Invalid UTF-8 as symlink target")); + }; let target_path: PathBuf = directory.as_ref().join(target.clone()); #[cfg(unix)] { @@ -925,14 +928,16 @@ impl ZipArchive { } #[cfg(unix)] -fn try_utf8_to_os_string(utf8_bytes: Vec) -> std::io::Result { +fn try_utf8_to_os_string(utf8_bytes: Vec) -> Result { use std::os::unix::ffi::OsStringExt; Ok(OsString::from_vec(utf8_bytes)) } #[cfg(windows)] -fn to_os_string(utf8_bytes: Vec) -> std::io::Result { - Ok(OsString::from(String::from_utf8(target)?)) +fn try_utf8_to_os_string(utf8_bytes: Vec) -> Result { + Ok(OsString::from(String::from_utf8(utf8_bytes).map_err( + |_| ZipError::InvalidArchive("Invalid UTF-8 in symlink target"), + ))) } const fn unsupported_zip_error(detail: &'static str) -> ZipResult {