2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2018-09-07 16:00:13 +01: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/>.
|
|
|
|
*/
|
2019-06-26 23:46:19 +01:00
|
|
|
#include "ldr_capabilities.hpp"
|
2018-04-22 02:52:49 +01:00
|
|
|
#include "ldr_content_management.hpp"
|
2019-06-26 23:46:19 +01:00
|
|
|
#include "ldr_launch_record.hpp"
|
|
|
|
#include "ldr_meta.hpp"
|
|
|
|
#include "ldr_patcher.hpp"
|
|
|
|
#include "ldr_process_creation.hpp"
|
|
|
|
#include "ldr_ro_manager.hpp"
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::ldr {
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
/* Convenience defines. */
|
|
|
|
constexpr size_t SystemResourceSizeMax = 0x1FE00000;
|
|
|
|
|
|
|
|
/* Types. */
|
|
|
|
enum NsoIndex {
|
|
|
|
Nso_Rtld = 0,
|
|
|
|
Nso_Main = 1,
|
|
|
|
Nso_SubSdk0 = 2,
|
|
|
|
Nso_SubSdk1 = 3,
|
|
|
|
Nso_SubSdk2 = 4,
|
|
|
|
Nso_SubSdk3 = 5,
|
|
|
|
Nso_SubSdk4 = 6,
|
|
|
|
Nso_SubSdk5 = 7,
|
|
|
|
Nso_SubSdk6 = 8,
|
|
|
|
Nso_SubSdk7 = 9,
|
|
|
|
Nso_SubSdk8 = 10,
|
|
|
|
Nso_SubSdk9 = 11,
|
|
|
|
Nso_Sdk = 12,
|
|
|
|
Nso_Count,
|
|
|
|
};
|
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
constexpr inline const char *NsoPaths[Nso_Count] = {
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/rtld"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/main"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk0"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk1"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk2"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk3"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk4"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk5"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk6"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk7"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk8"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/subsdk9"),
|
|
|
|
ENCODE_ATMOSPHERE_CODE_PATH("/sdk"),
|
|
|
|
};
|
2019-06-26 23:46:19 +01:00
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
constexpr const char *GetNsoPath(size_t idx) {
|
|
|
|
AMS_ABORT_UNLESS(idx < Nso_Count);
|
|
|
|
return NsoPaths[idx];
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ProcessInfo {
|
2019-09-28 02:04:58 +01:00
|
|
|
os::ManagedHandle process_handle;
|
2019-06-26 23:46:19 +01:00
|
|
|
uintptr_t args_address;
|
|
|
|
size_t args_size;
|
|
|
|
uintptr_t nso_address[Nso_Count];
|
|
|
|
size_t nso_size[Nso_Count];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Global NSO header cache. */
|
|
|
|
bool g_has_nso[Nso_Count];
|
|
|
|
NsoHeader g_nso_headers[Nso_Count];
|
|
|
|
|
2019-09-12 09:18:58 +01:00
|
|
|
/* Anti-downgrade. */
|
2019-12-11 21:35:22 +00:00
|
|
|
#include "ldr_anti_downgrade_tables.inc"
|
2019-09-12 09:18:58 +01:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
Result ValidateProgramVersion(ncm::ProgramId program_id, u32 version) {
|
2020-03-08 08:06:23 +00:00
|
|
|
/* No version verification is done before 8.1.0. */
|
2020-04-14 06:19:44 +01:00
|
|
|
R_SUCCEED_IF(hos::GetVersion() < hos::Version_8_1_0);
|
2020-03-08 08:06:23 +00:00
|
|
|
|
|
|
|
/* Do version-dependent validation, if compiled to do so. */
|
2019-09-12 09:18:58 +01:00
|
|
|
#ifdef LDR_VALIDATE_PROCESS_VERSION
|
2019-10-28 04:43:01 +00:00
|
|
|
const MinimumProgramVersion *entries = nullptr;
|
2019-10-24 09:40:44 +01:00
|
|
|
size_t num_entries = 0;
|
|
|
|
switch (hos::GetVersion()) {
|
2020-04-14 06:19:44 +01:00
|
|
|
case hos::Version_8_1_0:
|
2019-10-28 04:43:01 +00:00
|
|
|
entries = g_MinimumProgramVersions810;
|
|
|
|
num_entries = g_MinimumProgramVersionsCount810;
|
2019-10-24 09:40:44 +01:00
|
|
|
break;
|
2020-04-14 06:19:44 +01:00
|
|
|
case hos::Version_9_0_0:
|
2019-10-28 04:43:01 +00:00
|
|
|
entries = g_MinimumProgramVersions900;
|
|
|
|
num_entries = g_MinimumProgramVersionsCount900;
|
2019-10-24 09:40:44 +01:00
|
|
|
break;
|
2020-04-14 06:19:44 +01:00
|
|
|
case hos::Version_9_1_0:
|
2019-12-11 21:35:22 +00:00
|
|
|
entries = g_MinimumProgramVersions910;
|
|
|
|
num_entries = g_MinimumProgramVersionsCount910;
|
|
|
|
break;
|
2019-10-24 09:40:44 +01:00
|
|
|
default:
|
|
|
|
entries = nullptr;
|
|
|
|
num_entries = 0;
|
|
|
|
break;
|
|
|
|
}
|
2019-09-12 09:18:58 +01:00
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
for (size_t i = 0; i < num_entries; i++) {
|
2019-10-28 04:43:01 +00:00
|
|
|
if (entries[i].program_id == program_id) {
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(entries[i].version <= version, ResultInvalidVersion());
|
2019-09-12 09:18:58 +01:00
|
|
|
}
|
|
|
|
}
|
2019-10-24 09:40:44 +01:00
|
|
|
#endif
|
|
|
|
return ResultSuccess();
|
2019-09-12 09:18:58 +01:00
|
|
|
}
|
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Helpers. */
|
|
|
|
Result GetProgramInfoFromMeta(ProgramInfo *out, const Meta *meta) {
|
|
|
|
/* Copy basic info. */
|
|
|
|
out->main_thread_priority = meta->npdm->main_thread_priority;
|
|
|
|
out->default_cpu_id = meta->npdm->default_cpu_id;
|
|
|
|
out->main_thread_stack_size = meta->npdm->main_thread_stack_size;
|
2019-10-28 04:43:01 +00:00
|
|
|
out->program_id = meta->aci->program_id;
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Copy access controls. */
|
|
|
|
size_t offset = 0;
|
|
|
|
#define COPY_ACCESS_CONTROL(source, which) \
|
|
|
|
({ \
|
|
|
|
const size_t size = meta->source->which##_size; \
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(offset + size <= sizeof(out->ac_buffer), ResultInternalError()); \
|
2019-06-26 23:46:19 +01:00
|
|
|
out->source##_##which##_size = size; \
|
|
|
|
std::memcpy(out->ac_buffer + offset, meta->source##_##which, size); \
|
|
|
|
offset += size; \
|
|
|
|
})
|
|
|
|
|
|
|
|
/* Copy all access controls to buffer. */
|
|
|
|
COPY_ACCESS_CONTROL(acid, sac);
|
|
|
|
COPY_ACCESS_CONTROL(aci, sac);
|
|
|
|
COPY_ACCESS_CONTROL(acid, fac);
|
|
|
|
COPY_ACCESS_CONTROL(aci, fah);
|
|
|
|
#undef COPY_ACCESS_CONTROL
|
|
|
|
|
|
|
|
/* Copy flags. */
|
2019-06-28 01:37:33 +01:00
|
|
|
out->flags = caps::GetProgramInfoFlags(meta->acid_kac, meta->acid->kac_size);
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-06-19 19:51:30 +01:00
|
|
|
}
|
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
bool IsApplet(const Meta *meta) {
|
2019-06-28 01:37:33 +01:00
|
|
|
return (caps::GetProgramInfoFlags(meta->aci_kac, meta->aci->kac_size) & ProgramInfoFlag_ApplicationTypeMask) == ProgramInfoFlag_Applet;
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
bool IsApplication(const Meta *meta) {
|
2019-06-28 01:37:33 +01:00
|
|
|
return (caps::GetProgramInfoFlags(meta->aci_kac, meta->aci->kac_size) & ProgramInfoFlag_ApplicationTypeMask) == ProgramInfoFlag_Application;
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
Npdm::AddressSpaceType GetAddressSpaceType(const Meta *meta) {
|
|
|
|
return static_cast<Npdm::AddressSpaceType>((meta->npdm->flags & Npdm::MetaFlag_AddressSpaceTypeMask) >> Npdm::MetaFlag_AddressSpaceTypeShift);
|
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
Acid::PoolPartition GetPoolPartition(const Meta *meta) {
|
|
|
|
return static_cast<Acid::PoolPartition>((meta->acid->flags & Acid::AcidFlag_PoolPartitionMask) >> Acid::AcidFlag_PoolPartitionShift);
|
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
Result LoadNsoHeaders(NsoHeader *nso_headers, bool *has_nso) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Clear NSOs. */
|
|
|
|
std::memset(nso_headers, 0, sizeof(*nso_headers) * Nso_Count);
|
|
|
|
std::memset(has_nso, 0, sizeof(*has_nso) * Nso_Count);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < Nso_Count; i++) {
|
2020-03-09 10:10:12 +00:00
|
|
|
fs::FileHandle file;
|
|
|
|
if (R_SUCCEEDED(fs::OpenFile(std::addressof(file), GetNsoPath(i), fs::OpenMode_Read))) {
|
|
|
|
ON_SCOPE_EXIT { fs::CloseFile(file); };
|
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Read NSO header. */
|
2020-03-09 10:10:12 +00:00
|
|
|
size_t read_size;
|
|
|
|
R_TRY(fs::ReadFile(std::addressof(read_size), file, 0, nso_headers + i, sizeof(*nso_headers)));
|
|
|
|
R_UNLESS(read_size == sizeof(*nso_headers), ResultInvalidNso());
|
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
has_nso[i] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2018-04-24 09:08:11 +01:00
|
|
|
}
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
Result ValidateNsoHeaders(const NsoHeader *nso_headers, const bool *has_nso) {
|
|
|
|
/* We must always have a main. */
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(has_nso[Nso_Main], ResultInvalidNso());
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* If we don't have an RTLD, we must only have a main. */
|
|
|
|
if (!has_nso[Nso_Rtld]) {
|
|
|
|
for (size_t i = Nso_Main + 1; i < Nso_Count; i++) {
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(!has_nso[i], ResultInvalidNso());
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2018-04-24 09:08:11 +01:00
|
|
|
}
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* All NSOs must have zero text offset. */
|
|
|
|
for (size_t i = 0; i < Nso_Count; i++) {
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(nso_headers[i].text_dst_offset == 0, ResultInvalidNso());
|
2018-04-24 09:08:11 +01:00
|
|
|
}
|
2019-06-26 23:46:19 +01:00
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2018-04-24 09:08:11 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
Result ValidateMeta(const Meta *meta, const ncm::ProgramLocation &loc) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Validate version. */
|
2019-10-28 04:43:01 +00:00
|
|
|
R_TRY(ValidateProgramVersion(loc.program_id, meta->npdm->version));
|
2019-06-26 23:46:19 +01:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
/* Validate program id. */
|
|
|
|
R_UNLESS(meta->aci->program_id >= meta->acid->program_id_min, ResultInvalidProgramId());
|
|
|
|
R_UNLESS(meta->aci->program_id <= meta->acid->program_id_max, ResultInvalidProgramId());
|
2019-06-26 23:46:19 +01:00
|
|
|
|
2019-06-28 01:37:33 +01:00
|
|
|
/* Validate the kernel capabilities. */
|
|
|
|
R_TRY(caps::ValidateCapabilities(meta->acid_kac, meta->acid->kac_size, meta->aci_kac, meta->aci->kac_size));
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* All good. */
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GetCreateProcessFlags(u32 *out, const Meta *meta, const u32 ldr_flags) {
|
|
|
|
const u8 meta_flags = meta->npdm->flags;
|
|
|
|
|
|
|
|
u32 flags = 0;
|
|
|
|
|
|
|
|
/* Set Is64Bit. */
|
|
|
|
if (meta_flags & Npdm::MetaFlag_Is64Bit) {
|
|
|
|
flags |= svc::CreateProcessFlag_Is64Bit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set AddressSpaceType. */
|
|
|
|
switch (GetAddressSpaceType(meta)) {
|
|
|
|
case Npdm::AddressSpaceType_32Bit:
|
|
|
|
flags |= svc::CreateProcessFlag_AddressSpace32Bit;
|
|
|
|
break;
|
|
|
|
case Npdm::AddressSpaceType_64BitDeprecated:
|
|
|
|
flags |= svc::CreateProcessFlag_AddressSpace64BitDeprecated;
|
|
|
|
break;
|
|
|
|
case Npdm::AddressSpaceType_32BitWithoutAlias:
|
|
|
|
flags |= svc::CreateProcessFlag_AddressSpace32BitWithoutAlias;
|
|
|
|
break;
|
|
|
|
case Npdm::AddressSpaceType_64Bit:
|
|
|
|
flags |= svc::CreateProcessFlag_AddressSpace64Bit;
|
|
|
|
break;
|
|
|
|
default:
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultInvalidMeta();
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set Enable Debug. */
|
|
|
|
if (ldr_flags & CreateProcessFlag_EnableDebug) {
|
|
|
|
flags |= svc::CreateProcessFlag_EnableDebug;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set Enable ASLR. */
|
|
|
|
if (!(ldr_flags & CreateProcessFlag_DisableAslr)) {
|
|
|
|
flags |= svc::CreateProcessFlag_EnableAslr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set Is Application. */
|
|
|
|
if (IsApplication(meta)) {
|
|
|
|
flags |= svc::CreateProcessFlag_IsApplication;
|
|
|
|
|
|
|
|
/* 7.0.0+: Set OptimizeMemoryAllocation if relevant. */
|
2020-04-14 06:19:44 +01:00
|
|
|
if (hos::GetVersion() >= hos::Version_7_0_0) {
|
2019-06-26 23:46:19 +01:00
|
|
|
if (meta_flags & Npdm::MetaFlag_OptimizeMemoryAllocation) {
|
|
|
|
flags |= svc::CreateProcessFlag_OptimizeMemoryAllocation;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 5.0.0+ Set Pool Partition. */
|
2020-04-14 06:19:44 +01:00
|
|
|
if (hos::GetVersion() >= hos::Version_5_0_0) {
|
2019-06-26 23:46:19 +01:00
|
|
|
switch (GetPoolPartition(meta)) {
|
|
|
|
case Acid::PoolPartition_Application:
|
|
|
|
if (IsApplet(meta)) {
|
|
|
|
flags |= svc::CreateProcessFlag_PoolPartitionApplet;
|
|
|
|
} else {
|
|
|
|
flags |= svc::CreateProcessFlag_PoolPartitionApplication;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Acid::PoolPartition_Applet:
|
|
|
|
flags |= svc::CreateProcessFlag_PoolPartitionApplet;
|
|
|
|
break;
|
|
|
|
case Acid::PoolPartition_System:
|
|
|
|
flags |= svc::CreateProcessFlag_PoolPartitionSystem;
|
|
|
|
break;
|
|
|
|
case Acid::PoolPartition_SystemNonSecure:
|
|
|
|
flags |= svc::CreateProcessFlag_PoolPartitionSystemNonSecure;
|
|
|
|
break;
|
|
|
|
default:
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultInvalidMeta();
|
2018-04-24 09:08:11 +01:00
|
|
|
}
|
2020-04-14 06:19:44 +01:00
|
|
|
} else if (hos::GetVersion() >= hos::Version_4_0_0) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* On 4.0.0+, the corresponding bit was simply "UseSecureMemory". */
|
|
|
|
if (meta->acid->flags & Acid::AcidFlag_DeprecatedUseSecureMemory) {
|
|
|
|
flags |= svc::CreateProcessFlag_DeprecatedUseSecureMemory;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*out = flags;
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2018-04-24 09:08:11 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2020-01-18 04:11:03 +00:00
|
|
|
Result GetCreateProcessParameter(svc::CreateProcessParameter *out, const Meta *meta, u32 flags, Handle reslimit_h) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Clear output. */
|
|
|
|
std::memset(out, 0, sizeof(*out));
|
2018-04-24 09:08:11 +01:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
/* Set name, version, program id, resource limit handle. */
|
|
|
|
std::memcpy(out->name, meta->npdm->program_name, sizeof(out->name) - 1);
|
2019-06-26 23:46:19 +01:00
|
|
|
out->version = meta->npdm->version;
|
2020-01-18 04:11:03 +00:00
|
|
|
out->program_id = static_cast<u64>(meta->aci->program_id);
|
2019-06-26 23:46:19 +01:00
|
|
|
out->reslimit = reslimit_h;
|
|
|
|
|
|
|
|
/* Set flags. */
|
|
|
|
R_TRY(GetCreateProcessFlags(&out->flags, meta, flags));
|
|
|
|
|
|
|
|
/* 3.0.0+ System Resource Size. */
|
2020-04-14 06:19:44 +01:00
|
|
|
if (hos::GetVersion() >= hos::Version_3_0_0) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Validate size is aligned. */
|
2019-12-06 07:41:33 +00:00
|
|
|
R_UNLESS(util::IsAligned(meta->npdm->system_resource_size, os::MemoryBlockUnitSize), ResultInvalidSize());
|
2019-10-24 09:40:44 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Validate system resource usage. */
|
|
|
|
if (meta->npdm->system_resource_size) {
|
|
|
|
/* Process must be 64-bit. */
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS((out->flags & svc::CreateProcessFlag_AddressSpace64Bit), ResultInvalidMeta());
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Process must be application or applet. */
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(IsApplication(meta) || IsApplet(meta), ResultInvalidMeta());
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Size must be less than or equal to max. */
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(meta->npdm->system_resource_size <= SystemResourceSizeMax, ResultInvalidMeta());
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
|
|
|
out->system_resource_num_pages = meta->npdm->system_resource_size >> 12;
|
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2018-07-30 00:35:43 +01:00
|
|
|
}
|
2019-06-26 23:46:19 +01:00
|
|
|
|
2020-01-18 04:11:03 +00:00
|
|
|
Result DecideAddressSpaceLayout(ProcessInfo *out, svc::CreateProcessParameter *out_param, const NsoHeader *nso_headers, const bool *has_nso, const args::ArgumentInfo *arg_info) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Clear output. */
|
|
|
|
out->args_address = 0;
|
|
|
|
out->args_size = 0;
|
|
|
|
std::memset(out->nso_address, 0, sizeof(out->nso_address));
|
|
|
|
std::memset(out->nso_size, 0, sizeof(out->nso_size));
|
|
|
|
|
|
|
|
size_t total_size = 0;
|
|
|
|
|
|
|
|
/* Calculate base offsets. */
|
|
|
|
for (size_t i = 0; i < Nso_Count; i++) {
|
|
|
|
if (has_nso[i]) {
|
|
|
|
out->nso_address[i] = total_size;
|
|
|
|
const size_t text_end = nso_headers[i].text_dst_offset + nso_headers[i].text_size;
|
|
|
|
const size_t ro_end = nso_headers[i].ro_dst_offset + nso_headers[i].ro_size;
|
|
|
|
const size_t rw_end = nso_headers[i].rw_dst_offset + nso_headers[i].rw_size + nso_headers[i].bss_size;
|
|
|
|
out->nso_size[i] = text_end;
|
|
|
|
out->nso_size[i] = std::max(out->nso_size[i], ro_end);
|
|
|
|
out->nso_size[i] = std::max(out->nso_size[i], rw_end);
|
|
|
|
out->nso_size[i] = (out->nso_size[i] + size_t(0xFFFul)) & ~size_t(0xFFFul);
|
|
|
|
|
|
|
|
total_size += out->nso_size[i];
|
|
|
|
|
|
|
|
if (arg_info != nullptr && arg_info->args_size && !out->args_size) {
|
|
|
|
out->args_address = total_size;
|
|
|
|
out->args_size = 2 * arg_info->args_size + args::ArgumentSizeMax + 2 * sizeof(u32);
|
|
|
|
out->args_size = (out->args_size + size_t(0xFFFul)) & ~size_t(0xFFFul);
|
|
|
|
total_size += out->args_size;
|
|
|
|
}
|
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
}
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Calculate ASLR. */
|
|
|
|
uintptr_t aslr_start = 0;
|
|
|
|
uintptr_t aslr_size = 0;
|
2020-04-14 06:19:44 +01:00
|
|
|
if (hos::GetVersion() >= hos::Version_2_0_0) {
|
2020-01-18 04:11:03 +00:00
|
|
|
switch (out_param->flags & svc::CreateProcessFlag_AddressSpaceMask) {
|
2019-06-26 23:46:19 +01:00
|
|
|
case svc::CreateProcessFlag_AddressSpace32Bit:
|
|
|
|
case svc::CreateProcessFlag_AddressSpace32BitWithoutAlias:
|
|
|
|
aslr_start = map::AslrBase32Bit;
|
|
|
|
aslr_size = map::AslrSize32Bit;
|
|
|
|
break;
|
|
|
|
case svc::CreateProcessFlag_AddressSpace64BitDeprecated:
|
|
|
|
aslr_start = map::AslrBase64BitDeprecated;
|
|
|
|
aslr_size = map::AslrSize64BitDeprecated;
|
|
|
|
break;
|
|
|
|
case svc::CreateProcessFlag_AddressSpace64Bit:
|
|
|
|
aslr_start = map::AslrBase64Bit;
|
|
|
|
aslr_size = map::AslrSize64Bit;
|
|
|
|
break;
|
2019-10-24 10:30:10 +01:00
|
|
|
AMS_UNREACHABLE_DEFAULT_CASE();
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* On 1.0.0, only 2 address space types existed. */
|
2020-01-18 04:11:03 +00:00
|
|
|
if (out_param->flags & svc::CreateProcessFlag_AddressSpace64BitDeprecated) {
|
2019-06-26 23:46:19 +01:00
|
|
|
aslr_start = map::AslrBase64BitDeprecated;
|
|
|
|
aslr_size = map::AslrSize64BitDeprecated;
|
|
|
|
} else {
|
|
|
|
aslr_start = map::AslrBase32Bit;
|
|
|
|
aslr_size = map::AslrSize32Bit;
|
|
|
|
}
|
|
|
|
}
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(total_size <= aslr_size, svc::ResultOutOfMemory());
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Set Create Process output. */
|
|
|
|
uintptr_t aslr_slide = 0;
|
2019-12-10 07:50:47 +00:00
|
|
|
uintptr_t free_size = (aslr_size - total_size);
|
2020-01-18 04:11:03 +00:00
|
|
|
if (out_param->flags & svc::CreateProcessFlag_EnableAslr) {
|
2019-12-10 07:50:47 +00:00
|
|
|
/* Nintendo uses MT19937 (not os::GenerateRandomBytes), but we'll just use TinyMT for now. */
|
|
|
|
aslr_slide = os::GenerateRandomU64(free_size / os::MemoryBlockUnitSize) * os::MemoryBlockUnitSize;
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set out. */
|
|
|
|
aslr_start += aslr_slide;
|
|
|
|
for (size_t i = 0; i < Nso_Count; i++) {
|
|
|
|
if (has_nso[i]) {
|
|
|
|
out->nso_address[i] += aslr_start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (out->args_address) {
|
|
|
|
out->args_address += aslr_start;
|
|
|
|
}
|
|
|
|
|
2020-01-18 04:11:03 +00:00
|
|
|
out_param->code_address = aslr_start;
|
|
|
|
out_param->code_num_pages = total_size >> 12;
|
2019-06-26 23:46:19 +01:00
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-06-18 00:29:09 +01:00
|
|
|
}
|
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
Result CreateProcessImpl(ProcessInfo *out, const Meta *meta, const NsoHeader *nso_headers, const bool *has_nso, const args::ArgumentInfo *arg_info, u32 flags, Handle reslimit_h) {
|
2020-01-18 04:11:03 +00:00
|
|
|
/* Get CreateProcessParameter. */
|
|
|
|
svc::CreateProcessParameter param;
|
|
|
|
R_TRY(GetCreateProcessParameter(¶m, meta, flags, reslimit_h));
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Decide on an NSO layout. */
|
2020-01-18 04:11:03 +00:00
|
|
|
R_TRY(DecideAddressSpaceLayout(out, ¶m, nso_headers, has_nso, arg_info));
|
2019-06-19 19:51:30 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Actually create process. const_cast necessary because libnx doesn't declare svcCreateProcess with const u32*. */
|
2020-01-18 04:11:03 +00:00
|
|
|
return svcCreateProcess(out->process_handle.GetPointer(), ¶m, reinterpret_cast<const u32 *>(meta->aci_kac), meta->aci->kac_size / sizeof(u32));
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
Result LoadNsoSegment(fs::FileHandle file, const NsoHeader::SegmentInfo *segment, size_t file_size, const u8 *file_hash, bool is_compressed, bool check_hash, uintptr_t map_base, uintptr_t map_end) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Select read size based on compression. */
|
|
|
|
if (!is_compressed) {
|
|
|
|
file_size = segment->size;
|
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Validate size. */
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(file_size <= segment->size, ResultInvalidNso());
|
|
|
|
R_UNLESS(segment->size <= std::numeric_limits<s32>::max(), ResultInvalidNso());
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Load data from file. */
|
|
|
|
uintptr_t load_address = is_compressed ? map_end - file_size : map_base;
|
2020-03-09 10:10:12 +00:00
|
|
|
size_t read_size;
|
|
|
|
R_TRY(fs::ReadFile(std::addressof(read_size), file, segment->file_offset, reinterpret_cast<void *>(load_address), file_size));
|
|
|
|
R_UNLESS(read_size == file_size, ResultInvalidNso());
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Uncompress if necessary. */
|
|
|
|
if (is_compressed) {
|
2019-10-24 09:40:44 +01:00
|
|
|
bool decompressed = (util::DecompressLZ4(reinterpret_cast<void *>(map_base), segment->size, reinterpret_cast<const void *>(load_address), file_size) == static_cast<int>(segment->size));
|
|
|
|
R_UNLESS(decompressed, ResultInvalidNso());
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Check hash if necessary. */
|
|
|
|
if (check_hash) {
|
2020-03-09 10:10:12 +00:00
|
|
|
u8 hash[crypto::Sha256Generator::HashSize];
|
|
|
|
crypto::GenerateSha256Hash(hash, sizeof(hash), reinterpret_cast<void *>(map_base), segment->size);
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(std::memcmp(hash, file_hash, sizeof(hash)) == 0, ResultInvalidNso());
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
Result LoadNsoIntoProcessMemory(Handle process_handle, fs::FileHandle file, uintptr_t map_address, const NsoHeader *nso_header, uintptr_t nso_address, size_t nso_size) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Map and read data from file. */
|
|
|
|
{
|
|
|
|
map::AutoCloseMap mapper(map_address, process_handle, nso_address, nso_size);
|
|
|
|
R_TRY(mapper.GetResult());
|
|
|
|
|
|
|
|
/* Load NSO segments. */
|
2020-03-09 10:10:12 +00:00
|
|
|
R_TRY(LoadNsoSegment(file, &nso_header->segments[NsoHeader::Segment_Text], nso_header->text_compressed_size, nso_header->text_hash, (nso_header->flags & NsoHeader::Flag_CompressedText) != 0,
|
|
|
|
(nso_header->flags & NsoHeader::Flag_CheckHashText) != 0, map_address + nso_header->text_dst_offset, map_address + nso_size));
|
|
|
|
R_TRY(LoadNsoSegment(file, &nso_header->segments[NsoHeader::Segment_Ro], nso_header->ro_compressed_size, nso_header->ro_hash, (nso_header->flags & NsoHeader::Flag_CompressedRo) != 0,
|
|
|
|
(nso_header->flags & NsoHeader::Flag_CheckHashRo) != 0, map_address + nso_header->ro_dst_offset, map_address + nso_size));
|
|
|
|
R_TRY(LoadNsoSegment(file, &nso_header->segments[NsoHeader::Segment_Rw], nso_header->rw_compressed_size, nso_header->rw_hash, (nso_header->flags & NsoHeader::Flag_CompressedRw) != 0,
|
|
|
|
(nso_header->flags & NsoHeader::Flag_CheckHashRw) != 0, map_address + nso_header->rw_dst_offset, map_address + nso_size));
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Clear unused space to zero. */
|
|
|
|
const size_t text_end = nso_header->text_dst_offset + nso_header->text_size;
|
|
|
|
const size_t ro_end = nso_header->ro_dst_offset + nso_header->ro_size;
|
|
|
|
const size_t rw_end = nso_header->rw_dst_offset + nso_header->rw_size;
|
|
|
|
std::memset(reinterpret_cast<void *>(map_address), 0, nso_header->text_dst_offset);
|
|
|
|
std::memset(reinterpret_cast<void *>(map_address + text_end), 0, nso_header->ro_dst_offset - text_end);
|
|
|
|
std::memset(reinterpret_cast<void *>(map_address + ro_end), 0, nso_header->rw_dst_offset - ro_end);
|
|
|
|
std::memset(reinterpret_cast<void *>(map_address + rw_end), 0, nso_header->bss_size);
|
|
|
|
|
|
|
|
/* Apply IPS patches. */
|
|
|
|
LocateAndApplyIpsPatchesToModule(nso_header->build_id, map_address, nso_size);
|
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Set permissions. */
|
|
|
|
const size_t text_size = (static_cast<size_t>(nso_header->text_size) + size_t(0xFFFul)) & ~size_t(0xFFFul);
|
|
|
|
const size_t ro_size = (static_cast<size_t>(nso_header->ro_size) + size_t(0xFFFul)) & ~size_t(0xFFFul);
|
|
|
|
const size_t rw_size = (static_cast<size_t>(nso_header->rw_size + nso_header->bss_size) + size_t(0xFFFul)) & ~size_t(0xFFFul);
|
|
|
|
if (text_size) {
|
|
|
|
R_TRY(svcSetProcessMemoryPermission(process_handle, nso_address + nso_header->text_dst_offset, text_size, Perm_Rx));
|
|
|
|
}
|
|
|
|
if (ro_size) {
|
|
|
|
R_TRY(svcSetProcessMemoryPermission(process_handle, nso_address + nso_header->ro_dst_offset, ro_size, Perm_R));
|
|
|
|
}
|
|
|
|
if (rw_size) {
|
|
|
|
R_TRY(svcSetProcessMemoryPermission(process_handle, nso_address + nso_header->rw_dst_offset, rw_size, Perm_Rw));
|
|
|
|
}
|
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-06-18 00:29:09 +01:00
|
|
|
}
|
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
Result LoadNsosIntoProcessMemory(const ProcessInfo *process_info, const NsoHeader *nso_headers, const bool *has_nso, const args::ArgumentInfo *arg_info) {
|
2019-06-26 23:46:19 +01:00
|
|
|
const Handle process_handle = process_info->process_handle.Get();
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Load each NSO. */
|
|
|
|
for (size_t i = 0; i < Nso_Count; i++) {
|
|
|
|
if (has_nso[i]) {
|
2020-03-09 10:10:12 +00:00
|
|
|
fs::FileHandle file;
|
|
|
|
R_TRY(fs::OpenFile(std::addressof(file), GetNsoPath(i), fs::OpenMode_Read));
|
|
|
|
ON_SCOPE_EXIT { fs::CloseFile(file); };
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
uintptr_t map_address = 0;
|
|
|
|
R_TRY(map::LocateMappableSpace(&map_address, process_info->nso_size[i]));
|
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
R_TRY(LoadNsoIntoProcessMemory(process_handle, file, map_address, nso_headers + i, process_info->nso_address[i], process_info->nso_size[i]));
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load arguments, if present. */
|
|
|
|
if (arg_info != nullptr) {
|
|
|
|
/* Write argument data into memory. */
|
|
|
|
{
|
|
|
|
uintptr_t map_address = 0;
|
|
|
|
R_TRY(map::LocateMappableSpace(&map_address, process_info->args_size));
|
|
|
|
|
|
|
|
map::AutoCloseMap mapper(map_address, process_handle, process_info->args_address, process_info->args_size);
|
|
|
|
R_TRY(mapper.GetResult());
|
|
|
|
|
|
|
|
ProgramArguments *args = reinterpret_cast<ProgramArguments *>(map_address);
|
|
|
|
std::memset(args, 0, sizeof(*args));
|
|
|
|
args->allocated_size = process_info->args_size;
|
|
|
|
args->arguments_size = arg_info->args_size;
|
|
|
|
std::memcpy(args->arguments, arg_info->args, arg_info->args_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set argument region permissions. */
|
|
|
|
R_TRY(svcSetProcessMemoryPermission(process_handle, process_info->args_address, process_info->args_size, Perm_Rw));
|
|
|
|
}
|
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2018-04-24 13:25:31 +01:00
|
|
|
}
|
2019-06-26 23:46:19 +01:00
|
|
|
|
2018-04-24 13:25:31 +01:00
|
|
|
}
|
2019-06-18 00:29:09 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Process Creation API. */
|
2019-11-21 12:03:19 +00:00
|
|
|
Result CreateProcess(Handle *out, PinId pin_id, const ncm::ProgramLocation &loc, const cfg::OverrideStatus &override_status, const char *path, u32 flags, Handle reslimit_h) {
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Use global storage for NSOs. */
|
|
|
|
NsoHeader *nso_headers = g_nso_headers;
|
|
|
|
bool *has_nso = g_has_nso;
|
2019-10-28 04:43:01 +00:00
|
|
|
const auto arg_info = args::Get(loc.program_id);
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
/* Mount code. */
|
2019-11-21 12:03:19 +00:00
|
|
|
ScopedCodeMount mount(loc, override_status);
|
2019-06-28 01:37:33 +01:00
|
|
|
R_TRY(mount.GetResult());
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Load meta, possibly from cache. */
|
|
|
|
Meta meta;
|
2019-11-21 12:03:19 +00:00
|
|
|
R_TRY(LoadMetaFromCache(&meta, loc.program_id, override_status));
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Validate meta. */
|
|
|
|
R_TRY(ValidateMeta(&meta, loc));
|
|
|
|
|
|
|
|
/* Load, validate NSOs. */
|
2020-03-09 10:10:12 +00:00
|
|
|
R_TRY(LoadNsoHeaders(nso_headers, has_nso));
|
2019-06-26 23:46:19 +01:00
|
|
|
R_TRY(ValidateNsoHeaders(nso_headers, has_nso));
|
|
|
|
|
|
|
|
/* Actually create process. */
|
|
|
|
ProcessInfo info;
|
|
|
|
R_TRY(CreateProcessImpl(&info, &meta, nso_headers, has_nso, arg_info, flags, reslimit_h));
|
|
|
|
|
|
|
|
/* Load NSOs into process memory. */
|
2020-03-09 10:10:12 +00:00
|
|
|
R_TRY(LoadNsosIntoProcessMemory(&info, nso_headers, has_nso, arg_info));
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Register NSOs with ro manager. */
|
|
|
|
{
|
2019-10-20 01:42:53 +01:00
|
|
|
/* Nintendo doesn't validate this get, but we do. */
|
|
|
|
os::ProcessId process_id = os::GetProcessId(info.process_handle.Get());
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Register new process. */
|
2019-10-28 04:43:01 +00:00
|
|
|
ldr::ro::RegisterProcess(pin_id, process_id, loc.program_id);
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Register all NSOs. */
|
|
|
|
for (size_t i = 0; i < Nso_Count; i++) {
|
|
|
|
if (has_nso[i]) {
|
|
|
|
ldr::ro::RegisterModule(pin_id, nso_headers[i].build_id, info.nso_address[i], info.nso_size[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-28 04:51:57 +01:00
|
|
|
/* If we're overriding for HBL, perform HTML document redirection. */
|
2020-03-09 10:10:12 +00:00
|
|
|
if (override_status.IsHbl()) {
|
2019-06-28 04:51:57 +01:00
|
|
|
/* Don't validate result, failure is okay. */
|
|
|
|
RedirectHtmlDocumentPathForHbl(loc);
|
|
|
|
}
|
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
/* Clear the external code for the program. */
|
|
|
|
fssystem::DestroyExternalCode(loc.program_id);
|
2019-06-28 04:51:57 +01:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
/* Note that we've created the program. */
|
|
|
|
SetLaunchedProgram(loc.program_id);
|
2019-06-28 04:51:57 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Move the process handle to output. */
|
|
|
|
*out = info.process_handle.Move();
|
|
|
|
}
|
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-03-20 14:53:56 +00:00
|
|
|
}
|
2019-01-07 00:30:05 +00:00
|
|
|
|
2019-11-21 12:03:19 +00:00
|
|
|
Result GetProgramInfo(ProgramInfo *out, cfg::OverrideStatus *out_status, const ncm::ProgramLocation &loc) {
|
2019-06-26 23:46:19 +01:00
|
|
|
Meta meta;
|
|
|
|
|
|
|
|
/* Load Meta. */
|
|
|
|
{
|
2019-06-28 01:37:33 +01:00
|
|
|
ScopedCodeMount mount(loc);
|
|
|
|
R_TRY(mount.GetResult());
|
2019-11-21 12:03:19 +00:00
|
|
|
R_TRY(LoadMeta(&meta, loc.program_id, mount.GetOverrideStatus()));
|
|
|
|
if (out_status != nullptr) {
|
|
|
|
*out_status = mount.GetOverrideStatus();
|
|
|
|
}
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2019-03-20 14:53:56 +00:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
return GetProgramInfoFromMeta(out, &meta);
|
|
|
|
}
|
2019-03-24 01:27:53 +00:00
|
|
|
|
2018-04-22 02:52:49 +01:00
|
|
|
}
|