2018-12-06 05:08:04 +00:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-12-06 05:08:04 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2018-12-06 05:08:04 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstring>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
|
|
|
#include <switch.h>
|
|
|
|
#include <atmosphere.h>
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
2018-12-06 21:16:33 +00:00
|
|
|
#include "dmnt_service.hpp"
|
2019-09-16 09:22:08 +01:00
|
|
|
#include "cheat/dmnt_cheat_service.hpp"
|
2018-12-06 07:35:09 +00:00
|
|
|
|
2018-12-06 05:08:04 +00:00
|
|
|
extern "C" {
|
|
|
|
extern u32 __start__;
|
|
|
|
|
|
|
|
u32 __nx_applet_type = AppletType_None;
|
|
|
|
|
2019-09-16 10:14:23 +01:00
|
|
|
#define INNER_HEAP_SIZE 0xC0000
|
2018-12-06 05:08:04 +00:00
|
|
|
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
|
|
|
|
char nx_inner_heap[INNER_HEAP_SIZE];
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2018-12-06 05:08:04 +00:00
|
|
|
void __libnx_initheap(void);
|
|
|
|
void __appInit(void);
|
|
|
|
void __appExit(void);
|
|
|
|
}
|
|
|
|
|
2019-07-03 04:54:16 +01:00
|
|
|
/* Exception handling. */
|
|
|
|
sts::ncm::TitleId __stratosphere_title_id = sts::ncm::TitleId::Dmnt;
|
2018-12-06 05:08:04 +00:00
|
|
|
|
|
|
|
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) {
|
2019-03-03 14:44:21 +00:00
|
|
|
SetFirmwareVersionForLibnx();
|
2019-04-22 20:40:53 +01:00
|
|
|
|
|
|
|
DoWithSmSession([&]() {
|
2019-06-20 10:00:59 +01:00
|
|
|
R_ASSERT(pmdmntInitialize());
|
2019-09-16 10:14:23 +01:00
|
|
|
R_ASSERT(pminfoInitialize());
|
2019-06-20 10:00:59 +01:00
|
|
|
R_ASSERT(ldrDmntInitialize());
|
2019-04-24 13:19:37 +01:00
|
|
|
/* TODO: We provide this on every sysver via ro. Do we need a shim? */
|
|
|
|
if (GetRuntimeFirmwareVersion() >= FirmwareVersion_300) {
|
2019-06-20 10:00:59 +01:00
|
|
|
R_ASSERT(roDmntInitialize());
|
2019-04-22 20:40:53 +01:00
|
|
|
}
|
2019-06-20 10:00:59 +01:00
|
|
|
R_ASSERT(nsdevInitialize());
|
|
|
|
R_ASSERT(lrInitialize());
|
|
|
|
R_ASSERT(setInitialize());
|
|
|
|
R_ASSERT(setsysInitialize());
|
2019-06-20 12:04:11 +01:00
|
|
|
R_ASSERT(hidInitialize());
|
2019-06-20 10:00:59 +01:00
|
|
|
R_ASSERT(fsInitialize());
|
2019-04-22 20:40:53 +01:00
|
|
|
});
|
|
|
|
|
2019-06-20 10:00:59 +01:00
|
|
|
R_ASSERT(fsdevMountSdmc());
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2018-12-06 05:08:04 +00:00
|
|
|
CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __appExit(void) {
|
|
|
|
/* Cleanup services. */
|
|
|
|
fsdevUnmountAll();
|
|
|
|
fsExit();
|
2019-03-05 15:50:50 +00:00
|
|
|
hidExit();
|
2019-03-06 08:20:17 +00:00
|
|
|
setsysExit();
|
2018-12-06 05:08:04 +00:00
|
|
|
setExit();
|
|
|
|
lrExit();
|
|
|
|
nsdevExit();
|
2019-04-22 17:50:45 +01:00
|
|
|
roDmntExit();
|
2018-12-06 05:08:04 +00:00
|
|
|
ldrDmntExit();
|
2019-09-16 10:14:23 +01:00
|
|
|
pminfoExit();
|
2018-12-06 05:08:04 +00:00
|
|
|
pmdmntExit();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2019-02-27 10:50:53 +00:00
|
|
|
/* Nintendo uses four threads. Add a fifth for our cheat service. */
|
2019-06-20 21:15:39 +01:00
|
|
|
static auto s_server_manager = WaitableManager(5);
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2018-12-06 07:35:09 +00:00
|
|
|
/* Create services. */
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2019-03-03 14:44:21 +00:00
|
|
|
/* TODO: Implement rest of dmnt:- in ams.tma development branch. */
|
|
|
|
/* server_manager->AddWaitable(new ServiceServer<DebugMonitorService>("dmnt:-", 4)); */
|
2019-09-16 09:22:08 +01:00
|
|
|
s_server_manager.AddWaitable(new ServiceServer<sts::dmnt::cheat::CheatService>("dmnt:cht", 1));
|
2018-12-06 07:35:09 +00:00
|
|
|
|
|
|
|
/* Loop forever, servicing our services. */
|
2019-06-20 21:15:39 +01:00
|
|
|
s_server_manager.Process();
|
2018-12-06 05:08:04 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|