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-09-20 00:21:46 +01:00
|
|
|
#include <cstring>
|
2018-04-19 22:28:27 +01:00
|
|
|
#include <switch.h>
|
2018-09-20 00:21:46 +01:00
|
|
|
#include <strings.h>
|
2018-05-01 23:49:20 +01:00
|
|
|
#include <vector>
|
|
|
|
#include <algorithm>
|
2018-04-19 22:28:27 +01:00
|
|
|
|
|
|
|
#include "ldr_registration.hpp"
|
|
|
|
#include "ldr_content_management.hpp"
|
2018-09-20 00:21:46 +01:00
|
|
|
#include "ldr_hid.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
#include "ini.h"
|
2018-04-19 22:28:27 +01:00
|
|
|
|
|
|
|
static FsFileSystem g_CodeFileSystem = {0};
|
2018-09-20 00:21:46 +01:00
|
|
|
static FsFileSystem g_HblFileSystem = {0};
|
2018-04-19 22:28:27 +01:00
|
|
|
|
2018-05-01 23:49:20 +01:00
|
|
|
static std::vector<u64> g_created_titles;
|
|
|
|
static bool g_has_initialized_fs_dev = false;
|
|
|
|
|
2018-09-20 00:21:46 +01:00
|
|
|
/* Default to Key R, hold disables override, HBL at atmosphere/hbl.nsp. */
|
|
|
|
static bool g_mounted_hbl_nsp = false;
|
|
|
|
static char g_hbl_sd_path[FS_MAX_PATH+1] = "@Sdcard:/atmosphere/hbl.nsp\x00";
|
|
|
|
static u64 g_override_key_combination = KEY_R;
|
|
|
|
static bool g_override_by_default = true;
|
|
|
|
static u64 g_override_hbl_tid = 0x010000000000100D;
|
|
|
|
|
2018-04-19 22:28:27 +01:00
|
|
|
Result ContentManagement::MountCode(u64 tid, FsStorageId sid) {
|
|
|
|
char path[FS_MAX_PATH] = {0};
|
|
|
|
Result rc;
|
|
|
|
|
2018-05-01 23:49:20 +01:00
|
|
|
/* We defer SD card mounting, so if relevant ensure it is mounted. */
|
2018-05-08 09:59:18 +01:00
|
|
|
if (!g_has_initialized_fs_dev) {
|
|
|
|
TryMountSdCard();
|
|
|
|
}
|
2018-07-30 00:35:43 +01:00
|
|
|
|
2018-09-20 00:21:46 +01:00
|
|
|
if (ShouldOverrideContents() && R_SUCCEEDED(MountCodeNspOnSd(tid))) {
|
2018-07-30 00:35:43 +01:00
|
|
|
return 0x0;
|
|
|
|
}
|
2018-05-08 09:59:18 +01:00
|
|
|
|
|
|
|
if (R_FAILED(rc = ResolveContentPath(path, tid, sid))) {
|
2018-04-19 22:28:27 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-04-21 06:58:42 +01:00
|
|
|
/* Fix up path. */
|
|
|
|
for (unsigned int i = 0; i < FS_MAX_PATH && path[i] != '\x00'; i++) {
|
|
|
|
if (path[i] == '\\') {
|
|
|
|
path[i] = '/';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 22:28:27 +01:00
|
|
|
/* Always re-initialize fsp-ldr, in case it's closed */
|
|
|
|
if (R_FAILED(rc = fsldrInitialize())) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (R_FAILED(rc = fsldrOpenCodeFileSystem(tid, path, &g_CodeFileSystem))) {
|
|
|
|
fsldrExit();
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
fsdevMountDevice("code", g_CodeFileSystem);
|
2018-09-20 00:21:46 +01:00
|
|
|
TryMountHblNspOnSd();
|
2018-04-19 22:28:27 +01:00
|
|
|
|
2018-07-28 03:53:20 +01:00
|
|
|
fsldrExit();
|
2018-04-19 22:28:27 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
Result ContentManagement::UnmountCode() {
|
2018-09-20 00:21:46 +01:00
|
|
|
if (g_mounted_hbl_nsp) {
|
|
|
|
fsdevUnmountDevice("hbl");
|
|
|
|
g_mounted_hbl_nsp = false;
|
|
|
|
}
|
2018-04-19 22:28:27 +01:00
|
|
|
fsdevUnmountDevice("code");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-20 00:21:46 +01:00
|
|
|
|
|
|
|
void ContentManagement::TryMountHblNspOnSd() {
|
2018-10-17 03:01:41 +01:00
|
|
|
char path[FS_MAX_PATH + 1] = {0};
|
2018-09-20 00:21:46 +01:00
|
|
|
strncpy(path, g_hbl_sd_path, FS_MAX_PATH);
|
|
|
|
for (unsigned int i = 0; i < FS_MAX_PATH && path[i] != '\x00'; i++) {
|
|
|
|
if (path[i] == '\\') {
|
|
|
|
path[i] = '/';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (g_has_initialized_fs_dev && !g_mounted_hbl_nsp && R_SUCCEEDED(fsOpenFileSystemWithId(&g_HblFileSystem, 0, FsFileSystemType_ApplicationPackage, path))) {
|
|
|
|
fsdevMountDevice("hbl", g_HblFileSystem);
|
|
|
|
g_mounted_hbl_nsp = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-30 00:35:43 +01:00
|
|
|
Result ContentManagement::MountCodeNspOnSd(u64 tid) {
|
|
|
|
char path[FS_MAX_PATH+1] = {0};
|
2018-07-30 00:45:29 +01:00
|
|
|
snprintf(path, FS_MAX_PATH, "@Sdcard:/atmosphere/titles/%016lx/exefs.nsp", tid);
|
2018-07-30 00:35:43 +01:00
|
|
|
Result rc = fsOpenFileSystemWithId(&g_CodeFileSystem, 0, FsFileSystemType_ApplicationPackage, path);
|
|
|
|
|
2018-09-20 00:21:46 +01:00
|
|
|
if (R_SUCCEEDED(rc)) {
|
2018-07-30 00:35:43 +01:00
|
|
|
fsdevMountDevice("code", g_CodeFileSystem);
|
2018-09-20 00:21:46 +01:00
|
|
|
TryMountHblNspOnSd();
|
2018-07-30 00:35:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-04-19 22:28:27 +01:00
|
|
|
Result ContentManagement::MountCodeForTidSid(Registration::TidSid *tid_sid) {
|
|
|
|
return MountCode(tid_sid->title_id, tid_sid->storage_id);
|
|
|
|
}
|
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
Result ContentManagement::ResolveContentPath(char *out_path, u64 tid, FsStorageId sid) {
|
2018-04-19 22:28:27 +01:00
|
|
|
Result rc;
|
|
|
|
LrRegisteredLocationResolver reg;
|
|
|
|
LrLocationResolver lr;
|
|
|
|
char path[FS_MAX_PATH] = {0};
|
|
|
|
|
|
|
|
/* Try to get the path from the registered resolver. */
|
2018-05-08 09:59:18 +01:00
|
|
|
if (R_FAILED(rc = lrOpenRegisteredLocationResolver(®))) {
|
2018-04-19 22:28:27 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
if (R_SUCCEEDED(rc = lrRegLrResolveProgramPath(®, tid, path))) {
|
2018-05-14 23:54:12 +01:00
|
|
|
strncpy(out_path, path, FS_MAX_PATH);
|
2018-04-19 22:28:27 +01:00
|
|
|
} else if (rc != 0x408) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
serviceClose(®.s);
|
2018-05-08 09:59:18 +01:00
|
|
|
if (R_SUCCEEDED(rc)) {
|
|
|
|
return rc;
|
|
|
|
}
|
2018-04-19 22:28:27 +01:00
|
|
|
|
|
|
|
/* If getting the path from the registered resolver fails, fall back to the normal resolver. */
|
2018-05-08 09:59:18 +01:00
|
|
|
if (R_FAILED(rc = lrOpenLocationResolver(sid, &lr))) {
|
2018-04-19 22:28:27 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
if (R_SUCCEEDED(rc = lrLrResolveProgramPath(&lr, tid, path))) {
|
2018-05-14 23:54:12 +01:00
|
|
|
strncpy(out_path, path, FS_MAX_PATH);
|
2018-04-19 22:28:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
serviceClose(&lr.s);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
Result ContentManagement::ResolveContentPathForTidSid(char *out_path, Registration::TidSid *tid_sid) {
|
|
|
|
return ResolveContentPath(out_path, tid_sid->title_id, tid_sid->storage_id);
|
2018-04-19 22:28:27 +01:00
|
|
|
}
|
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
Result ContentManagement::RedirectContentPath(const char *path, u64 tid, FsStorageId sid) {
|
2018-04-19 22:28:27 +01:00
|
|
|
Result rc;
|
|
|
|
LrLocationResolver lr;
|
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
if (R_FAILED(rc = lrOpenLocationResolver(sid, &lr))) {
|
2018-04-19 22:28:27 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
rc = lrLrRedirectProgramPath(&lr, tid, path);
|
2018-04-19 22:28:27 +01:00
|
|
|
|
|
|
|
serviceClose(&lr.s);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
Result ContentManagement::RedirectContentPathForTidSid(const char *path, Registration::TidSid *tid_sid) {
|
|
|
|
return RedirectContentPath(path, tid_sid->title_id, tid_sid->storage_id);
|
2018-05-01 23:49:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ContentManagement::HasCreatedTitle(u64 tid) {
|
|
|
|
return std::find(g_created_titles.begin(), g_created_titles.end(), tid) != g_created_titles.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContentManagement::SetCreatedTitle(u64 tid) {
|
|
|
|
if (!HasCreatedTitle(tid)) {
|
|
|
|
g_created_titles.push_back(tid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 00:21:46 +01:00
|
|
|
static int LoaderIniHandler(void *user, const char *section, const char *name, const char *value) {
|
|
|
|
/* Taken and modified, with love, from Rajkosto's implementation. */
|
|
|
|
if (strcasecmp(section, "config") == 0) {
|
|
|
|
if (strcasecmp(name, "hbl_tid") == 0) {
|
|
|
|
u64 override_tid = strtoul(value, NULL, 16);
|
|
|
|
if (override_tid != 0) {
|
|
|
|
g_override_hbl_tid = override_tid;
|
|
|
|
}
|
|
|
|
} else if (strcasecmp(name, "hbl_path") == 0) {
|
|
|
|
while (*value == '/' || *value == '\\') {
|
|
|
|
value++;
|
|
|
|
}
|
|
|
|
snprintf(g_hbl_sd_path, FS_MAX_PATH, "@Sdcard:/%s", value);
|
|
|
|
g_hbl_sd_path[FS_MAX_PATH] = 0;
|
|
|
|
} else if (strcasecmp(name, "override_key") == 0) {
|
|
|
|
if (value[0] == '!') {
|
|
|
|
g_override_by_default = true;
|
|
|
|
value++;
|
|
|
|
} else {
|
|
|
|
g_override_by_default = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(value, "A") == 0) {
|
|
|
|
g_override_key_combination = KEY_A;
|
|
|
|
} else if (strcasecmp(value, "B") == 0) {
|
|
|
|
g_override_key_combination = KEY_B;
|
|
|
|
} else if (strcasecmp(value, "X") == 0) {
|
|
|
|
g_override_key_combination = KEY_X;
|
|
|
|
} else if (strcasecmp(value, "Y") == 0) {
|
|
|
|
g_override_key_combination = KEY_Y;
|
|
|
|
} else if (strcasecmp(value, "LS") == 0) {
|
|
|
|
g_override_key_combination = KEY_LSTICK;
|
|
|
|
} else if (strcasecmp(value, "RS") == 0) {
|
|
|
|
g_override_key_combination = KEY_RSTICK;
|
|
|
|
} else if (strcasecmp(value, "L") == 0) {
|
|
|
|
g_override_key_combination = KEY_L;
|
|
|
|
} else if (strcasecmp(value, "R") == 0) {
|
|
|
|
g_override_key_combination = KEY_R;
|
|
|
|
} else if (strcasecmp(value, "ZL") == 0) {
|
|
|
|
g_override_key_combination = KEY_ZL;
|
|
|
|
} else if (strcasecmp(value, "ZR") == 0) {
|
|
|
|
g_override_key_combination = KEY_ZR;
|
|
|
|
} else if (strcasecmp(value, "PLUS") == 0) {
|
|
|
|
g_override_key_combination = KEY_PLUS;
|
|
|
|
} else if (strcasecmp(value, "MINUS") == 0) {
|
|
|
|
g_override_key_combination = KEY_MINUS;
|
|
|
|
} else if (strcasecmp(value, "DLEFT") == 0) {
|
|
|
|
g_override_key_combination = KEY_DLEFT;
|
|
|
|
} else if (strcasecmp(value, "DUP") == 0) {
|
|
|
|
g_override_key_combination = KEY_DUP;
|
|
|
|
} else if (strcasecmp(value, "DRIGHT") == 0) {
|
|
|
|
g_override_key_combination = KEY_DRIGHT;
|
|
|
|
} else if (strcasecmp(value, "DDOWN") == 0) {
|
|
|
|
g_override_key_combination = KEY_DDOWN;
|
|
|
|
} else if (strcasecmp(value, "SL") == 0) {
|
|
|
|
g_override_key_combination = KEY_SL;
|
|
|
|
} else if (strcasecmp(value, "SR") == 0) {
|
|
|
|
g_override_key_combination = KEY_SR;
|
|
|
|
} else {
|
|
|
|
g_override_key_combination = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContentManagement::LoadConfiguration(FILE *config) {
|
|
|
|
if (config == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *config_str = new char[0x800];
|
|
|
|
if (config_str != NULL) {
|
|
|
|
/* Read in string. */
|
2018-10-17 03:01:41 +01:00
|
|
|
std::fill(config_str, config_str + 0x800, 0);
|
2018-09-20 00:21:46 +01:00
|
|
|
fread(config_str, 1, 0x7FF, config);
|
|
|
|
|
|
|
|
ini_parse_string(config_str, LoaderIniHandler, NULL);
|
|
|
|
|
|
|
|
delete[] config_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(config);
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:49:20 +01:00
|
|
|
void ContentManagement::TryMountSdCard() {
|
|
|
|
/* Mount SD card, if psc, bus, and pcv have been created. */
|
|
|
|
if (!g_has_initialized_fs_dev && HasCreatedTitle(0x0100000000000021) && HasCreatedTitle(0x010000000000000A) && HasCreatedTitle(0x010000000000001A)) {
|
2018-05-08 09:59:18 +01:00
|
|
|
Handle tmp_hnd = 0;
|
2018-05-08 11:43:07 +01:00
|
|
|
static const char * const required_active_services[] = {"pcv", "gpio", "pinmux", "psc:c"};
|
2018-05-08 09:59:18 +01:00
|
|
|
for (unsigned int i = 0; i < sizeof(required_active_services) / sizeof(required_active_services[0]); i++) {
|
|
|
|
if (R_FAILED(smGetServiceOriginal(&tmp_hnd, smEncodeName(required_active_services[i])))) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
svcCloseHandle(tmp_hnd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:49:20 +01:00
|
|
|
if (R_SUCCEEDED(fsdevMountSdmc())) {
|
2018-09-20 00:21:46 +01:00
|
|
|
ContentManagement::LoadConfiguration(fopen("sdmc:/atmosphere/loader.ini", "r"));
|
2018-05-01 23:49:20 +01:00
|
|
|
g_has_initialized_fs_dev = true;
|
|
|
|
}
|
|
|
|
}
|
2018-05-08 09:59:18 +01:00
|
|
|
}
|
2018-09-20 00:21:46 +01:00
|
|
|
|
|
|
|
bool ContentManagement::ShouldReplaceWithHBL(u64 tid) {
|
|
|
|
return g_mounted_hbl_nsp && tid == g_override_hbl_tid;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ContentManagement::ShouldOverrideContents() {
|
|
|
|
if (HasCreatedTitle(0x0100000000001000)) {
|
|
|
|
u64 kDown = 0;
|
|
|
|
bool keys_triggered = (R_SUCCEEDED(HidManagement::GetKeysDown(&kDown)) && ((kDown & g_override_key_combination) != 0));
|
|
|
|
return g_has_initialized_fs_dev && (g_override_by_default ^ keys_triggered);
|
|
|
|
} else {
|
|
|
|
/* Always redirect before qlaunch. */
|
|
|
|
return g_has_initialized_fs_dev;
|
|
|
|
}
|
|
|
|
}
|