Atmosphere/stratosphere/loader/source/ldr_content_management.hpp

80 lines
3.1 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020 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 18:46:19 -04:00
#include <stratosphere.hpp>
namespace ams::ldr {
2019-06-26 18:46:19 -04:00
/* Utility reference to make code mounting automatic. */
class ScopedCodeMount {
NON_COPYABLE(ScopedCodeMount);
2020-03-09 06:10:12 -04:00
NON_MOVEABLE(ScopedCodeMount);
2019-06-26 18:46:19 -04:00
private:
std::scoped_lock<os::SdkMutex> lk;
cfg::OverrideStatus override_status;
fs::CodeVerificationData ams_code_verification_data;
fs::CodeVerificationData sd_or_base_code_verification_data;
fs::CodeVerificationData base_code_verification_data;
2020-03-09 06:10:12 -04:00
Result result;
bool has_status;
2020-03-09 06:10:12 -04:00
bool mounted_ams;
2020-04-14 05:45:28 -04:00
bool mounted_sd_or_code;
2020-03-09 06:10:12 -04:00
bool mounted_code;
2019-06-26 18:46:19 -04:00
public:
ScopedCodeMount(const ncm::ProgramLocation &loc);
ScopedCodeMount(const ncm::ProgramLocation &loc, const cfg::OverrideStatus &override_status);
2019-06-26 18:46:19 -04:00
~ScopedCodeMount();
2019-06-27 20:37:33 -04:00
Result GetResult() const {
return this->result;
2019-06-26 18:46:19 -04:00
}
const cfg::OverrideStatus &GetOverrideStatus() const {
2020-02-23 02:05:14 -05:00
AMS_ABORT_UNLESS(this->has_status);
return this->override_status;
}
2020-04-14 05:45:28 -04:00
const fs::CodeVerificationData &GetAtmosphereCodeVerificationData() const {
return this->ams_code_verification_data;
2020-04-14 05:45:28 -04:00
}
const fs::CodeVerificationData &GetSdOrBaseCodeVerificationData() const {
return this->sd_or_base_code_verification_data;
2020-04-14 05:45:28 -04:00
}
const fs::CodeVerificationData &GetCodeVerificationData() const {
return this->base_code_verification_data;
2020-04-14 05:45:28 -04:00
}
2019-06-27 20:37:33 -04:00
private:
Result Initialize(const ncm::ProgramLocation &loc);
2020-03-09 06:10:12 -04:00
void EnsureOverrideStatus(const ncm::ProgramLocation &loc);
2019-06-26 18:46:19 -04:00
};
2020-03-09 06:10:12 -04:00
constexpr inline const char * const AtmosphereCodeMountName = "ams-code";
2020-04-14 05:45:28 -04:00
constexpr inline const char * const SdOrCodeMountName = "sd-code";
2020-03-09 06:10:12 -04:00
constexpr inline const char * const CodeMountName = "code";
#define ENCODE_ATMOSPHERE_CODE_PATH(relative) "ams-code:" relative
2020-04-14 05:45:28 -04:00
#define ENCODE_SD_OR_CODE_PATH(relative) "sd-code:" relative
2020-03-09 17:53:40 -04:00
#define ENCODE_CODE_PATH(relative) "code:" relative
2019-06-26 18:46:19 -04:00
/* Redirection API. */
Result ResolveContentPath(char *out_path, const ncm::ProgramLocation &loc);
Result RedirectContentPath(const char *path, const ncm::ProgramLocation &loc);
Result RedirectHtmlDocumentPathForHbl(const ncm::ProgramLocation &loc);
2019-06-26 18:46:19 -04:00
}