2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-04-05 21:36:38 +01:00
|
|
|
|
2018-06-10 02:33:22 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
2018-10-30 00:30:39 +00:00
|
|
|
#include <stratosphere.hpp>
|
2018-06-12 23:00:09 +01:00
|
|
|
#include "fs_istorage.hpp"
|
2019-03-22 19:38:23 +00:00
|
|
|
#include "fs_ifilesystem.hpp"
|
2019-01-29 10:29:29 +00:00
|
|
|
#include "../utils.hpp"
|
2018-06-10 02:33:22 +01:00
|
|
|
|
2019-06-28 07:34:26 +01:00
|
|
|
class FsMitmService : public IMitmServiceObject {
|
|
|
|
private:
|
|
|
|
enum class CommandId {
|
|
|
|
OpenFileSystemDeprecated = 0,
|
2019-04-05 21:36:38 +01:00
|
|
|
|
2019-06-28 07:34:26 +01:00
|
|
|
SetCurrentProcess = 1,
|
|
|
|
OpenFileSystemWithPatch = 7,
|
|
|
|
OpenFileSystemWithId = 8,
|
2019-04-05 21:36:38 +01:00
|
|
|
|
2019-06-28 07:34:26 +01:00
|
|
|
OpenSdCardFileSystem = 18,
|
2019-05-27 19:48:17 +01:00
|
|
|
|
2019-06-28 07:34:26 +01:00
|
|
|
OpenSaveDataFileSystem = 51,
|
2019-04-05 21:36:38 +01:00
|
|
|
|
2019-06-28 07:34:26 +01:00
|
|
|
OpenBisStorage = 12,
|
|
|
|
OpenDataStorageByCurrentProcess = 200,
|
|
|
|
OpenDataStorageByDataId = 202,
|
|
|
|
};
|
2019-03-22 19:38:23 +00:00
|
|
|
private:
|
|
|
|
static constexpr const char *AtmosphereHblWebContentDir = "/atmosphere/hbl_html";
|
2018-06-10 10:06:50 +01:00
|
|
|
private:
|
2018-07-02 15:26:03 +01:00
|
|
|
bool has_initialized = false;
|
2018-11-15 22:59:47 +00:00
|
|
|
bool should_override_contents;
|
2018-06-10 02:33:22 +01:00
|
|
|
public:
|
2018-11-15 22:59:47 +00:00
|
|
|
FsMitmService(std::shared_ptr<Service> s, u64 pid) : IMitmServiceObject(s, pid) {
|
2018-11-15 23:46:05 +00:00
|
|
|
if (Utils::HasSdDisableMitMFlag(this->title_id)) {
|
|
|
|
this->should_override_contents = false;
|
|
|
|
} else {
|
2019-03-29 04:36:08 +00:00
|
|
|
this->should_override_contents = (this->title_id >= TitleId_ApplicationStart || Utils::HasSdMitMFlag(this->title_id)) && Utils::HasOverrideButton(this->title_id);
|
2018-11-15 23:46:05 +00:00
|
|
|
}
|
2018-06-10 10:12:34 +01:00
|
|
|
}
|
2019-04-05 21:36:38 +01:00
|
|
|
|
2018-10-30 00:30:39 +00:00
|
|
|
static bool ShouldMitm(u64 pid, u64 tid) {
|
2018-11-29 20:20:08 +00:00
|
|
|
/* Don't Mitm KIPs */
|
|
|
|
if (pid < 0x50) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-04-05 21:36:38 +01:00
|
|
|
|
2018-11-29 20:13:57 +00:00
|
|
|
static std::atomic_bool has_launched_qlaunch = false;
|
|
|
|
|
|
|
|
/* TODO: intercepting everything seems to cause issues with sleep mode, for some reason. */
|
|
|
|
/* Figure out why, and address it. */
|
2019-04-19 11:01:54 +01:00
|
|
|
if (tid == TitleId_AppletQlaunch || tid == TitleId_AppletMaintenanceMenu) {
|
2018-11-29 20:13:57 +00:00
|
|
|
has_launched_qlaunch = true;
|
|
|
|
}
|
2019-04-05 21:36:38 +01:00
|
|
|
|
2019-03-29 04:36:08 +00:00
|
|
|
return has_launched_qlaunch || tid == TitleId_Ns || tid >= TitleId_ApplicationStart || Utils::HasSdMitMFlag(tid);
|
2018-06-15 00:50:01 +01:00
|
|
|
}
|
2019-04-05 21:36:38 +01:00
|
|
|
|
2018-10-30 00:30:39 +00:00
|
|
|
static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
|
2019-03-22 19:38:23 +00:00
|
|
|
private:
|
|
|
|
Result OpenHblWebContentFileSystem(Out<std::shared_ptr<IFileSystemInterface>> &out);
|
2018-06-10 18:11:05 +01:00
|
|
|
protected:
|
|
|
|
/* Overridden commands. */
|
2019-03-22 19:38:23 +00:00
|
|
|
Result OpenFileSystemWithPatch(Out<std::shared_ptr<IFileSystemInterface>> out, u64 title_id, u32 filesystem_type);
|
|
|
|
Result OpenFileSystemWithId(Out<std::shared_ptr<IFileSystemInterface>> out, InPointer<char> path, u64 title_id, u32 filesystem_type);
|
2019-05-27 19:48:17 +01:00
|
|
|
Result OpenSdCardFileSystem(Out<std::shared_ptr<IFileSystemInterface>> out);
|
2019-04-05 21:36:38 +01:00
|
|
|
Result OpenSaveDataFileSystem(Out<std::shared_ptr<IFileSystemInterface>> out, u8 space_id, FsSave save_struct);
|
2018-11-15 02:39:48 +00:00
|
|
|
Result OpenBisStorage(Out<std::shared_ptr<IStorageInterface>> out, u32 bis_partition_id);
|
2018-10-30 00:30:39 +00:00
|
|
|
Result OpenDataStorageByCurrentProcess(Out<std::shared_ptr<IStorageInterface>> out);
|
2018-10-30 13:29:30 +00:00
|
|
|
Result OpenDataStorageByDataId(Out<std::shared_ptr<IStorageInterface>> out, u64 data_id, u8 storage_id);
|
2018-10-30 00:30:39 +00:00
|
|
|
public:
|
|
|
|
DEFINE_SERVICE_DISPATCH_TABLE {
|
2019-06-28 07:34:26 +01:00
|
|
|
/* TODO MAKE_SERVICE_COMMAND_META(FsMitmService, OpenFileSystemDeprecated), */
|
|
|
|
MAKE_SERVICE_COMMAND_META(FsMitmService, OpenFileSystemWithPatch, FirmwareVersion_200),
|
|
|
|
MAKE_SERVICE_COMMAND_META(FsMitmService, OpenFileSystemWithId, FirmwareVersion_200),
|
|
|
|
MAKE_SERVICE_COMMAND_META(FsMitmService, OpenSdCardFileSystem),
|
|
|
|
MAKE_SERVICE_COMMAND_META(FsMitmService, OpenSaveDataFileSystem),
|
|
|
|
MAKE_SERVICE_COMMAND_META(FsMitmService, OpenBisStorage),
|
|
|
|
MAKE_SERVICE_COMMAND_META(FsMitmService, OpenDataStorageByCurrentProcess),
|
|
|
|
MAKE_SERVICE_COMMAND_META(FsMitmService, OpenDataStorageByDataId),
|
2018-10-30 00:30:39 +00:00
|
|
|
};
|
2018-06-19 19:07:31 +01:00
|
|
|
};
|