mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-23 04:12:02 +00:00
fs.mitm: mitm sdb (allows common sysarchive redir)
This commit is contained in:
parent
bf5bbfbcef
commit
3e2ec256ab
1 changed files with 20 additions and 1 deletions
|
@ -43,6 +43,25 @@ namespace ams::mitm::fs {
|
||||||
OpenDataStorageByDataId = 202,
|
OpenDataStorageByDataId = 202,
|
||||||
};
|
};
|
||||||
public:
|
public:
|
||||||
|
NX_CONSTEXPR bool ShouldMitmProgramId(const ncm::ProgramId program_id) {
|
||||||
|
/* We want to mitm everything that isn't a system-module. */
|
||||||
|
if (!ncm::IsSystemProgramId(program_id)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* We want to mitm ns, to intercept SD card requests. */
|
||||||
|
if (program_id == ncm::ProgramId::Ns) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* We want to mitm sdb, to support sd-romfs redirection of common system archives (like system font, etc). */
|
||||||
|
if (program_id == ncm::ProgramId::Sdb) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
static bool ShouldMitm(const sm::MitmProcessInfo &client_info) {
|
static bool ShouldMitm(const sm::MitmProcessInfo &client_info) {
|
||||||
static std::atomic_bool has_launched_qlaunch = false;
|
static std::atomic_bool has_launched_qlaunch = false;
|
||||||
|
|
||||||
|
@ -54,7 +73,7 @@ namespace ams::mitm::fs {
|
||||||
has_launched_qlaunch = true;
|
has_launched_qlaunch = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return has_launched_qlaunch || client_info.program_id == ncm::ProgramId::Ns || !ncm::IsSystemProgramId(client_info.program_id);
|
return has_launched_qlaunch || ShouldMitmProgramId(client_info.program_id);
|
||||||
}
|
}
|
||||||
public:
|
public:
|
||||||
SF_MITM_SERVICE_OBJECT_CTOR(FsMitmService) { /* ... */ }
|
SF_MITM_SERVICE_OBJECT_CTOR(FsMitmService) { /* ... */ }
|
||||||
|
|
Loading…
Reference in a new issue