2019-03-07 13:24:06 +01:00
|
|
|
#pragma once
|
2017-09-12 09:27:28 +02:00
|
|
|
|
2019-02-21 02:49:26 +01:00
|
|
|
#include <map>
|
|
|
|
#include <string_view>
|
|
|
|
|
2017-09-12 09:27:28 +02:00
|
|
|
typedef enum {
|
2018-01-29 15:16:02 +01:00
|
|
|
UNKNOWN,
|
2019-02-21 02:49:26 +01:00
|
|
|
/* Boot formats */
|
2018-01-29 15:16:02 +01:00
|
|
|
CHROMEOS,
|
|
|
|
AOSP,
|
2019-02-21 02:49:26 +01:00
|
|
|
DHTB,
|
|
|
|
BLOB,
|
|
|
|
/* Compression formats */
|
2018-01-29 15:16:02 +01:00
|
|
|
GZIP,
|
|
|
|
XZ,
|
|
|
|
LZMA,
|
|
|
|
BZIP2,
|
|
|
|
LZ4,
|
|
|
|
LZ4_LEGACY,
|
2019-05-28 17:47:52 +02:00
|
|
|
/* Unsupported compression */
|
2019-02-21 02:49:26 +01:00
|
|
|
LZOP,
|
2019-05-28 17:47:52 +02:00
|
|
|
/* Misc */
|
2018-01-29 15:16:02 +01:00
|
|
|
MTK,
|
|
|
|
DTB,
|
2018-01-28 20:12:35 +01:00
|
|
|
} format_t;
|
2017-09-12 09:27:28 +02:00
|
|
|
|
2019-02-21 02:49:26 +01:00
|
|
|
#define COMPRESSED(fmt) ((fmt) >= GZIP && (fmt) <= LZ4_LEGACY)
|
2019-06-06 21:56:17 +02:00
|
|
|
#define COMPRESSED_ANY(fmt) ((fmt) >= GZIP && (fmt) <= LZOP)
|
2017-10-07 16:08:10 +02:00
|
|
|
|
2018-01-28 20:12:35 +01:00
|
|
|
#define BOOT_MAGIC "ANDROID!"
|
2017-09-12 09:27:28 +02:00
|
|
|
#define CHROMEOS_MAGIC "CHROMEOS"
|
2019-03-08 06:47:15 +01:00
|
|
|
#define GZIP1_MAGIC "\x1f\x8b"
|
|
|
|
#define GZIP2_MAGIC "\x1f\x9e"
|
|
|
|
#define LZOP_MAGIC "\x89""LZO"
|
|
|
|
#define XZ_MAGIC "\xfd""7zXZ"
|
2017-09-12 09:27:28 +02:00
|
|
|
#define BZIP_MAGIC "BZh"
|
|
|
|
#define LZ4_LEG_MAGIC "\x02\x21\x4c\x18"
|
2019-03-08 06:47:15 +01:00
|
|
|
#define LZ41_MAGIC "\x03\x21\x4c\x18"
|
|
|
|
#define LZ42_MAGIC "\x04\x22\x4d\x18"
|
2017-09-12 09:27:28 +02:00
|
|
|
#define MTK_MAGIC "\x88\x16\x88\x58"
|
|
|
|
#define LG_BUMP_MAGIC "\x41\xa9\xe4\x67\x74\x4d\x1d\x1b\xa4\x29\xf2\xec\xea\x65\x52\x79"
|
2018-01-29 15:16:02 +01:00
|
|
|
#define DHTB_MAGIC "\x44\x48\x54\x42\x01\x00\x00\x00"
|
|
|
|
#define SEANDROID_MAGIC "SEANDROIDENFORCE"
|
2018-01-29 22:20:18 +01:00
|
|
|
#define TEGRABLOB_MAGIC "-SIGNED-BY-SIGNBLOB-"
|
2019-05-20 02:18:18 +02:00
|
|
|
#define NOOKHD_RL_MAGIC "Red Loader"
|
|
|
|
#define NOOKHD_GL_MAGIC "Green Loader"
|
|
|
|
#define NOOKHD_GR_MAGIC "Green Recovery"
|
|
|
|
#define NOOKHD_EB_MAGIC "eMMC boot.img+secondloader"
|
|
|
|
#define NOOKHD_ER_MAGIC "eMMC recovery.img+secondloader"
|
2018-02-22 12:29:38 +01:00
|
|
|
#define NOOKHD_PRE_HEADER_SZ 1048576
|
|
|
|
#define ACCLAIM_MAGIC "BauwksBoot"
|
|
|
|
#define ACCLAIM_PRE_HEADER_SZ 262144
|
2017-09-12 09:27:28 +02:00
|
|
|
|
2019-02-21 02:49:26 +01:00
|
|
|
class Fmt2Name {
|
|
|
|
public:
|
|
|
|
const char *operator[](format_t fmt);
|
|
|
|
};
|
|
|
|
|
|
|
|
class Fmt2Ext {
|
|
|
|
public:
|
|
|
|
const char *operator[](format_t fmt);
|
|
|
|
};
|
|
|
|
|
2018-02-09 20:34:13 +01:00
|
|
|
format_t check_fmt(const void *buf, size_t len);
|
2019-02-21 02:49:26 +01:00
|
|
|
|
|
|
|
extern std::map<std::string_view, format_t> name2fmt;
|
|
|
|
extern Fmt2Name fmt2name;
|
|
|
|
extern Fmt2Ext fmt2ext;
|