2018-04-18 00:31:57 +01:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstring>
|
2018-04-18 00:26:28 +01:00
|
|
|
#include <malloc.h>
|
|
|
|
|
|
|
|
#include <switch.h>
|
2018-04-22 03:31:06 +01:00
|
|
|
#include <stratosphere.hpp>
|
2018-04-18 00:26:28 +01:00
|
|
|
|
2018-04-19 06:15:17 +01:00
|
|
|
#include "ldr_process_manager.hpp"
|
2018-04-18 19:10:45 +01:00
|
|
|
#include "ldr_debug_monitor.hpp"
|
|
|
|
#include "ldr_shell.hpp"
|
2018-04-26 23:50:43 +01:00
|
|
|
#include "ldr_ro_service.hpp"
|
2018-04-18 19:10:45 +01:00
|
|
|
|
2018-04-19 14:07:43 +01:00
|
|
|
extern "C" {
|
|
|
|
extern u32 __start__;
|
2018-04-18 00:26:28 +01:00
|
|
|
|
2018-04-19 14:07:43 +01:00
|
|
|
u32 __nx_applet_type = AppletType_None;
|
|
|
|
|
|
|
|
#define INNER_HEAP_SIZE 0x200000
|
|
|
|
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
|
|
|
|
char nx_inner_heap[INNER_HEAP_SIZE];
|
|
|
|
|
|
|
|
void __libnx_initheap(void);
|
|
|
|
void __appInit(void);
|
|
|
|
void __appExit(void);
|
|
|
|
|
|
|
|
}
|
2018-04-18 00:26:28 +01:00
|
|
|
|
|
|
|
|
2018-04-19 07:37:01 +01:00
|
|
|
void __libnx_initheap(void) {
|
2018-04-18 00:26:28 +01:00
|
|
|
void* addr = nx_inner_heap;
|
|
|
|
size_t size = nx_inner_heap_size;
|
|
|
|
|
|
|
|
/* Newlib */
|
|
|
|
extern char* fake_heap_start;
|
|
|
|
extern char* fake_heap_end;
|
|
|
|
|
|
|
|
fake_heap_start = (char*)addr;
|
|
|
|
fake_heap_end = (char*)addr + size;
|
|
|
|
}
|
|
|
|
|
2018-04-19 07:37:01 +01:00
|
|
|
void __appInit(void) {
|
|
|
|
Result rc;
|
|
|
|
|
|
|
|
/* Initialize services we need (TODO: SPL) */
|
|
|
|
rc = smInitialize();
|
2018-05-01 23:49:20 +01:00
|
|
|
if (R_FAILED(rc)) {
|
2018-04-19 07:37:01 +01:00
|
|
|
fatalSimple(MAKERESULT(Module_Libnx, LibnxError_InitFail_SM));
|
2018-05-01 23:49:20 +01:00
|
|
|
}
|
2018-04-19 07:37:01 +01:00
|
|
|
|
|
|
|
rc = fsInitialize();
|
2018-05-01 23:49:20 +01:00
|
|
|
if (R_FAILED(rc)) {
|
2018-04-19 07:37:01 +01:00
|
|
|
fatalSimple(MAKERESULT(Module_Libnx, LibnxError_InitFail_FS));
|
2018-05-01 23:49:20 +01:00
|
|
|
}
|
|
|
|
|
2018-04-19 07:37:01 +01:00
|
|
|
|
|
|
|
rc = lrInitialize();
|
2018-05-01 23:49:20 +01:00
|
|
|
if (R_FAILED(rc)) {
|
2018-04-19 07:37:01 +01:00
|
|
|
fatalSimple(0xCAFE << 4 | 1);
|
2018-05-01 23:49:20 +01:00
|
|
|
}
|
2018-04-19 07:37:01 +01:00
|
|
|
|
|
|
|
rc = fsldrInitialize();
|
2018-05-01 23:49:20 +01:00
|
|
|
if (R_FAILED(rc)) {
|
2018-04-19 07:37:01 +01:00
|
|
|
fatalSimple(0xCAFE << 4 | 2);
|
2018-05-01 23:49:20 +01:00
|
|
|
}
|
2018-05-09 13:29:56 +01:00
|
|
|
|
|
|
|
rc = splInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
fatalSimple(0xCAFE << 4 | 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for exosphere API compatibility. */
|
|
|
|
u64 exosphere_cfg;
|
|
|
|
if (R_FAILED(splGetConfig((SplConfigItem)65000, &exosphere_cfg))) {
|
2018-06-12 23:00:09 +01:00
|
|
|
//fatalSimple(0xCAFE << 4 | 0xFF);
|
2018-05-09 13:29:56 +01:00
|
|
|
/* TODO: Does Loader need to know about target firmware/master key revision? If so, extract from exosphere_cfg. */
|
|
|
|
}
|
2018-06-10 02:33:22 +01:00
|
|
|
|
2018-06-12 23:00:09 +01:00
|
|
|
//splExit();
|
2018-04-19 07:37:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __appExit(void) {
|
|
|
|
/* Cleanup services. */
|
2018-05-01 23:49:20 +01:00
|
|
|
fsdevUnmountAll();
|
2018-04-19 07:37:01 +01:00
|
|
|
fsldrExit();
|
|
|
|
lrExit();
|
|
|
|
fsExit();
|
|
|
|
smExit();
|
|
|
|
}
|
|
|
|
|
2018-04-18 00:26:28 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2018-04-18 23:24:40 +01:00
|
|
|
consoleDebugInit(debugDevice_SVC);
|
2018-04-19 14:07:43 +01:00
|
|
|
|
2018-04-18 19:10:45 +01:00
|
|
|
/* TODO: What's a good timeout value to use here? */
|
|
|
|
WaitableManager *server_manager = new WaitableManager(U64_MAX);
|
|
|
|
|
|
|
|
/* Add services to manager. */
|
2018-05-01 23:49:20 +01:00
|
|
|
server_manager->add_waitable(new ServiceServer<ProcessManagerService>("ldr:pm", 1));
|
|
|
|
server_manager->add_waitable(new ServiceServer<ShellService>("ldr:shel", 3));
|
|
|
|
server_manager->add_waitable(new ServiceServer<DebugMonitorService>("ldr:dmnt", 2));
|
2018-04-26 23:50:43 +01:00
|
|
|
if (!kernelAbove300()) {
|
|
|
|
/* On 1.0.0-2.3.0, Loader services ldr:ro instead of ro. */
|
2018-05-01 23:49:20 +01:00
|
|
|
server_manager->add_waitable(new ServiceServer<RelocatableObjectsService>("ldr:ro", 0x20));
|
2018-04-26 23:50:43 +01:00
|
|
|
}
|
2018-04-18 19:10:45 +01:00
|
|
|
|
|
|
|
/* Loop forever, servicing our services. */
|
|
|
|
server_manager->process();
|
|
|
|
|
|
|
|
/* Cleanup. */
|
|
|
|
delete server_manager;
|
2018-04-18 00:26:28 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|