diff --git a/stratosphere/ams_mitm/source/amsmitm_main.cpp b/stratosphere/ams_mitm/source/amsmitm_main.cpp
index 396c844c5..ff8635b3b 100644
--- a/stratosphere/ams_mitm/source/amsmitm_main.cpp
+++ b/stratosphere/ams_mitm/source/amsmitm_main.cpp
@@ -13,23 +13,14 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
-
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-
-#include "amsmitm_modules.hpp"
-#include "utils.hpp"
+#include "amsmitm_module_management.hpp"
extern "C" {
extern u32 __start__;
u32 __nx_applet_type = AppletType_None;
+ u32 __nx_fs_num_sessions = 1;
+ u32 __nx_fsdev_direntry_cache_size = 1;
#define INNER_HEAP_SIZE 0x1000000
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
@@ -43,18 +34,31 @@ extern "C" {
alignas(16) u8 __nx_exception_stack[0x1000];
u64 __nx_exception_stack_size = sizeof(__nx_exception_stack);
void __libnx_exception_handler(ThreadExceptionDump *ctx);
- void __libstratosphere_exception_handler(AtmosphereFatalErrorContext *ctx);
}
-ams::ncm::TitleId __stratosphere_title_id = ams::ncm::TitleId::AtmosphereMitm;
+namespace ams {
+
+ ncm::ProgramId CurrentProgramId = ncm::ProgramId::AtmosphereMitm;
+
+ namespace result {
+
+ bool CallFatalOnResultAssertion = false;
+
+ }
+
+ /* Override. */
+ void ExceptionHandler(FatalErrorContext *ctx) {
+ /* We're bpc-mitm (or ams_mitm, anyway), so manually reboot to fatal error. */
+ /* Utils::RebootToFatalError(ctx); */
+ while (1) { /* ... */ }
+ }
+
+}
+
+using namespace ams;
void __libnx_exception_handler(ThreadExceptionDump *ctx) {
- StratosphereCrashHandler(ctx);
-}
-
-void __libstratosphere_exception_handler(AtmosphereFatalErrorContext *ctx) {
- /* We're bpc-mitm (or ams_mitm, anyway), so manually reboot to fatal error. */
- Utils::RebootToFatalError(ctx);
+ ams::CrashHandler(ctx);
}
void __libnx_initheap(void) {
@@ -70,16 +74,16 @@ void __libnx_initheap(void) {
}
void __appInit(void) {
- SetFirmwareVersionForLibnx();
+ hos::SetVersionForLibnx();
- DoWithSmSession([&]() {
+ sm::DoWithSession([&]() {
R_ASSERT(fsInitialize());
R_ASSERT(pmdmntInitialize());
R_ASSERT(pminfoInitialize());
R_ASSERT(splFsInitialize());
});
- CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION);
+ ams::CheckApiVersion();
}
void __appExit(void) {
@@ -90,18 +94,12 @@ void __appExit(void) {
fsExit();
}
-int main(int argc, char **argv)
-{
- consoleDebugInit(debugDevice_SVC);
- ams::os::Thread initializer_thread;
-
- LaunchAllMitmModules();
-
- R_ASSERT(initializer_thread.Initialize(&Utils::InitializeThreadFunc, NULL, 0x4000, 0x15));
- R_ASSERT(initializer_thread.Start());
+int main(int argc, char **argv) {
+ /* Launch all mitm modules in sequence. */
+ mitm::LaunchAllModules();
/* Wait for all mitm modules to end. */
- WaitAllMitmModules();
+ mitm::WaitAllModules();
return 0;
}
diff --git a/stratosphere/ams_mitm/source/amsmitm_module.hpp b/stratosphere/ams_mitm/source/amsmitm_module.hpp
new file mode 100644
index 000000000..3cda6e8c7
--- /dev/null
+++ b/stratosphere/ams_mitm/source/amsmitm_module.hpp
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+
+namespace ams::mitm {
+
+ /* TODO: C++20 Concepts will make this a lot less stupid. */
+ class ModuleBase {};
+
+ #define DEFINE_MITM_MODULE_CLASS(ss, prio) class MitmModule : public ::ams::mitm::ModuleBase { \
+ public: \
+ static constexpr size_t ThreadPriority = prio; \
+ static constexpr size_t StackSize = ss; \
+ alignas(0x1000) static inline u8 Stack[StackSize]; \
+ public: \
+ static void ThreadFunction(void *); \
+ }
+
+ template
+ struct ModuleTraits {
+ static_assert(std::is_base_of::value, "Mitm Modules must inherit from ams::mitm::Module");
+
+ static constexpr void *Stack = &M::Stack[0];
+ static constexpr size_t StackSize = M::StackSize;
+
+ static constexpr size_t ThreadPriority = M::ThreadPriority;
+
+ static constexpr ::ThreadFunc ThreadFunction = &M::ThreadFunction;
+ };
+
+}
diff --git a/stratosphere/ams_mitm/source/amsmitm_module_management.cpp b/stratosphere/ams_mitm/source/amsmitm_module_management.cpp
new file mode 100644
index 000000000..03eb32aa6
--- /dev/null
+++ b/stratosphere/ams_mitm/source/amsmitm_module_management.cpp
@@ -0,0 +1,91 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#include
+#include "amsmitm_module_management.hpp"
+#include "amsmitm_module.hpp"
+
+#include "fs_mitm/fsmitm_module.hpp"
+#include "set_mitm/setmitm_module.hpp"
+#include "bpc_mitm/bpcmitm_module.hpp"
+#include "ns_mitm/nsmitm_module.hpp"
+#include "hid_mitm/hidmitm_module.hpp"
+
+namespace ams::mitm {
+
+ namespace {
+
+ enum ModuleId : u32 {
+ ModuleId_FsMitm,
+ ModuleId_SetMitm,
+ ModuleId_BpcMitm,
+ ModuleId_NsMitm,
+ ModuleId_HidMitm,
+
+ ModuleId_Count,
+ };
+
+ struct ModuleDefinition {
+ ThreadFunc main;
+ void *stack_mem;
+ u32 priority;
+ u32 stack_size;
+ };
+
+ template
+ constexpr ModuleDefinition GetModuleDefinition() {
+ using Traits = ModuleTraits;
+
+ return ModuleDefinition {
+ .main = Traits::ThreadFunction,
+ .stack_mem = Traits::Stack,
+ .priority = Traits::ThreadPriority,
+ .stack_size = Traits::StackSize,
+ };
+ }
+
+ ams::os::Thread g_module_threads[ModuleId_Count];
+
+ constexpr ModuleDefinition g_module_definitions[ModuleId_Count] = {
+ GetModuleDefinition(),
+ GetModuleDefinition(),
+ GetModuleDefinition(),
+ GetModuleDefinition(),
+ GetModuleDefinition(),
+ };
+
+ }
+
+ void LaunchAllModules() {
+ /* Create thread for each module. */
+ for (u32 i = 0; i < static_cast(ModuleId_Count); i++) {
+ const ModuleDefinition &cur_module = g_module_definitions[i];
+ R_ASSERT(g_module_threads[i].Initialize(cur_module.main, nullptr, cur_module.stack_mem, cur_module.stack_size, cur_module.priority));
+ }
+
+ /* Start thread for each module. */
+ for (u32 i = 0; i < static_cast(ModuleId_Count); i++) {
+ R_ASSERT(g_module_threads[i].Start());
+ }
+ }
+
+ void WaitAllModules() {
+ /* Wait on thread for each module. */
+ for (u32 i = 0; i < static_cast(ModuleId_Count); i++) {
+ g_module_threads[i].Join();
+ }
+ }
+
+}
diff --git a/stratosphere/ams_mitm/source/amsmitm_module_management.hpp b/stratosphere/ams_mitm/source/amsmitm_module_management.hpp
new file mode 100644
index 000000000..c21cbab1e
--- /dev/null
+++ b/stratosphere/ams_mitm/source/amsmitm_module_management.hpp
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+
+namespace ams::mitm {
+
+ void LaunchAllModules();
+ void WaitAllModules();
+
+}
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpc_mitm_service.hpp b/stratosphere/ams_mitm/source/bpc_mitm/bpc_mitm_service.hpp
index 032975850..758e90f2d 100644
--- a/stratosphere/ams_mitm/source/bpc_mitm/bpc_mitm_service.hpp
+++ b/stratosphere/ams_mitm/source/bpc_mitm/bpc_mitm_service.hpp
@@ -13,42 +13,29 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
-
#pragma once
-#include
#include
-#include "../utils.hpp"
+namespace ams::mitm::bpc {
-class BpcMitmService : public IMitmServiceObject {
- private:
- enum class CommandId {
- ShutdownSystem = 0,
- RebootSystem = 1,
- };
- public:
- BpcMitmService(std::shared_ptr s, u64 pid, ams::ncm::TitleId tid) : IMitmServiceObject(s, pid, tid) {
- /* ... */
- }
+ class BpcMitmService : public sf::IMitmServiceObject {
+ private:
+ enum class CommandId {
+ /* TODO */
+ };
+ public:
+ static bool ShouldMitm(os::ProcessId process_id, ncm::ProgramId program_id) {
+ /* TODO */
+ return false;
+ }
+ public:
+ SF_MITM_SERVICE_OBJECT_CTOR(BpcMitmService) { /* ... */ }
+ protected:
+ /* TODO */
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ /* TODO */
+ };
+ };
- static bool ShouldMitm(u64 pid, ams::ncm::TitleId tid) {
- /* We will mitm:
- * - am, to intercept the Reboot/Power buttons in the overlay menu.
- * - fatal, to simplify payload reboot logic significantly
- * - applications, to allow homebrew to take advantage of the feature.
- */
- return tid == ams::ncm::TitleId::Am || tid == ams::ncm::TitleId::Fatal || ams::ncm::IsApplicationTitleId(tid) || Utils::IsHblTid(static_cast(tid));
- }
-
- static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
-
- protected:
- /* Overridden commands. */
- Result ShutdownSystem();
- Result RebootSystem();
- public:
- DEFINE_SERVICE_DISPATCH_TABLE {
- MAKE_SERVICE_COMMAND_META(BpcMitmService, ShutdownSystem),
- MAKE_SERVICE_COMMAND_META(BpcMitmService, RebootSystem),
- };
-};
+}
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_module.cpp b/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_module.cpp
new file mode 100644
index 000000000..a0b6aa967
--- /dev/null
+++ b/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_module.cpp
@@ -0,0 +1,43 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#include "bpcmitm_module.hpp"
+#include "bpc_mitm_service.hpp"
+
+namespace ams::mitm::bpc {
+
+ namespace {
+
+ constexpr sm::ServiceName MitmServiceName = sm::ServiceName::Encode("bpc");
+ constexpr sm::ServiceName DeprecatedMitmServiceName = sm::ServiceName::Encode("bpc:c");
+ constexpr size_t MitmServiceMaxSessions = 13;
+
+ constexpr size_t MaxServers = 1;
+ constexpr size_t MaxSessions = MitmServiceMaxSessions;
+ using ServerOptions = sf::hipc::DefaultServerManagerOptions;
+ sf::hipc::ServerManager g_server_manager;
+
+ }
+
+ void MitmModule::ThreadFunction(void *arg) {
+ /* Create bpc mitm. */
+ const sm::ServiceName service_name = (hos::GetVersion() >= hos::Version_200) ? MitmServiceName : DeprecatedMitmServiceName;
+ R_ASSERT(g_server_manager.RegisterMitmServer(service_name));
+
+ /* Loop forever, servicing our services. */
+ g_server_manager.LoopProcess();
+ }
+
+}
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_module.hpp b/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_module.hpp
new file mode 100644
index 000000000..1b1f12f12
--- /dev/null
+++ b/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_module.hpp
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+#include "../amsmitm_module.hpp"
+
+namespace ams::mitm::bpc {
+
+ DEFINE_MITM_MODULE_CLASS(0x8000, 32);
+
+}
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_mitm_service.hpp b/stratosphere/ams_mitm/source/fs_mitm/fs_mitm_service.hpp
new file mode 100644
index 000000000..3326b2d04
--- /dev/null
+++ b/stratosphere/ams_mitm/source/fs_mitm/fs_mitm_service.hpp
@@ -0,0 +1,42 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+
+#pragma once
+#include
+
+namespace ams::mitm::fs {
+
+ class FsMitmService : public sf::IMitmServiceObject {
+ private:
+ enum class CommandId {
+ /* TODO */
+ };
+ public:
+ static bool ShouldMitm(os::ProcessId process_id, ncm::ProgramId program_id) {
+ /* TODO */
+ return false;
+ }
+ public:
+ SF_MITM_SERVICE_OBJECT_CTOR(FsMitmService) { /* ... */ }
+ protected:
+ /* TODO */
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ /* TODO */
+ };
+ };
+
+}
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_module.cpp b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_module.cpp
new file mode 100644
index 000000000..4f7be98d5
--- /dev/null
+++ b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_module.cpp
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#include "fsmitm_module.hpp"
+#include "fs_mitm_service.hpp"
+
+namespace ams::mitm::fs {
+
+ namespace {
+
+ constexpr sm::ServiceName MitmServiceName = sm::ServiceName::Encode("fsp-srv");
+
+ struct ServerOptions {
+ static constexpr size_t PointerBufferSize = 0x800;
+ static constexpr size_t MaxDomains = 0x40;
+ static constexpr size_t MaxDomainObjects = 0x4000;
+ };
+
+ constexpr size_t MaxServers = 1;
+ constexpr size_t MaxSessions = 61;
+ sf::hipc::ServerManager g_server_manager;
+
+ }
+
+ void MitmModule::ThreadFunction(void *arg) {
+ /* Create fs mitm. */
+ R_ASSERT(g_server_manager.RegisterMitmServer(MitmServiceName));
+
+ /* Loop forever, servicing our services. */
+ g_server_manager.LoopProcess();
+ }
+
+}
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_module.hpp b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_module.hpp
new file mode 100644
index 000000000..2beebb285
--- /dev/null
+++ b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_module.hpp
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+#include "../amsmitm_module.hpp"
+
+namespace ams::mitm::fs {
+
+ DEFINE_MITM_MODULE_CLASS(0x8000, 43);
+
+}
diff --git a/stratosphere/ams_mitm/source/hid_mitm/hid_mitm_service.hpp b/stratosphere/ams_mitm/source/hid_mitm/hid_mitm_service.hpp
index f621051c5..1920e8faa 100644
--- a/stratosphere/ams_mitm/source/hid_mitm/hid_mitm_service.hpp
+++ b/stratosphere/ams_mitm/source/hid_mitm/hid_mitm_service.hpp
@@ -15,40 +15,28 @@
*/
#pragma once
-#include
#include
-#include "../utils.hpp"
+namespace ams::mitm::hid {
-class HidMitmService : public IMitmServiceObject {
- private:
- enum class CommandId {
- SetSupportedNpadStyleSet = 100,
- };
- private:
- bool should_set_system_ext = false;
- public:
- HidMitmService(std::shared_ptr s, u64 pid, ams::ncm::TitleId tid) : IMitmServiceObject(s, pid, tid) {
- /* ... */
- }
+ class HidMitmService : public sf::IMitmServiceObject {
+ private:
+ enum class CommandId {
+ /* TODO */
+ };
+ public:
+ static bool ShouldMitm(os::ProcessId process_id, ncm::ProgramId program_id) {
+ /* TODO */
+ return false;
+ }
+ public:
+ SF_MITM_SERVICE_OBJECT_CTOR(HidMitmService) { /* ... */ }
+ protected:
+ /* TODO */
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ /* TODO */
+ };
+ };
- ~HidMitmService();
-
- static bool ShouldMitm(u64 pid, ams::ncm::TitleId tid) {
- /* TODO: Consider removing in Atmosphere 0.10.0/1.0.0. */
- /* We will mitm:
- * - hbl, to help homebrew not need to be recompiled.
- */
- return Utils::IsHblTid(static_cast(tid));
- }
-
- static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
-
- protected:
- /* Overridden commands. */
- Result SetSupportedNpadStyleSet(u64 applet_resource_user_id, u32 style_set, PidDescriptor pid_desc);
- public:
- DEFINE_SERVICE_DISPATCH_TABLE {
- MAKE_SERVICE_COMMAND_META(HidMitmService, SetSupportedNpadStyleSet),
- };
-};
+}
diff --git a/stratosphere/ams_mitm/source/hid_mitm/hidmitm_module.cpp b/stratosphere/ams_mitm/source/hid_mitm/hidmitm_module.cpp
new file mode 100644
index 000000000..a239cdff5
--- /dev/null
+++ b/stratosphere/ams_mitm/source/hid_mitm/hidmitm_module.cpp
@@ -0,0 +1,49 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#include "hidmitm_module.hpp"
+#include "hid_mitm_service.hpp"
+
+namespace ams::mitm::hid {
+
+ namespace {
+
+ constexpr sm::ServiceName MitmServiceName = sm::ServiceName::Encode("hid");
+
+ struct ServerOptions {
+ static constexpr size_t PointerBufferSize = 0x200;
+ static constexpr size_t MaxDomains = 0;
+ static constexpr size_t MaxDomainObjects = 0;
+ };
+
+ constexpr size_t MaxServers = 1;
+ sf::hipc::ServerManager g_server_manager;
+
+ }
+
+ void MitmModule::ThreadFunction(void *arg) {
+ /* This is only necessary on 9.x+ */
+ if (hos::GetVersion() < hos::Version_900) {
+ return;
+ }
+
+ /* Create hid mitm. */
+ R_ASSERT(g_server_manager.RegisterMitmServer(MitmServiceName));
+
+ /* Loop forever, servicing our services. */
+ g_server_manager.LoopProcess();
+ }
+
+}
diff --git a/stratosphere/ams_mitm/source/hid_mitm/hidmitm_module.hpp b/stratosphere/ams_mitm/source/hid_mitm/hidmitm_module.hpp
new file mode 100644
index 000000000..1c8ea28ce
--- /dev/null
+++ b/stratosphere/ams_mitm/source/hid_mitm/hidmitm_module.hpp
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+#include "../amsmitm_module.hpp"
+
+namespace ams::mitm::hid {
+
+ DEFINE_MITM_MODULE_CLASS(0x8000, 47);
+
+}
diff --git a/stratosphere/ams_mitm/source/ns_mitm/ns_am_mitm_service.hpp b/stratosphere/ams_mitm/source/ns_mitm/ns_am_mitm_service.hpp
new file mode 100644
index 000000000..401a0d462
--- /dev/null
+++ b/stratosphere/ams_mitm/source/ns_mitm/ns_am_mitm_service.hpp
@@ -0,0 +1,41 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+
+namespace ams::mitm::ns {
+
+ class NsAmMitmService : public sf::IMitmServiceObject {
+ private:
+ enum class CommandId {
+ /* TODO */
+ };
+ public:
+ static bool ShouldMitm(os::ProcessId process_id, ncm::ProgramId program_id) {
+ /* TODO */
+ return false;
+ }
+ public:
+ SF_MITM_SERVICE_OBJECT_CTOR(NsAmMitmService) { /* ... */ }
+ protected:
+ /* TODO */
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ /* TODO */
+ };
+ };
+
+}
diff --git a/stratosphere/ams_mitm/source/ns_mitm/ns_web_mitm_service.hpp b/stratosphere/ams_mitm/source/ns_mitm/ns_web_mitm_service.hpp
new file mode 100644
index 000000000..d423511f8
--- /dev/null
+++ b/stratosphere/ams_mitm/source/ns_mitm/ns_web_mitm_service.hpp
@@ -0,0 +1,41 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+
+namespace ams::mitm::ns {
+
+ class NsWebMitmService : public sf::IMitmServiceObject {
+ private:
+ enum class CommandId {
+ /* TODO */
+ };
+ public:
+ static bool ShouldMitm(os::ProcessId process_id, ncm::ProgramId program_id) {
+ /* TODO */
+ return false;
+ }
+ public:
+ SF_MITM_SERVICE_OBJECT_CTOR(NsWebMitmService) { /* ... */ }
+ protected:
+ /* TODO */
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ /* TODO */
+ };
+ };
+
+}
diff --git a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_module.cpp b/stratosphere/ams_mitm/source/ns_mitm/nsmitm_module.cpp
new file mode 100644
index 000000000..9ae1dbe1c
--- /dev/null
+++ b/stratosphere/ams_mitm/source/ns_mitm/nsmitm_module.cpp
@@ -0,0 +1,46 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#include "nsmitm_module.hpp"
+#include "ns_am_mitm_service.hpp"
+#include "ns_web_mitm_service.hpp"
+
+namespace ams::mitm::ns {
+
+ namespace {
+
+ constexpr sm::ServiceName NsAmMitmServiceName = sm::ServiceName::Encode("ns:am");
+ constexpr sm::ServiceName NsWebMitmServiceName = sm::ServiceName::Encode("ns:am");
+
+ constexpr size_t MaxServers = 1;
+ constexpr size_t MaxSessions = 5;
+ using ServerOptions = sf::hipc::DefaultServerManagerOptions;
+ sf::hipc::ServerManager g_server_manager;
+
+ }
+
+ void MitmModule::ThreadFunction(void *arg) {
+ /* Create mitm servers. */
+ if (hos::GetVersion() < hos::Version_300) {
+ R_ASSERT(g_server_manager.RegisterMitmServer(NsAmMitmServiceName));
+ } else {
+ R_ASSERT(g_server_manager.RegisterMitmServer(NsWebMitmServiceName));
+ }
+
+ /* Loop forever, servicing our services. */
+ g_server_manager.LoopProcess();
+ }
+
+}
diff --git a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_module.hpp b/stratosphere/ams_mitm/source/ns_mitm/nsmitm_module.hpp
new file mode 100644
index 000000000..8f0ac75eb
--- /dev/null
+++ b/stratosphere/ams_mitm/source/ns_mitm/nsmitm_module.hpp
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+#include "../amsmitm_module.hpp"
+
+namespace ams::mitm::ns {
+
+ DEFINE_MITM_MODULE_CLASS(0x4000, 48);
+
+}
diff --git a/stratosphere/ams_mitm/source/set_mitm/set_mitm_service.hpp b/stratosphere/ams_mitm/source/set_mitm/set_mitm_service.hpp
index cf1efa0db..e6cf5b23b 100644
--- a/stratosphere/ams_mitm/source/set_mitm/set_mitm_service.hpp
+++ b/stratosphere/ams_mitm/source/set_mitm/set_mitm_service.hpp
@@ -13,47 +13,29 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
-
#pragma once
-#include
#include
-#include "../utils.hpp"
+namespace ams::mitm::set {
-class SetMitmService : public IMitmServiceObject {
- private:
- enum class CommandId {
- GetLanguageCode = 0,
- GetRegionCode = 4,
- };
- private:
- ams::os::Mutex lock;
- OverrideLocale locale;
- bool got_locale;
- public:
- SetMitmService(std::shared_ptr s, u64 pid, ams::ncm::TitleId tid) : IMitmServiceObject(s, pid, tid) {
- this->got_locale = false;
- }
+ class SetMitmService : public sf::IMitmServiceObject {
+ private:
+ enum class CommandId {
+ /* TODO */
+ };
+ public:
+ static bool ShouldMitm(os::ProcessId process_id, ncm::ProgramId program_id) {
+ /* TODO */
+ return false;
+ }
+ public:
+ SF_MITM_SERVICE_OBJECT_CTOR(SetMitmService) { /* ... */ }
+ protected:
+ /* TODO */
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ /* TODO */
+ };
+ };
- static bool ShouldMitm(u64 pid, ams::ncm::TitleId tid) {
- /* Mitm all applications. */
- return tid == ams::ncm::TitleId::Ns || ams::ncm::IsApplicationTitleId(tid);
- }
-
- static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
-
- protected:
- static bool IsValidLanguageCode(u64 lang_code);
- static bool IsValidRegionCode(u32 region_code);
-
- Result EnsureLocale();
- protected:
- /* Overridden commands. */
- Result GetLanguageCode(Out out_lang_code);
- Result GetRegionCode(Out out_region_code);
- public:
- DEFINE_SERVICE_DISPATCH_TABLE {
- MAKE_SERVICE_COMMAND_META(SetMitmService, GetLanguageCode),
- MAKE_SERVICE_COMMAND_META(SetMitmService, GetRegionCode),
- };
-};
+}
diff --git a/stratosphere/ams_mitm/source/set_mitm/setmitm_module.cpp b/stratosphere/ams_mitm/source/set_mitm/setmitm_module.cpp
new file mode 100644
index 000000000..8e23ff93d
--- /dev/null
+++ b/stratosphere/ams_mitm/source/set_mitm/setmitm_module.cpp
@@ -0,0 +1,48 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#include "setmitm_module.hpp"
+#include "set_mitm_service.hpp"
+#include "setsys_mitm_service.hpp"
+
+namespace ams::mitm::set {
+
+ namespace {
+
+ constexpr sm::ServiceName SetMitmServiceName = sm::ServiceName::Encode("set");
+ constexpr sm::ServiceName SetSysMitmServiceName = sm::ServiceName::Encode("set:sys");
+
+ struct ServerOptions {
+ static constexpr size_t PointerBufferSize = 0x100;
+ static constexpr size_t MaxDomains = 0;
+ static constexpr size_t MaxDomainObjects = 0;
+ };
+
+ constexpr size_t MaxServers = 2;
+ constexpr size_t MaxSessions = 60;
+ sf::hipc::ServerManager g_server_manager;
+
+ }
+
+ void MitmModule::ThreadFunction(void *arg) {
+ /* Create mitm servers. */
+ R_ASSERT(g_server_manager.RegisterMitmServer(SetMitmServiceName));
+ R_ASSERT(g_server_manager.RegisterMitmServer(SetSysMitmServiceName));
+
+ /* Loop forever, servicing our services. */
+ g_server_manager.LoopProcess();
+ }
+
+}
diff --git a/stratosphere/ams_mitm/source/set_mitm/setmitm_module.hpp b/stratosphere/ams_mitm/source/set_mitm/setmitm_module.hpp
new file mode 100644
index 000000000..cea2a1d44
--- /dev/null
+++ b/stratosphere/ams_mitm/source/set_mitm/setmitm_module.hpp
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+#pragma once
+#include
+#include "../amsmitm_module.hpp"
+
+namespace ams::mitm::set {
+
+ DEFINE_MITM_MODULE_CLASS(0x8000, 43);
+
+}
diff --git a/stratosphere/ams_mitm/source/set_mitm/setsys_mitm_service.hpp b/stratosphere/ams_mitm/source/set_mitm/setsys_mitm_service.hpp
index e13069f36..3b5c2c2c8 100644
--- a/stratosphere/ams_mitm/source/set_mitm/setsys_mitm_service.hpp
+++ b/stratosphere/ams_mitm/source/set_mitm/setsys_mitm_service.hpp
@@ -13,44 +13,29 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
-
#pragma once
-#include
#include
-#include "setsys_shim.h"
+namespace ams::mitm::set {
-class SetSysMitmService : public IMitmServiceObject {
- private:
- enum class CommandId {
- GetFirmwareVersion = 3,
- GetFirmwareVersion2 = 4,
- GetSettingsItemValueSize = 37,
- GetSettingsItemValue = 38,
- };
- public:
- SetSysMitmService(std::shared_ptr s, u64 pid, ams::ncm::TitleId tid) : IMitmServiceObject(s, pid, tid) {
- /* ... */
- }
+ class SetSysMitmService : public sf::IMitmServiceObject {
+ private:
+ enum class CommandId {
+ /* TODO */
+ };
+ public:
+ static bool ShouldMitm(os::ProcessId process_id, ncm::ProgramId program_id) {
+ /* TODO */
+ return false;
+ }
+ public:
+ SF_MITM_SERVICE_OBJECT_CTOR(SetSysMitmService) { /* ... */ }
+ protected:
+ /* TODO */
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ /* TODO */
+ };
+ };
- static bool ShouldMitm(u64 pid, ams::ncm::TitleId tid) {
- /* Mitm everything. */
- return true;
- }
-
- static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
-
- protected:
- /* Overridden commands. */
- Result GetFirmwareVersion(OutPointerWithServerSize out);
- Result GetFirmwareVersion2(OutPointerWithServerSize out);
- Result GetSettingsItemValueSize(Out out_size, InPointer name, InPointer key);
- Result GetSettingsItemValue(Out out_size, OutBuffer out_value, InPointer name, InPointer key);
- public:
- DEFINE_SERVICE_DISPATCH_TABLE {
- MAKE_SERVICE_COMMAND_META(SetSysMitmService, GetFirmwareVersion),
- MAKE_SERVICE_COMMAND_META(SetSysMitmService, GetFirmwareVersion2),
- MAKE_SERVICE_COMMAND_META(SetSysMitmService, GetSettingsItemValueSize),
- MAKE_SERVICE_COMMAND_META(SetSysMitmService, GetSettingsItemValue),
- };
-};
+}
diff --git a/stratosphere/ams_mitm_old/Makefile b/stratosphere/ams_mitm_old/Makefile
new file mode 100644
index 000000000..80cdb7332
--- /dev/null
+++ b/stratosphere/ams_mitm_old/Makefile
@@ -0,0 +1,170 @@
+#---------------------------------------------------------------------------------
+.SUFFIXES:
+#---------------------------------------------------------------------------------
+
+ifeq ($(strip $(DEVKITPRO)),)
+$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=/devkitpro")
+endif
+
+TOPDIR ?= $(CURDIR)
+include $(DEVKITPRO)/libnx/switch_rules
+
+AMSBRANCH := $(shell git symbolic-ref --short HEAD)
+AMSREV := $(AMSBRANCH)-$(shell git rev-parse --short HEAD)
+
+ifneq (, $(strip $(shell git status --porcelain 2>/dev/null)))
+ AMSREV := $(AMSREV)-dirty
+endif
+
+#---------------------------------------------------------------------------------
+# TARGET is the name of the output
+# BUILD is the directory where object files & intermediate files will be placed
+# SOURCES is a list of directories containing source code
+# DATA is a list of directories containing data files
+# INCLUDES is a list of directories containing header files
+# EXEFS_SRC is the optional input directory containing data copied into exefs, if anything this normally should only contain "main.npdm".
+#---------------------------------------------------------------------------------
+TARGET := $(notdir $(CURDIR))
+BUILD := build
+SOURCES := source source/fs_mitm source/set_mitm source/bpc_mitm source/ns_mitm source/hid_mitm
+DATA := data
+INCLUDES := include ../../common/include
+EXEFS_SRC := exefs_src
+
+DEFINES := -DATMOSPHERE_GIT_BRANCH=\"$(AMSBRANCH)\" -DATMOSPHERE_GIT_REV=\"$(AMSREV)\"
+
+#---------------------------------------------------------------------------------
+# options for code generation
+#---------------------------------------------------------------------------------
+ARCH := -march=armv8-a -mtune=cortex-a57 -mtp=soft -fPIE
+
+CFLAGS := -g -Wall -O2 -ffunction-sections \
+ $(ARCH) $(DEFINES)
+
+CFLAGS += $(INCLUDE) -D__SWITCH__
+
+CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++17
+
+CXXWRAPS := -Wl,--wrap,__cxa_pure_virtual \
+ -Wl,--wrap,__cxa_throw \
+ -Wl,--wrap,__cxa_rethrow \
+ -Wl,--wrap,__cxa_allocate_exception \
+ -Wl,--wrap,__cxa_begin_catch \
+ -Wl,--wrap,__cxa_end_catch \
+ -Wl,--wrap,__cxa_call_unexpected \
+ -Wl,--wrap,__cxa_call_terminate \
+ -Wl,--wrap,__gxx_personality_v0
+
+ASFLAGS := -g $(ARCH)
+LDFLAGS = -specs=$(DEVKITPRO)/libnx/switch.specs -g $(ARCH) $(CXXWRAPS) -Wl,-Map,$(notdir $*.map)
+
+LIBS := -lstratosphere -lnx
+
+#---------------------------------------------------------------------------------
+# list of directories containing libraries, this must be the top level containing
+# include and lib
+#---------------------------------------------------------------------------------
+LIBDIRS := $(PORTLIBS) $(LIBNX) $(CURDIR)/../libstratosphere
+
+
+#---------------------------------------------------------------------------------
+# no real need to edit anything past this point unless you need to add additional
+# rules for different file extensions
+#---------------------------------------------------------------------------------
+ifneq ($(BUILD),$(notdir $(CURDIR)))
+#---------------------------------------------------------------------------------
+
+export OUTPUT := $(CURDIR)/$(TARGET)
+export TOPDIR := $(CURDIR)
+
+export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
+ $(foreach dir,$(DATA),$(CURDIR)/$(dir))
+
+export DEPSDIR := $(CURDIR)/$(BUILD)
+
+CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
+CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
+SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
+BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
+
+#---------------------------------------------------------------------------------
+# use CXX for linking C++ projects, CC for standard C
+#---------------------------------------------------------------------------------
+ifeq ($(strip $(CPPFILES)),)
+#---------------------------------------------------------------------------------
+ export LD := $(CC)
+#---------------------------------------------------------------------------------
+else
+#---------------------------------------------------------------------------------
+ export LD := $(CXX)
+#---------------------------------------------------------------------------------
+endif
+#---------------------------------------------------------------------------------
+
+export OFILES := $(addsuffix .o,$(BINFILES)) \
+ $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
+
+export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
+ $(foreach dir,$(LIBDIRS),-I$(dir)/include) \
+ -I$(CURDIR)/$(BUILD)
+
+export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
+
+export BUILD_EXEFS_SRC := $(TOPDIR)/$(EXEFS_SRC)
+
+ifeq ($(strip $(CONFIG_JSON)),)
+ jsons := $(wildcard *.json)
+ ifneq (,$(findstring $(TARGET).json,$(jsons)))
+ export APP_JSON := $(TOPDIR)/$(TARGET).json
+ else
+ ifneq (,$(findstring config.json,$(jsons)))
+ export APP_JSON := $(TOPDIR)/config.json
+ endif
+ endif
+else
+ export APP_JSON := $(TOPDIR)/$(CONFIG_JSON)
+endif
+
+.PHONY: $(BUILD) clean all
+
+#---------------------------------------------------------------------------------
+all: $(BUILD)
+
+$(BUILD):
+ @[ -d $@ ] || mkdir -p $@
+ @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
+
+#---------------------------------------------------------------------------------
+clean:
+ @echo clean ...
+ @rm -fr $(BUILD) $(TARGET).kip $(TARGET).elf
+
+
+#---------------------------------------------------------------------------------
+else
+.PHONY: all
+
+DEPENDS := $(OFILES:.o=.d)
+
+#---------------------------------------------------------------------------------
+# main targets
+#---------------------------------------------------------------------------------
+all : $(OUTPUT).kip
+
+$(OUTPUT).kip : $(OUTPUT).elf
+
+$(OUTPUT).elf : $(OFILES)
+
+#---------------------------------------------------------------------------------
+# you need a rule like this for each extension you use as binary data
+#---------------------------------------------------------------------------------
+%.bin.o : %.bin
+#---------------------------------------------------------------------------------
+ @echo $(notdir $<)
+ @$(bin2o)
+
+-include $(DEPENDS)
+
+#---------------------------------------------------------------------------------------
+endif
+#---------------------------------------------------------------------------------------
diff --git a/stratosphere/ams_mitm_old/ams_mitm.json b/stratosphere/ams_mitm_old/ams_mitm.json
new file mode 100644
index 000000000..431a1f5f0
--- /dev/null
+++ b/stratosphere/ams_mitm_old/ams_mitm.json
@@ -0,0 +1,79 @@
+{
+ "name": "ams.mitm",
+ "title_id": "0x010041544D530000",
+ "main_thread_stack_size": "0x20000",
+ "main_thread_priority": 43,
+ "default_cpu_id": 3,
+ "process_category": 1,
+ "kernel_capabilities": [
+ {
+ "type": "handle_table_size",
+ "value": 512
+ },
+ {
+ "type": "syscalls",
+ "value": {
+ "svcSetHeapSize": "0x01",
+ "svcSetMemoryPermission": "0x02",
+ "svcSetMemoryAttribute": "0x03",
+ "svcMapMemory": "0x04",
+ "svcUnmapMemory": "0x05",
+ "svcQueryMemory": "0x06",
+ "svcExitProcess": "0x07",
+ "svcCreateThread": "0x08",
+ "svcStartThread": "0x09",
+ "svcExitThread": "0x0a",
+ "svcSleepThread": "0x0b",
+ "svcGetThreadPriority": "0x0c",
+ "svcSetThreadPriority": "0x0d",
+ "svcGetThreadCoreMask": "0x0e",
+ "svcSetThreadCoreMask": "0x0f",
+ "svcGetCurrentProcessorNumber": "0x10",
+ "svcSignalEvent": "0x11",
+ "svcClearEvent": "0x12",
+ "svcMapSharedMemory": "0x13",
+ "svcUnmapSharedMemory": "0x14",
+ "svcCreateTransferMemory": "0x15",
+ "svcCloseHandle": "0x16",
+ "svcResetSignal": "0x17",
+ "svcWaitSynchronization": "0x18",
+ "svcCancelSynchronization": "0x19",
+ "svcArbitrateLock": "0x1a",
+ "svcArbitrateUnlock": "0x1b",
+ "svcWaitProcessWideKeyAtomic": "0x1c",
+ "svcSignalProcessWideKey": "0x1d",
+ "svcGetSystemTick": "0x1e",
+ "svcConnectToNamedPort": "0x1f",
+ "svcSendSyncRequestLight": "0x20",
+ "svcSendSyncRequest": "0x21",
+ "svcSendSyncRequestWithUserBuffer": "0x22",
+ "svcSendAsyncRequestWithUserBuffer": "0x23",
+ "svcGetProcessId": "0x24",
+ "svcGetThreadId": "0x25",
+ "svcBreak": "0x26",
+ "svcOutputDebugString": "0x27",
+ "svcReturnFromException": "0x28",
+ "svcGetInfo": "0x29",
+ "svcWaitForAddress": "0x34",
+ "svcSignalToAddress": "0x35",
+ "svcCreateSession": "0x40",
+ "svcAcceptSession": "0x41",
+ "svcReplyAndReceiveLight": "0x42",
+ "svcReplyAndReceive": "0x43",
+ "svcReplyAndReceiveWithUserBuffer": "0x44",
+ "svcCreateEvent": "0x45",
+ "svcCreateInterruptEvent": "0x53",
+ "svcReadWriteRegister": "0x4E",
+ "svcQueryIoMapping": "0x55",
+ "svcCreateDeviceAddressSpace": "0x56",
+ "svcAttachDeviceAddressSpace": "0x57",
+ "svcDetachDeviceAddressSpace": "0x58",
+ "svcMapDeviceAddressSpaceAligned": "0x5a",
+ "svcUnmapDeviceAddressSpace": "0x5c",
+ "svcGetSystemInfo": "0x6f",
+ "svcManageNamedPort": "0x71",
+ "svcCallSecureMonitor": "0x7F"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/stratosphere/ams_mitm_old/source/amsmitm_main.cpp b/stratosphere/ams_mitm_old/source/amsmitm_main.cpp
new file mode 100644
index 000000000..495e74aeb
--- /dev/null
+++ b/stratosphere/ams_mitm_old/source/amsmitm_main.cpp
@@ -0,0 +1,108 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+
+#include
+#include
+#include
+#include
+
+#include
+#include
+#include
+
+#include "amsmitm_modules.hpp"
+#include "utils.hpp"
+
+extern "C" {
+ extern u32 __start__;
+
+ u32 __nx_applet_type = AppletType_None;
+
+ #define INNER_HEAP_SIZE 0x1000000
+ 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);
+
+ /* Exception handling. */
+ alignas(16) u8 __nx_exception_stack[0x1000];
+ u64 __nx_exception_stack_size = sizeof(__nx_exception_stack);
+ void __libnx_exception_handler(ThreadExceptionDump *ctx);
+ void __libstratosphere_exception_handler(AtmosphereFatalErrorContext *ctx);
+}
+
+ams::ncm::ProgramId __stratosphere_program_id = ams::ncm::ProgramId::AtmosphereMitm;
+
+void __libnx_exception_handler(ThreadExceptionDump *ctx) {
+ StratosphereCrashHandler(ctx);
+}
+
+void __libstratosphere_exception_handler(AtmosphereFatalErrorContext *ctx) {
+ /* We're bpc-mitm (or ams_mitm, anyway), so manually reboot to fatal error. */
+ Utils::RebootToFatalError(ctx);
+}
+
+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) {
+ SetFirmwareVersionForLibnx();
+
+ DoWithSmSession([&]() {
+ R_ASSERT(fsInitialize());
+ R_ASSERT(pmdmntInitialize());
+ R_ASSERT(pminfoInitialize());
+ R_ASSERT(splFsInitialize());
+ });
+
+ CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION);
+}
+
+void __appExit(void) {
+ /* Cleanup services. */
+ splFsExit();
+ pminfoExit();
+ pmdmntExit();
+ fsExit();
+}
+
+int main(int argc, char **argv)
+{
+ consoleDebugInit(debugDevice_SVC);
+ ams::os::Thread initializer_thread;
+
+ LaunchAllMitmModules();
+
+ R_ASSERT(initializer_thread.Initialize(&Utils::InitializeThreadFunc, NULL, 0x4000, 0x15));
+ R_ASSERT(initializer_thread.Start());
+
+ /* Wait for all mitm modules to end. */
+ WaitAllMitmModules();
+
+ return 0;
+}
+
diff --git a/stratosphere/ams_mitm/source/amsmitm_modules.cpp b/stratosphere/ams_mitm_old/source/amsmitm_modules.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/amsmitm_modules.cpp
rename to stratosphere/ams_mitm_old/source/amsmitm_modules.cpp
diff --git a/stratosphere/ams_mitm/source/amsmitm_modules.hpp b/stratosphere/ams_mitm_old/source/amsmitm_modules.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/amsmitm_modules.hpp
rename to stratosphere/ams_mitm_old/source/amsmitm_modules.hpp
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpc_ams_service.cpp b/stratosphere/ams_mitm_old/source/bpc_mitm/bpc_ams_service.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/bpc_mitm/bpc_ams_service.cpp
rename to stratosphere/ams_mitm_old/source/bpc_mitm/bpc_ams_service.cpp
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpc_ams_service.hpp b/stratosphere/ams_mitm_old/source/bpc_mitm/bpc_ams_service.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/bpc_mitm/bpc_ams_service.hpp
rename to stratosphere/ams_mitm_old/source/bpc_mitm/bpc_ams_service.hpp
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpc_mitm_service.cpp b/stratosphere/ams_mitm_old/source/bpc_mitm/bpc_mitm_service.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/bpc_mitm/bpc_mitm_service.cpp
rename to stratosphere/ams_mitm_old/source/bpc_mitm/bpc_mitm_service.cpp
diff --git a/stratosphere/ams_mitm_old/source/bpc_mitm/bpc_mitm_service.hpp b/stratosphere/ams_mitm_old/source/bpc_mitm/bpc_mitm_service.hpp
new file mode 100644
index 000000000..66c0d0d89
--- /dev/null
+++ b/stratosphere/ams_mitm_old/source/bpc_mitm/bpc_mitm_service.hpp
@@ -0,0 +1,54 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+
+#pragma once
+#include
+#include
+
+#include "../utils.hpp"
+
+class BpcMitmService : public IMitmServiceObject {
+ private:
+ enum class CommandId {
+ ShutdownSystem = 0,
+ RebootSystem = 1,
+ };
+ public:
+ BpcMitmService(std::shared_ptr s, u64 pid, ams::ncm::ProgramId tid) : IMitmServiceObject(s, pid, tid) {
+ /* ... */
+ }
+
+ static bool ShouldMitm(u64 pid, ams::ncm::ProgramId tid) {
+ /* We will mitm:
+ * - am, to intercept the Reboot/Power buttons in the overlay menu.
+ * - fatal, to simplify payload reboot logic significantly
+ * - applications, to allow homebrew to take advantage of the feature.
+ */
+ return tid == ams::ncm::ProgramId::Am || tid == ams::ncm::ProgramId::Fatal || ams::ncm::IsApplicationProgramId(tid) || Utils::IsHblTid(static_cast(tid));
+ }
+
+ static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
+
+ protected:
+ /* Overridden commands. */
+ Result ShutdownSystem();
+ Result RebootSystem();
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ MAKE_SERVICE_COMMAND_META(BpcMitmService, ShutdownSystem),
+ MAKE_SERVICE_COMMAND_META(BpcMitmService, RebootSystem),
+ };
+};
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_main.cpp b/stratosphere/ams_mitm_old/source/bpc_mitm/bpcmitm_main.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_main.cpp
rename to stratosphere/ams_mitm_old/source/bpc_mitm/bpcmitm_main.cpp
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_main.hpp b/stratosphere/ams_mitm_old/source/bpc_mitm/bpcmitm_main.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_main.hpp
rename to stratosphere/ams_mitm_old/source/bpc_mitm/bpcmitm_main.hpp
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_reboot_manager.cpp b/stratosphere/ams_mitm_old/source/bpc_mitm/bpcmitm_reboot_manager.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_reboot_manager.cpp
rename to stratosphere/ams_mitm_old/source/bpc_mitm/bpcmitm_reboot_manager.cpp
diff --git a/stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_reboot_manager.hpp b/stratosphere/ams_mitm_old/source/bpc_mitm/bpcmitm_reboot_manager.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/bpc_mitm/bpcmitm_reboot_manager.hpp
rename to stratosphere/ams_mitm_old/source/bpc_mitm/bpcmitm_reboot_manager.hpp
diff --git a/stratosphere/ams_mitm/source/debug.cpp b/stratosphere/ams_mitm_old/source/debug.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/debug.cpp
rename to stratosphere/ams_mitm_old/source/debug.cpp
diff --git a/stratosphere/ams_mitm/source/debug.hpp b/stratosphere/ams_mitm_old/source/debug.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/debug.hpp
rename to stratosphere/ams_mitm_old/source/debug.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_dir_utils.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_dir_utils.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_dir_utils.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_dir_utils.cpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_dir_utils.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_dir_utils.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_dir_utils.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_dir_utils.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_directory_redirection_filesystem.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_directory_redirection_filesystem.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_directory_redirection_filesystem.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_directory_redirection_filesystem.cpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_directory_redirection_filesystem.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_directory_redirection_filesystem.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_directory_redirection_filesystem.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_directory_redirection_filesystem.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_directory_savedata_filesystem.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_directory_savedata_filesystem.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_directory_savedata_filesystem.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_directory_savedata_filesystem.cpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_directory_savedata_filesystem.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_directory_savedata_filesystem.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_directory_savedata_filesystem.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_directory_savedata_filesystem.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_file_storage.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_file_storage.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_file_storage.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_file_storage.cpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_file_storage.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_file_storage.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_file_storage.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_file_storage.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_filesystem_types.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_filesystem_types.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_filesystem_types.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_filesystem_types.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_idirectory.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_idirectory.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_idirectory.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_idirectory.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_ifile.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_ifile.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_ifile.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_ifile.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_ifilesystem.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_ifilesystem.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_ifilesystem.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_ifilesystem.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_istorage.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_istorage.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_istorage.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_istorage.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_path_utils.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_path_utils.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_path_utils.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_path_utils.cpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_path_utils.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_path_utils.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_path_utils.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_path_utils.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_save_utils.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_save_utils.cpp
similarity index 95%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_save_utils.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_save_utils.cpp
index a1855ec40..de2c6e25a 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fs_save_utils.cpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fs_save_utils.cpp
@@ -98,7 +98,7 @@ Result FsSaveUtils::GetSaveDataTypeString(const char **out_str, u8 save_data_typ
return ResultSuccess();
}
-Result FsSaveUtils::GetSaveDataDirectoryPath(FsPath &out_path, u8 space_id, u8 save_data_type, u64 title_id, u128 user_id, u64 save_id) {
+Result FsSaveUtils::GetSaveDataDirectoryPath(FsPath &out_path, u8 space_id, u8 save_data_type, u64 program_id, u128 user_id, u64 save_id) {
const char *space_id_str, *save_type_str;
/* Get space_id, save_data_type strings. */
@@ -114,7 +114,7 @@ Result FsSaveUtils::GetSaveDataDirectoryPath(FsPath &out_path, u8 space_id, u8 s
space_id_str, save_type_str, save_id));
} else {
out_path_len = static_cast(snprintf(out_path.str, sizeof(out_path.str), "/atmosphere/saves/sysnand/%s/%s/%016lx/%016lx%016lx",
- space_id_str, save_type_str, title_id, static_cast(user_id >> 64ul), static_cast(user_id)));
+ space_id_str, save_type_str, program_id, static_cast(user_id >> 64ul), static_cast(user_id)));
}
if (out_path_len >= sizeof(out_path)) {
/* TODO: Should we abort here? */
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_save_utils.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_save_utils.hpp
similarity index 92%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_save_utils.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_save_utils.hpp
index bc9b76b35..5849e1794 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fs_save_utils.hpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fs_save_utils.hpp
@@ -25,5 +25,5 @@ class FsSaveUtils {
static Result GetSaveDataSpaceIdString(const char **out_str, u8 space_id);
static Result GetSaveDataTypeString(const char **out_str, u8 save_data_type);
public:
- static Result GetSaveDataDirectoryPath(FsPath &out_path, u8 space_id, u8 save_data_type, u64 title_id, u128 user_id, u64 save_id);
+ static Result GetSaveDataDirectoryPath(FsPath &out_path, u8 space_id, u8 save_data_type, u64 program_id, u128 user_id, u64 save_id);
};
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_shim.c b/stratosphere/ams_mitm_old/source/fs_mitm/fs_shim.c
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_shim.c
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_shim.c
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_shim.h b/stratosphere/ams_mitm_old/source/fs_mitm/fs_shim.h
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_shim.h
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_shim.h
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_subdirectory_filesystem.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_subdirectory_filesystem.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_subdirectory_filesystem.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_subdirectory_filesystem.cpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_subdirectory_filesystem.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fs_subdirectory_filesystem.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fs_subdirectory_filesystem.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fs_subdirectory_filesystem.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_boot0storage.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_boot0storage.cpp
similarity index 96%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_boot0storage.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_boot0storage.cpp
index e49e9030f..45658cd7a 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_boot0storage.cpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_boot0storage.cpp
@@ -28,11 +28,11 @@ bool Boot0Storage::CanModifyBctPubks() {
/* RCM bug patched. */
/* Only allow NS to update the BCT pubks. */
/* AutoRCM on a patched unit will cause a brick, so homebrew should NOT be allowed to write. */
- return this->title_id == ams::ncm::TitleId::Ns;
+ return this->program_id == ams::ncm::ProgramId::Ns;
} else {
/* RCM bug unpatched. */
/* Allow homebrew but not NS to update the BCT pubks. */
- return this->title_id != ams::ncm::TitleId::Ns;
+ return this->program_id != ams::ncm::ProgramId::Ns;
}
}
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_boot0storage.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_boot0storage.hpp
similarity index 96%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_boot0storage.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_boot0storage.hpp
index 68a1091a6..26ee3172a 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_boot0storage.hpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_boot0storage.hpp
@@ -131,12 +131,12 @@ class Boot0Storage : public SectoredProxyStorage<0x200> {
static constexpr u64 EksSize = 0x4000;
static constexpr u64 EksEnd = EksStart + EksSize;
private:
- ams::ncm::TitleId title_id;
+ ams::ncm::ProgramId program_id;
private:
bool CanModifyBctPubks();
public:
- Boot0Storage(FsStorage *s, ams::ncm::TitleId t) : Base(s), title_id(t) { }
- Boot0Storage(FsStorage s, ams::ncm::TitleId t) : Base(s), title_id(t) { }
+ Boot0Storage(FsStorage *s, ams::ncm::ProgramId t) : Base(s), program_id(t) { }
+ Boot0Storage(FsStorage s, ams::ncm::ProgramId t) : Base(s), program_id(t) { }
public:
virtual Result Read(void *_buffer, size_t size, u64 offset) override;
virtual Result Write(void *_buffer, size_t size, u64 offset) override;
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_layeredrom.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_layeredrom.cpp
similarity index 95%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_layeredrom.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_layeredrom.cpp
index 763d4c2ca..258f651bb 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_layeredrom.cpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_layeredrom.cpp
@@ -23,9 +23,9 @@
IStorage::~IStorage() = default;
-LayeredRomFS::LayeredRomFS(std::shared_ptr s_r, std::shared_ptr f_r, u64 tid) : storage_romfs(s_r), file_romfs(f_r), title_id(tid) {
+LayeredRomFS::LayeredRomFS(std::shared_ptr s_r, std::shared_ptr f_r, u64 tid) : storage_romfs(s_r), file_romfs(f_r), program_id(tid) {
/* Start building the new virtual romfs. */
- RomFSBuildContext build_ctx(this->title_id);
+ RomFSBuildContext build_ctx(this->program_id);
this->p_source_infos = std::shared_ptr>(new std::vector(), [](std::vector *to_delete) {
for (unsigned int i = 0; i < to_delete->size(); i++) {
(*to_delete)[i].Cleanup();
@@ -90,7 +90,7 @@ Result LayeredRomFS::Read(void *buffer, size_t size, u64 offset) {
case RomFSDataSource::MetaData:
{
FsFile file;
- R_ASSERT(Utils::OpenSdFileForAtmosphere(this->title_id, ROMFS_METADATA_FILE_PATH, FS_OPEN_READ, &file));
+ R_ASSERT(Utils::OpenSdFileForAtmosphere(this->program_id, ROMFS_METADATA_FILE_PATH, FS_OPEN_READ, &file));
size_t out_read;
R_ASSERT(fsFileRead(&file, (offset - cur_source->virtual_offset), (void *)((uintptr_t)buffer + read_so_far), cur_read_size, FS_READOPTION_NONE, &out_read));
AMS_ASSERT(out_read == cur_read_size);
@@ -100,7 +100,7 @@ Result LayeredRomFS::Read(void *buffer, size_t size, u64 offset) {
case RomFSDataSource::LooseFile:
{
FsFile file;
- R_ASSERT(Utils::OpenRomFSSdFile(this->title_id, cur_source->loose_source_info.path, FS_OPEN_READ, &file));
+ R_ASSERT(Utils::OpenRomFSSdFile(this->program_id, cur_source->loose_source_info.path, FS_OPEN_READ, &file));
size_t out_read;
R_ASSERT(fsFileRead(&file, (offset - cur_source->virtual_offset), (void *)((uintptr_t)buffer + read_so_far), cur_read_size, FS_READOPTION_NONE, &out_read));
AMS_ASSERT(out_read == cur_read_size);
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_layeredrom.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_layeredrom.hpp
similarity index 98%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_layeredrom.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_layeredrom.hpp
index 740fa1478..6dca4ac18 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_layeredrom.hpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_layeredrom.hpp
@@ -30,7 +30,7 @@ class LayeredRomFS : public IROStorage {
std::shared_ptr storage_romfs;
std::shared_ptr file_romfs;
/* Information about the merged RomFS. */
- u64 title_id;
+ u64 program_id;
std::shared_ptr> p_source_infos;
public:
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_main.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_main.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_main.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_main.cpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_main.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_main.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_main.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_main.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfsbuild.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_romfsbuild.cpp
similarity index 98%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfsbuild.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_romfsbuild.cpp
index 5c6ca7c0b..37db5cfb1 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfsbuild.cpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_romfsbuild.cpp
@@ -28,7 +28,7 @@ void RomFSBuildContext::VisitDirectory(FsFileSystem *filesys, RomFSBuildDirector
std::vector child_dirs;
/* Open the current parent directory. */
- R_ASSERT(Utils::OpenRomFSDir(filesys, this->title_id, parent->path, &dir));
+ R_ASSERT(Utils::OpenRomFSDir(filesys, this->program_id, parent->path, &dir));
{
ON_SCOPE_EXIT { fsDirClose(&dir); };
@@ -95,7 +95,7 @@ void RomFSBuildContext::MergeSdFiles() {
if (!Utils::IsSdInitialized()) {
return;
}
- if (R_FAILED((Utils::OpenSdDirForAtmosphere(this->title_id, "/romfs", &dir)))) {
+ if (R_FAILED((Utils::OpenSdDirForAtmosphere(this->program_id, "/romfs", &dir)))) {
return;
}
fsDirClose(&dir);
@@ -398,7 +398,7 @@ void RomFSBuildContext::Build(std::vector *out_infos) {
header->file_table_ofs = header->file_hash_table_ofs + header->file_hash_table_size;
/* Try to save metadata to the SD card, to save on memory space. */
- if (R_SUCCEEDED(Utils::SaveSdFileForAtmosphere(this->title_id, ROMFS_METADATA_FILE_PATH, metadata, metadata_size))) {
+ if (R_SUCCEEDED(Utils::SaveSdFileForAtmosphere(this->program_id, ROMFS_METADATA_FILE_PATH, metadata, metadata_size))) {
out_infos->emplace_back(header->dir_hash_table_ofs, metadata_size, RomFSDataSource::MetaData);
std::free(metadata);
} else {
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfsbuild.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_romfsbuild.hpp
similarity index 99%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfsbuild.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_romfsbuild.hpp
index a5ff43aa6..697f8c24c 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfsbuild.hpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_romfsbuild.hpp
@@ -218,7 +218,7 @@ struct RomFSBuildFileContext {
class RomFSBuildContext {
private:
- u64 title_id;
+ u64 program_id;
RomFSBuildDirectoryContext *root;
std::map directories;
std::map files;
@@ -239,7 +239,7 @@ class RomFSBuildContext {
bool AddDirectory(RomFSBuildDirectoryContext *parent_dir_ctx, RomFSBuildDirectoryContext *dir_ctx, RomFSBuildDirectoryContext **out_dir_ctx);
bool AddFile(RomFSBuildDirectoryContext *parent_dir_ctx, RomFSBuildFileContext *file_ctx);
public:
- RomFSBuildContext(u64 tid) : title_id(tid) {
+ RomFSBuildContext(u64 tid) : program_id(tid) {
this->root = new RomFSBuildDirectoryContext({0});
this->root->path = new char[1];
this->root->path[0] = '\x00';
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romstorage.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_romstorage.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_romstorage.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_romstorage.hpp
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_service.cpp
similarity index 86%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_service.cpp
index 54aa32fcc..7c706c6bc 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_service.cpp
@@ -39,13 +39,13 @@
static ams::os::Mutex g_StorageCacheLock;
static std::unordered_map> g_StorageCache;
-static bool StorageCacheGetEntry(ams::ncm::TitleId title_id, std::shared_ptr *out) {
+static bool StorageCacheGetEntry(ams::ncm::ProgramId program_id, std::shared_ptr *out) {
std::scoped_lock lock(g_StorageCacheLock);
- if (g_StorageCache.find(static_cast(title_id)) == g_StorageCache.end()) {
+ if (g_StorageCache.find(static_cast(program_id)) == g_StorageCache.end()) {
return false;
}
- auto intf = g_StorageCache[static_cast(title_id)].lock();
+ auto intf = g_StorageCache[static_cast(program_id)].lock();
if (intf != nullptr) {
*out = intf;
return true;
@@ -53,18 +53,18 @@ static bool StorageCacheGetEntry(ams::ncm::TitleId title_id, std::shared_ptr *ptr) {
+static void StorageCacheSetEntry(ams::ncm::ProgramId program_id, std::shared_ptr *ptr) {
std::scoped_lock lock(g_StorageCacheLock);
/* Ensure we always use the cached copy if present. */
- if (g_StorageCache.find(static_cast(title_id)) != g_StorageCache.end()) {
- auto intf = g_StorageCache[static_cast(title_id)].lock();
+ if (g_StorageCache.find(static_cast(program_id)) != g_StorageCache.end()) {
+ auto intf = g_StorageCache[static_cast(program_id)].lock();
if (intf != nullptr) {
*ptr = intf;
}
}
- g_StorageCache[static_cast(title_id)] = *ptr;
+ g_StorageCache[static_cast(program_id)] = *ptr;
}
void FsMitmService::PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx) {
@@ -95,11 +95,11 @@ Result FsMitmService::OpenHblWebContentFileSystem(Out> out_fs, u64 title_id, u32 filesystem_type) {
+Result FsMitmService::OpenFileSystemWithPatch(Out> out_fs, u64 program_id, u32 filesystem_type) {
/* Check for eligibility. */
{
FsDir d;
- if (!Utils::IsWebAppletTid(static_cast(this->title_id)) || filesystem_type != FsFileSystemType_ContentManual || !Utils::IsHblTid(title_id) ||
+ if (!Utils::IsWebAppletTid(static_cast(this->program_id)) || filesystem_type != FsFileSystemType_ContentManual || !Utils::IsHblTid(program_id) ||
R_FAILED(Utils::OpenSdDir(AtmosphereHblWebContentDir, &d))) {
return ResultAtmosphereMitmShouldForwardToSession;
}
@@ -110,7 +110,7 @@ Result FsMitmService::OpenFileSystemWithPatch(Outforward_service.get(), &fs, title_id, static_cast(filesystem_type)))) {
+ if (R_SUCCEEDED(fsOpenFileSystemWithPatchFwd(this->forward_service.get(), &fs, program_id, static_cast(filesystem_type)))) {
fsFsClose(&fs);
return ResultAtmosphereMitmShouldForwardToSession;
}
@@ -119,11 +119,11 @@ Result FsMitmService::OpenFileSystemWithPatch(OutOpenHblWebContentFileSystem(out_fs);
}
-Result FsMitmService::OpenFileSystemWithId(Out> out_fs, InPointer path, u64 title_id, u32 filesystem_type) {
+Result FsMitmService::OpenFileSystemWithId(Out> out_fs, InPointer path, u64 program_id, u32 filesystem_type) {
/* Check for eligibility. */
{
FsDir d;
- if (!Utils::IsWebAppletTid(static_cast(this->title_id)) || filesystem_type != FsFileSystemType_ContentManual || !Utils::IsHblTid(title_id) ||
+ if (!Utils::IsWebAppletTid(static_cast(this->program_id)) || filesystem_type != FsFileSystemType_ContentManual || !Utils::IsHblTid(program_id) ||
R_FAILED(Utils::OpenSdDir(AtmosphereHblWebContentDir, &d))) {
return ResultAtmosphereMitmShouldForwardToSession;
}
@@ -134,7 +134,7 @@ Result FsMitmService::OpenFileSystemWithId(Outforward_service.get(), &fs, title_id, static_cast(filesystem_type), path.pointer))) {
+ if (R_SUCCEEDED(fsOpenFileSystemWithIdFwd(this->forward_service.get(), &fs, program_id, static_cast(filesystem_type), path.pointer))) {
fsFsClose(&fs);
return ResultAtmosphereMitmShouldForwardToSession;
}
@@ -145,7 +145,7 @@ Result FsMitmService::OpenFileSystemWithId(Out> out_fs) {
/* We only care about redirecting this for NS/Emummc. */
- if (this->title_id != ams::ncm::TitleId::Ns) {
+ if (this->program_id != ams::ncm::ProgramId::Ns) {
return ResultAtmosphereMitmShouldForwardToSession;
}
if (!IsEmummc()) {
@@ -168,7 +168,7 @@ Result FsMitmService::OpenSdCardFileSystem(Out> out_fs, u8 space_id, FsSave save_struct) {
bool should_redirect_saves = false;
- const bool has_redirect_save_flags = Utils::HasFlag(static_cast(this->title_id), "redirect_save");
+ const bool has_redirect_save_flags = Utils::HasFlag(static_cast(this->program_id), "redirect_save");
if (R_FAILED(Utils::GetSettingsItemBooleanValue("atmosphere", "fsmitm_redirect_saves_to_sd", &should_redirect_saves))) {
return ResultAtmosphereMitmShouldForwardToSession;
}
@@ -193,7 +193,7 @@ Result FsMitmService::OpenSaveDataFileSystem(Out(this->title_id) : save_struct.titleID;
+ const u64 target_tid = save_struct.titleID == 0 ? static_cast(this->program_id) : save_struct.titleID;
FsPath save_dir_path;
R_TRY(FsSaveUtils::GetSaveDataDirectoryPath(save_dir_path, space_id, save_struct.saveDataType, target_tid, save_struct.userID, save_struct.saveID));
@@ -234,13 +234,13 @@ Result FsMitmService::OpenBisStorage(Out> out
FsStorage bis_storage;
R_TRY(fsOpenBisStorageFwd(this->forward_service.get(), &bis_storage, bis_partition_id));
- const bool is_sysmodule = ams::ncm::IsSystemTitleId(this->title_id);
- const bool has_bis_write_flag = Utils::HasFlag(static_cast(this->title_id), "bis_write");
- const bool has_cal0_read_flag = Utils::HasFlag(static_cast(this->title_id), "cal_read");
+ const bool is_sysmodule = ams::ncm::IsSystemProgramId(this->program_id);
+ const bool has_bis_write_flag = Utils::HasFlag(static_cast(this->program_id), "bis_write");
+ const bool has_cal0_read_flag = Utils::HasFlag(static_cast(this->program_id), "cal_read");
/* Set output storage. */
if (bis_partition_id == FsBisStorageId_Boot0) {
- out_storage.SetValue(std::make_shared(new Boot0Storage(bis_storage, this->title_id)));
+ out_storage.SetValue(std::make_shared(new Boot0Storage(bis_storage, this->program_id)));
} else if (bis_partition_id == FsBisStorageId_CalibrationBinary) {
/* PRODINFO should *never* be writable. */
if (is_sysmodule || has_cal0_read_flag) {
@@ -254,7 +254,7 @@ Result FsMitmService::OpenBisStorage(Out> out
if (is_sysmodule || has_bis_write_flag) {
/* Sysmodules should still be allowed to read and write. */
out_storage.SetValue(std::make_shared(new ProxyStorage(bis_storage)));
- } else if (Utils::IsHblTid(static_cast(this->title_id)) &&
+ } else if (Utils::IsHblTid(static_cast(this->program_id)) &&
((FsBisStorageId_BootConfigAndPackage2NormalMain <= bis_partition_id && bis_partition_id <= FsBisStorageId_BootConfigAndPackage2RepairSub) ||
bis_partition_id == FsBisStorageId_Boot1)) {
/* Allow HBL to write to boot1 (safe firm) + package2. */
@@ -282,14 +282,14 @@ Result FsMitmService::OpenDataStorageByCurrentProcess(Out(this->title_id))) {
+ if (!Utils::HasSdRomfsContent(static_cast(this->program_id))) {
return ResultAtmosphereMitmShouldForwardToSession;
}
/* Try to get from the cache. */
{
std::shared_ptr cached_storage = nullptr;
- bool has_cache = StorageCacheGetEntry(this->title_id, &cached_storage);
+ bool has_cache = StorageCacheGetEntry(this->program_id, &cached_storage);
if (has_cache) {
if (out_storage.IsDomain()) {
@@ -312,13 +312,13 @@ Result FsMitmService::OpenDataStorageByCurrentProcess(Out storage_to_cache = nullptr;
/* TODO: Is there a sensible path that ends in ".romfs" we can use?" */
FsFile data_file;
- if (R_SUCCEEDED(Utils::OpenSdFileForAtmosphere(static_cast(this->title_id), "romfs.bin", FS_OPEN_READ, &data_file))) {
- storage_to_cache = std::make_shared(new LayeredRomFS(std::make_shared(new ProxyStorage(data_storage)), std::make_shared(new FileStorage(new ProxyFile(data_file))), static_cast(this->title_id)));
+ if (R_SUCCEEDED(Utils::OpenSdFileForAtmosphere(static_cast(this->program_id), "romfs.bin", FS_OPEN_READ, &data_file))) {
+ storage_to_cache = std::make_shared(new LayeredRomFS(std::make_shared(new ProxyStorage(data_storage)), std::make_shared(new FileStorage(new ProxyFile(data_file))), static_cast(this->program_id)));
} else {
- storage_to_cache = std::make_shared(new LayeredRomFS(std::make_shared(new ProxyStorage(data_storage)), nullptr, static_cast(this->title_id)));
+ storage_to_cache = std::make_shared(new LayeredRomFS(std::make_shared(new ProxyStorage(data_storage)), nullptr, static_cast(this->program_id)));
}
- StorageCacheSetEntry(this->title_id, &storage_to_cache);
+ StorageCacheSetEntry(this->program_id, &storage_to_cache);
out_storage.SetValue(std::move(storage_to_cache));
if (out_storage.IsDomain()) {
@@ -345,7 +345,7 @@ Result FsMitmService::OpenDataStorageByDataId(Out cached_storage = nullptr;
- bool has_cache = StorageCacheGetEntry(ams::ncm::TitleId{data_id}, &cached_storage);
+ bool has_cache = StorageCacheGetEntry(ams::ncm::ProgramId{data_id}, &cached_storage);
if (has_cache) {
if (out_storage.IsDomain()) {
@@ -374,7 +374,7 @@ Result FsMitmService::OpenDataStorageByDataId(Out(new LayeredRomFS(std::make_shared(new ProxyStorage(data_storage)), nullptr, data_id));
}
- StorageCacheSetEntry(ams::ncm::TitleId{data_id}, &storage_to_cache);
+ StorageCacheSetEntry(ams::ncm::ProgramId{data_id}, &storage_to_cache);
out_storage.SetValue(std::move(storage_to_cache));
if (out_storage.IsDomain()) {
diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.hpp b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_service.hpp
similarity index 82%
rename from stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.hpp
rename to stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_service.hpp
index ae8e52387..f397bebfb 100644
--- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.hpp
+++ b/stratosphere/ams_mitm_old/source/fs_mitm/fsmitm_service.hpp
@@ -44,15 +44,15 @@ class FsMitmService : public IMitmServiceObject {
bool has_initialized = false;
bool should_override_contents;
public:
- FsMitmService(std::shared_ptr s, u64 pid, ams::ncm::TitleId tid) : IMitmServiceObject(s, pid, tid) {
- if (Utils::HasSdDisableMitMFlag(static_cast(this->title_id))) {
+ FsMitmService(std::shared_ptr s, u64 pid, ams::ncm::ProgramId tid) : IMitmServiceObject(s, pid, tid) {
+ if (Utils::HasSdDisableMitMFlag(static_cast(this->program_id))) {
this->should_override_contents = false;
} else {
- this->should_override_contents = (this->title_id >= ams::ncm::TitleId::ApplicationStart || Utils::HasSdMitMFlag(static_cast(this->title_id))) && Utils::HasOverrideButton(static_cast(this->title_id));
+ this->should_override_contents = (this->program_id >= ams::ncm::ProgramId::ApplicationStart || Utils::HasSdMitMFlag(static_cast(this->program_id))) && Utils::HasOverrideButton(static_cast(this->program_id));
}
}
- static bool ShouldMitm(u64 pid, ams::ncm::TitleId tid) {
+ static bool ShouldMitm(u64 pid, ams::ncm::ProgramId tid) {
/* Don't Mitm KIPs */
if (pid < 0x50) {
return false;
@@ -62,11 +62,11 @@ class FsMitmService : public IMitmServiceObject {
/* TODO: intercepting everything seems to cause issues with sleep mode, for some reason. */
/* Figure out why, and address it. */
- if (tid == ams::ncm::TitleId::AppletQlaunch || tid == ams::ncm::TitleId::AppletMaintenanceMenu) {
+ if (tid == ams::ncm::ProgramId::AppletQlaunch || tid == ams::ncm::ProgramId::AppletMaintenanceMenu) {
has_launched_qlaunch = true;
}
- return has_launched_qlaunch || tid == ams::ncm::TitleId::Ns || tid >= ams::ncm::TitleId::ApplicationStart || Utils::HasSdMitMFlag(static_cast(tid));
+ return has_launched_qlaunch || tid == ams::ncm::ProgramId::Ns || tid >= ams::ncm::ProgramId::ApplicationStart || Utils::HasSdMitMFlag(static_cast(tid));
}
static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
@@ -74,8 +74,8 @@ class FsMitmService : public IMitmServiceObject {
Result OpenHblWebContentFileSystem(Out> &out);
protected:
/* Overridden commands. */
- Result OpenFileSystemWithPatch(Out> out, u64 title_id, u32 filesystem_type);
- Result OpenFileSystemWithId(Out> out, InPointer path, u64 title_id, u32 filesystem_type);
+ Result OpenFileSystemWithPatch(Out> out, u64 program_id, u32 filesystem_type);
+ Result OpenFileSystemWithId(Out> out, InPointer path, u64 program_id, u32 filesystem_type);
Result OpenSdCardFileSystem(Out> out);
Result OpenSaveDataFileSystem(Out> out, u8 space_id, FsSave save_struct);
Result OpenBisStorage(Out> out, u32 bis_partition_id);
diff --git a/stratosphere/ams_mitm/source/hid_mitm/hid_mitm_service.cpp b/stratosphere/ams_mitm_old/source/hid_mitm/hid_mitm_service.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/hid_mitm/hid_mitm_service.cpp
rename to stratosphere/ams_mitm_old/source/hid_mitm/hid_mitm_service.cpp
diff --git a/stratosphere/ams_mitm_old/source/hid_mitm/hid_mitm_service.hpp b/stratosphere/ams_mitm_old/source/hid_mitm/hid_mitm_service.hpp
new file mode 100644
index 000000000..c7c45c7a0
--- /dev/null
+++ b/stratosphere/ams_mitm_old/source/hid_mitm/hid_mitm_service.hpp
@@ -0,0 +1,54 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+
+#pragma once
+#include
+#include
+
+#include "../utils.hpp"
+
+class HidMitmService : public IMitmServiceObject {
+ private:
+ enum class CommandId {
+ SetSupportedNpadStyleSet = 100,
+ };
+ private:
+ bool should_set_system_ext = false;
+ public:
+ HidMitmService(std::shared_ptr s, u64 pid, ams::ncm::ProgramId tid) : IMitmServiceObject(s, pid, tid) {
+ /* ... */
+ }
+
+ ~HidMitmService();
+
+ static bool ShouldMitm(u64 pid, ams::ncm::ProgramId tid) {
+ /* TODO: Consider removing in Atmosphere 0.10.0/1.0.0. */
+ /* We will mitm:
+ * - hbl, to help homebrew not need to be recompiled.
+ */
+ return Utils::IsHblTid(static_cast(tid));
+ }
+
+ static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
+
+ protected:
+ /* Overridden commands. */
+ Result SetSupportedNpadStyleSet(u64 applet_resource_user_id, u32 style_set, PidDescriptor pid_desc);
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ MAKE_SERVICE_COMMAND_META(HidMitmService, SetSupportedNpadStyleSet),
+ };
+};
diff --git a/stratosphere/ams_mitm/source/hid_mitm/hid_shim.c b/stratosphere/ams_mitm_old/source/hid_mitm/hid_shim.c
similarity index 100%
rename from stratosphere/ams_mitm/source/hid_mitm/hid_shim.c
rename to stratosphere/ams_mitm_old/source/hid_mitm/hid_shim.c
diff --git a/stratosphere/ams_mitm/source/hid_mitm/hid_shim.h b/stratosphere/ams_mitm_old/source/hid_mitm/hid_shim.h
similarity index 100%
rename from stratosphere/ams_mitm/source/hid_mitm/hid_shim.h
rename to stratosphere/ams_mitm_old/source/hid_mitm/hid_shim.h
diff --git a/stratosphere/ams_mitm/source/hid_mitm/hidmitm_main.cpp b/stratosphere/ams_mitm_old/source/hid_mitm/hidmitm_main.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/hid_mitm/hidmitm_main.cpp
rename to stratosphere/ams_mitm_old/source/hid_mitm/hidmitm_main.cpp
diff --git a/stratosphere/ams_mitm/source/hid_mitm/hidmitm_main.hpp b/stratosphere/ams_mitm_old/source/hid_mitm/hidmitm_main.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/hid_mitm/hidmitm_main.hpp
rename to stratosphere/ams_mitm_old/source/hid_mitm/hidmitm_main.hpp
diff --git a/stratosphere/ams_mitm/source/ini.c b/stratosphere/ams_mitm_old/source/ini.c
similarity index 100%
rename from stratosphere/ams_mitm/source/ini.c
rename to stratosphere/ams_mitm_old/source/ini.c
diff --git a/stratosphere/ams_mitm/source/ini.h b/stratosphere/ams_mitm_old/source/ini.h
similarity index 100%
rename from stratosphere/ams_mitm/source/ini.h
rename to stratosphere/ams_mitm_old/source/ini.h
diff --git a/stratosphere/ams_mitm/source/ns_mitm/ns_shim.c b/stratosphere/ams_mitm_old/source/ns_mitm/ns_shim.c
similarity index 100%
rename from stratosphere/ams_mitm/source/ns_mitm/ns_shim.c
rename to stratosphere/ams_mitm_old/source/ns_mitm/ns_shim.c
diff --git a/stratosphere/ams_mitm/source/ns_mitm/ns_shim.h b/stratosphere/ams_mitm_old/source/ns_mitm/ns_shim.h
similarity index 100%
rename from stratosphere/ams_mitm/source/ns_mitm/ns_shim.h
rename to stratosphere/ams_mitm_old/source/ns_mitm/ns_shim.h
diff --git a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_am_service.cpp b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_am_service.cpp
similarity index 83%
rename from stratosphere/ams_mitm/source/ns_mitm/nsmitm_am_service.cpp
rename to stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_am_service.cpp
index d3c14b585..8276cb130 100644
--- a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_am_service.cpp
+++ b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_am_service.cpp
@@ -28,14 +28,14 @@ Result NsAmMitmService::GetApplicationContentPath(OutBuffer out_path, u64 ap
return nsamGetApplicationContentPathFwd(this->forward_service.get(), out_path.buffer, out_path.num_elements, app_id, static_cast(storage_type));
}
-Result NsAmMitmService::ResolveApplicationContentPath(u64 title_id, u8 storage_type) {
+Result NsAmMitmService::ResolveApplicationContentPath(u64 program_id, u8 storage_type) {
/* Always succeed for web applet asking about HBL. */
- if (Utils::IsWebAppletTid(static_cast(this->title_id)) && Utils::IsHblTid(title_id)) {
- nsamResolveApplicationContentPathFwd(this->forward_service.get(), title_id, static_cast(storage_type));
+ if (Utils::IsWebAppletTid(static_cast(this->program_id)) && Utils::IsHblTid(program_id)) {
+ nsamResolveApplicationContentPathFwd(this->forward_service.get(), program_id, static_cast(storage_type));
return ResultSuccess();
}
- return nsamResolveApplicationContentPathFwd(this->forward_service.get(), title_id, static_cast(storage_type));
+ return nsamResolveApplicationContentPathFwd(this->forward_service.get(), program_id, static_cast(storage_type));
}
Result NsAmMitmService::GetRunningApplicationProgramId(Out out_tid, u64 app_id) {
diff --git a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_am_service.hpp b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_am_service.hpp
similarity index 90%
rename from stratosphere/ams_mitm/source/ns_mitm/nsmitm_am_service.hpp
rename to stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_am_service.hpp
index fb88a4932..b010bd1de 100644
--- a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_am_service.hpp
+++ b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_am_service.hpp
@@ -28,11 +28,11 @@ class NsAmMitmService : public IMitmServiceObject {
GetRunningApplicationProgramId = 92,
};
public:
- NsAmMitmService(std::shared_ptr s, u64 pid, ams::ncm::TitleId tid) : IMitmServiceObject(s, pid, tid) {
+ NsAmMitmService(std::shared_ptr s, u64 pid, ams::ncm::ProgramId tid) : IMitmServiceObject(s, pid, tid) {
/* ... */
}
- static bool ShouldMitm(u64 pid, ams::ncm::TitleId tid) {
+ static bool ShouldMitm(u64 pid, ams::ncm::ProgramId tid) {
/* We will mitm:
* - web applets, to facilitate hbl web browser launching.
*/
@@ -44,7 +44,7 @@ class NsAmMitmService : public IMitmServiceObject {
protected:
/* Overridden commands. */
Result GetApplicationContentPath(OutBuffer out_path, u64 app_id, u8 storage_type);
- Result ResolveApplicationContentPath(u64 title_id, u8 storage_type);
+ Result ResolveApplicationContentPath(u64 program_id, u8 storage_type);
Result GetRunningApplicationProgramId(Out out_tid, u64 app_id);
public:
DEFINE_SERVICE_DISPATCH_TABLE {
diff --git a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_main.cpp b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_main.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/ns_mitm/nsmitm_main.cpp
rename to stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_main.cpp
diff --git a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_main.hpp b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_main.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/ns_mitm/nsmitm_main.hpp
rename to stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_main.hpp
diff --git a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_web_service.cpp b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_web_service.cpp
similarity index 79%
rename from stratosphere/ams_mitm/source/ns_mitm/nsmitm_web_service.cpp
rename to stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_web_service.cpp
index 094341c2d..416829ec6 100644
--- a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_web_service.cpp
+++ b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_web_service.cpp
@@ -29,7 +29,7 @@ Result NsWebMitmService::GetDocumentInterface(Outforward_service.get(), &doc));
/* Set output interface. */
- out_intf.SetValue(std::move(std::make_shared(static_cast(this->title_id), doc)));
+ out_intf.SetValue(std::move(std::make_shared(static_cast(this->program_id), doc)));
if (out_intf.IsDomain()) {
out_intf.ChangeObjectId(doc.s.object_id);
}
@@ -41,14 +41,14 @@ Result NsDocumentService::GetApplicationContentPath(OutBuffer out_path, u64
return nswebGetApplicationContentPath(this->srv.get(), out_path.buffer, out_path.num_elements, app_id, static_cast(storage_type));
}
-Result NsDocumentService::ResolveApplicationContentPath(u64 title_id, u8 storage_type) {
+Result NsDocumentService::ResolveApplicationContentPath(u64 program_id, u8 storage_type) {
/* Always succeed for web applet asking about HBL. */
- if (Utils::IsWebAppletTid(static_cast(this->title_id)) && Utils::IsHblTid(title_id)) {
- nswebResolveApplicationContentPath(this->srv.get(), title_id, static_cast(storage_type));
+ if (Utils::IsWebAppletTid(static_cast(this->program_id)) && Utils::IsHblTid(program_id)) {
+ nswebResolveApplicationContentPath(this->srv.get(), program_id, static_cast(storage_type));
return ResultSuccess();
}
- return nswebResolveApplicationContentPath(this->srv.get(), title_id, static_cast(storage_type));
+ return nswebResolveApplicationContentPath(this->srv.get(), program_id, static_cast(storage_type));
}
Result NsDocumentService::GetRunningApplicationProgramId(Out out_tid, u64 app_id) {
diff --git a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_web_service.hpp b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_web_service.hpp
similarity index 86%
rename from stratosphere/ams_mitm/source/ns_mitm/nsmitm_web_service.hpp
rename to stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_web_service.hpp
index 36a2b5f4e..298b5318e 100644
--- a/stratosphere/ams_mitm/source/ns_mitm/nsmitm_web_service.hpp
+++ b/stratosphere/ams_mitm_old/source/ns_mitm/nsmitm_web_service.hpp
@@ -30,18 +30,18 @@ class NsDocumentService : public IServiceObject {
GetRunningApplicationProgramId = 92,
};
private:
- u64 title_id;
+ u64 program_id;
std::unique_ptr srv;
public:
- NsDocumentService(u64 t, NsDocumentInterface *s) : title_id(t), srv(s) {
+ NsDocumentService(u64 t, NsDocumentInterface *s) : program_id(t), srv(s) {
/* ... */
}
- NsDocumentService(u64 t, std::unique_ptr s) : title_id(t), srv(std::move(s)) {
+ NsDocumentService(u64 t, std::unique_ptr s) : program_id(t), srv(std::move(s)) {
/* ... */
}
- NsDocumentService(u64 t, NsDocumentInterface s) : title_id(t) {
+ NsDocumentService(u64 t, NsDocumentInterface s) : program_id(t) {
srv = std::make_unique(s);
}
@@ -51,7 +51,7 @@ class NsDocumentService : public IServiceObject {
private:
/* Actual command API. */
Result GetApplicationContentPath(OutBuffer out_path, u64 app_id, u8 storage_type);
- Result ResolveApplicationContentPath(u64 title_id, u8 storage_type);
+ Result ResolveApplicationContentPath(u64 program_id, u8 storage_type);
Result GetRunningApplicationProgramId(Out out_tid, u64 app_id);
public:
DEFINE_SERVICE_DISPATCH_TABLE {
@@ -67,11 +67,11 @@ class NsWebMitmService : public IMitmServiceObject {
GetDocumentInterface = 7999,
};
public:
- NsWebMitmService(std::shared_ptr s, u64 pid, ams::ncm::TitleId tid) : IMitmServiceObject(s, pid, tid) {
+ NsWebMitmService(std::shared_ptr s, u64 pid, ams::ncm::ProgramId tid) : IMitmServiceObject(s, pid, tid) {
/* ... */
}
- static bool ShouldMitm(u64 pid, ams::ncm::TitleId tid) {
+ static bool ShouldMitm(u64 pid, ams::ncm::ProgramId tid) {
/* We will mitm:
* - web applets, to facilitate hbl web browser launching.
*/
diff --git a/stratosphere/ams_mitm/source/set_mitm/set_mitm_service.cpp b/stratosphere/ams_mitm_old/source/set_mitm/set_mitm_service.cpp
similarity index 95%
rename from stratosphere/ams_mitm/source/set_mitm/set_mitm_service.cpp
rename to stratosphere/ams_mitm_old/source/set_mitm/set_mitm_service.cpp
index cc575bd32..67679a719 100644
--- a/stratosphere/ams_mitm/source/set_mitm/set_mitm_service.cpp
+++ b/stratosphere/ams_mitm_old/source/set_mitm/set_mitm_service.cpp
@@ -67,14 +67,14 @@ Result SetMitmService::EnsureLocale() {
if (!this->got_locale) {
std::memset(&this->locale, 0xCC, sizeof(this->locale));
- if (this->title_id == ams::ncm::TitleId::Ns) {
+ if (this->program_id == ams::ncm::ProgramId::Ns) {
u64 app_pid = 0;
u64 app_tid = 0;
R_TRY(pmdmntGetApplicationPid(&app_pid));
- R_TRY(pminfoGetTitleId(&app_tid, app_pid));
+ R_TRY(pminfoGetProgramId(&app_tid, app_pid));
this->locale = Utils::GetTitleOverrideLocale(app_tid);
} else {
- this->locale = Utils::GetTitleOverrideLocale(static_cast(this->title_id));
+ this->locale = Utils::GetTitleOverrideLocale(static_cast(this->program_id));
this->got_locale = true;
}
}
diff --git a/stratosphere/ams_mitm_old/source/set_mitm/set_mitm_service.hpp b/stratosphere/ams_mitm_old/source/set_mitm/set_mitm_service.hpp
new file mode 100644
index 000000000..84e1fbb04
--- /dev/null
+++ b/stratosphere/ams_mitm_old/source/set_mitm/set_mitm_service.hpp
@@ -0,0 +1,59 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+
+#pragma once
+#include
+#include
+
+#include "../utils.hpp"
+
+class SetMitmService : public IMitmServiceObject {
+ private:
+ enum class CommandId {
+ GetLanguageCode = 0,
+ GetRegionCode = 4,
+ };
+ private:
+ ams::os::Mutex lock;
+ OverrideLocale locale;
+ bool got_locale;
+ public:
+ SetMitmService(std::shared_ptr s, u64 pid, ams::ncm::ProgramId tid) : IMitmServiceObject(s, pid, tid) {
+ this->got_locale = false;
+ }
+
+ static bool ShouldMitm(u64 pid, ams::ncm::ProgramId tid) {
+ /* Mitm all applications. */
+ return tid == ams::ncm::ProgramId::Ns || ams::ncm::IsApplicationProgramId(tid);
+ }
+
+ static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
+
+ protected:
+ static bool IsValidLanguageCode(u64 lang_code);
+ static bool IsValidRegionCode(u32 region_code);
+
+ Result EnsureLocale();
+ protected:
+ /* Overridden commands. */
+ Result GetLanguageCode(Out out_lang_code);
+ Result GetRegionCode(Out out_region_code);
+ public:
+ DEFINE_SERVICE_DISPATCH_TABLE {
+ MAKE_SERVICE_COMMAND_META(SetMitmService, GetLanguageCode),
+ MAKE_SERVICE_COMMAND_META(SetMitmService, GetRegionCode),
+ };
+};
diff --git a/stratosphere/ams_mitm/source/set_mitm/setmitm_main.cpp b/stratosphere/ams_mitm_old/source/set_mitm/setmitm_main.cpp
similarity index 100%
rename from stratosphere/ams_mitm/source/set_mitm/setmitm_main.cpp
rename to stratosphere/ams_mitm_old/source/set_mitm/setmitm_main.cpp
diff --git a/stratosphere/ams_mitm/source/set_mitm/setmitm_main.hpp b/stratosphere/ams_mitm_old/source/set_mitm/setmitm_main.hpp
similarity index 100%
rename from stratosphere/ams_mitm/source/set_mitm/setmitm_main.hpp
rename to stratosphere/ams_mitm_old/source/set_mitm/setmitm_main.hpp
diff --git a/stratosphere/ams_mitm/source/set_mitm/setsys_firmware_version.cpp b/stratosphere/ams_mitm_old/source/set_mitm/setsys_firmware_version.cpp
similarity index 89%
rename from stratosphere/ams_mitm/source/set_mitm/setsys_firmware_version.cpp
rename to stratosphere/ams_mitm_old/source/set_mitm/setsys_firmware_version.cpp
index 53daec4e3..839ff9e2b 100644
--- a/stratosphere/ams_mitm/source/set_mitm/setsys_firmware_version.cpp
+++ b/stratosphere/ams_mitm_old/source/set_mitm/setsys_firmware_version.cpp
@@ -32,7 +32,7 @@ void VersionManager::Initialize() {
}
/* Mount firmware version data archive. */
- R_ASSERT(romfsMountFromDataArchive(static_cast(ams::ncm::TitleId::ArchiveSystemVersion), FsStorageId_NandSystem, "sysver"));
+ R_ASSERT(romfsMountFromDataArchive(static_cast(ams::ncm::ProgramId::ArchiveSystemVersion), FsStorageId_NandSystem, "sysver"));
{
ON_SCOPE_EXIT { romfsUnmount("sysver"); };
@@ -65,11 +65,11 @@ void VersionManager::Initialize() {
g_got_version = true;
}
-Result VersionManager::GetFirmwareVersion(ams::ncm::TitleId title_id, SetSysFirmwareVersion *out) {
+Result VersionManager::GetFirmwareVersion(ams::ncm::ProgramId program_id, SetSysFirmwareVersion *out) {
VersionManager::Initialize();
/* Report atmosphere string to qlaunch, maintenance and nothing else. */
- if (title_id == ams::ncm::TitleId::AppletQlaunch || title_id == ams::ncm::TitleId::AppletMaintenanceMenu) {
+ if (program_id == ams::ncm::ProgramId::AppletQlaunch || program_id == ams::ncm::ProgramId::AppletMaintenanceMenu) {
*out = g_ams_fw_version;
} else {
*out = g_fw_version;
diff --git a/stratosphere/ams_mitm/source/set_mitm/setsys_firmware_version.hpp b/stratosphere/ams_mitm_old/source/set_mitm/setsys_firmware_version.hpp
similarity index 88%
rename from stratosphere/ams_mitm/source/set_mitm/setsys_firmware_version.hpp
rename to stratosphere/ams_mitm_old/source/set_mitm/setsys_firmware_version.hpp
index a45c9d5bf..5b94b6d91 100644
--- a/stratosphere/ams_mitm/source/set_mitm/setsys_firmware_version.hpp
+++ b/stratosphere/ams_mitm_old/source/set_mitm/setsys_firmware_version.hpp
@@ -21,5 +21,5 @@
class VersionManager {
public:
static void Initialize();
- static Result GetFirmwareVersion(ams::ncm::TitleId title_id, SetSysFirmwareVersion *out);
+ static Result GetFirmwareVersion(ams::ncm::ProgramId program_id, SetSysFirmwareVersion *out);
};
diff --git a/stratosphere/ams_mitm/source/set_mitm/setsys_mitm_service.cpp b/stratosphere/ams_mitm_old/source/set_mitm/setsys_mitm_service.cpp
similarity index 95%
rename from stratosphere/ams_mitm/source/set_mitm/setsys_mitm_service.cpp
rename to stratosphere/ams_mitm_old/source/set_mitm/setsys_mitm_service.cpp
index 9821e6542..a7d9e4935 100644
--- a/stratosphere/ams_mitm/source/set_mitm/setsys_mitm_service.cpp
+++ b/stratosphere/ams_mitm_old/source/set_mitm/setsys_mitm_service.cpp
@@ -27,7 +27,7 @@ void SetSysMitmService::PostProcess(IMitmServiceObject *obj, IpcResponseContext
Result SetSysMitmService::GetFirmwareVersion(OutPointerWithServerSize out) {
/* Get firmware version from manager. */
- R_TRY(VersionManager::GetFirmwareVersion(this->title_id, out.pointer));
+ R_TRY(VersionManager::GetFirmwareVersion(this->program_id, out.pointer));
/* GetFirmwareVersion sanitizes these fields. */
out.pointer->revision_major = 0;
@@ -36,7 +36,7 @@ Result SetSysMitmService::GetFirmwareVersion(OutPointerWithServerSize out) {
- return VersionManager::GetFirmwareVersion(this->title_id, out.pointer);
+ return VersionManager::GetFirmwareVersion(this->program_id, out.pointer);
}
Result SetSysMitmService::GetSettingsItemValueSize(Out out_size, InPointer in_name, InPointer in_key) {
diff --git a/stratosphere/ams_mitm_old/source/set_mitm/setsys_mitm_service.hpp b/stratosphere/ams_mitm_old/source/set_mitm/setsys_mitm_service.hpp
new file mode 100644
index 000000000..da184e447
--- /dev/null
+++ b/stratosphere/ams_mitm_old/source/set_mitm/setsys_mitm_service.hpp
@@ -0,0 +1,56 @@
+/*
+ * Copyright (c) 2018-2019 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 .
+ */
+
+#pragma once
+#include
+#include
+
+#include "setsys_shim.h"
+
+class SetSysMitmService : public IMitmServiceObject {
+ private:
+ enum class CommandId {
+ GetFirmwareVersion = 3,
+ GetFirmwareVersion2 = 4,
+ GetSettingsItemValueSize = 37,
+ GetSettingsItemValue = 38,
+ };
+ public:
+ SetSysMitmService(std::shared_ptr s, u64 pid, ams::ncm::ProgramId tid) : IMitmServiceObject(s, pid, tid) {
+ /* ... */
+ }
+
+ static bool ShouldMitm(u64 pid, ams::ncm::ProgramId tid) {
+ /* Mitm everything. */
+ return true;
+ }
+
+ static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
+
+ protected:
+ /* Overridden commands. */
+ Result GetFirmwareVersion(OutPointerWithServerSize out);
+ Result GetFirmwareVersion2(OutPointerWithServerSize out);
+ Result GetSettingsItemValueSize(Out out_size, InPointer name, InPointer key);
+ Result GetSettingsItemValue(Out out_size, OutBuffer out_value, InPointer name, InPointer