2018-11-10 08:11:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstring>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
|
|
|
#include <switch.h>
|
|
|
|
#include <atmosphere.h>
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
|
|
|
#include "fatal_types.hpp"
|
|
|
|
#include "fatal_private.hpp"
|
|
|
|
#include "fatal_user.hpp"
|
2018-11-10 20:38:24 +00:00
|
|
|
#include "fatal_config.hpp"
|
2018-11-10 21:15:48 +00:00
|
|
|
#include "fatal_repair.hpp"
|
2018-11-13 14:03:30 +00:00
|
|
|
#include "fatal_font.hpp"
|
2018-11-10 08:11:38 +00:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern u32 __start__;
|
|
|
|
|
|
|
|
u32 __nx_applet_type = AppletType_None;
|
|
|
|
|
2018-11-14 22:13:31 +00:00
|
|
|
#define INNER_HEAP_SIZE 0x2A0000
|
2018-11-10 08:11:38 +00:00
|
|
|
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
|
|
|
|
char nx_inner_heap[INNER_HEAP_SIZE];
|
|
|
|
|
2018-11-10 19:59:55 +00:00
|
|
|
u32 __nx_nv_transfermem_size = 0x40000;
|
2018-11-13 06:26:13 +00:00
|
|
|
ViLayerFlags __nx_vi_stray_layer_flags = (ViLayerFlags)0;
|
|
|
|
|
2018-11-10 08:11:38 +00:00
|
|
|
void __libnx_initheap(void);
|
|
|
|
void __appInit(void);
|
|
|
|
void __appExit(void);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void __libnx_initheap(void) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __appInit(void) {
|
|
|
|
Result rc;
|
|
|
|
|
|
|
|
rc = smInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
2018-11-10 09:19:52 +00:00
|
|
|
std::abort();
|
2018-11-10 08:11:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 20:38:24 +00:00
|
|
|
rc = setInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-10 08:11:38 +00:00
|
|
|
rc = setsysInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
2018-11-10 09:19:52 +00:00
|
|
|
std::abort();
|
2018-11-10 08:11:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 08:54:12 +00:00
|
|
|
rc = pminfoInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
2018-11-10 09:19:52 +00:00
|
|
|
std::abort();
|
2018-11-10 08:54:12 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 11:51:19 +00:00
|
|
|
rc = i2cInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-10 09:47:02 +00:00
|
|
|
rc = bpcInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-10 11:05:14 +00:00
|
|
|
rc = pcvInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-10 11:16:13 +00:00
|
|
|
rc = lblInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-10 10:42:07 +00:00
|
|
|
rc = psmInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-10 09:19:52 +00:00
|
|
|
rc = spsmInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-13 14:03:30 +00:00
|
|
|
rc = plInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-30 13:33:35 +00:00
|
|
|
rc = gpioInitialize();
|
2018-11-14 22:13:31 +00:00
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = fsInitialize();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = fsdevMountSdmc();
|
|
|
|
if (R_FAILED(rc)) {
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
2018-11-10 09:19:52 +00:00
|
|
|
/* fatal cannot throw fatal, so don't do: CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION); */
|
2018-11-10 08:11:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void __appExit(void) {
|
|
|
|
/* Cleanup services. */
|
2018-11-14 22:13:31 +00:00
|
|
|
fsdevUnmountAll();
|
|
|
|
fsExit();
|
2018-11-13 14:03:30 +00:00
|
|
|
plExit();
|
2018-11-30 13:33:35 +00:00
|
|
|
gpioExit();
|
2018-11-10 09:19:52 +00:00
|
|
|
spsmExit();
|
2018-11-10 10:42:07 +00:00
|
|
|
psmExit();
|
2018-11-10 11:16:13 +00:00
|
|
|
lblExit();
|
2018-11-10 11:05:14 +00:00
|
|
|
pcvExit();
|
2018-11-10 09:47:02 +00:00
|
|
|
bpcExit();
|
2018-11-10 11:51:19 +00:00
|
|
|
i2cExit();
|
2018-11-10 08:54:12 +00:00
|
|
|
pminfoExit();
|
2018-11-10 08:11:38 +00:00
|
|
|
setsysExit();
|
2018-11-10 20:38:24 +00:00
|
|
|
setExit();
|
2018-11-10 08:11:38 +00:00
|
|
|
smExit();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2018-11-10 20:38:24 +00:00
|
|
|
/* Load settings from set:sys. */
|
|
|
|
InitializeFatalConfig();
|
2019-02-05 05:17:05 +00:00
|
|
|
|
2018-11-13 14:03:30 +00:00
|
|
|
/* Load shared font. */
|
|
|
|
if (R_FAILED(FontManager::InitializeSharedFont())) {
|
|
|
|
std::abort();
|
|
|
|
}
|
2018-11-10 19:59:55 +00:00
|
|
|
|
2018-11-10 21:15:48 +00:00
|
|
|
/* Check whether we should throw fatal due to repair process. */
|
|
|
|
CheckRepairStatus();
|
2018-11-10 19:59:55 +00:00
|
|
|
|
2018-11-10 08:11:38 +00:00
|
|
|
/* TODO: What's a good timeout value to use here? */
|
|
|
|
auto server_manager = new WaitableManager(1);
|
2018-11-10 19:59:55 +00:00
|
|
|
|
2018-11-10 21:15:48 +00:00
|
|
|
/* Create services. */
|
2018-11-10 08:11:38 +00:00
|
|
|
server_manager->AddWaitable(new ServiceServer<PrivateService>("fatal:p", 4));
|
|
|
|
server_manager->AddWaitable(new ServiceServer<UserService>("fatal:u", 4));
|
2018-11-10 20:38:24 +00:00
|
|
|
server_manager->AddWaitable(GetFatalSettingsEvent());
|
2018-11-10 08:11:38 +00:00
|
|
|
|
|
|
|
/* Loop forever, servicing our services. */
|
|
|
|
server_manager->Process();
|
2018-11-10 19:59:55 +00:00
|
|
|
|
2018-11-10 08:11:38 +00:00
|
|
|
delete server_manager;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|