2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
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"
|
2018-07-28 04:15:06 +01:00
|
|
|
#include "fsmitm_utils.hpp"
|
2018-06-10 02:33:22 +01:00
|
|
|
|
2018-10-30 00:30:39 +00:00
|
|
|
enum FspSrvCmd : u32 {
|
|
|
|
FspSrvCmd_SetCurrentProcess = 1,
|
2018-11-15 02:39:48 +00:00
|
|
|
FspSrvCmd_OpenBisStorage = 12,
|
2018-10-30 00:30:39 +00:00
|
|
|
FspSrvCmd_OpenDataStorageByCurrentProcess = 200,
|
|
|
|
FspSrvCmd_OpenDataStorageByDataId = 202,
|
2018-06-10 10:06:50 +01:00
|
|
|
};
|
|
|
|
|
2018-11-15 02:39:48 +00:00
|
|
|
class FsMitmService : public IMitmServiceObject {
|
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 {
|
|
|
|
this->should_override_contents = (this->title_id >= 0x0100000000010000ULL || Utils::HasSdMitMFlag(this->title_id)) && Utils::HasOverrideButton(this->title_id);
|
|
|
|
}
|
2018-06-10 10:12:34 +01:00
|
|
|
}
|
2018-06-12 23:00:09 +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;
|
|
|
|
}
|
|
|
|
|
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. */
|
|
|
|
if (tid == 0x0100000000001000ULL) {
|
|
|
|
has_launched_qlaunch = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return has_launched_qlaunch || tid == 0x010000000000001FULL || tid >= 0x0100000000010000ULL || Utils::HasSdMitMFlag(tid);
|
2018-06-15 00:50:01 +01:00
|
|
|
}
|
|
|
|
|
2018-10-30 00:30:39 +00:00
|
|
|
static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
|
|
|
|
|
2018-06-10 18:11:05 +01:00
|
|
|
protected:
|
|
|
|
/* Overridden commands. */
|
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 {
|
2018-11-15 02:39:48 +00:00
|
|
|
MakeServiceCommandMeta<FspSrvCmd_OpenBisStorage, &FsMitmService::OpenBisStorage>(),
|
2018-10-30 00:30:39 +00:00
|
|
|
MakeServiceCommandMeta<FspSrvCmd_OpenDataStorageByCurrentProcess, &FsMitmService::OpenDataStorageByCurrentProcess>(),
|
|
|
|
MakeServiceCommandMeta<FspSrvCmd_OpenDataStorageByDataId, &FsMitmService::OpenDataStorageByDataId>(),
|
|
|
|
};
|
2018-06-19 19:07:31 +01:00
|
|
|
};
|