Atmosphere/stratosphere/loader/source/ldr_content_management.hpp

80 lines
3.1 KiB
C++
Raw Normal View History

/*
* Copyright (c) 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/>.
*/
#pragma once
2019-06-26 22:46:19 +00:00
#include <stratosphere.hpp>
namespace ams::ldr {
2019-06-26 22:46:19 +00:00
/* Utility reference to make code mounting automatic. */
class ScopedCodeMount {
NON_COPYABLE(ScopedCodeMount);
2020-03-09 10:10:12 +00:00
NON_MOVEABLE(ScopedCodeMount);
2019-06-26 22:46:19 +00:00
private:
2021-10-10 07:14:06 +00:00
std::scoped_lock<os::SdkMutex> m_lk;
cfg::OverrideStatus m_override_status;
fs::CodeVerificationData m_ams_code_verification_data;
fs::CodeVerificationData m_sd_or_base_code_verification_data;
fs::CodeVerificationData m_base_code_verification_data;
Result m_result;
bool m_has_status;
bool m_mounted_ams;
bool m_mounted_sd_or_code;
bool m_mounted_code;
2019-06-26 22:46:19 +00:00
public:
ScopedCodeMount(const ncm::ProgramLocation &loc);
ScopedCodeMount(const ncm::ProgramLocation &loc, const cfg::OverrideStatus &override_status);
2019-06-26 22:46:19 +00:00
~ScopedCodeMount();
2019-06-28 00:37:33 +00:00
Result GetResult() const {
2021-10-10 07:14:06 +00:00
return m_result;
2019-06-26 22:46:19 +00:00
}
const cfg::OverrideStatus &GetOverrideStatus() const {
2021-10-10 07:14:06 +00:00
AMS_ABORT_UNLESS(m_has_status);
return m_override_status;
}
2020-04-14 09:45:28 +00:00
const fs::CodeVerificationData &GetAtmosphereCodeVerificationData() const {
2021-10-10 07:14:06 +00:00
return m_ams_code_verification_data;
2020-04-14 09:45:28 +00:00
}
const fs::CodeVerificationData &GetSdOrBaseCodeVerificationData() const {
2021-10-10 07:14:06 +00:00
return m_sd_or_base_code_verification_data;
2020-04-14 09:45:28 +00:00
}
const fs::CodeVerificationData &GetCodeVerificationData() const {
2021-10-10 07:14:06 +00:00
return m_base_code_verification_data;
2020-04-14 09:45:28 +00:00
}
2019-06-28 00:37:33 +00:00
private:
Result Initialize(const ncm::ProgramLocation &loc);
2020-03-09 10:10:12 +00:00
void EnsureOverrideStatus(const ncm::ProgramLocation &loc);
2019-06-26 22:46:19 +00:00
};
2020-03-09 10:10:12 +00:00
constexpr inline const char * const AtmosphereCodeMountName = "ams-code";
2020-04-14 09:45:28 +00:00
constexpr inline const char * const SdOrCodeMountName = "sd-code";
2020-03-09 10:10:12 +00:00
constexpr inline const char * const CodeMountName = "code";
#define ENCODE_ATMOSPHERE_CODE_PATH(relative) "ams-code:" relative
2020-04-14 09:45:28 +00:00
#define ENCODE_SD_OR_CODE_PATH(relative) "sd-code:" relative
2020-03-09 21:53:40 +00:00
#define ENCODE_CODE_PATH(relative) "code:" relative
2019-06-26 22:46:19 +00:00
/* Redirection API. */
Result GetProgramPath(char *out_path, size_t out_size, const ncm::ProgramLocation &loc);
Result RedirectProgramPath(const char *path, size_t size, const ncm::ProgramLocation &loc);
Result RedirectHtmlDocumentPathForHbl(const ncm::ProgramLocation &loc);
2019-06-26 22:46:19 +00:00
}