2020-06-16 20:28:02 +02:00
|
|
|
using ARMeilleure.Translation.PTC;
|
2020-05-15 08:16:46 +02:00
|
|
|
using LibHac;
|
|
|
|
using LibHac.Account;
|
|
|
|
using LibHac.Common;
|
|
|
|
using LibHac.Fs;
|
2020-09-01 22:08:59 +02:00
|
|
|
using LibHac.Fs.Fsa;
|
2020-05-15 08:16:46 +02:00
|
|
|
using LibHac.FsSystem;
|
|
|
|
using LibHac.FsSystem.NcaUtils;
|
|
|
|
using LibHac.Ns;
|
|
|
|
using Ryujinx.Common.Configuration;
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
using Ryujinx.HLE.FileSystem;
|
|
|
|
using Ryujinx.HLE.FileSystem.Content;
|
|
|
|
using Ryujinx.HLE.Loaders.Executables;
|
|
|
|
using Ryujinx.HLE.Loaders.Npdm;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2020-09-21 05:45:30 +02:00
|
|
|
using System.Globalization;
|
2020-05-15 08:16:46 +02:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
using static LibHac.Fs.ApplicationSaveDataManagement;
|
2020-09-01 22:08:59 +02:00
|
|
|
using ApplicationId = LibHac.Ncm.ApplicationId;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS
|
|
|
|
{
|
|
|
|
using JsonHelper = Common.Utilities.JsonHelper;
|
|
|
|
|
|
|
|
public class ApplicationLoader
|
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
// Binaries from exefs are loaded into mem in this order. Do not change.
|
|
|
|
private static readonly string[] ExeFsPrefixes = { "rtld", "main", "subsdk*", "sdk" };
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
private readonly Switch _device;
|
|
|
|
private readonly ContentManager _contentManager;
|
|
|
|
private readonly VirtualFileSystem _fileSystem;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
private string _titleName;
|
|
|
|
private string _displayVersion;
|
|
|
|
private BlitStruct<ApplicationControlProperty> _controlData;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
public BlitStruct<ApplicationControlProperty> ControlData => _controlData;
|
|
|
|
public string TitleName => _titleName;
|
|
|
|
public string DisplayVersion => _displayVersion;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
public ulong TitleId { get; private set; }
|
|
|
|
public bool TitleIs64Bit { get; private set; }
|
2020-06-16 20:28:02 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
public string TitleIdText => TitleId.ToString("x16");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
public ApplicationLoader(Switch device, VirtualFileSystem fileSystem, ContentManager contentManager)
|
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
_device = device;
|
2020-05-15 08:16:46 +02:00
|
|
|
_contentManager = contentManager;
|
2020-09-21 05:45:30 +02:00
|
|
|
_fileSystem = fileSystem;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
_controlData = new BlitStruct<ApplicationControlProperty>(1);
|
2020-07-09 06:31:15 +02:00
|
|
|
|
|
|
|
// Clear Mods cache
|
|
|
|
_fileSystem.ModLoader.Clear();
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void LoadCart(string exeFsDir, string romFsFile = null)
|
|
|
|
{
|
|
|
|
if (romFsFile != null)
|
|
|
|
{
|
|
|
|
_fileSystem.LoadRomFs(romFsFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocalFileSystem codeFs = new LocalFileSystem(exeFsDir);
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
Npdm metaData = ReadNpdm(codeFs);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-08-30 18:51:53 +02:00
|
|
|
_fileSystem.ModLoader.CollectMods(TitleId, _fileSystem.ModLoader.GetModsBasePath());
|
2020-07-15 01:40:17 +02:00
|
|
|
|
2020-05-15 08:16:46 +02:00
|
|
|
if (TitleId != 0)
|
|
|
|
{
|
2020-09-01 22:08:59 +02:00
|
|
|
EnsureSaveData(new ApplicationId(TitleId));
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
2020-07-09 06:31:15 +02:00
|
|
|
|
|
|
|
LoadExeFs(codeFs, metaData);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
public static (Nca main, Nca patch, Nca control) GetGameData(VirtualFileSystem fileSystem, PartitionFileSystem pfs, int programIndex)
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
Nca mainNca = null;
|
|
|
|
Nca patchNca = null;
|
2020-05-15 08:16:46 +02:00
|
|
|
Nca controlNca = null;
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
fileSystem.ImportTickets(pfs);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
foreach (DirectoryEntryEx fileEntry in pfs.EnumerateEntries("/", "*.nca"))
|
|
|
|
{
|
|
|
|
pfs.OpenFile(out IFile ncaFile, fileEntry.FullPath.ToU8Span(), OpenMode.Read).ThrowIfFailure();
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
Nca nca = new Nca(fileSystem.KeySet, ncaFile.AsStorage());
|
|
|
|
|
|
|
|
int ncaProgramIndex = (int)(nca.Header.TitleId & 0xF);
|
|
|
|
|
|
|
|
if (ncaProgramIndex != programIndex)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
if (nca.Header.ContentType == NcaContentType.Program)
|
|
|
|
{
|
|
|
|
int dataIndex = Nca.GetSectionIndexFromType(NcaSectionType.Data, NcaContentType.Program);
|
|
|
|
|
|
|
|
if (nca.Header.GetFsHeader(dataIndex).IsPatchSection())
|
|
|
|
{
|
|
|
|
patchNca = nca;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mainNca = nca;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (nca.Header.ContentType == NcaContentType.Control)
|
|
|
|
{
|
|
|
|
controlNca = nca;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (mainNca, patchNca, controlNca);
|
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
public static (Nca patch, Nca control) GetGameUpdateDataFromPartition(VirtualFileSystem fileSystem, PartitionFileSystem pfs, string titleId, int programIndex)
|
|
|
|
{
|
|
|
|
Nca patchNca = null;
|
|
|
|
Nca controlNca = null;
|
|
|
|
|
|
|
|
fileSystem.ImportTickets(pfs);
|
|
|
|
|
|
|
|
foreach (DirectoryEntryEx fileEntry in pfs.EnumerateEntries("/", "*.nca"))
|
|
|
|
{
|
|
|
|
pfs.OpenFile(out IFile ncaFile, fileEntry.FullPath.ToU8Span(), OpenMode.Read).ThrowIfFailure();
|
|
|
|
|
|
|
|
Nca nca = new Nca(fileSystem.KeySet, ncaFile.AsStorage());
|
|
|
|
|
|
|
|
int ncaProgramIndex = (int)(nca.Header.TitleId & 0xF);
|
|
|
|
|
|
|
|
if (ncaProgramIndex != programIndex)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($"{nca.Header.TitleId.ToString("x16")[..^3]}000" != titleId)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nca.Header.ContentType == NcaContentType.Program)
|
|
|
|
{
|
|
|
|
patchNca = nca;
|
|
|
|
}
|
|
|
|
else if (nca.Header.ContentType == NcaContentType.Control)
|
|
|
|
{
|
|
|
|
controlNca = nca;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (patchNca, controlNca);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static (Nca patch, Nca control) GetGameUpdateData(VirtualFileSystem fileSystem, string titleId, int programIndex, out string updatePath)
|
|
|
|
{
|
|
|
|
updatePath = null;
|
|
|
|
|
|
|
|
if (ulong.TryParse(titleId, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out ulong titleIdBase))
|
|
|
|
{
|
|
|
|
// Clear the program index part.
|
|
|
|
titleIdBase &= 0xFFFFFFFFFFFFFFF0;
|
|
|
|
|
|
|
|
// Load update informations if existing.
|
|
|
|
string titleUpdateMetadataPath = Path.Combine(AppDataManager.GamesDirPath, titleIdBase.ToString("x16"), "updates.json");
|
|
|
|
|
|
|
|
if (File.Exists(titleUpdateMetadataPath))
|
|
|
|
{
|
|
|
|
updatePath = JsonHelper.DeserializeFromFile<TitleUpdateMetadata>(titleUpdateMetadataPath).Selected;
|
|
|
|
|
|
|
|
if (File.Exists(updatePath))
|
|
|
|
{
|
|
|
|
FileStream file = new FileStream(updatePath, FileMode.Open, FileAccess.Read);
|
|
|
|
PartitionFileSystem nsp = new PartitionFileSystem(file.AsStorage());
|
|
|
|
|
|
|
|
return GetGameUpdateDataFromPartition(fileSystem, nsp, titleIdBase.ToString("x16"), programIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (null, null);
|
|
|
|
}
|
|
|
|
|
2020-05-15 08:16:46 +02:00
|
|
|
public void LoadXci(string xciFile)
|
|
|
|
{
|
|
|
|
FileStream file = new FileStream(xciFile, FileMode.Open, FileAccess.Read);
|
2020-09-21 05:45:30 +02:00
|
|
|
Xci xci = new Xci(_fileSystem.KeySet, file.AsStorage());
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
if (!xci.HasPartition(XciPartitionType.Secure))
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Error?.Print(LogClass.Loader, "Unable to load XCI: Could not find XCI secure partition");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PartitionFileSystem securePartition = xci.OpenPartition(XciPartitionType.Secure);
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
Nca mainNca;
|
|
|
|
Nca patchNca;
|
|
|
|
Nca controlNca;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
(mainNca, patchNca, controlNca) = GetGameData(_fileSystem, securePartition, _device.UserChannelPersistence.Index);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Error?.Print(LogClass.Loader, $"Unable to load XCI: {e.Message}");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mainNca == null)
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Error?.Print(LogClass.Loader, "Unable to load XCI: Could not find Main NCA");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_contentManager.LoadEntries(_device);
|
2020-06-20 19:38:14 +02:00
|
|
|
_contentManager.ClearAocData();
|
|
|
|
_contentManager.AddAocData(securePartition, xciFile, mainNca.Header.TitleId);
|
|
|
|
|
2020-05-15 08:16:46 +02:00
|
|
|
LoadNca(mainNca, patchNca, controlNca);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void LoadNsp(string nspFile)
|
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
FileStream file = new FileStream(nspFile, FileMode.Open, FileAccess.Read);
|
|
|
|
PartitionFileSystem nsp = new PartitionFileSystem(file.AsStorage());
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
Nca mainNca;
|
|
|
|
Nca patchNca;
|
|
|
|
Nca controlNca;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
(mainNca, patchNca, controlNca) = GetGameData(_fileSystem, nsp, _device.UserChannelPersistence.Index);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Error?.Print(LogClass.Loader, $"Unable to load NSP: {e.Message}");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mainNca == null)
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Error?.Print(LogClass.Loader, "Unable to load NSP: Could not find Main NCA");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mainNca != null)
|
|
|
|
{
|
2020-06-20 19:38:14 +02:00
|
|
|
_contentManager.ClearAocData();
|
|
|
|
_contentManager.AddAocData(nsp, nspFile, mainNca.Header.TitleId);
|
|
|
|
|
2020-05-15 08:16:46 +02:00
|
|
|
LoadNca(mainNca, patchNca, controlNca);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is not a normal NSP, it's actually a ExeFS as a NSP
|
2020-07-09 06:31:15 +02:00
|
|
|
LoadExeFs(nsp);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void LoadNca(string ncaFile)
|
|
|
|
{
|
|
|
|
FileStream file = new FileStream(ncaFile, FileMode.Open, FileAccess.Read);
|
2020-09-21 05:45:30 +02:00
|
|
|
Nca nca = new Nca(_fileSystem.KeySet, file.AsStorage(false));
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
LoadNca(nca, null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void LoadNca(Nca mainNca, Nca patchNca, Nca controlNca)
|
|
|
|
{
|
|
|
|
if (mainNca.Header.ContentType != NcaContentType.Program)
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Error?.Print(LogClass.Loader, "Selected NCA is not a \"Program\" NCA");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
IStorage dataStorage = null;
|
|
|
|
IFileSystem codeFs = null;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
(Nca updatePatchNca, Nca updateControlNca) = GetGameUpdateData(_fileSystem, mainNca.Header.TitleId.ToString("x16"), _device.UserChannelPersistence.Index, out _);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
if (updatePatchNca != null)
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
patchNca = updatePatchNca;
|
|
|
|
}
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
if (updateControlNca != null)
|
|
|
|
{
|
|
|
|
controlNca = updateControlNca;
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
// Load program 0 control NCA as we are going to need it for display version.
|
|
|
|
(_, Nca updateProgram0ControlNca) = GetGameUpdateData(_fileSystem, mainNca.Header.TitleId.ToString("x16"), 0, out _);
|
|
|
|
|
2020-06-23 02:32:07 +02:00
|
|
|
// Load Aoc
|
2020-08-30 18:51:53 +02:00
|
|
|
string titleAocMetadataPath = Path.Combine(AppDataManager.GamesDirPath, mainNca.Header.TitleId.ToString("x16"), "dlc.json");
|
2020-06-23 02:32:07 +02:00
|
|
|
|
|
|
|
if (File.Exists(titleAocMetadataPath))
|
|
|
|
{
|
|
|
|
List<DlcContainer> dlcContainerList = JsonHelper.DeserializeFromFile<List<DlcContainer>>(titleAocMetadataPath);
|
|
|
|
|
|
|
|
foreach (DlcContainer dlcContainer in dlcContainerList)
|
|
|
|
{
|
|
|
|
foreach (DlcNca dlcNca in dlcContainer.DlcNcaList)
|
|
|
|
{
|
|
|
|
_contentManager.AddAocItem(dlcNca.TitleId, dlcContainer.Path, dlcNca.Path, dlcNca.Enabled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 08:16:46 +02:00
|
|
|
if (patchNca == null)
|
|
|
|
{
|
|
|
|
if (mainNca.CanOpenSection(NcaSectionType.Data))
|
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
dataStorage = mainNca.OpenStorage(NcaSectionType.Data, _device.System.FsIntegrityCheckLevel);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mainNca.CanOpenSection(NcaSectionType.Code))
|
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
codeFs = mainNca.OpenFileSystem(NcaSectionType.Code, _device.System.FsIntegrityCheckLevel);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (patchNca.CanOpenSection(NcaSectionType.Data))
|
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
dataStorage = mainNca.OpenStorageWithPatch(patchNca, NcaSectionType.Data, _device.System.FsIntegrityCheckLevel);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (patchNca.CanOpenSection(NcaSectionType.Code))
|
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
codeFs = mainNca.OpenFileSystemWithPatch(patchNca, NcaSectionType.Code, _device.System.FsIntegrityCheckLevel);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (codeFs == null)
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Error?.Print(LogClass.Loader, "No ExeFS found in NCA");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
Npdm metaData = ReadNpdm(codeFs);
|
|
|
|
|
2020-08-30 18:51:53 +02:00
|
|
|
_fileSystem.ModLoader.CollectMods(TitleId, _fileSystem.ModLoader.GetModsBasePath());
|
2020-07-09 06:31:15 +02:00
|
|
|
|
|
|
|
if (controlNca != null)
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
ReadControlData(_device, controlNca, ref _controlData, ref _titleName, ref _displayVersion);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
ControlData.ByteSpan.Clear();
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
// NOTE: Nintendo doesn't guarantee that the display version will be updated on sub programs when updating a multi program application.
|
|
|
|
// BODY: As such, to avoid PTC cache confusion, we only trust the the program 0 display version when launching a sub program.
|
|
|
|
if (updateProgram0ControlNca != null && _device.UserChannelPersistence.Index != 0)
|
|
|
|
{
|
|
|
|
string dummyTitleName = "";
|
|
|
|
BlitStruct<ApplicationControlProperty> dummyControl = new BlitStruct<ApplicationControlProperty>(1);
|
|
|
|
|
|
|
|
ReadControlData(_device, updateProgram0ControlNca, ref dummyControl, ref dummyTitleName, ref _displayVersion);
|
|
|
|
}
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
if (dataStorage == null)
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Warning?.Print(LogClass.Loader, "No RomFS found in NCA");
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
IStorage newStorage = _fileSystem.ModLoader.ApplyRomFsMods(TitleId, dataStorage);
|
2020-09-21 05:45:30 +02:00
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
_fileSystem.SetRomFs(newStorage.AsStream(FileAccess.Read));
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (TitleId != 0)
|
|
|
|
{
|
2020-09-01 22:08:59 +02:00
|
|
|
EnsureSaveData(new ApplicationId(TitleId));
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
LoadExeFs(codeFs, metaData);
|
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Info?.Print(LogClass.Loader, $"Application Loaded: {TitleName} v{DisplayVersion} [{TitleIdText}] [{(TitleIs64Bit ? "64-bit" : "32-bit")}]");
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
// Sets TitleId, so be sure to call before using it
|
|
|
|
private Npdm ReadNpdm(IFileSystem fs)
|
|
|
|
{
|
|
|
|
Result result = fs.OpenFile(out IFile npdmFile, "/main.npdm".ToU8Span(), OpenMode.Read);
|
2020-09-21 05:45:30 +02:00
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
Npdm metaData;
|
|
|
|
|
|
|
|
if (ResultFs.PathNotFound.Includes(result))
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Warning?.Print(LogClass.Loader, "NPDM file not found, using default values!");
|
2020-07-09 06:31:15 +02:00
|
|
|
|
|
|
|
metaData = GetDefaultNpdm();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
metaData = new Npdm(npdmFile.AsStream());
|
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
TitleId = metaData.Aci0.TitleId;
|
2020-07-09 06:31:15 +02:00
|
|
|
TitleIs64Bit = metaData.Is64Bit;
|
|
|
|
|
|
|
|
return metaData;
|
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
private static void ReadControlData(Switch device, Nca controlNca, ref BlitStruct<ApplicationControlProperty> controlData, ref string titleName, ref string displayVersion)
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
IFileSystem controlFs = controlNca.OpenFileSystem(NcaSectionType.Data, device.System.FsIntegrityCheckLevel);
|
|
|
|
Result result = controlFs.OpenFile(out IFile controlFile, "/control.nacp".ToU8Span(), OpenMode.Read);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
if (result.IsSuccess())
|
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
result = controlFile.Read(out long bytesRead, 0, controlData.ByteSpan, ReadOption.None);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
if (result.IsSuccess() && bytesRead == controlData.ByteSpan.Length)
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
titleName = controlData.Value.Titles[(int)device.System.State.DesiredTitleLanguage].Name.ToString();
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
if (string.IsNullOrWhiteSpace(titleName))
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
titleName = controlData.Value.Titles.ToArray().FirstOrDefault(x => x.Name[0] != 0).Name.ToString();
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
displayVersion = controlData.Value.DisplayVersion.ToString();
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
controlData.ByteSpan.Clear();
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
private void LoadExeFs(IFileSystem codeFs, Npdm metaData = null)
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
if (_fileSystem.ModLoader.ReplaceExefsPartition(TitleId, ref codeFs))
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
metaData = null; //TODO: Check if we should retain old npdm
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
metaData ??= ReadNpdm(codeFs);
|
|
|
|
|
|
|
|
List<NsoExecutable> nsos = new List<NsoExecutable>();
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
foreach (string exePrefix in ExeFsPrefixes) // Load binaries with standard prefixes
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
foreach (DirectoryEntryEx file in codeFs.EnumerateEntries("/", exePrefix))
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
|
|
|
if (Path.GetExtension(file.Name) != string.Empty)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Info?.Print(LogClass.Loader, $"Loading {file.Name}...");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
codeFs.OpenFile(out IFile nsoFile, file.FullPath.ToU8Span(), OpenMode.Read).ThrowIfFailure();
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
NsoExecutable nso = new NsoExecutable(nsoFile.AsStorage(), file.Name);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
nsos.Add(nso);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
// ExeFs file replacements
|
|
|
|
bool modified = _fileSystem.ModLoader.ApplyExefsMods(TitleId, nsos);
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
NsoExecutable[] programs = nsos.ToArray();
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
modified |= _fileSystem.ModLoader.ApplyNsoPatches(TitleId, programs);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
_contentManager.LoadEntries(_device);
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
if (_device.System.EnablePtc && modified)
|
2020-07-09 06:31:15 +02:00
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Warning?.Print(LogClass.Ptc, $"Detected exefs modifications. PPTC disabled.");
|
2020-07-09 06:31:15 +02:00
|
|
|
}
|
|
|
|
|
2020-11-13 00:15:34 +01:00
|
|
|
Graphics.Gpu.GraphicsConfig.TitleId = TitleIdText;
|
|
|
|
_device.Gpu.HostInitalized.Set();
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
Ptc.Initialize(TitleIdText, DisplayVersion, _device.System.EnablePtc && !modified);
|
2020-06-16 20:28:02 +02:00
|
|
|
|
2020-07-09 06:31:15 +02:00
|
|
|
ProgramLoader.LoadNsos(_device.System.KernelContext, metaData, executables: programs);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void LoadProgram(string filePath)
|
|
|
|
{
|
|
|
|
Npdm metaData = GetDefaultNpdm();
|
2020-09-21 05:45:30 +02:00
|
|
|
bool isNro = Path.GetExtension(filePath).ToLower() == ".nro";
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-07-04 01:58:01 +02:00
|
|
|
IExecutable executable;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
if (isNro)
|
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
FileStream input = new FileStream(filePath, FileMode.Open);
|
|
|
|
NroExecutable obj = new NroExecutable(input.AsStorage());
|
|
|
|
|
2020-07-04 01:58:01 +02:00
|
|
|
executable = obj;
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
// homebrew NRO can actually have some data after the actual NRO
|
|
|
|
if (input.Length > obj.FileSize)
|
|
|
|
{
|
|
|
|
input.Position = obj.FileSize;
|
|
|
|
|
|
|
|
BinaryReader reader = new BinaryReader(input);
|
|
|
|
|
|
|
|
uint asetMagic = reader.ReadUInt32();
|
|
|
|
if (asetMagic == 0x54455341)
|
|
|
|
{
|
|
|
|
uint asetVersion = reader.ReadUInt32();
|
|
|
|
if (asetVersion == 0)
|
|
|
|
{
|
|
|
|
ulong iconOffset = reader.ReadUInt64();
|
2020-09-21 05:45:30 +02:00
|
|
|
ulong iconSize = reader.ReadUInt64();
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
ulong nacpOffset = reader.ReadUInt64();
|
2020-09-21 05:45:30 +02:00
|
|
|
ulong nacpSize = reader.ReadUInt64();
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
ulong romfsOffset = reader.ReadUInt64();
|
2020-09-21 05:45:30 +02:00
|
|
|
ulong romfsSize = reader.ReadUInt64();
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
if (romfsSize != 0)
|
|
|
|
{
|
|
|
|
_fileSystem.SetRomFs(new HomebrewRomFsStream(input, obj.FileSize + (long)romfsOffset));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nacpSize != 0)
|
|
|
|
{
|
|
|
|
input.Seek(obj.FileSize + (long)nacpOffset, SeekOrigin.Begin);
|
|
|
|
|
|
|
|
reader.Read(ControlData.ByteSpan);
|
|
|
|
|
|
|
|
ref ApplicationControlProperty nacp = ref ControlData.Value;
|
|
|
|
|
|
|
|
metaData.TitleName = nacp.Titles[(int)_device.System.State.DesiredTitleLanguage].Name.ToString();
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(metaData.TitleName))
|
|
|
|
{
|
|
|
|
metaData.TitleName = nacp.Titles.ToArray().FirstOrDefault(x => x.Name[0] != 0).Name.ToString();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nacp.PresenceGroupId != 0)
|
|
|
|
{
|
|
|
|
metaData.Aci0.TitleId = nacp.PresenceGroupId;
|
|
|
|
}
|
|
|
|
else if (nacp.SaveDataOwnerId.Value != 0)
|
|
|
|
{
|
|
|
|
metaData.Aci0.TitleId = nacp.SaveDataOwnerId.Value;
|
|
|
|
}
|
|
|
|
else if (nacp.AddOnContentBaseId != 0)
|
|
|
|
{
|
|
|
|
metaData.Aci0.TitleId = nacp.AddOnContentBaseId - 0x1000;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
metaData.Aci0.TitleId = 0000000000000000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Warning?.Print(LogClass.Loader, $"Unsupported ASET header version found \"{asetVersion}\"");
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-07-09 06:31:15 +02:00
|
|
|
executable = new NsoExecutable(new LocalStorage(filePath, FileAccess.Read), Path.GetFileNameWithoutExtension(filePath));
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_contentManager.LoadEntries(_device);
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
_titleName = metaData.TitleName;
|
|
|
|
TitleId = metaData.Aci0.TitleId;
|
2020-05-15 08:16:46 +02:00
|
|
|
TitleIs64Bit = metaData.Is64Bit;
|
|
|
|
|
2020-11-13 00:15:34 +01:00
|
|
|
// Explicitly null titleid to disable the shader cache
|
|
|
|
Graphics.Gpu.GraphicsConfig.TitleId = null;
|
|
|
|
_device.Gpu.HostInitalized.Set();
|
|
|
|
|
2020-07-04 01:58:01 +02:00
|
|
|
ProgramLoader.LoadNsos(_device.System.KernelContext, metaData, executables: executable);
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private Npdm GetDefaultNpdm()
|
|
|
|
{
|
|
|
|
Assembly asm = Assembly.GetCallingAssembly();
|
|
|
|
|
|
|
|
using (Stream npdmStream = asm.GetManifestResourceStream("Ryujinx.HLE.Homebrew.npdm"))
|
|
|
|
{
|
|
|
|
return new Npdm(npdmStream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-01 22:08:59 +02:00
|
|
|
private Result EnsureSaveData(ApplicationId applicationId)
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Info?.Print(LogClass.Application, "Ensuring required savedata exists.");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
|
|
|
Uid user = _device.System.State.Account.LastOpenedUser.UserId.ToLibHacUid();
|
|
|
|
|
|
|
|
ref ApplicationControlProperty control = ref ControlData.Value;
|
|
|
|
|
2020-09-01 22:08:59 +02:00
|
|
|
if (LibHac.Utilities.IsEmpty(ControlData.ByteSpan))
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
|
|
|
// If the current application doesn't have a loaded control property, create a dummy one
|
|
|
|
// and set the savedata sizes so a user savedata will be created.
|
|
|
|
control = ref new BlitStruct<ApplicationControlProperty>(1).Value;
|
|
|
|
|
|
|
|
// The set sizes don't actually matter as long as they're non-zero because we use directory savedata.
|
|
|
|
control.UserAccountSaveDataSize = 0x4000;
|
|
|
|
control.UserAccountSaveDataJournalSize = 0x4000;
|
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Warning?.Print(LogClass.Application,
|
2020-05-15 08:16:46 +02:00
|
|
|
"No control file was found for this game. Using a dummy one instead. This may cause inaccuracies in some games.");
|
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
FileSystemClient fileSystem = _fileSystem.FsClient;
|
|
|
|
Result resultCode = fileSystem.EnsureApplicationCacheStorage(out _, applicationId, ref control);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
if (resultCode.IsFailure())
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
Logger.Error?.Print(LogClass.Application, $"Error calling EnsureApplicationCacheStorage. Result code {resultCode.ToStringWithName()}");
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
return resultCode;
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
resultCode = EnsureApplicationSaveData(fileSystem, out _, applicationId, ref control, ref user);
|
2020-05-15 08:16:46 +02:00
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
if (resultCode.IsFailure())
|
2020-05-15 08:16:46 +02:00
|
|
|
{
|
2020-09-21 05:45:30 +02:00
|
|
|
Logger.Error?.Print(LogClass.Application, $"Error calling EnsureApplicationSaveData. Result code {resultCode.ToStringWithName()}");
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 05:45:30 +02:00
|
|
|
return resultCode;
|
2020-05-15 08:16:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|