2019-06-29 10:20:36 +01:00
|
|
|
/*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cctype>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <stratosphere/cfg.hpp>
|
|
|
|
#include <stratosphere/ldr.hpp>
|
|
|
|
#include <stratosphere/pm.hpp>
|
|
|
|
#include "boot2_api.hpp"
|
|
|
|
|
|
|
|
namespace sts::boot2 {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
/* Launch lists. */
|
|
|
|
|
|
|
|
/* psc, bus, pcv is the minimal set of required titles to get SD card. */
|
|
|
|
/* bus depends on pcie, and pcv depends on settings. */
|
|
|
|
constexpr ncm::TitleId PreSdCardLaunchPrograms[] = {
|
2019-07-03 04:54:16 +01:00
|
|
|
ncm::TitleId::Psc, /* psc */
|
|
|
|
ncm::TitleId::Pcie, /* pcie */
|
|
|
|
ncm::TitleId::Bus, /* bus */
|
|
|
|
ncm::TitleId::Settings, /* settings */
|
|
|
|
ncm::TitleId::Pcv, /* pcv */
|
2019-09-12 09:18:58 +01:00
|
|
|
ncm::TitleId::Usb, /* usb */
|
2019-06-29 10:20:36 +01:00
|
|
|
};
|
2019-07-02 22:36:57 +01:00
|
|
|
constexpr size_t NumPreSdCardLaunchPrograms = util::size(PreSdCardLaunchPrograms);
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
constexpr ncm::TitleId AdditionalLaunchPrograms[] = {
|
2019-07-03 04:54:16 +01:00
|
|
|
ncm::TitleId::Tma, /* tma */
|
|
|
|
ncm::TitleId::Am, /* am */
|
|
|
|
ncm::TitleId::NvServices, /* nvservices */
|
|
|
|
ncm::TitleId::NvnFlinger, /* nvnflinger */
|
|
|
|
ncm::TitleId::Vi, /* vi */
|
|
|
|
ncm::TitleId::Ns, /* ns */
|
|
|
|
ncm::TitleId::LogManager, /* lm */
|
|
|
|
ncm::TitleId::Ppc, /* ppc */
|
|
|
|
ncm::TitleId::Ptm, /* ptm */
|
|
|
|
ncm::TitleId::Hid, /* hid */
|
|
|
|
ncm::TitleId::Audio, /* audio */
|
|
|
|
ncm::TitleId::Lbl, /* lbl */
|
|
|
|
ncm::TitleId::Wlan, /* wlan */
|
|
|
|
ncm::TitleId::Bluetooth, /* bluetooth */
|
|
|
|
ncm::TitleId::BsdSockets, /* bsdsockets */
|
|
|
|
ncm::TitleId::Nifm, /* nifm */
|
|
|
|
ncm::TitleId::Ldn, /* ldn */
|
|
|
|
ncm::TitleId::Account, /* account */
|
|
|
|
ncm::TitleId::Friends, /* friends */
|
|
|
|
ncm::TitleId::Nfc, /* nfc */
|
|
|
|
ncm::TitleId::JpegDec, /* jpegdec */
|
|
|
|
ncm::TitleId::CapSrv, /* capsrv */
|
|
|
|
ncm::TitleId::Ssl, /* ssl */
|
|
|
|
ncm::TitleId::Nim, /* nim */
|
|
|
|
ncm::TitleId::Bcat, /* bcat */
|
|
|
|
ncm::TitleId::Erpt, /* erpt */
|
|
|
|
ncm::TitleId::Es, /* es */
|
|
|
|
ncm::TitleId::Pctl, /* pctl */
|
|
|
|
ncm::TitleId::Btm, /* btm */
|
|
|
|
ncm::TitleId::Eupld, /* eupld */
|
|
|
|
ncm::TitleId::Glue, /* glue */
|
|
|
|
/* ncm::TitleId::Eclct, */ /* eclct */ /* Skip launching error collection in Atmosphere to lessen telemetry. */
|
|
|
|
ncm::TitleId::Npns, /* npns */
|
|
|
|
ncm::TitleId::Fatal, /* fatal */
|
|
|
|
ncm::TitleId::Ro, /* ro */
|
|
|
|
ncm::TitleId::Profiler, /* profiler */
|
|
|
|
ncm::TitleId::Sdb, /* sdb */
|
|
|
|
ncm::TitleId::Migration, /* migration */
|
|
|
|
ncm::TitleId::Grc, /* grc */
|
|
|
|
ncm::TitleId::Olsc, /* olsc */
|
2019-09-12 09:18:58 +01:00
|
|
|
ncm::TitleId::Ngct, /* ngct */
|
2019-06-29 10:20:36 +01:00
|
|
|
};
|
2019-07-02 22:36:57 +01:00
|
|
|
constexpr size_t NumAdditionalLaunchPrograms = util::size(AdditionalLaunchPrograms);
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
constexpr ncm::TitleId AdditionalMaintenanceLaunchPrograms[] = {
|
2019-07-03 04:54:16 +01:00
|
|
|
ncm::TitleId::Tma, /* tma */
|
|
|
|
ncm::TitleId::Am, /* am */
|
|
|
|
ncm::TitleId::NvServices, /* nvservices */
|
|
|
|
ncm::TitleId::NvnFlinger, /* nvnflinger */
|
|
|
|
ncm::TitleId::Vi, /* vi */
|
|
|
|
ncm::TitleId::Ns, /* ns */
|
|
|
|
ncm::TitleId::LogManager, /* lm */
|
|
|
|
ncm::TitleId::Ppc, /* ppc */
|
|
|
|
ncm::TitleId::Ptm, /* ptm */
|
|
|
|
ncm::TitleId::Hid, /* hid */
|
|
|
|
ncm::TitleId::Audio, /* audio */
|
|
|
|
ncm::TitleId::Lbl, /* lbl */
|
|
|
|
ncm::TitleId::Wlan, /* wlan */
|
|
|
|
ncm::TitleId::Bluetooth, /* bluetooth */
|
|
|
|
ncm::TitleId::BsdSockets, /* bsdsockets */
|
|
|
|
ncm::TitleId::Nifm, /* nifm */
|
|
|
|
ncm::TitleId::Ldn, /* ldn */
|
|
|
|
ncm::TitleId::Account, /* account */
|
|
|
|
ncm::TitleId::Nfc, /* nfc */
|
|
|
|
ncm::TitleId::JpegDec, /* jpegdec */
|
|
|
|
ncm::TitleId::CapSrv, /* capsrv */
|
|
|
|
ncm::TitleId::Ssl, /* ssl */
|
|
|
|
ncm::TitleId::Nim, /* nim */
|
|
|
|
ncm::TitleId::Erpt, /* erpt */
|
|
|
|
ncm::TitleId::Es, /* es */
|
|
|
|
ncm::TitleId::Pctl, /* pctl */
|
|
|
|
ncm::TitleId::Btm, /* btm */
|
|
|
|
ncm::TitleId::Glue, /* glue */
|
|
|
|
/* ncm::TitleId::Eclct, */ /* eclct */ /* Skip launching error collection in Atmosphere to lessen telemetry. */
|
|
|
|
ncm::TitleId::Fatal, /* fatal */
|
|
|
|
ncm::TitleId::Ro, /* ro */
|
|
|
|
ncm::TitleId::Profiler, /* profiler */
|
|
|
|
ncm::TitleId::Sdb, /* sdb */
|
|
|
|
ncm::TitleId::Migration, /* migration */
|
|
|
|
ncm::TitleId::Grc, /* grc */
|
|
|
|
ncm::TitleId::Olsc, /* olsc */
|
2019-09-12 09:18:58 +01:00
|
|
|
ncm::TitleId::Ngct, /* ngct */
|
2019-06-29 10:20:36 +01:00
|
|
|
};
|
2019-07-02 22:36:57 +01:00
|
|
|
constexpr size_t NumAdditionalMaintenanceLaunchPrograms = util::size(AdditionalMaintenanceLaunchPrograms);
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
/* Helpers. */
|
|
|
|
inline bool IsHexadecimal(const char *str) {
|
|
|
|
while (*str) {
|
|
|
|
if (!std::isxdigit(static_cast<unsigned char>(*(str++)))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-07-12 06:23:23 +01:00
|
|
|
inline bool IsNewLine(char c) {
|
|
|
|
return c == '\r' || c == '\n';
|
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
void LaunchTitle(os::ProcessId *out_process_id, const ncm::TitleLocation &loc, u32 launch_flags) {
|
|
|
|
os::ProcessId process_id = os::InvalidProcessId;
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
switch (pm::shell::LaunchTitle(&process_id, loc, launch_flags)) {
|
|
|
|
case ResultKernelResourceExhausted:
|
|
|
|
case ResultKernelOutOfMemory:
|
|
|
|
case ResultKernelLimitReached:
|
2019-09-28 23:13:20 +01:00
|
|
|
STS_ASSERT(false);
|
2019-06-29 10:20:36 +01:00
|
|
|
default:
|
|
|
|
/* We don't care about other issues. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-09-12 09:18:58 +01:00
|
|
|
|
2019-06-29 10:20:36 +01:00
|
|
|
if (out_process_id) {
|
|
|
|
*out_process_id = process_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LaunchList(const ncm::TitleId *launch_list, size_t num_entries) {
|
|
|
|
for (size_t i = 0; i < num_entries; i++) {
|
2019-07-03 04:54:16 +01:00
|
|
|
LaunchTitle(nullptr, ncm::TitleLocation::Make(launch_list[i], ncm::StorageId::NandSystem), 0);
|
2019-06-29 10:20:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetGpioPadLow(GpioPadName pad) {
|
|
|
|
GpioPadSession button;
|
|
|
|
if (R_FAILED(gpioOpenSession(&button, pad))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure we close even on early return. */
|
|
|
|
ON_SCOPE_EXIT { gpioPadClose(&button); };
|
|
|
|
|
|
|
|
/* Set direction input. */
|
|
|
|
gpioPadSetDirection(&button, GpioDirection_Input);
|
|
|
|
|
|
|
|
GpioValue val;
|
|
|
|
return R_SUCCEEDED(gpioPadGetValue(&button, &val)) && val == GpioValue_Low;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsMaintenanceMode() {
|
|
|
|
/* Contact set:sys, retrieve boot!force_maintenance. */
|
|
|
|
{
|
2019-07-03 06:21:47 +01:00
|
|
|
auto set_sys_holder = sm::ScopedServiceHolder<setsysInitialize, setsysExit>();
|
|
|
|
R_ASSERT(set_sys_holder.GetResult());
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
u8 force_maintenance = 1;
|
2019-10-15 06:49:06 +01:00
|
|
|
u64 size_out;
|
|
|
|
setsysGetSettingsItemValue("boot", "force_maintenance", &force_maintenance, sizeof(force_maintenance), &size_out);
|
2019-06-29 10:20:36 +01:00
|
|
|
if (force_maintenance != 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Contact GPIO, read plus/minus buttons. */
|
|
|
|
{
|
2019-07-03 06:21:47 +01:00
|
|
|
auto gpio_holder = sm::ScopedServiceHolder<gpioInitialize, gpioExit>();
|
|
|
|
R_ASSERT(gpio_holder.GetResult());
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
return GetGpioPadLow(GpioPadName_ButtonVolUp) && GetGpioPadLow(GpioPadName_ButtonVolDown);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-12 06:23:23 +01:00
|
|
|
template<typename F>
|
|
|
|
void IterateOverFlaggedTitlesOnSdCard(F f) {
|
2019-07-04 04:01:53 +01:00
|
|
|
/* Validate that the titles directory exists. */
|
2019-06-29 10:20:36 +01:00
|
|
|
DIR *titles_dir = opendir("sdmc:/atmosphere/titles");
|
2019-07-04 04:01:53 +01:00
|
|
|
if (titles_dir == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ON_SCOPE_EXIT { closedir(titles_dir); };
|
|
|
|
|
|
|
|
/* Iterate over entries in the titles directory */
|
2019-06-29 10:20:36 +01:00
|
|
|
struct dirent *ent;
|
2019-07-04 04:01:53 +01:00
|
|
|
while ((ent = readdir(titles_dir)) != nullptr) {
|
|
|
|
/* Check that the subdirectory can be converted to a title id. */
|
|
|
|
if (std::strlen(ent->d_name) == 2 * sizeof(ncm::TitleId) && IsHexadecimal(ent->d_name)) {
|
|
|
|
/* Check if we've already launched the title. */
|
|
|
|
ncm::TitleId title_id{std::strtoul(ent->d_name, nullptr, 16)};
|
|
|
|
|
|
|
|
/* Check if the title is flagged. */
|
2019-07-04 04:04:16 +01:00
|
|
|
if (!cfg::HasTitleSpecificFlag(title_id, "boot2")) {
|
2019-07-04 04:01:53 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-07-12 06:23:23 +01:00
|
|
|
/* Call the iteration callback. */
|
|
|
|
f(title_id);
|
2019-06-29 10:20:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-12 06:23:23 +01:00
|
|
|
void DetectAndDeclareFutureMitms() {
|
|
|
|
IterateOverFlaggedTitlesOnSdCard([](ncm::TitleId title_id) {
|
|
|
|
/* When we find a flagged program, check if it has a mitm list. */
|
|
|
|
char mitm_list[0x400];
|
|
|
|
size_t mitm_list_size = 0;
|
|
|
|
|
|
|
|
/* Read the mitm list off the SD card. */
|
|
|
|
{
|
|
|
|
char path[FS_MAX_PATH];
|
|
|
|
std::snprintf(mitm_list, sizeof(mitm_list), "sdmc:/atmosphere/titles/%016lx/mitm.lst", static_cast<u64>(title_id));
|
|
|
|
FILE *f = fopen(path, "rb");
|
|
|
|
if (f == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mitm_list_size = static_cast<size_t>(fread(mitm_list, 1, sizeof(mitm_list), f));
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Validate read size. */
|
|
|
|
if (mitm_list_size > sizeof(mitm_list) || mitm_list_size == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Iterate over the contents of the file. */
|
|
|
|
/* We expect one service name per non-empty line, 1-8 characters. */
|
|
|
|
size_t offset = 0;
|
|
|
|
while (offset < mitm_list_size) {
|
|
|
|
/* Continue to the start of the next name. */
|
|
|
|
while (IsNewLine(mitm_list[offset])) {
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
if (offset >= mitm_list_size) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the length of the current name. */
|
|
|
|
size_t name_len;
|
|
|
|
for (name_len = 0; name_len <= sizeof(sm::ServiceName) && offset + name_len < mitm_list_size; name_len++) {
|
|
|
|
if (IsNewLine(mitm_list[offset + name_len])) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allow empty lines. */
|
|
|
|
if (name_len == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't allow invalid lines. */
|
2019-09-28 02:04:58 +01:00
|
|
|
STS_ASSERT(name_len <= sizeof(sm::ServiceName));
|
2019-07-12 06:23:23 +01:00
|
|
|
|
|
|
|
/* Declare the service. */
|
|
|
|
R_ASSERT(sm::mitm::DeclareFutureMitm(sm::ServiceName::Encode(mitm_list + offset, name_len)));
|
|
|
|
|
|
|
|
/* Advance to the next line. */
|
|
|
|
offset += name_len;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void LaunchFlaggedProgramsOnSdCard() {
|
|
|
|
IterateOverFlaggedTitlesOnSdCard([](ncm::TitleId title_id) {
|
|
|
|
/* Check if we've already launched the title. */
|
|
|
|
if (pm::info::HasLaunchedTitle(title_id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Launch the title. */
|
|
|
|
LaunchTitle(nullptr, ncm::TitleLocation::Make(title_id, ncm::StorageId::None), 0);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-29 10:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Boot2 API. */
|
|
|
|
void LaunchBootPrograms() {
|
|
|
|
/* Wait until fs.mitm has installed itself. We want this to happen as early as possible. */
|
2019-07-03 06:21:47 +01:00
|
|
|
R_ASSERT(sm::mitm::WaitMitm(sm::ServiceName::Encode("fsp-srv")));
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
/* Launch programs required to mount the SD card. */
|
|
|
|
LaunchList(PreSdCardLaunchPrograms, NumPreSdCardLaunchPrograms);
|
|
|
|
|
|
|
|
/* At this point, the SD card can be mounted. */
|
|
|
|
cfg::WaitSdCardInitialized();
|
|
|
|
R_ASSERT(fsdevMountSdmc());
|
|
|
|
|
|
|
|
/* Wait for other atmosphere mitm modules to initialize. */
|
2019-07-03 06:21:47 +01:00
|
|
|
R_ASSERT(sm::mitm::WaitMitm(sm::ServiceName::Encode("set:sys")));
|
2019-10-15 06:49:06 +01:00
|
|
|
if (hos::GetVersion() >= hos::Version_200) {
|
2019-07-03 06:21:47 +01:00
|
|
|
R_ASSERT(sm::mitm::WaitMitm(sm::ServiceName::Encode("bpc")));
|
2019-06-29 10:20:36 +01:00
|
|
|
} else {
|
2019-07-03 06:21:47 +01:00
|
|
|
R_ASSERT(sm::mitm::WaitMitm(sm::ServiceName::Encode("bpc:c")));
|
2019-06-29 10:20:36 +01:00
|
|
|
}
|
|
|
|
|
2019-07-04 06:57:49 +01:00
|
|
|
/* Find out whether we are maintenance mode. */
|
|
|
|
const bool maintenance = IsMaintenanceMode();
|
|
|
|
if (maintenance) {
|
|
|
|
pm::bm::SetMaintenanceBoot();
|
|
|
|
}
|
2019-07-12 06:23:23 +01:00
|
|
|
|
2019-06-29 10:20:36 +01:00
|
|
|
/* Launch Atmosphere dmnt, using FsStorageId_None to force SD card boot. */
|
2019-07-03 04:54:16 +01:00
|
|
|
LaunchTitle(nullptr, ncm::TitleLocation::Make(ncm::TitleId::Dmnt, ncm::StorageId::None), 0);
|
2019-06-29 10:20:36 +01:00
|
|
|
|
2019-07-12 06:23:23 +01:00
|
|
|
/* Check for and forward declare non-atmosphere mitm modules. */
|
|
|
|
DetectAndDeclareFutureMitms();
|
|
|
|
|
2019-06-29 10:20:36 +01:00
|
|
|
/* Launch additional programs. */
|
|
|
|
if (maintenance) {
|
|
|
|
LaunchList(AdditionalMaintenanceLaunchPrograms, NumAdditionalMaintenanceLaunchPrograms);
|
2019-07-04 06:57:49 +01:00
|
|
|
/* Starting in 7.0.0, npns is launched during maintenance boot. */
|
2019-10-15 06:49:06 +01:00
|
|
|
if (hos::GetVersion() >= hos::Version_700) {
|
2019-07-04 06:57:49 +01:00
|
|
|
LaunchTitle(nullptr, ncm::TitleLocation::Make(ncm::TitleId::Npns, ncm::StorageId::NandSystem), 0);
|
|
|
|
}
|
2019-06-29 10:20:36 +01:00
|
|
|
} else {
|
|
|
|
LaunchList(AdditionalLaunchPrograms, NumAdditionalLaunchPrograms);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Launch user programs off of the SD. */
|
2019-07-12 06:23:23 +01:00
|
|
|
LaunchFlaggedProgramsOnSdCard();
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
/* We no longer need the SD card. */
|
|
|
|
fsdevUnmountAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|