2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2021-10-04 20:59:10 +01:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2018-09-07 16:00:13 +01: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/>.
|
|
|
|
*/
|
2020-05-11 23:02:10 +01:00
|
|
|
#include <stratosphere.hpp>
|
2020-04-14 10:45:28 +01:00
|
|
|
#include "ldr_development_manager.hpp"
|
2019-06-26 23:46:19 +01:00
|
|
|
#include "ldr_loader_service.hpp"
|
2018-04-18 19:10:45 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace ams {
|
2019-04-12 23:28:46 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace ldr {
|
2019-10-20 01:42:53 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace {
|
2018-04-18 00:26:28 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
constinit u8 g_heap_memory[16_KB];
|
|
|
|
lmem::HeapHandle g_server_heap_handle;
|
|
|
|
constinit ams::sf::ExpHeapAllocator g_server_allocator;
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void *Allocate(size_t size) {
|
|
|
|
return lmem::AllocateFromExpHeap(g_server_heap_handle, size);
|
|
|
|
}
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void Deallocate(void *p, size_t size) {
|
|
|
|
AMS_UNUSED(size);
|
|
|
|
return lmem::FreeToExpHeap(g_server_heap_handle, p);
|
|
|
|
}
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void InitializeHeap() {
|
|
|
|
g_server_heap_handle = lmem::CreateExpHeap(g_heap_memory, sizeof(g_heap_memory), lmem::CreateOption_None);
|
|
|
|
g_server_allocator.Attach(g_server_heap_handle);
|
|
|
|
}
|
2021-01-18 14:18:14 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace {
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
struct ServerOptions {
|
2021-10-12 03:01:27 +01:00
|
|
|
static constexpr size_t PointerBufferSize = 0x400;
|
|
|
|
static constexpr size_t MaxDomains = 0;
|
|
|
|
static constexpr size_t MaxDomainObjects = 0;
|
|
|
|
static constexpr bool CanDeferInvokeRequest = false;
|
|
|
|
static constexpr bool CanManageMitmServers = false;
|
2021-10-08 01:44:54 +01:00
|
|
|
};
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* ldr:pm, ldr:shel, ldr:dmnt. */
|
|
|
|
enum PortIndex {
|
|
|
|
PortIndex_ProcessManager,
|
|
|
|
PortIndex_Shell,
|
|
|
|
PortIndex_DebugMonitor,
|
|
|
|
PortIndex_Count,
|
|
|
|
};
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
constexpr sm::ServiceName ProcessManagerServiceName = sm::ServiceName::Encode("ldr:pm");
|
|
|
|
constexpr size_t ProcessManagerMaxSessions = 1;
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
constexpr sm::ServiceName ShellServiceName = sm::ServiceName::Encode("ldr:shel");
|
|
|
|
constexpr size_t ShellMaxSessions = 3;
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
constexpr sm::ServiceName DebugMonitorServiceName = sm::ServiceName::Encode("ldr:dmnt");
|
|
|
|
constexpr size_t DebugMonitorMaxSessions = 3;
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
constinit sf::UnmanagedServiceObject<impl::IProcessManagerInterface, LoaderService> g_pm_service;
|
|
|
|
constinit sf::UnmanagedServiceObject<impl::IShellInterface, LoaderService> g_shell_service;
|
|
|
|
constinit sf::UnmanagedServiceObject<impl::IDebugMonitorInterface, LoaderService> g_dmnt_service;
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
constexpr size_t MaxSessions = ProcessManagerMaxSessions + ShellMaxSessions + DebugMonitorMaxSessions + 1;
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
using ServerManager = ams::sf::hipc::ServerManager<PortIndex_Count, ServerOptions, MaxSessions>;
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
ServerManager g_server_manager;
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void RegisterServiceSessions() {
|
|
|
|
R_ABORT_UNLESS(g_server_manager.RegisterObjectForServer(g_pm_service.GetShared(), ProcessManagerServiceName, ProcessManagerMaxSessions));
|
|
|
|
R_ABORT_UNLESS(g_server_manager.RegisterObjectForServer(g_shell_service.GetShared(), ShellServiceName, ShellMaxSessions));
|
|
|
|
R_ABORT_UNLESS(g_server_manager.RegisterObjectForServer(g_dmnt_service.GetShared(), DebugMonitorServiceName, DebugMonitorMaxSessions));
|
|
|
|
}
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void LoopProcess() {
|
|
|
|
g_server_manager.LoopProcess();
|
|
|
|
}
|
2021-01-18 14:18:14 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace init {
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void InitializeSystemModule() {
|
|
|
|
/* Initialize heap. */
|
|
|
|
ldr::InitializeHeap();
|
2018-04-18 00:26:28 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Set fs allocator. */
|
|
|
|
fs::SetAllocator(ldr::Allocate, ldr::Deallocate);
|
2018-04-18 00:26:28 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Initialize services we need. */
|
|
|
|
R_ABORT_UNLESS(sm::Initialize());
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
fs::InitializeForSystem();
|
|
|
|
lr::Initialize();
|
|
|
|
R_ABORT_UNLESS(fsldrInitialize());
|
|
|
|
spl::Initialize();
|
2018-04-18 00:26:28 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Verify that we can sanely execute. */
|
|
|
|
ams::CheckApiVersion();
|
|
|
|
}
|
2018-04-19 07:37:01 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void FinalizeSystemModule() { /* ... */ }
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void Startup() { /* ... */ }
|
2021-04-14 07:58:10 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
}
|
2019-04-22 20:40:53 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void NORETURN Exit(int rc) {
|
|
|
|
AMS_UNUSED(rc);
|
|
|
|
AMS_ABORT("Exit called by immortal process");
|
|
|
|
}
|
2018-04-19 07:37:01 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void Main() {
|
|
|
|
/* Disable auto-abort in fs operations. */
|
|
|
|
fs::SetEnabledAutoAbort(false);
|
2018-04-19 07:37:01 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Set thread name. */
|
|
|
|
os::SetThreadNamePointer(os::GetCurrentThread(), AMS_GET_SYSTEM_THREAD_NAME(ldr, Main));
|
|
|
|
AMS_ASSERT(os::GetThreadPriority(os::GetCurrentThread()) == AMS_GET_SYSTEM_THREAD_PRIORITY(ldr, Main));
|
2021-01-18 14:18:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Configure development. */
|
|
|
|
/* NOTE: Nintendo really does call the getter function three times instead of caching the value. */
|
|
|
|
ldr::SetDevelopmentForAcidProductionCheck(spl::IsDevelopment());
|
|
|
|
ldr::SetDevelopmentForAntiDowngradeCheck(spl::IsDevelopment());
|
|
|
|
ldr::SetDevelopmentForAcidSignatureCheck(spl::IsDevelopment());
|
2019-10-15 05:40:05 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Register the loader services. */
|
|
|
|
ldr::RegisterServiceSessions();
|
2019-10-15 05:40:05 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Loop forever, servicing our services. */
|
|
|
|
ldr::LoopProcess();
|
2019-10-15 05:40:05 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* This can never be reached. */
|
|
|
|
AMS_ASSUME(false);
|
|
|
|
}
|
2019-10-15 05:40:05 +01:00
|
|
|
|
2021-10-07 07:22:54 +01:00
|
|
|
}
|
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Override operator new. */
|
|
|
|
void *operator new(size_t size) {
|
|
|
|
return ams::ldr::Allocate(size);
|
2021-01-18 14:18:14 +00:00
|
|
|
}
|
2019-10-15 05:40:05 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void *operator new(size_t size, const std::nothrow_t &) {
|
|
|
|
return ams::ldr::Allocate(size);
|
2021-01-22 11:52:10 +00:00
|
|
|
}
|
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void operator delete(void *p) {
|
|
|
|
return ams::ldr::Deallocate(p, 0);
|
2019-10-15 05:40:05 +01:00
|
|
|
}
|
2018-10-30 05:33:56 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void operator delete(void *p, size_t size) {
|
|
|
|
return ams::ldr::Deallocate(p, size);
|
2018-04-18 00:26:28 +01:00
|
|
|
}
|