binwalk 3.1.0

Analyzes data for embedded file types
Documentation
use crate::signatures::common::{SignatureError, SignatureResult};
use crate::structures::qnx::parse_ifs_header;

/// Human readable description
pub const IFS_DESCRIPTION: &str = "QNX IFS image";

/// QNX IFS magic bytes
pub fn qnx_ifs_magic() -> Vec<Vec<u8>> {
    /*
     * Assumes little endian.
     * Includes the magic bytes (u32) and version number (u16), which must be 1.
     */
    vec![b"\xEB\x7E\xFF\x00\x01\x00".to_vec()]
}

/// Validate a QNX IFS signature
pub fn qnx_ifs_parser(file_data: &[u8], offset: usize) -> Result<SignatureResult, SignatureError> {
    // Success return value
    let mut result = SignatureResult {
        offset,
        description: IFS_DESCRIPTION.to_string(),
        ..Default::default()
    };

    let available_data: usize = file_data.len() - offset;

    if let Ok(ifs_header) = parse_ifs_header(&file_data[offset..]) {
        // Set the total size of this signature
        result.size = ifs_header.total_size;

        // Sanity check that the total size doesn't exceed the available data size
        if result.size <= available_data {
            result.description =
                format!("{}, total size: {} bytes", result.description, result.size);
            return Ok(result);
        }
    }

    Err(SignatureError)
}