pub struct FilesystemReader<'b> {
pub kind: Kind,
pub block_size: u32,
pub block_log: u16,
pub compressor: Compressor,
pub compression_options: Option<CompressionOptions>,
pub mod_time: u32,
pub id_table: Vec<Id>,
pub fragments: Option<Vec<Fragment>>,
pub root: Nodes<SquashfsFileReader>,
/* private fields */
}Expand description
Representation of SquashFS filesystem after read from image
- Use
Self::from_readerto read intoSelffrom areader
§Read direct into Self
Usual workflow, reading from image into a default squashfs Self. See InnerNode for more
details for .nodes.
// Read into filesystem
let file = BufReader::new(File::open("image.squashfs").unwrap());
let filesystem = FilesystemReader::from_reader(file).unwrap();
// Iterate through nodes
// (See src/bin/unsquashfs.rs for more examples on extraction)
for node in filesystem.files() {
// extract
match &node.inner {
InnerNode::File(_) => (),
InnerNode::Symlink(_) => (),
InnerNode::Dir(_) => (),
InnerNode::CharacterDevice(_) => (),
InnerNode::BlockDevice(_) => (),
InnerNode::NamedPipe => (),
InnerNode::Socket => (),
}
}§Read from Squashfs
Performance wise, you may want to read into a Squashfs first, if for instance you are
optionally not extracting and only listing some Superblock fields.
// Read into Squashfs
let file = BufReader::new(File::open("image.squashfs").unwrap());
let squashfs = Squashfs::from_reader_with_offset(file, 0).unwrap();
// Display the Superblock info
let superblock = squashfs.superblock;
println!("{superblock:#08x?}");
// Now read into filesystem
let filesystem = squashfs.into_filesystem_reader().unwrap();Fields§
§kind: Kind§block_size: u32The size of a data block in bytes. Must be a power of two between 4096 (4k) and 1048576 (1 MiB).
block_log: u16The log2 of the block size. If the two fields do not agree, the archive is considered corrupted.
compressor: CompressorCompressor used for data
compression_options: Option<CompressionOptions>Optional Compressor used for data stored in image
mod_time: u32Last modification time of the archive. Count seconds since 00:00, Jan 1st 1970 UTC (not counting leap seconds). This is unsigned, so it expires in the year 2106 (as opposed to 2038).
id_table: Vec<Id>ID’s stored for gui(s) and uid(s)
fragments: Option<Vec<Fragment>>Fragments Lookup Table
root: Nodes<SquashfsFileReader>All files and directories in filesystem
Implementations§
Source§impl<'b> FilesystemReader<'b>
impl<'b> FilesystemReader<'b>
Sourcepub fn from_reader<R>(reader: R) -> Result<Self, BackhandError>where
R: BufReadSeek + 'b,
pub fn from_reader<R>(reader: R) -> Result<Self, BackhandError>where
R: BufReadSeek + 'b,
Call Squashfs::from_reader, then Squashfs::into_filesystem_reader
With default kind: crate::kind::LE_V4_0 and offset 0.
Sourcepub fn from_reader_with_offset<R>(
reader: R,
offset: u64,
) -> Result<Self, BackhandError>where
R: BufReadSeek + 'b,
pub fn from_reader_with_offset<R>(
reader: R,
offset: u64,
) -> Result<Self, BackhandError>where
R: BufReadSeek + 'b,
Same as Self::from_reader, but seek’ing to offset in reader before reading
Sourcepub fn from_reader_with_offset_and_kind<R>(
reader: R,
offset: u64,
kind: Kind,
) -> Result<Self, BackhandError>where
R: BufReadSeek + 'b,
pub fn from_reader_with_offset_and_kind<R>(
reader: R,
offset: u64,
kind: Kind,
) -> Result<Self, BackhandError>where
R: BufReadSeek + 'b,
Same as Self::from_reader_with_offset, but setting custom kind
Sourcepub fn file<'a>(
&'a self,
file: &'a SquashfsFileReader,
) -> FilesystemReaderFile<'a, 'b>
pub fn file<'a>( &'a self, file: &'a SquashfsFileReader, ) -> FilesystemReaderFile<'a, 'b>
Return a file handler for this file
Sourcepub fn files(&self) -> impl Iterator<Item = &Node<SquashfsFileReader>>
pub fn files(&self) -> impl Iterator<Item = &Node<SquashfsFileReader>>
Iterator of all files, including the root
§Example
Used when extracting a file from the image, for example using FilesystemReaderFile:
// [snip: creating FilesystemReader]
for node in filesystem.files() {
// extract
match &node.inner {
InnerNode::File(file) => {
let mut reader = filesystem
.file(&file)
.reader();
// Then, do something with the reader
},
_ => (),
}
}Auto Trait Implementations§
impl<'b> !Freeze for FilesystemReader<'b>
impl<'b> !RefUnwindSafe for FilesystemReader<'b>
impl<'b> Send for FilesystemReader<'b>
impl<'b> Sync for FilesystemReader<'b>
impl<'b> Unpin for FilesystemReader<'b>
impl<'b> !UnwindSafe for FilesystemReader<'b>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more