| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947 |
- using LibHac;
- using LibHac.Account;
- using LibHac.Bcat;
- using LibHac.Common;
- using LibHac.Fs;
- using LibHac.FsSystem;
- using LibHac.FsSystem.NcaUtils;
- using LibHac.Ncm;
- using LibHac.Ns;
- using LibHac.Spl;
- using Ryujinx.Common;
- using Ryujinx.Common.Configuration;
- using Ryujinx.Common.Logging;
- using Ryujinx.Configuration;
- using Ryujinx.HLE.FileSystem.Content;
- using Ryujinx.HLE.HOS.Font;
- using Ryujinx.HLE.HOS.Kernel.Common;
- using Ryujinx.HLE.HOS.Kernel.Memory;
- using Ryujinx.HLE.HOS.Kernel.Process;
- using Ryujinx.HLE.HOS.Kernel.Threading;
- using Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy;
- using Ryujinx.HLE.HOS.Services.Arp;
- using Ryujinx.HLE.HOS.Services.Mii;
- using Ryujinx.HLE.HOS.Services.Nv;
- using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostCtrl;
- using Ryujinx.HLE.HOS.Services.Pcv.Bpc;
- using Ryujinx.HLE.HOS.Services.Settings;
- using Ryujinx.HLE.HOS.Services.Sm;
- using Ryujinx.HLE.HOS.Services.SurfaceFlinger;
- using Ryujinx.HLE.HOS.Services.Time.Clock;
- using Ryujinx.HLE.HOS.SystemState;
- using Ryujinx.HLE.Loaders.Executables;
- using Ryujinx.HLE.Loaders.Npdm;
- using Ryujinx.HLE.Utilities;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using System.Threading;
- using TimeServiceManager = Ryujinx.HLE.HOS.Services.Time.TimeManager;
- using NsoExecutable = Ryujinx.HLE.Loaders.Executables.NsoExecutable;
- using JsonHelper = Ryujinx.Common.Utilities.JsonHelper;
- using static LibHac.Fs.ApplicationSaveDataManagement;
- namespace Ryujinx.HLE.HOS
- {
- public class Horizon : IDisposable
- {
- internal const int InitialKipId = 1;
- internal const int InitialProcessId = 0x51;
- internal const int HidSize = 0x40000;
- internal const int FontSize = 0x1100000;
- internal const int IirsSize = 0x8000;
- internal const int TimeSize = 0x1000;
- private const int MemoryBlockAllocatorSize = 0x2710;
- private const ulong UserSlabHeapBase = DramMemoryMap.SlabHeapBase;
- private const ulong UserSlabHeapItemSize = KMemoryManager.PageSize;
- private const ulong UserSlabHeapSize = 0x3de000;
- internal long PrivilegedProcessLowestId { get; set; } = 1;
- internal long PrivilegedProcessHighestId { get; set; } = 8;
- internal Switch Device { get; private set; }
- internal SurfaceFlinger SurfaceFlinger { get; private set; }
- public SystemStateMgr State { get; private set; }
- internal bool KernelInitialized { get; private set; }
- internal KResourceLimit ResourceLimit { get; private set; }
- internal KMemoryRegionManager[] MemoryRegions { get; private set; }
- internal KMemoryBlockAllocator LargeMemoryBlockAllocator { get; private set; }
- internal KMemoryBlockAllocator SmallMemoryBlockAllocator { get; private set; }
- internal KSlabHeap UserSlabHeapPages { get; private set; }
- internal KCriticalSection CriticalSection { get; private set; }
- internal KScheduler Scheduler { get; private set; }
- internal KTimeManager TimeManager { get; private set; }
- internal KSynchronization Synchronization { get; private set; }
- internal KContextIdManager ContextIdManager { get; private set; }
- private long _kipId;
- private long _processId;
- private long _threadUid;
- internal CountdownEvent ThreadCounter;
- internal SortedDictionary<long, KProcess> Processes;
- internal ConcurrentDictionary<string, KAutoObject> AutoObjectNames;
- internal bool EnableVersionChecks { get; private set; }
- internal AppletStateMgr AppletState { get; private set; }
- internal KSharedMemory HidSharedMem { get; private set; }
- internal KSharedMemory FontSharedMem { get; private set; }
- internal KSharedMemory IirsSharedMem { get; private set; }
- internal SharedFontManager Font { get; private set; }
- internal ContentManager ContentManager { get; private set; }
- internal KEvent VsyncEvent { get; private set; }
- internal KEvent DisplayResolutionChangeEvent { get; private set; }
- public Keyset KeySet => Device.FileSystem.KeySet;
- #pragma warning disable CS0649
- private bool _hasStarted;
- #pragma warning restore CS0649
- private bool _isDisposed;
- public BlitStruct<ApplicationControlProperty> ControlData { get; set; }
- public string TitleName { get; private set; }
- public ulong TitleId { get; private set; }
- public string TitleIdText => TitleId.ToString("x16");
- public string TitleVersionString { get; private set; }
- public bool TitleIs64Bit { get; private set; }
- public IntegrityCheckLevel FsIntegrityCheckLevel { get; set; }
- public int GlobalAccessLogMode { get; set; }
- internal ulong HidBaseAddress { get; private set; }
- internal NvHostSyncpt HostSyncpoint { get; private set; }
- internal LibHac.Horizon LibHacHorizonServer { get; private set; }
- internal HorizonClient LibHacHorizonClient { get; private set; }
- public Horizon(Switch device, ContentManager contentManager)
- {
- ControlData = new BlitStruct<ApplicationControlProperty>(1);
- Device = device;
- State = new SystemStateMgr();
- 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);
- Scheduler = new KScheduler(this);
- TimeManager = new KTimeManager();
- Synchronization = new KSynchronization(this);
- ContextIdManager = new KContextIdManager();
- _kipId = InitialKipId;
- _processId = InitialProcessId;
- Scheduler.StartAutoPreemptionThread();
- KernelInitialized = true;
- ThreadCounter = new CountdownEvent(1);
- Processes = new SortedDictionary<long, KProcess>();
- AutoObjectNames = new ConcurrentDictionary<string, KAutoObject>();
- // 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.
- KMemoryRegionManager region = MemoryRegions[(int)MemoryRegion.NvServices];
- ulong hidPa = region.Address;
- ulong fontPa = region.Address + HidSize;
- ulong iirsPa = region.Address + HidSize + FontSize;
- ulong timePa = region.Address + HidSize + FontSize + IirsSize;
- HidBaseAddress = hidPa - DramMemoryMap.DramBase;
- KPageList hidPageList = new KPageList();
- KPageList fontPageList = new KPageList();
- KPageList iirsPageList = new KPageList();
- KPageList timePageList = new KPageList();
- hidPageList .AddRange(hidPa, HidSize / KMemoryManager.PageSize);
- fontPageList.AddRange(fontPa, FontSize / KMemoryManager.PageSize);
- iirsPageList.AddRange(iirsPa, IirsSize / KMemoryManager.PageSize);
- timePageList.AddRange(timePa, TimeSize / KMemoryManager.PageSize);
- HidSharedMem = new KSharedMemory(this, hidPageList, 0, 0, MemoryPermission.Read);
- FontSharedMem = new KSharedMemory(this, fontPageList, 0, 0, MemoryPermission.Read);
- IirsSharedMem = new KSharedMemory(this, iirsPageList, 0, 0, MemoryPermission.Read);
- KSharedMemory timeSharedMemory = new KSharedMemory(this, timePageList, 0, 0, MemoryPermission.Read);
- TimeServiceManager.Instance.Initialize(device, this, timeSharedMemory, timePa - DramMemoryMap.DramBase, TimeSize);
- AppletState = new AppletStateMgr(this);
- AppletState.SetFocus(true);
- Font = new SharedFontManager(device, fontPa - DramMemoryMap.DramBase);
- IUserInterface.InitializePort(this);
- VsyncEvent = new KEvent(this);
- DisplayResolutionChangeEvent = new KEvent(this);
- ContentManager = contentManager;
- // TODO: use set:sys (and get external clock source id from settings)
- // TODO: use "time!standard_steady_clock_rtc_update_interval_minutes" and implement a worker thread to be accurate.
- 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);
- // Configure and setup internal offset
- TimeSpanType internalOffset = TimeSpanType.FromSeconds(ConfigurationState.Instance.System.SystemTimeOffset);
-
- TimeSpanType systemTimeOffset = new TimeSpanType(systemTime.NanoSeconds + internalOffset.NanoSeconds);
- if (systemTime.IsDaylightSavingTime() && !systemTimeOffset.IsDaylightSavingTime())
- {
- internalOffset = internalOffset.AddSeconds(3600L);
- }
- else if (!systemTime.IsDaylightSavingTime() && systemTimeOffset.IsDaylightSavingTime())
- {
- internalOffset = internalOffset.AddSeconds(-3600L);
- }
- internalOffset = new TimeSpanType(-internalOffset.NanoSeconds);
- // First init the standard steady clock
- TimeServiceManager.Instance.SetupStandardSteadyClock(null, clockSourceId, systemTime, internalOffset, TimeSpanType.Zero, false);
- TimeServiceManager.Instance.SetupStandardLocalSystemClock(null, new SystemClockContext(), systemTime.ToSeconds());
- if (NxSettings.Settings.TryGetValue("time!standard_network_clock_sufficient_accuracy_minutes", out object standardNetworkClockSufficientAccuracyMinutes))
- {
- TimeSpanType standardNetworkClockSufficientAccuracy = new TimeSpanType((int)standardNetworkClockSufficientAccuracyMinutes * 60000000000);
- TimeServiceManager.Instance.SetupStandardNetworkSystemClock(new SystemClockContext(), standardNetworkClockSufficientAccuracy);
- }
- TimeServiceManager.Instance.SetupStandardUserSystemClock(null, false, SteadyClockTimePoint.GetRandom());
- // FIXME: TimeZone shoud be init here but it's actually done in ContentManager
- TimeServiceManager.Instance.SetupEphemeralNetworkSystemClock();
- DatabaseImpl.Instance.InitializeDatabase(device);
- HostSyncpoint = new NvHostSyncpt(device);
- SurfaceFlinger = new SurfaceFlinger(device);
- ConfigurationState.Instance.System.EnableDockedMode.Event += OnDockedModeChange;
- InitLibHacHorizon();
- }
- private void InitLibHacHorizon()
- {
- LibHac.Horizon horizon = new LibHac.Horizon(null, Device.FileSystem.FsServer);
- horizon.CreateHorizonClient(out HorizonClient ryujinxClient).ThrowIfFailure();
- horizon.CreateHorizonClient(out HorizonClient bcatClient).ThrowIfFailure();
- ryujinxClient.Sm.RegisterService(new LibHacIReader(this), "arp:r").ThrowIfFailure();
- new BcatServer(bcatClient);
- LibHacHorizonServer = horizon;
- LibHacHorizonClient = ryujinxClient;
- }
- private void OnDockedModeChange(object sender, ReactiveEventArgs<bool> e)
- {
- if (e.NewValue != State.DockedMode)
- {
- State.DockedMode = e.NewValue;
- AppletState.EnqueueMessage(MessageInfo.OperationModeChanged);
- AppletState.EnqueueMessage(MessageInfo.PerformanceModeChanged);
- SignalDisplayResolutionChange();
- }
- }
- public void LoadCart(string exeFsDir, string romFsFile = null)
- {
- if (romFsFile != null)
- {
- Device.FileSystem.LoadRomFs(romFsFile);
- }
- LocalFileSystem codeFs = new LocalFileSystem(exeFsDir);
- LoadExeFs(codeFs, out _);
- if (TitleId != 0)
- {
- EnsureSaveData(new TitleId(TitleId));
- }
- }
- public void LoadXci(string xciFile)
- {
- FileStream file = new FileStream(xciFile, FileMode.Open, FileAccess.Read);
- Xci xci = new Xci(KeySet, file.AsStorage());
- (Nca mainNca, Nca patchNca, Nca controlNca) = GetXciGameData(xci);
- if (mainNca == null)
- {
- Logger.PrintError(LogClass.Loader, "Unable to load XCI");
- return;
- }
- ContentManager.LoadEntries(Device);
- LoadNca(mainNca, patchNca, controlNca);
- }
- public void LoadKip(string kipFile)
- {
- using (IStorage fs = new LocalStorage(kipFile, FileAccess.Read))
- {
- ProgramLoader.LoadKernelInitalProcess(this, new KipExecutable(fs));
- }
- }
- private (Nca Main, Nca patch, Nca Control) GetXciGameData(Xci xci)
- {
- if (!xci.HasPartition(XciPartitionType.Secure))
- {
- throw new InvalidDataException("Could not find XCI secure partition");
- }
- Nca mainNca = null;
- Nca patchNca = null;
- Nca controlNca = null;
- XciPartition securePartition = xci.OpenPartition(XciPartitionType.Secure);
- foreach (DirectoryEntryEx ticketEntry in securePartition.EnumerateEntries("/", "*.tik"))
- {
- Result result = securePartition.OpenFile(out IFile ticketFile, ticketEntry.FullPath.ToU8Span(), OpenMode.Read);
- if (result.IsSuccess())
- {
- Ticket ticket = new Ticket(ticketFile.AsStream());
- KeySet.ExternalKeySet.Add(new RightsId(ticket.RightsId), new AccessKey(ticket.GetTitleKey(KeySet)));
- }
- }
- foreach (DirectoryEntryEx fileEntry in securePartition.EnumerateEntries("/", "*.nca"))
- {
- Result result = securePartition.OpenFile(out IFile ncaFile, fileEntry.FullPath.ToU8Span(), OpenMode.Read);
- if (result.IsFailure())
- {
- continue;
- }
- Nca nca = new Nca(KeySet, ncaFile.AsStorage());
- 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;
- }
- }
- if (mainNca == null)
- {
- Logger.PrintError(LogClass.Loader, "Could not find an Application NCA in the provided XCI file");
- }
- if (controlNca != null)
- {
- ReadControlData(controlNca);
- }
- else
- {
- ControlData.ByteSpan.Clear();
- }
- return (mainNca, patchNca, controlNca);
- }
- public void ReadControlData(Nca controlNca)
- {
- IFileSystem controlFs = controlNca.OpenFileSystem(NcaSectionType.Data, FsIntegrityCheckLevel);
- Result result = controlFs.OpenFile(out IFile controlFile, "/control.nacp".ToU8Span(), OpenMode.Read);
- if (result.IsSuccess())
- {
- result = controlFile.Read(out long bytesRead, 0, ControlData.ByteSpan, ReadOption.None);
- if (result.IsSuccess() && bytesRead == ControlData.ByteSpan.Length)
- {
- TitleName = ControlData.Value
- .Titles[(int) State.DesiredTitleLanguage].Name.ToString();
- if (string.IsNullOrWhiteSpace(TitleName))
- {
- TitleName = ControlData.Value.Titles.ToArray()
- .FirstOrDefault(x => x.Name[0] != 0).Name.ToString();
- }
- TitleVersionString = ControlData.Value.DisplayVersion.ToString();
- }
- }
- else
- {
- ControlData.ByteSpan.Clear();
- }
- }
- public void LoadNca(string ncaFile)
- {
- FileStream file = new FileStream(ncaFile, FileMode.Open, FileAccess.Read);
- Nca nca = new Nca(KeySet, file.AsStorage(false));
- LoadNca(nca, null, null);
- }
- public void LoadNsp(string nspFile)
- {
- FileStream file = new FileStream(nspFile, FileMode.Open, FileAccess.Read);
- PartitionFileSystem nsp = new PartitionFileSystem(file.AsStorage());
- foreach (DirectoryEntryEx ticketEntry in nsp.EnumerateEntries("/", "*.tik"))
- {
- Result result = nsp.OpenFile(out IFile ticketFile, ticketEntry.FullPath.ToU8Span(), OpenMode.Read);
- if (result.IsSuccess())
- {
- Ticket ticket = new Ticket(ticketFile.AsStream());
- KeySet.ExternalKeySet.Add(new RightsId(ticket.RightsId), new AccessKey(ticket.GetTitleKey(KeySet)));
- }
- }
- Nca mainNca = null;
- Nca patchNca = null;
- Nca controlNca = null;
- foreach (DirectoryEntryEx fileEntry in nsp.EnumerateEntries("/", "*.nca"))
- {
- nsp.OpenFile(out IFile ncaFile, fileEntry.FullPath.ToU8Span(), OpenMode.Read).ThrowIfFailure();
- Nca nca = new Nca(KeySet, ncaFile.AsStorage());
- 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;
- }
- }
- if (mainNca != null)
- {
- LoadNca(mainNca, patchNca, controlNca);
- return;
- }
- // This is not a normal NSP, it's actually a ExeFS as a NSP
- LoadExeFs(nsp, out _);
- }
- public void LoadNca(Nca mainNca, Nca patchNca, Nca controlNca)
- {
- if (mainNca.Header.ContentType != NcaContentType.Program)
- {
- Logger.PrintError(LogClass.Loader, "Selected NCA is not a \"Program\" NCA");
- return;
- }
- IStorage dataStorage = null;
- IFileSystem codeFs = null;
- string titleUpdateMetadataPath = System.IO.Path.Combine(Device.FileSystem.GetBasePath(), "games", mainNca.Header.TitleId.ToString("x16"), "updates.json");
- if (File.Exists(titleUpdateMetadataPath))
- {
- string 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());
- foreach (DirectoryEntryEx ticketEntry in nsp.EnumerateEntries("/", "*.tik"))
- {
- Result result = nsp.OpenFile(out IFile ticketFile, ticketEntry.FullPath.ToU8Span(), OpenMode.Read);
- if (result.IsSuccess())
- {
- Ticket ticket = new Ticket(ticketFile.AsStream());
- KeySet.ExternalKeySet.Add(new RightsId(ticket.RightsId), new AccessKey(ticket.GetTitleKey(KeySet)));
- }
- }
- foreach (DirectoryEntryEx fileEntry in nsp.EnumerateEntries("/", "*.nca"))
- {
- nsp.OpenFile(out IFile ncaFile, fileEntry.FullPath.ToU8Span(), OpenMode.Read).ThrowIfFailure();
- Nca nca = new Nca(KeySet, ncaFile.AsStorage());
- if ($"{nca.Header.TitleId.ToString("x16")[..^3]}000" != mainNca.Header.TitleId.ToString("x16"))
- {
- break;
- }
- if (nca.Header.ContentType == NcaContentType.Program)
- {
- patchNca = nca;
- }
- else if (nca.Header.ContentType == NcaContentType.Control)
- {
- controlNca = nca;
- }
- }
- }
- }
- if (patchNca == null)
- {
- if (mainNca.CanOpenSection(NcaSectionType.Data))
- {
- dataStorage = mainNca.OpenStorage(NcaSectionType.Data, FsIntegrityCheckLevel);
- }
- if (mainNca.CanOpenSection(NcaSectionType.Code))
- {
- codeFs = mainNca.OpenFileSystem(NcaSectionType.Code, FsIntegrityCheckLevel);
- }
- }
- else
- {
- if (patchNca.CanOpenSection(NcaSectionType.Data))
- {
- dataStorage = mainNca.OpenStorageWithPatch(patchNca, NcaSectionType.Data, FsIntegrityCheckLevel);
- }
- if (patchNca.CanOpenSection(NcaSectionType.Code))
- {
- codeFs = mainNca.OpenFileSystemWithPatch(patchNca, NcaSectionType.Code, FsIntegrityCheckLevel);
- }
- }
- if (codeFs == null)
- {
- Logger.PrintError(LogClass.Loader, "No ExeFS found in NCA");
- return;
- }
- if (dataStorage == null)
- {
- Logger.PrintWarning(LogClass.Loader, "No RomFS found in NCA");
- }
- else
- {
- Device.FileSystem.SetRomFs(dataStorage.AsStream(FileAccess.Read));
- }
- LoadExeFs(codeFs, out Npdm metaData);
-
- TitleId = metaData.Aci0.TitleId;
- TitleIs64Bit = metaData.Is64Bit;
- if (controlNca != null)
- {
- ReadControlData(controlNca);
- }
- else
- {
- ControlData.ByteSpan.Clear();
- }
- if (TitleId != 0)
- {
- EnsureSaveData(new TitleId(TitleId));
- }
- Logger.PrintInfo(LogClass.Loader, $"Application Loaded: {TitleName} v{TitleVersionString} [{TitleIdText}] [{(TitleIs64Bit ? "64-bit" : "32-bit")}]");
- }
- private void LoadExeFs(IFileSystem codeFs, out Npdm metaData)
- {
- Result result = codeFs.OpenFile(out IFile npdmFile, "/main.npdm".ToU8Span(), OpenMode.Read);
- if (ResultFs.PathNotFound.Includes(result))
- {
- Logger.PrintWarning(LogClass.Loader, "NPDM file not found, using default values!");
- metaData = GetDefaultNpdm();
- }
- else
- {
- metaData = new Npdm(npdmFile.AsStream());
- }
- List<IExecutable> staticObjects = new List<IExecutable>();
- void LoadNso(string filename)
- {
- foreach (DirectoryEntryEx file in codeFs.EnumerateEntries("/", $"{filename}*"))
- {
- if (Path.GetExtension(file.Name) != string.Empty)
- {
- continue;
- }
- Logger.PrintInfo(LogClass.Loader, $"Loading {file.Name}...");
- codeFs.OpenFile(out IFile nsoFile, file.FullPath.ToU8Span(), OpenMode.Read).ThrowIfFailure();
-
- NsoExecutable staticObject = new NsoExecutable(nsoFile.AsStorage());
- staticObjects.Add(staticObject);
- }
- }
- TitleId = metaData.Aci0.TitleId;
- TitleIs64Bit = metaData.Is64Bit;
- LoadNso("rtld");
- LoadNso("main");
- LoadNso("subsdk");
- LoadNso("sdk");
- ContentManager.LoadEntries(Device);
- ProgramLoader.LoadStaticObjects(this, metaData, staticObjects.ToArray());
- }
- public void LoadProgram(string filePath)
- {
- Npdm metaData = GetDefaultNpdm();
- bool isNro = Path.GetExtension(filePath).ToLower() == ".nro";
- IExecutable staticObject;
- if (isNro)
- {
- FileStream input = new FileStream(filePath, FileMode.Open);
- NroExecutable obj = new NroExecutable(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);
- uint asetMagic = reader.ReadUInt32();
- if (asetMagic == 0x54455341)
- {
- uint asetVersion = reader.ReadUInt32();
- if (asetVersion == 0)
- {
- ulong iconOffset = reader.ReadUInt64();
- ulong iconSize = reader.ReadUInt64();
- ulong nacpOffset = reader.ReadUInt64();
- ulong nacpSize = reader.ReadUInt64();
- ulong romfsOffset = reader.ReadUInt64();
- ulong romfsSize = reader.ReadUInt64();
- if (romfsSize != 0)
- {
- Device.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)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
- {
- Logger.PrintWarning(LogClass.Loader, $"Unsupported ASET header version found \"{asetVersion}\"");
- }
- }
- }
- }
- else
- {
- staticObject = new NsoExecutable(new LocalStorage(filePath, FileAccess.Read));
- }
- ContentManager.LoadEntries(Device);
- TitleName = metaData.TitleName;
- TitleId = metaData.Aci0.TitleId;
- TitleIs64Bit = metaData.Is64Bit;
- ProgramLoader.LoadStaticObjects(this, metaData, new IExecutable[] { staticObject });
- }
- private Npdm GetDefaultNpdm()
- {
- Assembly asm = Assembly.GetCallingAssembly();
- using (Stream npdmStream = asm.GetManifestResourceStream("Ryujinx.HLE.Homebrew.npdm"))
- {
- return new Npdm(npdmStream);
- }
- }
- private Result EnsureSaveData(TitleId titleId)
- {
- Logger.PrintInfo(LogClass.Application, "Ensuring required savedata exists.");
- Uid user = State.Account.LastOpenedUser.UserId.ToLibHacUid();
- ref ApplicationControlProperty control = ref ControlData.Value;
- if (LibHac.Util.IsEmpty(ControlData.ByteSpan))
- {
- // 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;
- Logger.PrintWarning(LogClass.Application,
- "No control file was found for this game. Using a dummy one instead. This may cause inaccuracies in some games.");
- }
- FileSystemClient fs = Device.FileSystem.FsClient;
- Result rc = fs.EnsureApplicationCacheStorage(out _, titleId, ref control);
- if (rc.IsFailure())
- {
- Logger.PrintError(LogClass.Application, $"Error calling EnsureApplicationCacheStorage. Result code {rc.ToStringWithName()}");
- }
- rc = EnsureApplicationSaveData(fs, out _, titleId, ref control, ref user);
- if (rc.IsFailure())
- {
- Logger.PrintError(LogClass.Application, $"Error calling EnsureApplicationSaveData. Result code {rc.ToStringWithName()}");
- }
- return rc;
- }
- public void SignalDisplayResolutionChange()
- {
- DisplayResolutionChangeEvent.ReadableEvent.Signal();
- }
- public void SignalVsync()
- {
- VsyncEvent.ReadableEvent.Signal();
- }
- internal long GetThreadUid()
- {
- return Interlocked.Increment(ref _threadUid) - 1;
- }
- internal long GetKipId()
- {
- return Interlocked.Increment(ref _kipId) - 1;
- }
- internal long GetProcessId()
- {
- return Interlocked.Increment(ref _processId) - 1;
- }
- public void EnableMultiCoreScheduling()
- {
- if (!_hasStarted)
- {
- Scheduler.MultiCoreScheduling = true;
- }
- }
- public void DisableMultiCoreScheduling()
- {
- if (!_hasStarted)
- {
- Scheduler.MultiCoreScheduling = false;
- }
- }
- public void Dispose()
- {
- Dispose(true);
- }
- protected virtual void Dispose(bool disposing)
- {
- if (!_isDisposed && disposing)
- {
- ConfigurationState.Instance.System.EnableDockedMode.Event -= OnDockedModeChange;
- _isDisposed = true;
- SurfaceFlinger.Dispose();
- KProcess terminationProcess = new KProcess(this);
- KThread terminationThread = new KThread(this);
- terminationThread.Initialize(0, 0, 0, 3, 0, terminationProcess, ThreadType.Kernel, () =>
- {
- // Force all threads to exit.
- lock (Processes)
- {
- foreach (KProcess process in Processes.Values)
- {
- process.Terminate();
- }
- }
- // Exit ourself now!
- Scheduler.ExitThread(terminationThread);
- Scheduler.GetCurrentThread().Exit();
- Scheduler.RemoveThread(terminationThread);
- });
- terminationThread.Start();
- // Destroy nvservices channels as KThread could be waiting on some user events.
- // This is safe as KThread that are likely to call ioctls are going to be terminated by the post handler hook on the SVC facade.
- INvDrvServices.Destroy();
- // This is needed as the IPC Dummy KThread is also counted in the ThreadCounter.
- ThreadCounter.Signal();
- // It's only safe to release resources once all threads
- // have exited.
- ThreadCounter.Signal();
- ThreadCounter.Wait();
- Scheduler.Dispose();
- TimeManager.Dispose();
- Device.Unload();
- }
- }
- }
- }
|