2018-05-05 21:55:40 +00:00
|
|
|
#include <stdio.h>
|
2018-05-06 15:22:12 +00:00
|
|
|
#include <stdlib.h>
|
2018-05-13 17:53:55 +00:00
|
|
|
#include <string.h>
|
2018-05-06 15:22:12 +00:00
|
|
|
#include <errno.h>
|
2018-05-07 21:32:45 +00:00
|
|
|
#include <malloc.h>
|
2018-04-07 21:43:54 +00:00
|
|
|
#include "utils.h"
|
2018-05-20 12:11:46 +00:00
|
|
|
#include "panic.h"
|
2018-05-21 01:50:53 +00:00
|
|
|
#include "exception_handlers.h"
|
2018-04-07 21:43:54 +00:00
|
|
|
#include "loader.h"
|
2018-05-07 21:32:45 +00:00
|
|
|
#include "chainloader.h"
|
2018-04-08 11:06:04 +00:00
|
|
|
#include "stage2.h"
|
2018-04-09 21:34:23 +00:00
|
|
|
#include "nxboot.h"
|
2018-05-05 21:55:40 +00:00
|
|
|
#include "console.h"
|
2018-05-13 21:49:50 +00:00
|
|
|
#include "fs_utils.h"
|
2018-05-13 17:53:55 +00:00
|
|
|
#include "switch_fs.h"
|
|
|
|
#include "gpt.h"
|
2018-05-07 21:32:45 +00:00
|
|
|
#include "display/video_fb.h"
|
2018-04-08 11:13:15 +00:00
|
|
|
|
2018-05-08 14:51:43 +00:00
|
|
|
extern void (*__program_exit_callback)(int rc);
|
2018-04-07 21:43:54 +00:00
|
|
|
|
2018-05-08 14:51:43 +00:00
|
|
|
static stage2_args_t *g_stage2_args;
|
|
|
|
static bool g_do_nxboot;
|
2018-04-08 11:06:04 +00:00
|
|
|
|
2018-05-08 14:51:43 +00:00
|
|
|
static void setup_env(void) {
|
2018-05-09 20:20:14 +00:00
|
|
|
/* Set the console up. */
|
2018-06-04 17:17:23 +00:00
|
|
|
if (console_init(g_stage2_args->display_initialized) == -1) {
|
2018-04-08 11:13:15 +00:00
|
|
|
generic_panic();
|
|
|
|
}
|
2018-05-04 21:56:01 +00:00
|
|
|
|
2018-05-21 01:50:53 +00:00
|
|
|
/* Set up exception handlers. */
|
|
|
|
setup_exception_handlers();
|
|
|
|
|
2018-07-04 21:04:41 +00:00
|
|
|
if(/*switchfs_import_mmc_structs(&g_stage2_args->sd_mmc, NULL) == -1 ||*/ switchfs_mount_all() == -1) {
|
2018-05-21 01:50:53 +00:00
|
|
|
fatal_error("Failed to mount at least one parition: %s\n", strerror(errno));
|
2018-05-08 14:51:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: What other hardware init should we do here? */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cleanup_env(void) {
|
|
|
|
/* Unmount everything (this causes all open files to be flushed and closed) */
|
2018-05-13 17:53:55 +00:00
|
|
|
switchfs_unmount_all();
|
2018-05-09 20:20:14 +00:00
|
|
|
//console_end();
|
2018-05-08 14:51:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void exit_callback(int rc) {
|
|
|
|
(void)rc;
|
|
|
|
if (g_do_nxboot) {
|
|
|
|
/* TODO: halt */
|
|
|
|
} else {
|
|
|
|
relocate_and_chainload();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allow for main(int argc, void **argv) signature. */
|
|
|
|
#pragma GCC diagnostic ignored "-Wmain"
|
|
|
|
|
|
|
|
int main(int argc, void **argv) {
|
|
|
|
loader_ctx_t *loader_ctx = get_loader_ctx();
|
|
|
|
|
2018-05-07 21:32:45 +00:00
|
|
|
if (argc != STAGE2_ARGC) {
|
2018-06-05 14:18:02 +00:00
|
|
|
generic_panic();
|
2018-05-07 21:32:45 +00:00
|
|
|
}
|
|
|
|
g_stage2_args = (stage2_args_t *)argv[STAGE2_ARGV_ARGUMENT_STRUCT];
|
|
|
|
|
|
|
|
if(g_stage2_args->version != 0) {
|
2018-06-05 14:18:02 +00:00
|
|
|
generic_panic();
|
2018-05-07 21:32:45 +00:00
|
|
|
}
|
2018-05-06 11:03:45 +00:00
|
|
|
|
2018-06-05 14:18:02 +00:00
|
|
|
/* Initialize the display, console, FS, etc. */
|
|
|
|
setup_env();
|
|
|
|
|
2018-05-05 21:55:40 +00:00
|
|
|
printf(u8"Welcome to Atmosphère Fusée Stage 2!\n");
|
|
|
|
printf("Stage 2 executing from: %s\n", (const char *)argv[STAGE2_ARGV_PROGRAM_PATH]);
|
2018-05-04 21:56:01 +00:00
|
|
|
|
2018-04-07 21:43:54 +00:00
|
|
|
/* This will load all remaining binaries off of the SD. */
|
2018-05-07 21:32:45 +00:00
|
|
|
load_payload(g_stage2_args->bct0);
|
2018-05-04 21:56:01 +00:00
|
|
|
|
2018-05-05 21:55:40 +00:00
|
|
|
printf("Loaded payloads!\n");
|
2018-05-04 21:56:01 +00:00
|
|
|
|
2018-05-08 14:51:43 +00:00
|
|
|
g_do_nxboot = loader_ctx->chainload_entrypoint == 0;
|
|
|
|
if (g_do_nxboot) {
|
2018-05-13 22:06:48 +00:00
|
|
|
printf("Now performing nxboot.\n");
|
2018-05-08 14:51:43 +00:00
|
|
|
nxboot_main();
|
|
|
|
} else {
|
2018-05-07 21:32:45 +00:00
|
|
|
/* TODO: What else do we want to do in terms of argc/argv? */
|
2018-05-14 19:17:06 +00:00
|
|
|
const char *path = get_loader_ctx()->file_paths_to_load[get_loader_ctx()->file_id_of_entrypoint];
|
2018-05-13 22:06:48 +00:00
|
|
|
printf("Now chainloading.\n");
|
2018-05-08 14:51:43 +00:00
|
|
|
g_chainloader_argc = 1;
|
2018-05-07 21:32:45 +00:00
|
|
|
strcpy(g_chainloader_arg_data, path);
|
2018-04-09 21:34:23 +00:00
|
|
|
}
|
2018-05-08 14:51:43 +00:00
|
|
|
|
|
|
|
/* Deinitialize the display, console, FS, etc. */
|
|
|
|
cleanup_env();
|
|
|
|
|
|
|
|
/* Finally, after the cleanup routines (__libc_fini_array, etc.) are called, chainload or halt ourselves. */
|
|
|
|
__program_exit_callback = exit_callback;
|
|
|
|
|
2018-04-07 21:43:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|