From e6acaad9a9eb807358e1794b95899f2dbe018a4d Mon Sep 17 00:00:00 2001 From: Szymon Walter Date: Mon, 19 Mar 2018 18:10:27 +0100 Subject: [PATCH] port BlockGroupDescriptor table finding to Buffer --- src/sys/block_group.rs | 60 ++++++++++++++++++++++++++++++------------ 1 file changed, 43 insertions(+), 17 deletions(-) diff --git a/src/sys/block_group.rs b/src/sys/block_group.rs index 70c6ab2..cf7445b 100644 --- a/src/sys/block_group.rs +++ b/src/sys/block_group.rs @@ -1,7 +1,9 @@ use core::mem; -use core::slice; + +use alloc::Vec; use error::Error; +use buffer::Buffer; /// The Block Group Descriptor Table contains a descriptor for each block group /// within the file system. The number of block groups within the file system, @@ -16,6 +18,7 @@ use error::Error; /// Remember that blocks are numbered starting at 0, and that block numbers /// don't usually correspond to physical block addresses. #[repr(C, packed)] +#[derive(Clone, Copy)] pub struct BlockGroupDescriptor { /// Block address of block usage bitmap pub block_usage_addr: u32, @@ -34,21 +37,47 @@ pub struct BlockGroupDescriptor { } impl BlockGroupDescriptor { - pub unsafe fn find_descriptor_table<'a>( - haystack: &'a mut [u8], - offset: isize, + pub unsafe fn find_descriptor<'a, E>( + haystack: &'a Buffer, + offset: usize, + ) -> Result<(BlockGroupDescriptor, usize), Error> + where + Error: From, + { + let end = offset + mem::size_of::(); + if haystack.len() < end { + return Err(Error::OutOfBounds(end)); + } + + let descr = haystack + .slice_unchecked(offset..end) + .dynamic_cast::(); + + Ok(descr) + } + + pub fn find_descriptor_table<'a, E>( + haystack: &'a Buffer, count: usize, - ) -> Result<&'a mut [BlockGroupDescriptor], Error> { - let offset = (2048 + offset) as usize; + ) -> Result<(Vec, usize), Error> + where + Error: From, + { + let offset = 2048; // TODO: this assumes a block size let end = offset + count * mem::size_of::(); if haystack.len() < end { return Err(Error::OutOfBounds(end)); } - let ptr = haystack.as_mut_ptr().offset(offset as isize) - as *mut BlockGroupDescriptor; - let slice = slice::from_raw_parts_mut(ptr, count); - Ok(slice) + let mut vec = Vec::with_capacity(count); + for i in 0..count { + let offset = offset + i * mem::size_of::(); + vec.push(unsafe { + BlockGroupDescriptor::find_descriptor(haystack, offset)?.0 + }); + } + + Ok((vec, offset)) } } @@ -58,17 +87,14 @@ mod tests { #[test] fn find() { - let mut buffer = vec![0_u8; 4096]; - let addr = &buffer[2048] as *const _ as usize; - // magic - let table = unsafe { - BlockGroupDescriptor::find_descriptor_table(&mut buffer, 0, 0) - }; + let buffer = vec![0_u8; 4096]; + let table = BlockGroupDescriptor::find_descriptor_table(&buffer, 8); assert!( table.is_ok(), "Err({:?})", table.err().unwrap_or_else(|| unreachable!()), ); - assert_eq!(table.unwrap().as_ptr() as usize, addr); + let table = table.unwrap_or_else(|_| unreachable!()); + assert_eq!(table.0.len(), 8); } }