2017-03-01 20:12:47 +00:00
|
|
|
#ifndef _MAGISKBOOT_H_
|
|
|
|
#define _MAGISKBOOT_H_
|
2017-02-27 21:37:47 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/sendfile.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "bootimg.h"
|
|
|
|
|
|
|
|
#define windowBits 15
|
|
|
|
#define ZLIB_GZIP 16
|
|
|
|
#define memLevel 8
|
|
|
|
#define CHUNK 0x40000
|
|
|
|
|
2017-03-01 20:12:47 +00:00
|
|
|
#define LZ4_HEADER_SIZE 19
|
|
|
|
#define LZ4_FOOTER_SIZE 4
|
|
|
|
|
2017-02-27 21:37:47 +00:00
|
|
|
#define CHROMEOS_MAGIC "CHROMEOS"
|
|
|
|
#define CHROMEOS_MAGIC_SIZE 8
|
|
|
|
|
|
|
|
#define KERNEL_FILE "kernel"
|
|
|
|
#define RAMDISK_FILE "ramdisk.cpio"
|
|
|
|
#define SECOND_FILE "second"
|
|
|
|
#define DTB_FILE "dtb"
|
|
|
|
|
|
|
|
typedef enum {
|
2017-03-02 13:59:37 +00:00
|
|
|
UNKNOWN,
|
2017-02-27 21:37:47 +00:00
|
|
|
CHROMEOS,
|
|
|
|
AOSP,
|
|
|
|
ELF,
|
|
|
|
GZIP,
|
|
|
|
LZOP,
|
|
|
|
XZ,
|
|
|
|
LZMA,
|
|
|
|
BZIP2,
|
|
|
|
LZ4,
|
2017-03-02 13:59:37 +00:00
|
|
|
MTK,
|
2017-02-27 21:37:47 +00:00
|
|
|
QCDT,
|
|
|
|
} file_t;
|
|
|
|
|
|
|
|
// Global variables
|
|
|
|
extern unsigned char *base, *kernel, *ramdisk, *second, *dtb;
|
|
|
|
extern boot_img_hdr hdr;
|
|
|
|
extern file_t boot_type, ramdisk_type, dtb_type;
|
|
|
|
extern int mtk_kernel, mtk_ramdisk;
|
|
|
|
|
|
|
|
// Main entries
|
|
|
|
void unpack(const char *image);
|
|
|
|
void repack(const char *image);
|
|
|
|
void hexpatch(char *image, char *from, char *to);
|
|
|
|
void error(int rc, const char *msg, ...);
|
|
|
|
void parse_img(unsigned char *orig, size_t size);
|
2017-03-02 13:59:37 +00:00
|
|
|
file_t check_type(unsigned char *buf);
|
2017-02-27 21:37:47 +00:00
|
|
|
|
|
|
|
// Compressions
|
2017-02-28 16:46:11 +00:00
|
|
|
void gzip(int mode, const char* filename, unsigned char* buf, size_t size);
|
|
|
|
void lzma(int mode, const char* filename, unsigned char* buf, size_t size);
|
2017-03-01 20:12:47 +00:00
|
|
|
void lz4(int mode, const char* filename, unsigned char* buf, size_t size);
|
2017-03-01 21:23:31 +00:00
|
|
|
void bzip2(int mode, const char* filename, unsigned char* buf, size_t size);
|
2017-03-02 13:59:37 +00:00
|
|
|
int comp(file_t type, const char *to, unsigned char *from, size_t size);
|
|
|
|
int decomp(file_t type, const char *to, unsigned char *from, size_t size);
|
2017-02-27 21:37:47 +00:00
|
|
|
|
|
|
|
#endif
|