refacto directory entries traversal

Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
This commit is contained in:
Julien CLEMENT 2022-12-25 12:58:56 +01:00
parent d4add50d82
commit 0ad8ba9adb
3 changed files with 27 additions and 26 deletions

@ -325,3 +325,7 @@ pub async fn print_block(lba: u32) {
let block = DRIVE.lock().await.as_mut().unwrap().read_block(lba).await;
serial_println!("{:x?}", block);
}
pub async fn read_block(lba: u32) -> [u8; CD_SECTOR_SIZE] {
DRIVE.lock().await.as_mut().unwrap().read_block(lba).await
}

@ -1,7 +1,7 @@
mod fd;
pub mod iso9660;
use crate::drivers::atapi::DRIVE;
use crate::drivers::atapi::read_block;
use crate::fd::{FDt, FD_TABLE};
use crate::println;
use crate::serial_println;
@ -32,13 +32,7 @@ impl FileSystem for IsoFS {
}
let root: IsoDir = voldesc.root_dir;
let mut curr_entry_block: [u8; iso9660::ISO_BLOCK_SIZE] = DRIVE
.lock()
.await
.as_mut()
.unwrap()
.read_block(root.data_blk.le)
.await;
let mut curr_entry_block: [u8; iso9660::ISO_BLOCK_SIZE] = read_block(root.data_blk.le).await;
let mut curr_entry: &IsoDir = unserialize(curr_entry_block.as_ptr());
@ -54,22 +48,13 @@ impl FileSystem for IsoFS {
if curr_entry.get_idf() == path_component.as_bytes() {
serial_println!("Found {}", path_component);
curr_entry_block = DRIVE
.lock()
.await
.as_mut()
.unwrap()
.read_block(curr_entry.data_blk.le)
.await;
curr_entry_block = read_block(curr_entry.data_blk.le).await;
curr_entry = unserialize(curr_entry_block.as_ptr());
break;
}
// Next entry
unsafe {
let curr_ptr: *const IsoDir = curr_entry;
curr_entry = &*curr_ptr.cast::<u8>().offset(curr_entry.dir_size as isize).cast::<IsoDir>();
}
curr_entry = next_entry(curr_entry);
}
}
@ -79,13 +64,11 @@ impl FileSystem for IsoFS {
}
}
pub fn next_entry(entry: &IsoDir) -> &IsoDir {
crate::utils::ref_raw_offset(entry, entry.dir_size as isize)
}
pub async fn get_prim_vol_desc() -> IsoPrimVolDesc {
let desc_block = DRIVE
.lock()
.await
.as_mut()
.unwrap()
.read_block(iso9660::ISO_PRIM_VOLDESC_BLOCK)
.await;
let desc_block = read_block(iso9660::ISO_PRIM_VOLDESC_BLOCK).await;
*unserialize::<IsoPrimVolDesc>(desc_block.as_ptr())
}

@ -3,3 +3,17 @@ pub mod serialize;
pub use mutex::AsyncMutex;
pub use serialize::unserialize;
pub fn ref_offset<T>(r: &T, off: isize) -> &T {
let ref_ptr: *const T = r;
unsafe {
return &*ref_ptr.offset(off);
}
}
pub fn ref_raw_offset<T>(r: &T, off: isize) -> &T {
let ref_ptr: *const T = r;
unsafe {
return &*ref_ptr.cast::<u8>().offset(off).cast::<T>();
}
}