2018-04-07 22:43:54 +01:00
|
|
|
#ifndef FUSEE_LOADER_H
|
|
|
|
#define FUSEE_LOADER_H
|
|
|
|
|
2018-04-09 22:34:23 +01:00
|
|
|
#include "utils.h"
|
2018-05-07 22:32:45 +01:00
|
|
|
#include "chainloader.h"
|
2018-04-07 22:43:54 +01:00
|
|
|
|
2018-04-08 12:51:57 +01:00
|
|
|
typedef struct {
|
2018-05-07 22:32:45 +01:00
|
|
|
char path[0x100];
|
2018-04-08 12:51:57 +01:00
|
|
|
const char *key;
|
|
|
|
uintptr_t load_address;
|
2018-04-26 11:47:22 +01:00
|
|
|
size_t load_size;
|
2018-04-08 12:51:57 +01:00
|
|
|
} load_file_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2018-04-09 22:34:23 +01:00
|
|
|
const char *bct0;
|
2018-05-07 22:32:45 +01:00
|
|
|
uintptr_t chainload_entrypoint;
|
|
|
|
size_t file_id_of_entrypoint;
|
|
|
|
size_t nb_files;
|
2018-04-09 22:34:23 +01:00
|
|
|
load_file_t package2_loadfile;
|
|
|
|
load_file_t exosphere_loadfile;
|
|
|
|
load_file_t tsecfw_loadfile;
|
|
|
|
load_file_t warmboot_loadfile;
|
2018-05-07 22:32:45 +01:00
|
|
|
char custom_splash_path[0x100];
|
|
|
|
char file_paths[CHAINLOADER_MAX_ENTRIES][0x100];
|
2018-04-08 12:51:57 +01:00
|
|
|
} loader_ctx_t;
|
|
|
|
|
|
|
|
#define LOADER_ENTRYPOINT_KEY "entrypoint"
|
|
|
|
#define LOADER_LOADLIST_KEY "loadlist"
|
2018-04-10 23:09:00 +01:00
|
|
|
#define LOADER_CUSTOMSPLASH_KEY "custom_splash"
|
2018-04-08 12:51:57 +01:00
|
|
|
|
2018-04-09 22:34:23 +01:00
|
|
|
#define LOADER_PACKAGE2_KEY "package2"
|
|
|
|
#define LOADER_EXOSPHERE_KEY "exosphere"
|
|
|
|
#define LOADER_TSECFW_KEY "tsecfw"
|
|
|
|
#define LOADER_WARMBOOT_KEY "warmboot"
|
|
|
|
|
2018-04-08 12:51:57 +01:00
|
|
|
/* TODO: Should we allow files bigger than 16 MB? */
|
2018-05-07 22:32:45 +01:00
|
|
|
//#define LOADER_FILESIZE_MAX 0x01000000
|
2018-04-08 12:51:57 +01:00
|
|
|
|
2018-04-09 22:34:23 +01:00
|
|
|
loader_ctx_t *get_loader_ctx(void);
|
|
|
|
|
|
|
|
void load_payload(const char *bct0);
|
2018-04-07 22:43:54 +01:00
|
|
|
|
2018-05-07 22:32:45 +01:00
|
|
|
#endif
|