2018-09-08 20:33:27 +02:00
|
|
|
using LibHac;
|
2019-06-01 02:31:10 +02:00
|
|
|
using LibHac.Fs;
|
2019-10-17 08:17:44 +02:00
|
|
|
using LibHac.FsService;
|
|
|
|
using LibHac.FsSystem;
|
|
|
|
using LibHac.FsSystem.NcaUtils;
|
|
|
|
using LibHac.Spl;
|
2018-10-17 19:15:50 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-11-18 20:37:41 +01:00
|
|
|
using Ryujinx.HLE.FileSystem.Content;
|
2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Font;
|
2018-12-18 06:33:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Memory;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2019-10-08 05:48:49 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Pcv.Bpc;
|
2019-09-19 02:45:11 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Settings;
|
2019-01-18 23:26:39 +01:00
|
|
|
using Ryujinx.HLE.HOS.Services.Sm;
|
2019-07-14 22:50:11 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Time.Clock;
|
2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2018-06-11 02:46:42 +02:00
|
|
|
using Ryujinx.HLE.Loaders.Executables;
|
2018-07-20 23:53:06 +02:00
|
|
|
using Ryujinx.HLE.Loaders.Npdm;
|
2019-10-08 05:48:49 +02:00
|
|
|
using Ryujinx.HLE.Utilities;
|
2018-02-20 21:09:23 +01:00
|
|
|
using System;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System.Collections.Concurrent;
|
2018-09-19 01:36:43 +02:00
|
|
|
using System.Collections.Generic;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System.IO;
|
2018-09-08 20:33:27 +02:00
|
|
|
using System.Linq;
|
2018-11-28 23:18:09 +01:00
|
|
|
using System.Reflection;
|
|
|
|
using System.Threading;
|
|
|
|
|
2019-10-08 05:48:49 +02:00
|
|
|
using TimeServiceManager = Ryujinx.HLE.HOS.Services.Time.TimeManager;
|
|
|
|
using NxStaticObject = Ryujinx.HLE.Loaders.Executables.NxStaticObject;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
public class Horizon : IDisposable
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-11-28 23:18:09 +01:00
|
|
|
internal const int InitialKipId = 1;
|
|
|
|
internal const int InitialProcessId = 0x51;
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
internal const int HidSize = 0x40000;
|
2018-08-15 20:59:51 +02:00
|
|
|
internal const int FontSize = 0x1100000;
|
2019-04-20 04:23:13 +02:00
|
|
|
internal const int IirsSize = 0x8000;
|
2019-06-17 01:56:46 +02:00
|
|
|
internal const int TimeSize = 0x1000;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
private const int MemoryBlockAllocatorSize = 0x2710;
|
|
|
|
|
|
|
|
private const ulong UserSlabHeapBase = DramMemoryMap.SlabHeapBase;
|
|
|
|
private const ulong UserSlabHeapItemSize = KMemoryManager.PageSize;
|
|
|
|
private const ulong UserSlabHeapSize = 0x3de000;
|
2018-04-24 22:14:26 +02:00
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
internal long PrivilegedProcessLowestId { get; set; } = 1;
|
|
|
|
internal long PrivilegedProcessHighestId { get; set; } = 8;
|
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal Switch Device { get; private set; }
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
public SystemStateMgr State { get; private set; }
|
2018-04-24 22:14:26 +02:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal bool KernelInitialized { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KResourceLimit ResourceLimit { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KMemoryRegionManager[] MemoryRegions { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KMemoryBlockAllocator LargeMemoryBlockAllocator { get; private set; }
|
|
|
|
internal KMemoryBlockAllocator SmallMemoryBlockAllocator { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KSlabHeap UserSlabHeapPages { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KCriticalSection CriticalSection { get; private set; }
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KScheduler Scheduler { get; private set; }
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KTimeManager TimeManager { get; private set; }
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KSynchronization Synchronization { get; private set; }
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KContextIdManager ContextIdManager { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private long _kipId;
|
|
|
|
private long _processId;
|
|
|
|
private long _threadUid;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
internal CountdownEvent ThreadCounter;
|
|
|
|
|
|
|
|
internal SortedDictionary<long, KProcess> Processes;
|
|
|
|
|
|
|
|
internal ConcurrentDictionary<string, KAutoObject> AutoObjectNames;
|
|
|
|
|
|
|
|
internal bool EnableVersionChecks { get; private set; }
|
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal AppletStateMgr AppletState { get; private set; }
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KSharedMemory HidSharedMem { get; private set; }
|
|
|
|
internal KSharedMemory FontSharedMem { get; private set; }
|
2019-04-20 04:23:13 +02:00
|
|
|
internal KSharedMemory IirsSharedMem { get; private set; }
|
2018-12-05 01:52:39 +01:00
|
|
|
internal SharedFontManager Font { get; private set; }
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal ContentManager ContentManager { get; private set; }
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal KEvent VsyncEvent { get; private set; }
|
2018-02-17 22:36:08 +01:00
|
|
|
|
2019-09-02 18:03:57 +02:00
|
|
|
public Keyset KeySet { get; private set; }
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private bool _hasStarted;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-09-19 14:09:49 +02:00
|
|
|
public Nacp ControlData { get; set; }
|
|
|
|
|
2019-05-30 22:27:43 +02:00
|
|
|
public string TitleName { get; private set; }
|
|
|
|
|
2019-11-29 05:32:51 +01:00
|
|
|
public string TitleId { get; private set; }
|
2019-05-30 22:27:43 +02:00
|
|
|
|
2018-10-31 03:34:27 +01:00
|
|
|
public IntegrityCheckLevel FsIntegrityCheckLevel { get; set; }
|
2018-10-06 17:11:47 +02:00
|
|
|
|
2019-06-16 03:31:18 +02:00
|
|
|
public int GlobalAccessLogMode { get; set; }
|
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
internal long HidBaseAddress { get; private set; }
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
internal FileSystemServer FsServer { get; private set; }
|
|
|
|
internal EmulatedGameCard GameCard { get; private set; }
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public Horizon(Switch device)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-02-14 01:44:39 +01:00
|
|
|
ControlData = new Nacp();
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Device = device;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
State = new SystemStateMgr();
|
2018-04-24 22:14:26 +02:00
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
ResourceLimit = new KResourceLimit(this);
|
|
|
|
|
|
|
|
KernelInit.InitializeResourceLimit(ResourceLimit);
|
|
|
|
|
|
|
|
MemoryRegions = KernelInit.GetMemoryRegions();
|
|
|
|
|
|
|
|
LargeMemoryBlockAllocator = new KMemoryBlockAllocator(MemoryBlockAllocatorSize * 2);
|
|
|
|
SmallMemoryBlockAllocator = new KMemoryBlockAllocator(MemoryBlockAllocatorSize);
|
|
|
|
|
|
|
|
UserSlabHeapPages = new KSlabHeap(
|
|
|
|
UserSlabHeapBase,
|
|
|
|
UserSlabHeapItemSize,
|
|
|
|
UserSlabHeapSize);
|
|
|
|
|
|
|
|
CriticalSection = new KCriticalSection(this);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
|
|
|
Scheduler = new KScheduler(this);
|
|
|
|
|
|
|
|
TimeManager = new KTimeManager();
|
|
|
|
|
|
|
|
Synchronization = new KSynchronization(this);
|
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
ContextIdManager = new KContextIdManager();
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_kipId = InitialKipId;
|
|
|
|
_processId = InitialProcessId;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-09-23 20:11:46 +02:00
|
|
|
Scheduler.StartAutoPreemptionThread();
|
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
KernelInitialized = true;
|
|
|
|
|
|
|
|
ThreadCounter = new CountdownEvent(1);
|
|
|
|
|
|
|
|
Processes = new SortedDictionary<long, KProcess>();
|
|
|
|
|
|
|
|
AutoObjectNames = new ConcurrentDictionary<string, KAutoObject>();
|
|
|
|
|
2019-07-02 04:39:22 +02:00
|
|
|
// Note: This is not really correct, but with HLE of services, the only memory
|
|
|
|
// region used that is used is Application, so we can use the other ones for anything.
|
2018-12-06 12:16:24 +01:00
|
|
|
KMemoryRegionManager region = MemoryRegions[(int)MemoryRegion.NvServices];
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
ulong hidPa = region.Address;
|
|
|
|
ulong fontPa = region.Address + HidSize;
|
2019-04-20 04:23:13 +02:00
|
|
|
ulong iirsPa = region.Address + HidSize + FontSize;
|
2019-06-17 01:56:46 +02:00
|
|
|
ulong timePa = region.Address + HidSize + FontSize + IirsSize;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
HidBaseAddress = (long)(hidPa - DramMemoryMap.DramBase);
|
2018-08-15 20:59:51 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
KPageList hidPageList = new KPageList();
|
|
|
|
KPageList fontPageList = new KPageList();
|
2019-04-20 04:23:13 +02:00
|
|
|
KPageList iirsPageList = new KPageList();
|
2019-06-17 01:56:46 +02:00
|
|
|
KPageList timePageList = new KPageList();
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 20:53:23 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
hidPageList .AddRange(hidPa, HidSize / KMemoryManager.PageSize);
|
|
|
|
fontPageList.AddRange(fontPa, FontSize / KMemoryManager.PageSize);
|
2019-04-20 04:23:13 +02:00
|
|
|
iirsPageList.AddRange(iirsPa, IirsSize / KMemoryManager.PageSize);
|
2019-06-17 01:56:46 +02:00
|
|
|
timePageList.AddRange(timePa, TimeSize / KMemoryManager.PageSize);
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
HidSharedMem = new KSharedMemory(this, hidPageList, 0, 0, MemoryPermission.Read);
|
|
|
|
FontSharedMem = new KSharedMemory(this, fontPageList, 0, 0, MemoryPermission.Read);
|
2019-04-20 04:23:13 +02:00
|
|
|
IirsSharedMem = new KSharedMemory(this, iirsPageList, 0, 0, MemoryPermission.Read);
|
2019-10-08 05:48:49 +02:00
|
|
|
|
|
|
|
KSharedMemory timeSharedMemory = new KSharedMemory(this, timePageList, 0, 0, MemoryPermission.Read);
|
|
|
|
|
|
|
|
TimeServiceManager.Instance.Initialize(device, this, timeSharedMemory, (long)(timePa - DramMemoryMap.DramBase), TimeSize);
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
AppletState = new AppletStateMgr(this);
|
|
|
|
|
|
|
|
AppletState.SetFocus(true);
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Font = new SharedFontManager(device, (long)(fontPa - DramMemoryMap.DramBase));
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
IUserInterface.InitializePort(this);
|
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
VsyncEvent = new KEvent(this);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
|
|
|
LoadKeySet();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
ContentManager = new ContentManager(device);
|
2019-07-14 22:50:11 +02:00
|
|
|
|
2019-10-08 05:48:49 +02:00
|
|
|
// TODO: use set:sys (and get external clock source id from settings)
|
2019-07-15 19:52:35 +02:00
|
|
|
// TODO: use "time!standard_steady_clock_rtc_update_interval_minutes" and implement a worker thread to be accurate.
|
2019-10-08 05:48:49 +02:00
|
|
|
UInt128 clockSourceId = new UInt128(Guid.NewGuid().ToByteArray());
|
|
|
|
IRtcManager.GetExternalRtcValue(out ulong rtcValue);
|
|
|
|
|
|
|
|
// We assume the rtc is system time.
|
|
|
|
TimeSpanType systemTime = TimeSpanType.FromSeconds((long)rtcValue);
|
|
|
|
|
|
|
|
// First init the standard steady clock
|
|
|
|
TimeServiceManager.Instance.SetupStandardSteadyClock(null, clockSourceId, systemTime, TimeSpanType.Zero, TimeSpanType.Zero, false);
|
|
|
|
TimeServiceManager.Instance.SetupStandardLocalSystemClock(null, new SystemClockContext(), systemTime.ToSeconds());
|
2019-07-15 19:52:35 +02:00
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
if (NxSettings.Settings.TryGetValue("time!standard_network_clock_sufficient_accuracy_minutes", out object standardNetworkClockSufficientAccuracyMinutes))
|
2019-07-15 19:52:35 +02:00
|
|
|
{
|
|
|
|
TimeSpanType standardNetworkClockSufficientAccuracy = new TimeSpanType((int)standardNetworkClockSufficientAccuracyMinutes * 60000000000);
|
|
|
|
|
2019-10-08 05:48:49 +02:00
|
|
|
TimeServiceManager.Instance.SetupStandardNetworkSystemClock(new SystemClockContext(), standardNetworkClockSufficientAccuracy);
|
2019-07-15 19:52:35 +02:00
|
|
|
}
|
|
|
|
|
2019-10-08 05:48:49 +02:00
|
|
|
TimeServiceManager.Instance.SetupStandardUserSystemClock(null, false, SteadyClockTimePoint.GetRandom());
|
|
|
|
|
|
|
|
// FIXME: TimeZone shoud be init here but it's actually done in ContentManager
|
|
|
|
|
|
|
|
TimeServiceManager.Instance.SetupEphemeralNetworkSystemClock();
|
2019-10-17 08:17:44 +02:00
|
|
|
|
|
|
|
LocalFileSystem serverBaseFs = new LocalFileSystem(device.FileSystem.GetBasePath());
|
|
|
|
|
|
|
|
DefaultFsServerObjects fsServerObjects = DefaultFsServerObjects.GetDefaultEmulatedCreators(serverBaseFs, KeySet);
|
|
|
|
|
|
|
|
GameCard = fsServerObjects.GameCard;
|
|
|
|
|
|
|
|
FileSystemServerConfig fsServerConfig = new FileSystemServerConfig
|
|
|
|
{
|
|
|
|
FsCreators = fsServerObjects.FsCreators,
|
|
|
|
DeviceOperator = fsServerObjects.DeviceOperator,
|
|
|
|
ExternalKeySet = KeySet.ExternalKeySet
|
|
|
|
};
|
|
|
|
|
|
|
|
FsServer = new FileSystemServer(fsServerConfig);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void LoadCart(string exeFsDir, string romFsFile = null)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (romFsFile != null)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Device.FileSystem.LoadRomFs(romFsFile);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
LocalFileSystem codeFs = new LocalFileSystem(exeFsDir);
|
2018-08-15 20:59:51 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
LoadExeFs(codeFs, out _);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void LoadXci(string xciFile)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
FileStream file = new FileStream(xciFile, FileMode.Open, FileAccess.Read);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-01-05 01:41:49 +01:00
|
|
|
Xci xci = new Xci(KeySet, file.AsStorage());
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
(Nca mainNca, Nca patchNca, Nca controlNca) = GetXciGameData(xci);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (mainNca == null)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-10-17 19:15:50 +02:00
|
|
|
Logger.PrintError(LogClass.Loader, "Unable to load XCI");
|
2018-09-08 20:33:27 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-18 20:37:41 +01:00
|
|
|
ContentManager.LoadEntries();
|
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
LoadNca(mainNca, patchNca, controlNca);
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
2019-01-18 23:26:39 +01:00
|
|
|
|
|
|
|
public void LoadKip(string kipFile)
|
|
|
|
{
|
|
|
|
using (FileStream fs = new FileStream(kipFile, FileMode.Open))
|
|
|
|
{
|
|
|
|
ProgramLoader.LoadKernelInitalProcess(this, new KernelInitialProcess(fs));
|
|
|
|
}
|
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
private (Nca Main, Nca patch, Nca Control) GetXciGameData(Xci xci)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
if (!xci.HasPartition(XciPartitionType.Secure))
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
|
|
|
throw new InvalidDataException("Could not find XCI secure partition");
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Nca mainNca = null;
|
|
|
|
Nca patchNca = null;
|
|
|
|
Nca controlNca = null;
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
XciPartition securePartition = xci.OpenPartition(XciPartitionType.Secure);
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
foreach (DirectoryEntryEx ticketEntry in securePartition.EnumerateEntries("/", "*.tik"))
|
2018-10-31 03:34:27 +01:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = securePartition.OpenFile(out IFile ticketFile, ticketEntry.FullPath, OpenMode.Read);
|
2018-10-31 03:34:27 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
if (result.IsSuccess())
|
2018-10-31 03:34:27 +01:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
Ticket ticket = new Ticket(ticketFile.AsStream());
|
|
|
|
|
|
|
|
KeySet.ExternalKeySet.Add(new RightsId(ticket.RightsId), new AccessKey(ticket.GetTitleKey(KeySet)));
|
2018-10-31 03:34:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
foreach (DirectoryEntryEx fileEntry in securePartition.EnumerateEntries("/", "*.nca"))
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = securePartition.OpenFile(out IFile ncaFile, fileEntry.FullPath, OpenMode.Read);
|
|
|
|
if (result.IsFailure())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
Nca nca = new Nca(KeySet, ncaFile.AsStorage());
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
if (nca.Header.ContentType == NcaContentType.Program)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
int dataIndex = Nca.GetSectionIndexFromType(NcaSectionType.Data, NcaContentType.Program);
|
2019-06-01 02:31:10 +02:00
|
|
|
|
|
|
|
if (nca.Header.GetFsHeader(dataIndex).IsPatchSection())
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
patchNca = nca;
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
2019-06-01 02:31:10 +02:00
|
|
|
else
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
mainNca = nca;
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
}
|
2019-10-17 08:17:44 +02:00
|
|
|
else if (nca.Header.ContentType == NcaContentType.Control)
|
2018-09-19 14:09:49 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
controlNca = nca;
|
2018-09-19 14:09:49 +02:00
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (mainNca == null)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-10-17 19:15:50 +02:00
|
|
|
Logger.PrintError(LogClass.Loader, "Could not find an Application NCA in the provided XCI file");
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (controlNca != null)
|
2018-09-19 14:09:49 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
ReadControlData(controlNca);
|
2018-09-19 14:09:49 +02:00
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
return (mainNca, patchNca, controlNca);
|
2018-09-19 14:09:49 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void ReadControlData(Nca controlNca)
|
2018-09-19 14:09:49 +02:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
IFileSystem controlFs = controlNca.OpenFileSystem(NcaSectionType.Data, FsIntegrityCheckLevel);
|
2018-09-19 14:09:49 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = controlFs.OpenFile(out IFile controlFile, "/control.nacp", OpenMode.Read);
|
2018-09-19 14:09:49 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
if (result.IsSuccess())
|
|
|
|
{
|
|
|
|
ControlData = new Nacp(controlFile.AsStream());
|
2019-06-01 02:31:10 +02:00
|
|
|
|
2019-11-29 05:32:51 +01:00
|
|
|
TitleName = ControlData.Descriptions[(int)State.DesiredTitleLanguage].Title;
|
2019-10-17 08:17:44 +02:00
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void LoadNca(string ncaFile)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
FileStream file = new FileStream(ncaFile, FileMode.Open, FileAccess.Read);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
Nca nca = new Nca(KeySet, file.AsStorage(false));
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
LoadNca(nca, null, null);
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void LoadNsp(string nspFile)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
FileStream file = new FileStream(nspFile, FileMode.Open, FileAccess.Read);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
PartitionFileSystem nsp = new PartitionFileSystem(file.AsStorage());
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
foreach (DirectoryEntryEx ticketEntry in nsp.EnumerateEntries("/", "*.tik"))
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = nsp.OpenFile(out IFile ticketFile, ticketEntry.FullPath, OpenMode.Read);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
if (result.IsSuccess())
|
2019-01-05 01:41:49 +01:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
Ticket ticket = new Ticket(ticketFile.AsStream());
|
|
|
|
|
|
|
|
KeySet.ExternalKeySet.Add(new RightsId(ticket.RightsId), new AccessKey(ticket.GetTitleKey(KeySet)));
|
2019-01-05 01:41:49 +01:00
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Nca mainNca = null;
|
2019-06-01 02:31:10 +02:00
|
|
|
Nca patchNca = null;
|
2018-12-06 12:16:24 +01:00
|
|
|
Nca controlNca = null;
|
2018-09-19 14:09:49 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
foreach (DirectoryEntryEx fileEntry in nsp.EnumerateEntries("/", "*.nca"))
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
nsp.OpenFile(out IFile ncaFile, fileEntry.FullPath, OpenMode.Read).ThrowIfFailure();
|
2019-06-01 02:31:10 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
Nca nca = new Nca(KeySet, ncaFile.AsStorage());
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
if (nca.Header.ContentType == NcaContentType.Program)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
int dataIndex = Nca.GetSectionIndexFromType(NcaSectionType.Data, NcaContentType.Program);
|
2019-06-01 02:31:10 +02:00
|
|
|
|
|
|
|
if (nca.Header.GetFsHeader(dataIndex).IsPatchSection())
|
|
|
|
{
|
|
|
|
patchNca = nca;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mainNca = nca;
|
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
2019-10-17 08:17:44 +02:00
|
|
|
else if (nca.Header.ContentType == NcaContentType.Control)
|
2018-09-19 14:09:49 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
controlNca = nca;
|
2018-09-19 14:09:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (mainNca != null)
|
2018-09-19 14:09:49 +02:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
LoadNca(mainNca, patchNca, controlNca);
|
2018-09-19 14:09:49 +02:00
|
|
|
|
|
|
|
return;
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2019-01-25 02:51:28 +01:00
|
|
|
// This is not a normal NSP, it's actually a ExeFS as a NSP
|
2019-06-01 02:31:10 +02:00
|
|
|
LoadExeFs(nsp, out _);
|
|
|
|
}
|
2019-01-25 02:51:28 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
public void LoadNca(Nca mainNca, Nca patchNca, Nca controlNca)
|
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
if (mainNca.Header.ContentType != NcaContentType.Program)
|
2019-01-25 02:51:28 +01:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
Logger.PrintError(LogClass.Loader, "Selected NCA is not a \"Program\" NCA");
|
2019-01-25 02:51:28 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
return;
|
2019-01-25 02:51:28 +01:00
|
|
|
}
|
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
IStorage dataStorage = null;
|
|
|
|
IFileSystem codeFs = null;
|
2019-01-25 02:51:28 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
if (patchNca == null)
|
2019-01-25 02:51:28 +01:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
if (mainNca.CanOpenSection(NcaSectionType.Data))
|
2019-01-25 02:51:28 +01:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
dataStorage = mainNca.OpenStorage(NcaSectionType.Data, FsIntegrityCheckLevel);
|
|
|
|
}
|
2019-01-25 02:51:28 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
if (mainNca.CanOpenSection(NcaSectionType.Code))
|
|
|
|
{
|
|
|
|
codeFs = mainNca.OpenFileSystem(NcaSectionType.Code, FsIntegrityCheckLevel);
|
2019-01-25 02:51:28 +01:00
|
|
|
}
|
|
|
|
}
|
2019-06-01 02:31:10 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (patchNca.CanOpenSection(NcaSectionType.Data))
|
|
|
|
{
|
|
|
|
dataStorage = mainNca.OpenStorageWithPatch(patchNca, NcaSectionType.Data, FsIntegrityCheckLevel);
|
|
|
|
}
|
2019-01-25 02:51:28 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
if (patchNca.CanOpenSection(NcaSectionType.Code))
|
|
|
|
{
|
|
|
|
codeFs = mainNca.OpenFileSystemWithPatch(patchNca, NcaSectionType.Code, FsIntegrityCheckLevel);
|
|
|
|
}
|
|
|
|
}
|
2019-01-25 02:51:28 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
if (codeFs == null)
|
|
|
|
{
|
|
|
|
Logger.PrintError(LogClass.Loader, "No ExeFS found in NCA");
|
2019-01-25 02:51:28 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
return;
|
|
|
|
}
|
2019-01-25 02:51:28 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
if (dataStorage == null)
|
2019-01-25 02:51:28 +01:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
Logger.PrintWarning(LogClass.Loader, "No RomFS found in NCA");
|
2019-01-25 02:51:28 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
Device.FileSystem.SetRomFs(dataStorage.AsStream(FileAccess.Read));
|
2019-01-25 02:51:28 +01:00
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
LoadExeFs(codeFs, out Npdm metaData);
|
|
|
|
|
|
|
|
Nacp ReadControlData()
|
2018-10-31 03:34:27 +01:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
IFileSystem controlRomfs = controlNca.OpenFileSystem(NcaSectionType.Data, FsIntegrityCheckLevel);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
controlRomfs.OpenFile(out IFile controlFile, "/control.nacp", OpenMode.Read).ThrowIfFailure();
|
2019-06-01 02:31:10 +02:00
|
|
|
|
|
|
|
Nacp controlData = new Nacp(controlFile.AsStream());
|
2018-10-31 03:34:27 +01:00
|
|
|
|
2019-11-29 05:32:51 +01:00
|
|
|
TitleName = controlData.Descriptions[(int)State.DesiredTitleLanguage].Title;
|
|
|
|
TitleId = metaData.Aci0.TitleId.ToString("x16");
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-11-29 05:32:51 +01:00
|
|
|
if (string.IsNullOrWhiteSpace(TitleName))
|
2019-06-01 02:31:10 +02:00
|
|
|
{
|
2019-11-29 05:32:51 +01:00
|
|
|
TitleName = controlData.Descriptions.ToList().Find(x => !string.IsNullOrWhiteSpace(x.Title)).Title;
|
2019-06-01 02:31:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return controlData;
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
if (controlNca != null)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
ReadControlData();
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
2018-10-06 17:11:47 +02:00
|
|
|
else
|
|
|
|
{
|
2019-11-29 05:32:51 +01:00
|
|
|
TitleId = metaData.Aci0.TitleId.ToString("x16");
|
2018-10-06 17:11:47 +02:00
|
|
|
}
|
2019-06-01 02:31:10 +02:00
|
|
|
}
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
private void LoadExeFs(IFileSystem codeFs, out Npdm metaData)
|
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = codeFs.OpenFile(out IFile npdmFile, "/main.npdm", OpenMode.Read);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
if (result == ResultFs.PathNotFound)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
Logger.PrintWarning(LogClass.Loader, "NPDM file not found, using default values!");
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
metaData = GetDefaultNpdm();
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
2019-10-17 08:17:44 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
metaData = new Npdm(npdmFile.AsStream());
|
|
|
|
}
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
List<IExecutable> staticObjects = new List<IExecutable>();
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
void LoadNso(string filename)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
foreach (DirectoryEntryEx file in codeFs.EnumerateEntries("/", $"{filename}*"))
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (Path.GetExtension(file.Name) != string.Empty)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
Logger.PrintInfo(LogClass.Loader, $"Loading {file.Name}...");
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
codeFs.OpenFile(out IFile nsoFile, file.FullPath, OpenMode.Read).ThrowIfFailure();
|
|
|
|
|
|
|
|
NxStaticObject staticObject = new NxStaticObject(nsoFile.AsStream());
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
staticObjects.Add(staticObject);
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-29 05:32:51 +01:00
|
|
|
TitleId = metaData.Aci0.TitleId.ToString("x16");
|
2018-09-19 14:09:49 +02:00
|
|
|
|
2018-09-08 20:33:27 +02:00
|
|
|
LoadNso("rtld");
|
|
|
|
LoadNso("main");
|
|
|
|
LoadNso("subsdk");
|
|
|
|
LoadNso("sdk");
|
|
|
|
|
2018-11-18 20:37:41 +01:00
|
|
|
ContentManager.LoadEntries();
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
ProgramLoader.LoadStaticObjects(this, metaData, staticObjects.ToArray());
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void LoadProgram(string filePath)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Npdm metaData = GetDefaultNpdm();
|
2018-02-24 01:59:38 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
bool isNro = Path.GetExtension(filePath).ToLower() == ".nro";
|
2018-07-17 21:14:27 +02:00
|
|
|
|
2019-02-14 01:44:39 +01:00
|
|
|
FileStream input = new FileStream(filePath, FileMode.Open);
|
|
|
|
|
|
|
|
IExecutable staticObject;
|
|
|
|
|
|
|
|
if (isNro)
|
2018-07-17 21:14:27 +02:00
|
|
|
{
|
2019-02-14 01:44:39 +01:00
|
|
|
NxRelocatableObject obj = new NxRelocatableObject(input);
|
|
|
|
staticObject = obj;
|
|
|
|
|
|
|
|
// 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);
|
2018-07-17 21:14:27 +02:00
|
|
|
|
2019-02-14 01:44:39 +01:00
|
|
|
uint asetMagic = reader.ReadUInt32();
|
|
|
|
|
|
|
|
if (asetMagic == 0x54455341)
|
|
|
|
{
|
|
|
|
uint asetVersion = reader.ReadUInt32();
|
|
|
|
if (asetVersion == 0)
|
|
|
|
{
|
|
|
|
ulong iconOffset = reader.ReadUInt64();
|
2019-09-02 18:03:57 +02:00
|
|
|
ulong iconSize = reader.ReadUInt64();
|
2019-02-14 01:44:39 +01:00
|
|
|
|
|
|
|
ulong nacpOffset = reader.ReadUInt64();
|
2019-09-02 18:03:57 +02:00
|
|
|
ulong nacpSize = reader.ReadUInt64();
|
2019-02-14 01:44:39 +01:00
|
|
|
|
|
|
|
ulong romfsOffset = reader.ReadUInt64();
|
2019-09-02 18:03:57 +02:00
|
|
|
ulong romfsSize = reader.ReadUInt64();
|
2019-02-14 01:44:39 +01:00
|
|
|
|
|
|
|
if (romfsSize != 0)
|
|
|
|
{
|
|
|
|
Device.FileSystem.SetRomFs(new HomebrewRomFsStream(input, obj.FileSize + (long)romfsOffset));
|
|
|
|
}
|
2019-09-02 18:03:57 +02:00
|
|
|
|
|
|
|
if (nacpSize != 0)
|
|
|
|
{
|
|
|
|
input.Seek(obj.FileSize + (long)nacpOffset, SeekOrigin.Begin);
|
|
|
|
using (MemoryStream stream = new MemoryStream(reader.ReadBytes((int)nacpSize)))
|
|
|
|
{
|
|
|
|
ControlData = new Nacp(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
metaData.TitleName = ControlData.Descriptions[(int)State.DesiredTitleLanguage].Title;
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(metaData.TitleName))
|
|
|
|
{
|
|
|
|
metaData.TitleName = ControlData.Descriptions.ToList().Find(x => !string.IsNullOrWhiteSpace(x.Title)).Title;
|
|
|
|
}
|
|
|
|
|
|
|
|
metaData.Aci0.TitleId = ControlData.PresenceGroupId;
|
|
|
|
|
|
|
|
if (metaData.Aci0.TitleId == 0)
|
|
|
|
{
|
|
|
|
metaData.Aci0.TitleId = ControlData.SaveDataOwnerId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (metaData.Aci0.TitleId == 0)
|
|
|
|
{
|
|
|
|
metaData.Aci0.TitleId = ControlData.AddOnContentBaseId - 0x1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (metaData.Aci0.TitleId.ToString("x16") == "fffffffffffff000")
|
|
|
|
{
|
|
|
|
metaData.Aci0.TitleId = 0000000000000000;
|
|
|
|
}
|
|
|
|
}
|
2019-02-14 01:44:39 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Logger.PrintWarning(LogClass.Loader, $"Unsupported ASET header version found \"{asetVersion}\"");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
staticObject = new NxStaticObject(input);
|
2018-07-17 21:14:27 +02:00
|
|
|
}
|
2019-02-14 01:44:39 +01:00
|
|
|
|
|
|
|
ContentManager.LoadEntries();
|
|
|
|
|
2019-11-29 05:32:51 +01:00
|
|
|
TitleName = metaData.TitleName;
|
|
|
|
TitleId = metaData.Aci0.TitleId.ToString("x16");
|
2019-05-30 22:27:43 +02:00
|
|
|
|
2019-02-14 01:44:39 +01:00
|
|
|
ProgramLoader.LoadStaticObjects(this, metaData, new IExecutable[] { staticObject });
|
2018-11-28 23:18:09 +01:00
|
|
|
}
|
2018-04-22 06:21:49 +02:00
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
private Npdm GetDefaultNpdm()
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Assembly asm = Assembly.GetCallingAssembly();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
using (Stream npdmStream = asm.GetManifestResourceStream("Ryujinx.HLE.Homebrew.npdm"))
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
return new Npdm(npdmStream);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 20:33:27 +02:00
|
|
|
public void LoadKeySet()
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string keyFile = null;
|
|
|
|
string titleKeyFile = null;
|
|
|
|
string consoleKeyFile = null;
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
string home = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
LoadSetAtPath(Path.Combine(home, ".switch"));
|
2018-09-08 20:33:27 +02:00
|
|
|
LoadSetAtPath(Device.FileSystem.GetSystemPath());
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
KeySet = ExternalKeyReader.ReadKeyFile(keyFile, titleKeyFile, consoleKeyFile);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
void LoadSetAtPath(string basePath)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string localKeyFile = Path.Combine(basePath, "prod.keys");
|
|
|
|
string localTitleKeyFile = Path.Combine(basePath, "title.keys");
|
|
|
|
string localConsoleKeyFile = Path.Combine(basePath, "console.keys");
|
2018-09-08 20:33:27 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (File.Exists(localKeyFile))
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
keyFile = localKeyFile;
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (File.Exists(localTitleKeyFile))
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
titleKeyFile = localTitleKeyFile;
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (File.Exists(localConsoleKeyFile))
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
consoleKeyFile = localConsoleKeyFile;
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
public void SignalVsync()
|
|
|
|
{
|
2018-09-23 20:11:46 +02:00
|
|
|
VsyncEvent.ReadableEvent.Signal();
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
internal long GetThreadUid()
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
return Interlocked.Increment(ref _threadUid) - 1;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
internal long GetKipId()
|
2018-03-19 19:58:46 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
return Interlocked.Increment(ref _kipId) - 1;
|
2018-03-19 19:58:46 +01:00
|
|
|
}
|
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
internal long GetProcessId()
|
2018-02-17 22:36:08 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
return Interlocked.Increment(ref _processId) - 1;
|
2018-02-15 13:16:16 +01:00
|
|
|
}
|
2018-02-17 22:36:08 +01:00
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
public void EnableMultiCoreScheduling()
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (!_hasStarted)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
|
|
|
Scheduler.MultiCoreScheduling = true;
|
|
|
|
}
|
|
|
|
}
|
2018-08-17 01:47:36 +02:00
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
public void DisableMultiCoreScheduling()
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (!_hasStarted)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
|
|
|
Scheduler.MultiCoreScheduling = false;
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public void Dispose()
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
Dispose(true);
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
protected virtual void Dispose(bool disposing)
|
2018-03-12 05:04:52 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (disposing)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-12-26 02:50:17 +01:00
|
|
|
KProcess terminationProcess = new KProcess(this);
|
|
|
|
|
|
|
|
KThread terminationThread = new KThread(this);
|
|
|
|
|
|
|
|
terminationThread.Initialize(0, 0, 0, 3, 0, terminationProcess, ThreadType.Kernel, () =>
|
2018-03-12 05:04:52 +01:00
|
|
|
{
|
2019-12-26 02:50:17 +01:00
|
|
|
// Force all threads to exit.
|
|
|
|
lock (Processes)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2019-12-26 02:50:17 +01:00
|
|
|
foreach (KProcess process in Processes.Values)
|
|
|
|
{
|
|
|
|
process.Terminate();
|
|
|
|
}
|
2018-11-28 23:18:09 +01:00
|
|
|
}
|
2019-12-29 23:37:54 +01:00
|
|
|
|
|
|
|
// Exit ourself now!
|
|
|
|
Scheduler.ExitThread(terminationThread);
|
|
|
|
Scheduler.GetCurrentThread().Exit();
|
|
|
|
Scheduler.RemoveThread(terminationThread);
|
2019-12-26 02:50:17 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
terminationThread.Start();
|
|
|
|
|
|
|
|
// Signal the vsync event to avoid issues of KThread waiting on it.
|
|
|
|
if (Device.EnableDeviceVsync)
|
|
|
|
{
|
|
|
|
Device.VsyncEvent.Set();
|
2018-03-12 05:04:52 +01:00
|
|
|
}
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2019-12-26 02:50:17 +01:00
|
|
|
// This is needed as the IPC Dummy KThread is also counted in the ThreadCounter.
|
|
|
|
ThreadCounter.Signal();
|
|
|
|
|
2019-07-02 04:39:22 +02:00
|
|
|
// It's only safe to release resources once all threads
|
|
|
|
// have exited.
|
2018-11-28 23:18:09 +01:00
|
|
|
ThreadCounter.Signal();
|
2019-12-26 02:50:17 +01:00
|
|
|
ThreadCounter.Wait();
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
Scheduler.Dispose();
|
|
|
|
|
|
|
|
TimeManager.Dispose();
|
|
|
|
|
|
|
|
Device.Unload();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-17 01:56:46 +02:00
|
|
|
}
|