| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627 |
- using LibHac;
- using Ryujinx.Common.Logging;
- 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.SystemState;
- using Ryujinx.HLE.Loaders.Executables;
- using Ryujinx.HLE.Loaders.Npdm;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using System.Threading;
- using NxStaticObject = Ryujinx.HLE.Loaders.Executables.NxStaticObject;
- 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;
- 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; }
- 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 SharedFontManager Font { get; private set; }
- internal ContentManager ContentManager { get; private set; }
- internal KEvent VsyncEvent { get; private set; }
- internal Keyset KeySet { get; private set; }
- private bool _hasStarted;
- public Nacp ControlData { get; set; }
- public string CurrentTitle { get; private set; }
- public IntegrityCheckLevel FsIntegrityCheckLevel { get; set; }
- internal long HidBaseAddress { get; private set; }
- public Horizon(Switch device)
- {
- 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;
- HidBaseAddress = (long)(hidPa - DramMemoryMap.DramBase);
- KPageList hidPageList = new KPageList();
- KPageList fontPageList = new KPageList();
- hidPageList .AddRange(hidPa, HidSize / KMemoryManager.PageSize);
- fontPageList.AddRange(fontPa, FontSize / KMemoryManager.PageSize);
- HidSharedMem = new KSharedMemory(hidPageList, 0, 0, MemoryPermission.Read);
- FontSharedMem = new KSharedMemory(fontPageList, 0, 0, MemoryPermission.Read);
- AppletState = new AppletStateMgr(this);
- AppletState.SetFocus(true);
- Font = new SharedFontManager(device, (long)(fontPa - DramMemoryMap.DramBase));
- VsyncEvent = new KEvent(this);
- LoadKeySet();
- ContentManager = new ContentManager(device);
- }
- public void LoadCart(string exeFsDir, string romFsFile = null)
- {
- if (romFsFile != null)
- {
- Device.FileSystem.LoadRomFs(romFsFile);
- }
- string npdmFileName = Path.Combine(exeFsDir, "main.npdm");
- Npdm metaData = null;
- if (File.Exists(npdmFileName))
- {
- Logger.PrintInfo(LogClass.Loader, $"Loading main.npdm...");
- using (FileStream input = new FileStream(npdmFileName, FileMode.Open))
- {
- metaData = new Npdm(input);
- }
- }
- else
- {
- Logger.PrintWarning(LogClass.Loader, $"NPDM file not found, using default values!");
- metaData = GetDefaultNpdm();
- }
- List<IExecutable> staticObjects = new List<IExecutable>();
- void LoadNso(string searchPattern)
- {
- foreach (string file in Directory.GetFiles(exeFsDir, searchPattern))
- {
- if (Path.GetExtension(file) != string.Empty)
- {
- continue;
- }
- Logger.PrintInfo(LogClass.Loader, $"Loading {Path.GetFileNameWithoutExtension(file)}...");
- using (FileStream input = new FileStream(file, FileMode.Open))
- {
- NxStaticObject staticObject = new NxStaticObject(input);
- staticObjects.Add(staticObject);
- }
- }
- }
- if (!metaData.Is64Bits)
- {
- throw new NotImplementedException("32-bit titles are unsupported!");
- }
- CurrentTitle = metaData.Aci0.TitleId.ToString("x16");
- LoadNso("rtld");
- LoadNso("main");
- LoadNso("subsdk*");
- LoadNso("sdk");
- ContentManager.LoadEntries();
- ProgramLoader.LoadStaticObjects(this, metaData, staticObjects.ToArray());
- }
- public void LoadXci(string xciFile)
- {
- FileStream file = new FileStream(xciFile, FileMode.Open, FileAccess.Read);
- Xci xci = new Xci(KeySet, file);
- (Nca mainNca, Nca controlNca) = GetXciGameData(xci);
- if (mainNca == null)
- {
- Logger.PrintError(LogClass.Loader, "Unable to load XCI");
- return;
- }
- ContentManager.LoadEntries();
- LoadNca(mainNca, controlNca);
- }
- private (Nca Main, Nca Control) GetXciGameData(Xci xci)
- {
- if (xci.SecurePartition == null)
- {
- throw new InvalidDataException("Could not find XCI secure partition");
- }
- Nca mainNca = null;
- Nca patchNca = null;
- Nca controlNca = null;
- foreach (PfsFileEntry ticketEntry in xci.SecurePartition.Files.Where(x => x.Name.EndsWith(".tik")))
- {
- Ticket ticket = new Ticket(xci.SecurePartition.OpenFile(ticketEntry));
- if (!KeySet.TitleKeys.ContainsKey(ticket.RightsId))
- {
- KeySet.TitleKeys.Add(ticket.RightsId, ticket.GetTitleKey(KeySet));
- }
- }
- foreach (PfsFileEntry fileEntry in xci.SecurePartition.Files.Where(x => x.Name.EndsWith(".nca")))
- {
- Stream ncaStream = xci.SecurePartition.OpenFile(fileEntry);
- Nca nca = new Nca(KeySet, ncaStream, true);
- if (nca.Header.ContentType == ContentType.Program)
- {
- if (nca.Sections.Any(x => x?.Type == SectionType.Romfs))
- {
- mainNca = nca;
- }
- else if (nca.Sections.Any(x => x?.Type == SectionType.Bktr))
- {
- patchNca = nca;
- }
- }
- else if (nca.Header.ContentType == ContentType.Control)
- {
- controlNca = nca;
- }
- }
- if (mainNca == null)
- {
- Logger.PrintError(LogClass.Loader, "Could not find an Application NCA in the provided XCI file");
- }
- mainNca.SetBaseNca(patchNca);
- if (controlNca != null)
- {
- ReadControlData(controlNca);
- }
- if (patchNca != null)
- {
- patchNca.SetBaseNca(mainNca);
- return (patchNca, controlNca);
- }
- return (mainNca, controlNca);
- }
- public void ReadControlData(Nca controlNca)
- {
- Romfs controlRomfs = new Romfs(controlNca.OpenSection(0, false, FsIntegrityCheckLevel));
- byte[] controlFile = controlRomfs.GetFile("/control.nacp");
- BinaryReader reader = new BinaryReader(new MemoryStream(controlFile));
- ControlData = new Nacp(reader);
- }
- public void LoadNca(string ncaFile)
- {
- FileStream file = new FileStream(ncaFile, FileMode.Open, FileAccess.Read);
- Nca nca = new Nca(KeySet, file, true);
- LoadNca(nca, null);
- }
- public void LoadNsp(string nspFile)
- {
- FileStream file = new FileStream(nspFile, FileMode.Open, FileAccess.Read);
- Pfs nsp = new Pfs(file);
- PfsFileEntry ticketFile = nsp.Files.FirstOrDefault(x => x.Name.EndsWith(".tik"));
- // Load title key from the NSP's ticket in case the user doesn't have a title key file
- if (ticketFile != null)
- {
- Ticket ticket = new Ticket(nsp.OpenFile(ticketFile));
- KeySet.TitleKeys[ticket.RightsId] = ticket.GetTitleKey(KeySet);
- }
- Nca mainNca = null;
- Nca controlNca = null;
- foreach (PfsFileEntry ncaFile in nsp.Files.Where(x => x.Name.EndsWith(".nca")))
- {
- Nca nca = new Nca(KeySet, nsp.OpenFile(ncaFile), true);
- if (nca.Header.ContentType == ContentType.Program)
- {
- mainNca = nca;
- }
- else if (nca.Header.ContentType == ContentType.Control)
- {
- controlNca = nca;
- }
- }
- if (mainNca != null)
- {
- LoadNca(mainNca, controlNca);
- return;
- }
- Logger.PrintError(LogClass.Loader, "Could not find an Application NCA in the provided NSP file");
- }
- public void LoadNca(Nca mainNca, Nca controlNca)
- {
- if (mainNca.Header.ContentType != ContentType.Program)
- {
- Logger.PrintError(LogClass.Loader, "Selected NCA is not a \"Program\" NCA");
- return;
- }
- Stream romfsStream = mainNca.OpenSection(ProgramPartitionType.Data, false, FsIntegrityCheckLevel);
- Stream exefsStream = mainNca.OpenSection(ProgramPartitionType.Code, false, FsIntegrityCheckLevel);
- if (exefsStream == null)
- {
- Logger.PrintError(LogClass.Loader, "No ExeFS found in NCA");
- return;
- }
- if (romfsStream == null)
- {
- Logger.PrintWarning(LogClass.Loader, "No RomFS found in NCA");
- }
- else
- {
- Device.FileSystem.SetRomFs(romfsStream);
- }
- Pfs exefs = new Pfs(exefsStream);
- Npdm metaData = null;
- if (exefs.FileExists("main.npdm"))
- {
- Logger.PrintInfo(LogClass.Loader, "Loading main.npdm...");
- metaData = new Npdm(exefs.OpenFile("main.npdm"));
- }
- else
- {
- Logger.PrintWarning(LogClass.Loader, $"NPDM file not found, using default values!");
- metaData = GetDefaultNpdm();
- }
- List<IExecutable> staticObjects = new List<IExecutable>();
- void LoadNso(string filename)
- {
- foreach (PfsFileEntry file in exefs.Files.Where(x => x.Name.StartsWith(filename)))
- {
- if (Path.GetExtension(file.Name) != string.Empty)
- {
- continue;
- }
- Logger.PrintInfo(LogClass.Loader, $"Loading {filename}...");
- NxStaticObject staticObject = new NxStaticObject(exefs.OpenFile(file));
- staticObjects.Add(staticObject);
- }
- }
- Nacp ReadControlData()
- {
- Romfs controlRomfs = new Romfs(controlNca.OpenSection(0, false, FsIntegrityCheckLevel));
- byte[] controlFile = controlRomfs.GetFile("/control.nacp");
- BinaryReader reader = new BinaryReader(new MemoryStream(controlFile));
- Nacp controlData = new Nacp(reader);
- CurrentTitle = controlData.Languages[(int)State.DesiredTitleLanguage].Title;
- if (string.IsNullOrWhiteSpace(CurrentTitle))
- {
- CurrentTitle = controlData.Languages.ToList().Find(x => !string.IsNullOrWhiteSpace(x.Title)).Title;
- }
- return controlData;
- }
- if (controlNca != null)
- {
- ReadControlData();
- }
- else
- {
- CurrentTitle = metaData.Aci0.TitleId.ToString("x16");
- }
- if (!metaData.Is64Bits)
- {
- throw new NotImplementedException("32-bit titles are not supported!");
- }
- LoadNso("rtld");
- LoadNso("main");
- LoadNso("subsdk");
- LoadNso("sdk");
- ContentManager.LoadEntries();
- ProgramLoader.LoadStaticObjects(this, metaData, staticObjects.ToArray());
- }
- public void LoadProgram(string filePath)
- {
- Npdm metaData = GetDefaultNpdm();
- bool isNro = Path.GetExtension(filePath).ToLower() == ".nro";
- using (FileStream input = new FileStream(filePath, FileMode.Open))
- {
- IExecutable staticObject = isNro
- ? (IExecutable)new NxRelocatableObject(input)
- : new NxStaticObject(input);
- 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);
- }
- }
- public void LoadKeySet()
- {
- string keyFile = null;
- string titleKeyFile = null;
- string consoleKeyFile = null;
- string home = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
- LoadSetAtPath(Path.Combine(home, ".switch"));
- LoadSetAtPath(Device.FileSystem.GetSystemPath());
- KeySet = ExternalKeys.ReadKeyFile(keyFile, titleKeyFile, consoleKeyFile);
- void LoadSetAtPath(string basePath)
- {
- string localKeyFile = Path.Combine(basePath, "prod.keys");
- string localTitleKeyFile = Path.Combine(basePath, "title.keys");
- string localConsoleKeyFile = Path.Combine(basePath, "console.keys");
- if (File.Exists(localKeyFile))
- {
- keyFile = localKeyFile;
- }
- if (File.Exists(localTitleKeyFile))
- {
- titleKeyFile = localTitleKeyFile;
- }
- if (File.Exists(localConsoleKeyFile))
- {
- consoleKeyFile = localConsoleKeyFile;
- }
- }
- }
- 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 (disposing)
- {
- //Force all threads to exit.
- lock (Processes)
- {
- foreach (KProcess process in Processes.Values)
- {
- process.StopAllThreads();
- }
- }
- //It's only safe to release resources once all threads
- //have exited.
- ThreadCounter.Signal();
- ThreadCounter.Wait();
- Scheduler.Dispose();
- TimeManager.Dispose();
- Device.Unload();
- }
- }
- }
- }
|