From 8bb3be02c12d7a86d2deb4c17770389255c2be16 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Fri, 21 Jun 2024 17:03:44 -0700 Subject: [PATCH] refactor: Verify with debug assertions that no FixedSizeBlock expects a multi-byte alignment (#198) --- src/spec.rs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/spec.rs b/src/spec.rs index f923d835..8a3bdf90 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -1,10 +1,11 @@ #![macro_use] use crate::result::{ZipError, ZipResult}; +use core::mem; +use core::mem::align_of; use memchr::memmem::FinderRev; use std::io; use std::io::prelude::*; -use std::mem; use std::rc::Rc; /// "Magic" header values used in the zip spec to locate metadata records. @@ -109,6 +110,10 @@ pub(crate) trait FixedSizeBlock: Sized + Copy { return Err(ZipError::InvalidArchive("Block is wrong size")); } let block_ptr: *const Self = bytes.as_ptr().cast(); + + // If alignment could be more than 1, we'd have to use read_unaligned() below + debug_assert_eq!(align_of::(), 1); + let block = unsafe { block_ptr.read() }.from_le(); if block.magic() != Self::MAGIC { return Err(Self::WRONG_MAGIC_ERROR); @@ -135,6 +140,10 @@ pub(crate) trait FixedSizeBlock: Sized + Copy { fn serialize(self) -> Box<[u8]> { /* TODO: use Box::new_zeroed() when stabilized! */ /* TODO: also consider using smallvec! */ + + // If alignment could be more than 1, we'd have to use write_unaligned() below + debug_assert_eq!(align_of::(), 1); + let mut out_block = vec![0u8; mem::size_of::()].into_boxed_slice(); let out_ptr: *mut Self = out_block.as_mut_ptr().cast(); unsafe {