FilesystemReader

Struct FilesystemReader 

Source
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

§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: u32

The size of a data block in bytes. Must be a power of two between 4096 (4k) and 1048576 (1 MiB).

§block_log: u16

The log2 of the block size. If the two fields do not agree, the archive is considered corrupted.

§compressor: Compressor

Compressor used for data

§compression_options: Option<CompressionOptions>

Optional Compressor used for data stored in image

§mod_time: u32

Last 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>

Source

pub fn from_reader<R>(reader: R) -> Result<Self, BackhandError>
where R: BufReadSeek + 'b,

Source

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

Source

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

Source

pub fn file<'a>( &'a self, file: &'a SquashfsFileReader, ) -> FilesystemReaderFile<'a, 'b>

Return a file handler for this file

Source

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more