2020-04-04 05:40:46 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-04-04 05:40:46 +00:00
|
|
|
*
|
|
|
|
* 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 <stratosphere.hpp>
|
|
|
|
|
|
|
|
namespace ams::ncm {
|
|
|
|
|
|
|
|
Result PackageInstallTaskBase::Initialize(const char *package_root_path, void *buffer, size_t buffer_size, StorageId storage_id, InstallTaskDataBase *data, u32 config) {
|
|
|
|
R_TRY(InstallTaskBase::Initialize(storage_id, data, config));
|
2022-03-19 03:11:26 +00:00
|
|
|
m_package_root.Assign(package_root_path);
|
2021-10-10 07:14:06 +00:00
|
|
|
m_buffer = buffer;
|
|
|
|
m_buffer_size = buffer_size;
|
2022-03-26 07:14:36 +00:00
|
|
|
R_SUCCEED();
|
2020-04-04 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result PackageInstallTaskBase::OnWritePlaceHolder(const ContentMetaKey &key, InstallContentInfo *content_info) {
|
2021-10-06 22:20:48 +00:00
|
|
|
AMS_UNUSED(key);
|
|
|
|
|
|
|
|
/* Get the file path. */
|
2020-04-04 05:40:46 +00:00
|
|
|
PackagePath path;
|
|
|
|
if (content_info->GetType() == ContentType::Meta) {
|
|
|
|
this->CreateContentMetaPath(std::addressof(path), content_info->GetId());
|
|
|
|
} else {
|
|
|
|
this->CreateContentPath(std::addressof(path), content_info->GetId());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the file. */
|
|
|
|
fs::FileHandle file;
|
|
|
|
R_TRY(fs::OpenFile(std::addressof(file), path, fs::OpenMode_Read));
|
|
|
|
ON_SCOPE_EXIT { fs::CloseFile(file); };
|
|
|
|
|
|
|
|
/* Continuously write the file to the placeholder until there is nothing left to write. */
|
|
|
|
while (true) {
|
|
|
|
/* Read as much of the remainder of the file as possible. */
|
|
|
|
size_t size_read;
|
2021-10-10 07:14:06 +00:00
|
|
|
R_TRY(fs::ReadFile(std::addressof(size_read), file, content_info->written, m_buffer, m_buffer_size));
|
2020-04-04 05:40:46 +00:00
|
|
|
|
|
|
|
/* There is nothing left to read. */
|
|
|
|
if (size_read == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write the placeholder. */
|
2021-10-10 07:14:06 +00:00
|
|
|
R_TRY(this->WritePlaceHolderBuffer(content_info, m_buffer, size_read));
|
2020-04-04 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
2022-03-26 07:14:36 +00:00
|
|
|
R_SUCCEED();
|
2020-04-04 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result PackageInstallTaskBase::InstallTicket(const fs::RightsId &rights_id, ContentMetaType meta_type) {
|
2021-10-06 22:20:48 +00:00
|
|
|
AMS_UNUSED(meta_type);
|
|
|
|
|
2020-04-04 05:40:46 +00:00
|
|
|
/* Read ticket from file. */
|
|
|
|
s64 ticket_size;
|
|
|
|
std::unique_ptr<char[]> ticket;
|
|
|
|
{
|
|
|
|
fs::FileHandle ticket_file;
|
|
|
|
{
|
|
|
|
PackagePath ticket_path;
|
|
|
|
this->CreateTicketPath(std::addressof(ticket_path), rights_id);
|
|
|
|
R_TRY(fs::OpenFile(std::addressof(ticket_file), ticket_path, fs::OpenMode_Read));
|
|
|
|
}
|
|
|
|
ON_SCOPE_EXIT { fs::CloseFile(ticket_file); };
|
|
|
|
|
|
|
|
R_TRY(fs::GetFileSize(std::addressof(ticket_size), ticket_file));
|
|
|
|
|
|
|
|
ticket.reset(new (std::nothrow) char[static_cast<size_t>(ticket_size)]);
|
|
|
|
R_UNLESS(ticket != nullptr, ncm::ResultAllocationFailed());
|
|
|
|
R_TRY(fs::ReadFile(ticket_file, 0, ticket.get(), static_cast<size_t>(ticket_size)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Read certificate from file. */
|
|
|
|
s64 cert_size;
|
|
|
|
std::unique_ptr<char[]> cert;
|
|
|
|
{
|
|
|
|
fs::FileHandle cert_file;
|
|
|
|
{
|
|
|
|
PackagePath cert_path;
|
|
|
|
this->CreateCertificatePath(std::addressof(cert_path), rights_id);
|
|
|
|
R_TRY(fs::OpenFile(std::addressof(cert_file), cert_path, fs::OpenMode_Read));
|
|
|
|
}
|
|
|
|
ON_SCOPE_EXIT { fs::CloseFile(cert_file); };
|
|
|
|
|
|
|
|
R_TRY(fs::GetFileSize(std::addressof(cert_size), cert_file));
|
|
|
|
|
|
|
|
cert.reset(new (std::nothrow) char[static_cast<size_t>(cert_size)]);
|
|
|
|
R_UNLESS(cert != nullptr, ncm::ResultAllocationFailed());
|
|
|
|
R_TRY(fs::ReadFile(cert_file, 0, cert.get(), static_cast<size_t>(cert_size)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: es::ImportTicket() */
|
|
|
|
/* TODO: How should es be handled without undesired effects? */
|
|
|
|
|
2022-03-26 07:14:36 +00:00
|
|
|
R_SUCCEED();
|
2020-04-04 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PackageInstallTaskBase::CreateContentPath(PackagePath *out_path, ContentId content_id) {
|
|
|
|
char str[ContentIdStringLength + 1] = {};
|
|
|
|
GetStringFromContentId(str, sizeof(str), content_id);
|
2022-03-19 03:11:26 +00:00
|
|
|
out_path->AssignFormat("%s%s%s", m_package_root.Get(), str, ".nca");
|
2020-04-04 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PackageInstallTaskBase::CreateContentMetaPath(PackagePath *out_path, ContentId content_id) {
|
|
|
|
char str[ContentIdStringLength + 1] = {};
|
|
|
|
GetStringFromContentId(str, sizeof(str), content_id);
|
2022-03-19 03:11:26 +00:00
|
|
|
out_path->AssignFormat("%s%s%s", m_package_root.Get(), str, ".cnmt.nca");
|
2020-04-04 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PackageInstallTaskBase::CreateTicketPath(PackagePath *out_path, fs::RightsId id) {
|
|
|
|
char str[RightsIdStringLength + 1] = {};
|
|
|
|
GetStringFromRightsId(str, sizeof(str), id);
|
2022-03-19 03:11:26 +00:00
|
|
|
out_path->AssignFormat("%s%s%s", m_package_root.Get(), str, ".tik");
|
2020-04-04 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PackageInstallTaskBase::CreateCertificatePath(PackagePath *out_path, fs::RightsId id) {
|
|
|
|
char str[RightsIdStringLength + 1] = {};
|
|
|
|
GetStringFromRightsId(str, sizeof(str), id);
|
2022-03-19 03:11:26 +00:00
|
|
|
out_path->AssignFormat("%s%s%s", m_package_root.Get(), str, ".cert");
|
2020-04-04 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|