Atmosphere/stratosphere/ams_mitm/source/amsmitm_main.cpp

137 lines
3.6 KiB
C++
Raw Normal View History

2018-10-30 05:18:04 +00:00
/*
* Copyright (c) Atmosphère-NX
2018-10-30 05:18: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/>.
*/
#include <stratosphere.hpp>
2019-11-21 09:48:47 +00:00
#include "amsmitm_initialization.hpp"
2019-11-21 07:58:18 +00:00
#include "amsmitm_module_management.hpp"
#include "bpc_mitm/bpc_ams_power_utils.hpp"
2020-06-26 04:59:59 +00:00
#include "sysupdater/sysupdater_fs_utils.hpp"
2018-10-30 05:18:04 +00:00
extern "C" {
extern u32 __start__;
u32 __nx_applet_type = AppletType_None;
2019-11-21 07:58:18 +00:00
u32 __nx_fs_num_sessions = 1;
2018-10-30 05:18:04 +00:00
2019-01-29 10:29:29 +00:00
#define INNER_HEAP_SIZE 0x1000000
2018-10-30 05:18:04 +00:00
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
char nx_inner_heap[INNER_HEAP_SIZE];
2019-06-20 11:04:33 +00:00
2018-10-30 05:18:04 +00:00
void __libnx_initheap(void);
void __appInit(void);
void __appExit(void);
/* Exception handling. */
alignas(16) u8 __nx_exception_stack[ams::os::MemoryPageSize];
u64 __nx_exception_stack_size = sizeof(__nx_exception_stack);
void __libnx_exception_handler(ThreadExceptionDump *ctx);
2021-01-19 10:34:02 +00:00
void *__libnx_alloc(size_t size);
void *__libnx_aligned_alloc(size_t alignment, size_t size);
void __libnx_free(void *mem);
}
2019-11-21 07:58:18 +00:00
namespace ams {
/* Override. */
void ExceptionHandler(FatalErrorContext *ctx) {
/* We're bpc-mitm (or ams_mitm, anyway), so manually reboot to fatal error. */
mitm::bpc::RebootForFatalError(ctx);
2019-11-21 07:58:18 +00:00
}
2019-07-03 03:54:16 +00:00
2018-10-30 05:18:04 +00:00
}
2019-11-21 07:58:18 +00:00
using namespace ams;
void __libnx_exception_handler(ThreadExceptionDump *ctx) {
ams::CrashHandler(ctx);
}
2018-10-30 05:18: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) {
hos::InitializeForStratosphere();
2019-06-20 11:04:33 +00:00
R_ABORT_UNLESS(sm::Initialize());
R_ABORT_UNLESS(fsInitialize());
R_ABORT_UNLESS(pmdmntInitialize());
R_ABORT_UNLESS(pminfoInitialize());
ncm::Initialize();
spl::InitializeForFs();
2019-06-20 11:04:33 +00:00
/* Disable auto-abort in fs operations. */
fs::SetEnabledAutoAbort(false);
2020-06-26 04:59:59 +00:00
/* Initialize fssystem library. */
fssystem::InitializeForFileSystemProxy();
/* Configure ncm to use fssystem library to mount content from the sd card. */
ncm::SetMountContentMetaFunction(mitm::sysupdater::MountSdCardContentMeta);
2020-06-26 04:59:59 +00:00
2019-11-21 07:58:18 +00:00
ams::CheckApiVersion();
2018-10-30 05:18:04 +00:00
}
void __appExit(void) {
/* Cleanup services. */
spl::Finalize();
ncm::Finalize();
pminfoExit();
pmdmntExit();
2019-01-29 10:29:29 +00:00
fsExit();
2018-10-30 05:18:04 +00:00
}
void *__libnx_alloc(size_t size) {
AMS_ABORT("__libnx_alloc was called");
2021-01-19 10:34:02 +00:00
}
void *__libnx_aligned_alloc(size_t alignment, size_t size) {
AMS_ABORT("__libnx_aligned_alloc was called");
}
void __libnx_free(void *mem) {
AMS_ABORT("__libnx_free was called");
2021-01-19 10:34:02 +00:00
}
2019-11-21 07:58:18 +00:00
int main(int argc, char **argv) {
2021-01-27 22:20:30 +00:00
/* Register "ams" port, use up its session. */
{
svc::Handle ams_port;
R_ABORT_UNLESS(svc::ManageNamedPort(std::addressof(ams_port), "ams", 1));
svc::Handle ams_session;
R_ABORT_UNLESS(svc::ConnectToNamedPort(std::addressof(ams_session), "ams"));
}
2019-11-21 07:58:18 +00:00
/* Launch all mitm modules in sequence. */
mitm::LaunchAllModules();
2019-06-20 11:04:33 +00:00
2019-01-29 10:29:29 +00:00
/* Wait for all mitm modules to end. */
2019-11-21 07:58:18 +00:00
mitm::WaitAllModules();
2019-06-20 11:04:33 +00:00
2018-10-30 05:18:04 +00:00
return 0;
}