Magisk/native/jni/magiskboot/bootimg.h

269 lines
7.6 KiB
C
Raw Normal View History

#include <stdint.h>
2018-01-28 20:12:35 +01:00
#include "format.h"
#ifndef _BOOT_IMAGE_H_
#define _BOOT_IMAGE_H_
struct boot_img_hdr_base {
2018-01-28 19:44:30 +01:00
char magic[8];
uint32_t kernel_size; /* size in bytes */
uint32_t kernel_addr; /* physical load addr */
uint32_t ramdisk_size; /* size in bytes */
uint32_t ramdisk_addr; /* physical load addr */
uint32_t second_size; /* size in bytes */
uint32_t second_addr; /* physical load addr */
} __attribute__((packed));
2018-01-28 19:44:30 +01:00
struct boot_img_hdr_v0 : public boot_img_hdr_base {
2018-01-28 19:44:30 +01:00
uint32_t tags_addr; /* physical addr for kernel tags */
uint32_t page_size; /* flash page size we assume */
/* In header v1, this field is used for header version
* However, on some devices like Samsung, this field is used to store DTB
* We will treat this field differently based on its value */
union {
uint32_t header_version; /* the version of the header */
uint32_t extra_size; /* extra blob size in bytes */
};
2018-01-28 19:44:30 +01:00
/* operating system version and security patch level; for
* version "A.B.C" and patch level "Y-M-D":
* ver = A << 14 | B << 7 | C (7 bits for each of A, B, C)
* lvl = ((Y - 2000) & 127) << 4 | M (7 bits for Y, 4 bits for M)
* os_version = ver << 11 | lvl */
uint32_t os_version;
char name[16]; /* asciiz product name */
char cmdline[512];
2018-01-29 15:16:02 +01:00
char id[32]; /* timestamp / checksum / sha1 / etc */
2018-01-28 19:44:30 +01:00
/* Supplemental command line data; kept here to maintain
* binary compatibility with older versions of mkbootimg */
char extra_cmdline[1024];
} __attribute__((packed));
struct boot_img_hdr_v1 : public boot_img_hdr_v0 {
uint32_t recovery_dtbo_size; /* size in bytes for recovery DTBO image */
uint64_t recovery_dtbo_offset; /* offset to recovery dtbo in boot image */
uint32_t header_size;
} __attribute__((packed));
// Default to hdr v1
typedef boot_img_hdr_v1 boot_img_hdr;
// Special Samsung header
struct boot_img_hdr_pxa : public boot_img_hdr_base {
2018-01-28 19:44:30 +01:00
uint32_t extra_size; /* extra blob size in bytes */
uint32_t unknown; /* unknown value */
uint32_t tags_addr; /* physical addr for kernel tags */
uint32_t page_size; /* flash page size we assume */
2018-01-28 19:44:30 +01:00
char name[24]; /* asciiz product name */
char cmdline[512];
2018-01-29 15:16:02 +01:00
char id[32]; /* timestamp / checksum / sha1 / etc */
2018-01-28 19:44:30 +01:00
/* Supplemental command line data; kept here to maintain
* binary compatibility with older versions of mkbootimg */
char extra_cmdline[1024];
} __attribute__((packed));
/*
** +-----------------+
** | boot header | 1 page
** +-----------------+
** | kernel | n pages
** +-----------------+
** | ramdisk | m pages
** +-----------------+
** | second stage | o pages
** +-----------------+
2018-01-28 19:44:30 +01:00
** | extra blob | p pages
2017-02-27 22:37:47 +01:00
** +-----------------+
** | recovery dtbo | q pages
** +-----------------+
**
** n = (kernel_size + page_size - 1) / page_size
** m = (ramdisk_size + page_size - 1) / page_size
** o = (second_size + page_size - 1) / page_size
2017-10-07 16:08:10 +02:00
** p = (extra_size + page_size - 1) / page_size
** q = (recovery_dtbo_size + page_size - 1) / page_size
**
** 0. all entities are page_size aligned in flash
** 1. kernel and ramdisk are required (size != 0)
** 2. second is optional (second_size == 0 -> no second)
** 3. load each element (kernel, ramdisk, second) at
** the specified physical address (kernel_addr, etc)
** 4. prepare tags at tag_addr. kernel_args[] is
** appended to the kernel commandline in the tags.
** 5. r0 = 0, r1 = MACHINE_TYPE, r2 = tags_addr
** 6. if second_size != 0: jump to second_addr
** else: jump to kernel_addr
*/
struct mtk_hdr {
2019-02-21 08:54:37 +01:00
uint32_t magic; /* MTK magic */
uint32_t size; /* Size of the content */
char name[32]; /* The type of the header */
} __attribute__((packed));
2017-03-12 21:19:30 +01:00
struct dhtb_hdr {
2019-02-21 08:54:37 +01:00
char magic[8]; /* DHTB magic */
uint8_t checksum[40]; /* Payload SHA256, whole image + SEANDROIDENFORCE + 0xFFFFFFFF */
uint32_t size; /* Payload size, whole image + SEANDROIDENFORCE + 0xFFFFFFFF */
} __attribute__((packed));
2018-01-29 15:16:02 +01:00
struct blob_hdr {
2018-01-29 22:20:18 +01:00
char secure_magic[20]; /* "-SIGNED-BY-SIGNBLOB-" */
uint32_t datalen; /* 0x00000000 */
uint32_t signature; /* 0x00000000 */
char magic[16]; /* "MSM-RADIO-UPDATE" */
uint32_t hdr_version; /* 0x00010000 */
uint32_t hdr_size; /* Size of header */
uint32_t part_offset; /* Same as size */
uint32_t num_parts; /* Number of partitions */
uint32_t unknown[7]; /* All 0x00000000 */
char name[4]; /* Name of partition */
uint32_t offset; /* offset in blob where this partition starts */
uint32_t size; /* Size of data */
uint32_t version; /* 0x00000001 */
} __attribute__((packed));
2018-01-29 22:20:18 +01:00
// Flags
#define MTK_KERNEL 1 << 1
#define MTK_RAMDISK 1 << 2
#define CHROMEOS_FLAG 1 << 3
#define DHTB_FLAG 1 << 4
#define SEANDROID_FLAG 1 << 5
#define LG_BUMP_FLAG 1 << 6
#define SHA256_FLAG 1 << 7
#define BLOB_FLAG 1 << 8
#define NOOKHD_FLAG 1 << 9
#define ACCLAIM_FLAG 1 << 10
2019-02-21 08:54:37 +01:00
struct dyn_img_hdr {
#define dyn_access(x) (pxa ? hdr_pxa->x : v1_hdr->x)
2019-02-21 10:14:52 +01:00
#define dyn_get(name, type) \
type name() const { return dyn_access(name); }
#define dyn_ref(name, type) \
type &name() { return dyn_access(name); }
#define v1_ref(name, type, alt) \
type &name() { if (pxa) { alt = 0; return alt; } return v1_hdr->name; }
2019-02-21 08:54:37 +01:00
2019-02-21 10:14:52 +01:00
dyn_ref(page_size, uint32_t);
2019-02-21 08:54:37 +01:00
dyn_get(name, char *);
dyn_get(cmdline, char *);
dyn_get(id, char *);
dyn_get(extra_cmdline, char *);
2019-02-21 10:14:52 +01:00
v1_ref(os_version, uint32_t, j32);
v1_ref(recovery_dtbo_size, uint32_t, j32);
v1_ref(recovery_dtbo_offset, uint64_t, j64);
v1_ref(header_size, uint32_t, j32);
2019-02-21 08:54:37 +01:00
dyn_img_hdr() : pxa(false), img_hdr(nullptr) {}
~dyn_img_hdr() {
if (pxa)
delete hdr_pxa;
else
delete v1_hdr;
}
uint32_t header_version() {
// There won't be v4 header any time soon...
// If larger than 4, assume this field will be treated as extra_size
2019-02-21 10:14:52 +01:00
return pxa || v1_hdr->header_version > 4 ? 0 : v1_hdr->header_version;
2019-02-21 08:54:37 +01:00
}
2019-02-21 10:14:52 +01:00
uint32_t &extra_size() {
2019-02-21 08:54:37 +01:00
// If header version > 0, we should treat this field as header_version
2019-02-21 10:14:52 +01:00
if (header_version()) {
j32 = 0;
return j32;
}
return dyn_access(extra_size);
2019-02-21 08:54:37 +01:00
}
size_t hdr_size() {
return pxa ? sizeof(boot_img_hdr_pxa) : sizeof(boot_img_hdr);
}
void set_hdr(boot_img_hdr *h) {
v1_hdr = h;
}
void set_hdr(boot_img_hdr_pxa *h) {
hdr_pxa = h;
pxa = true;
}
boot_img_hdr_base *operator-> () const {
return img_hdr;
};
boot_img_hdr_base * const &operator* () const {
return img_hdr;
}
private:
bool pxa;
union {
2019-02-21 10:14:52 +01:00
/* Main header could be either AOSP or PXA,
* but both of them is a base header.
2019-02-21 08:54:37 +01:00
* Same address can be interpreted in 3 ways */
boot_img_hdr_base *img_hdr; /* Common base header */
boot_img_hdr *v1_hdr; /* AOSP v1 header */
boot_img_hdr_pxa *hdr_pxa; /* Samsung PXA header */
};
2019-02-21 10:14:52 +01:00
static uint32_t j32;
static uint64_t j64;
2019-02-21 08:54:37 +01:00
};
struct boot_img {
2018-01-28 19:44:30 +01:00
// Memory map of the whole image
uint8_t *map_addr;
2018-01-28 19:44:30 +01:00
size_t map_size;
// Headers
2019-02-21 08:54:37 +01:00
dyn_img_hdr hdr; /* Android image header */
mtk_hdr *k_hdr; /* MTK kernel header */
mtk_hdr *r_hdr; /* MTK ramdisk header */
blob_hdr *b_hdr; /* Tegra blob header */
2018-01-28 19:44:30 +01:00
// Flags to indicate the state of current boot image
2018-01-29 22:20:18 +01:00
uint16_t flags;
2018-01-28 19:44:30 +01:00
// The format of kernel and ramdisk
2018-01-28 20:12:35 +01:00
format_t k_fmt;
format_t r_fmt;
2018-01-28 19:44:30 +01:00
// Pointer to dtb that is appended after kernel
uint8_t *dtb;
2018-01-28 19:44:30 +01:00
uint32_t dt_size;
// Pointer to end of image
uint8_t *tail;
2018-01-28 19:44:30 +01:00
size_t tail_size;
// Pointers to blocks defined in header
uint8_t *kernel;
uint8_t *ramdisk;
uint8_t *second;
uint8_t *extra;
uint8_t *recov_dtbo;
~boot_img();
int parse_file(const char *);
int parse_image(uint8_t *);
void find_dtb();
void print_hdr();
};
#endif