Files
ImHex-Patterns/patterns/ubiquiti.hexpat
MatrixEditor 86f93dfdaf patterns: Added Ubiquiti firmware pattern (#145)
* Ubiquiti firmware pattern

* Added padding and crc32 fields

* Added unit test file

+ Renamed fields in partition struct
2023-08-16 23:28:01 +02:00

90 lines
1.8 KiB
Rust

#pragma endian big
#include <std/mem.pat>
#include <std/sys.pat>
// Ubiquiti Firmware related structs
// More information here: https://dl.ubnt.com/firmwares/XN-fw/v5.6.3/GPL.UBNT.v5.6.3.tar.bz2
/*
* Block types of a default firmware file file:
* - UBNT := header
* - PART := partition
* - EXEC := additional data block
* - END. := default end block
* - ENDS := signed end block using RSA 2048 bit
*/
#define TYPE_UBNT "UBNT"
#define TYPE_PART "PART"
#define TYPE_EXEC "EXEC"
#define TYPE_END "END."
#define TYPE_SIGNED_END "ENDS"
namespace ubnt {
struct UBNT {
char version[256];
u32 crc32;
};
struct PART {
char name[16];
padding[12];
u32 memaddr;
u32 index;
u32 baseaddr;
u32 entryaddr;
u32 data_size;
u32 part_size;
u8 data[this.data_size];
u32 crc32;
};
struct EXEC {
char name[16];
u8 reserved[28];
u32 size;
u32 size2;
u32 crc32;
u8 data[this.size];
};
struct END {
u32 crc32;
};
struct ENDS {
u8 data[256];
};
}
struct Block {
char type[4];
if (type == TYPE_UBNT) {
ubnt::UBNT header;
}
else if (type == TYPE_PART) {
ubnt::PART partition;
}
else if (type == TYPE_EXEC) {
ubnt::EXEC data;
}
else if (type == TYPE_END) {
ubnt::END end;
}
else if (type == TYPE_SIGNED_END) {
ubnt::ENDS end;
}
// REVISIT: change the type to u32
padding[4];
};
// Greedy parsing of Block structs
Block blocks[while(!std::mem::eof())] @ 0x00;
std::assert(blocks[0].type == TYPE_UBNT,
"File is not a valid Ubiquiti firmare file!");
std::print("Version: {}", blocks[0].header.version);