| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699 |
- using ARMeilleure.Memory;
- using Ryujinx.Cpu.Tracking;
- using Ryujinx.Memory;
- using Ryujinx.Memory.Range;
- using Ryujinx.Memory.Tracking;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Threading;
- namespace Ryujinx.Cpu
- {
- /// <summary>
- /// Represents a CPU memory manager which maps guest virtual memory directly onto a host virtual region.
- /// </summary>
- public class MemoryManagerHostMapped : MemoryManagerBase, IMemoryManager, IVirtualMemoryManagerTracked
- {
- public const int PageBits = 12;
- public const int PageSize = 1 << PageBits;
- public const int PageMask = PageSize - 1;
- public const int PageToPteShift = 5; // 32 pages (2 bits each) in one ulong page table entry.
- public const ulong BlockMappedMask = 0x5555555555555555; // First bit of each table entry set.
- private enum HostMappedPtBits : ulong
- {
- Unmapped = 0,
- Mapped,
- WriteTracked,
- ReadWriteTracked,
- MappedReplicated = 0x5555555555555555,
- WriteTrackedReplicated = 0xaaaaaaaaaaaaaaaa,
- ReadWriteTrackedReplicated = ulong.MaxValue
- }
- private readonly InvalidAccessHandler _invalidAccessHandler;
- private readonly bool _unsafeMode;
- private readonly MemoryBlock _addressSpace;
- private readonly MemoryBlock _addressSpaceMirror;
- private readonly ulong _addressSpaceSize;
- private readonly MemoryEhMeilleure _memoryEh;
- private ulong[] _pageTable;
- public int AddressSpaceBits { get; }
- public IntPtr PageTablePointer => _addressSpace.Pointer;
- public MemoryManagerType Type => _unsafeMode ? MemoryManagerType.HostMappedUnsafe : MemoryManagerType.HostMapped;
- public MemoryTracking Tracking { get; }
- public event Action<ulong, ulong> UnmapEvent;
- /// <summary>
- /// Creates a new instance of the host mapped memory manager.
- /// </summary>
- /// <param name="addressSpaceSize">Size of the address space</param>
- /// <param name="unsafeMode">True if unmanaged access should not be masked (unsafe), false otherwise.</param>
- /// <param name="invalidAccessHandler">Optional function to handle invalid memory accesses</param>
- public MemoryManagerHostMapped(ulong addressSpaceSize, bool unsafeMode, InvalidAccessHandler invalidAccessHandler = null)
- {
- _invalidAccessHandler = invalidAccessHandler;
- _unsafeMode = unsafeMode;
- _addressSpaceSize = addressSpaceSize;
- ulong asSize = PageSize;
- int asBits = PageBits;
- while (asSize < addressSpaceSize)
- {
- asSize <<= 1;
- asBits++;
- }
- AddressSpaceBits = asBits;
- _pageTable = new ulong[1 << (AddressSpaceBits - (PageBits + PageToPteShift))];
- _addressSpace = new MemoryBlock(asSize, MemoryAllocationFlags.Reserve | MemoryAllocationFlags.Mirrorable);
- _addressSpaceMirror = _addressSpace.CreateMirror();
- Tracking = new MemoryTracking(this, PageSize, invalidAccessHandler);
- _memoryEh = new MemoryEhMeilleure(_addressSpace, Tracking);
- }
- /// <summary>
- /// Checks if the virtual address is part of the addressable space.
- /// </summary>
- /// <param name="va">Virtual address</param>
- /// <returns>True if the virtual address is part of the addressable space</returns>
- private bool ValidateAddress(ulong va)
- {
- return va < _addressSpaceSize;
- }
- /// <summary>
- /// Checks if the combination of virtual address and size is part of the addressable space.
- /// </summary>
- /// <param name="va">Virtual address of the range</param>
- /// <param name="size">Size of the range in bytes</param>
- /// <returns>True if the combination of virtual address and size is part of the addressable space</returns>
- private bool ValidateAddressAndSize(ulong va, ulong size)
- {
- ulong endVa = va + size;
- return endVa >= va && endVa >= size && endVa <= _addressSpaceSize;
- }
- /// <summary>
- /// Ensures the combination of virtual address and size is part of the addressable space.
- /// </summary>
- /// <param name="va">Virtual address of the range</param>
- /// <param name="size">Size of the range in bytes</param>
- /// <exception cref="InvalidMemoryRegionException">Throw when the memory region specified outside the addressable space</exception>
- private void AssertValidAddressAndSize(ulong va, ulong size)
- {
- if (!ValidateAddressAndSize(va, size))
- {
- throw new InvalidMemoryRegionException($"va=0x{va:X16}, size=0x{size:X16}");
- }
- }
- /// <summary>
- /// Ensures the combination of virtual address and size is part of the addressable space and fully mapped.
- /// </summary>
- /// <param name="va">Virtual address of the range</param>
- /// <param name="size">Size of the range in bytes</param>
- private void AssertMapped(ulong va, ulong size)
- {
- if (!ValidateAddressAndSize(va, size) || !IsRangeMappedImpl(va, size))
- {
- throw new InvalidMemoryRegionException($"Not mapped: va=0x{va:X16}, size=0x{size:X16}");
- }
- }
- /// <inheritdoc/>
- public void Map(ulong va, nuint hostAddress, ulong size)
- {
- AssertValidAddressAndSize(va, size);
- _addressSpace.Commit(va, size);
- AddMapping(va, size);
- Tracking.Map(va, size);
- }
- /// <inheritdoc/>
- public void Unmap(ulong va, ulong size)
- {
- AssertValidAddressAndSize(va, size);
- UnmapEvent?.Invoke(va, size);
- Tracking.Unmap(va, size);
- RemoveMapping(va, size);
- _addressSpace.Decommit(va, size);
- }
- /// <inheritdoc/>
- public T Read<T>(ulong va) where T : unmanaged
- {
- try
- {
- AssertMapped(va, (ulong)Unsafe.SizeOf<T>());
- return _addressSpaceMirror.Read<T>(va);
- }
- catch (InvalidMemoryRegionException)
- {
- if (_invalidAccessHandler == null || !_invalidAccessHandler(va))
- {
- throw;
- }
- return default;
- }
- }
- /// <inheritdoc/>
- public T ReadTracked<T>(ulong va) where T : unmanaged
- {
- try
- {
- SignalMemoryTracking(va, (ulong)Unsafe.SizeOf<T>(), false);
- return Read<T>(va);
- }
- catch (InvalidMemoryRegionException)
- {
- if (_invalidAccessHandler == null || !_invalidAccessHandler(va))
- {
- throw;
- }
- return default;
- }
- }
- /// <inheritdoc/>
- public void Read(ulong va, Span<byte> data)
- {
- try
- {
- AssertMapped(va, (ulong)data.Length);
- _addressSpaceMirror.Read(va, data);
- }
- catch (InvalidMemoryRegionException)
- {
- if (_invalidAccessHandler == null || !_invalidAccessHandler(va))
- {
- throw;
- }
- }
- }
- /// <inheritdoc/>
- public void Write<T>(ulong va, T value) where T : unmanaged
- {
- try
- {
- SignalMemoryTracking(va, (ulong)Unsafe.SizeOf<T>(), write: true);
- _addressSpaceMirror.Write(va, value);
- }
- catch (InvalidMemoryRegionException)
- {
- if (_invalidAccessHandler == null || !_invalidAccessHandler(va))
- {
- throw;
- }
- }
- }
- /// <inheritdoc/>
- public void Write(ulong va, ReadOnlySpan<byte> data)
- {
- try {
- SignalMemoryTracking(va, (ulong)data.Length, write: true);
- _addressSpaceMirror.Write(va, data);
- }
- catch (InvalidMemoryRegionException)
- {
- if (_invalidAccessHandler == null || !_invalidAccessHandler(va))
- {
- throw;
- }
- }
- }
- /// <inheritdoc/>
- public void WriteUntracked(ulong va, ReadOnlySpan<byte> data)
- {
- try
- {
- AssertMapped(va, (ulong)data.Length);
- _addressSpaceMirror.Write(va, data);
- }
- catch (InvalidMemoryRegionException)
- {
- if (_invalidAccessHandler == null || !_invalidAccessHandler(va))
- {
- throw;
- }
- }
- }
- /// <inheritdoc/>
- public ReadOnlySpan<byte> GetSpan(ulong va, int size, bool tracked = false)
- {
- if (tracked)
- {
- SignalMemoryTracking(va, (ulong)size, write: false);
- }
- else
- {
- AssertMapped(va, (ulong)size);
- }
- return _addressSpaceMirror.GetSpan(va, size);
- }
- /// <inheritdoc/>
- public WritableRegion GetWritableRegion(ulong va, int size, bool tracked = false)
- {
- if (tracked)
- {
- SignalMemoryTracking(va, (ulong)size, true);
- }
- else
- {
- AssertMapped(va, (ulong)size);
- }
- return _addressSpaceMirror.GetWritableRegion(va, size);
- }
- /// <inheritdoc/>
- public ref T GetRef<T>(ulong va) where T : unmanaged
- {
- SignalMemoryTracking(va, (ulong)Unsafe.SizeOf<T>(), true);
- return ref _addressSpaceMirror.GetRef<T>(va);
- }
- /// <inheritdoc/>
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- public bool IsMapped(ulong va)
- {
- return ValidateAddress(va) && IsMappedImpl(va);
- }
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- private bool IsMappedImpl(ulong va)
- {
- ulong page = va >> PageBits;
- int bit = (int)((page & 31) << 1);
- int pageIndex = (int)(page >> PageToPteShift);
- ref ulong pageRef = ref _pageTable[pageIndex];
- ulong pte = Volatile.Read(ref pageRef);
- return ((pte >> bit) & 3) != 0;
- }
- /// <inheritdoc/>
- public bool IsRangeMapped(ulong va, ulong size)
- {
- AssertValidAddressAndSize(va, size);
- return IsRangeMappedImpl(va, size);
- }
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- private void GetPageBlockRange(ulong pageStart, ulong pageEnd, out ulong startMask, out ulong endMask, out int pageIndex, out int pageEndIndex)
- {
- startMask = ulong.MaxValue << ((int)(pageStart & 31) << 1);
- endMask = ulong.MaxValue >> (64 - ((int)(pageEnd & 31) << 1));
- pageIndex = (int)(pageStart >> PageToPteShift);
- pageEndIndex = (int)((pageEnd - 1) >> PageToPteShift);
- }
- private bool IsRangeMappedImpl(ulong va, ulong size)
- {
- int pages = GetPagesCount(va, size, out _);
- if (pages == 1)
- {
- return IsMappedImpl(va);
- }
- ulong pageStart = va >> PageBits;
- ulong pageEnd = pageStart + (ulong)pages;
- GetPageBlockRange(pageStart, pageEnd, out ulong startMask, out ulong endMask, out int pageIndex, out int pageEndIndex);
- // Check if either bit in each 2 bit page entry is set.
- // OR the block with itself shifted down by 1, and check the first bit of each entry.
- ulong mask = BlockMappedMask & startMask;
- while (pageIndex <= pageEndIndex)
- {
- if (pageIndex == pageEndIndex)
- {
- mask &= endMask;
- }
- ref ulong pageRef = ref _pageTable[pageIndex++];
- ulong pte = Volatile.Read(ref pageRef);
- pte |= pte >> 1;
- if ((pte & mask) != mask)
- {
- return false;
- }
- mask = BlockMappedMask;
- }
- return true;
- }
- /// <inheritdoc/>
- public IEnumerable<HostMemoryRange> GetPhysicalRegions(ulong va, ulong size)
- {
- if (size == 0)
- {
- return Enumerable.Empty<HostMemoryRange>();
- }
- AssertMapped(va, size);
- return new HostMemoryRange[] { new HostMemoryRange(_addressSpaceMirror.GetPointer(va, size), size) };
- }
- /// <inheritdoc/>
- /// <remarks>
- /// This function also validates that the given range is both valid and mapped, and will throw if it is not.
- /// </remarks>
- public void SignalMemoryTracking(ulong va, ulong size, bool write)
- {
- AssertValidAddressAndSize(va, size);
- // Software table, used for managed memory tracking.
- int pages = GetPagesCount(va, size, out _);
- ulong pageStart = va >> PageBits;
- if (pages == 1)
- {
- ulong tag = (ulong)(write ? HostMappedPtBits.WriteTracked : HostMappedPtBits.ReadWriteTracked);
- int bit = (int)((pageStart & 31) << 1);
- int pageIndex = (int)(pageStart >> PageToPteShift);
- ref ulong pageRef = ref _pageTable[pageIndex];
- ulong pte = Volatile.Read(ref pageRef);
- ulong state = ((pte >> bit) & 3);
- if (state >= tag)
- {
- Tracking.VirtualMemoryEvent(va, size, write);
- return;
- }
- else if (state == 0)
- {
- ThrowInvalidMemoryRegionException($"Not mapped: va=0x{va:X16}, size=0x{size:X16}");
- }
- }
- else
- {
- ulong pageEnd = pageStart + (ulong)pages;
- GetPageBlockRange(pageStart, pageEnd, out ulong startMask, out ulong endMask, out int pageIndex, out int pageEndIndex);
- ulong mask = startMask;
- ulong anyTrackingTag = (ulong)HostMappedPtBits.WriteTrackedReplicated;
- while (pageIndex <= pageEndIndex)
- {
- if (pageIndex == pageEndIndex)
- {
- mask &= endMask;
- }
- ref ulong pageRef = ref _pageTable[pageIndex++];
- ulong pte = Volatile.Read(ref pageRef);
- ulong mappedMask = mask & BlockMappedMask;
- ulong mappedPte = pte | (pte >> 1);
- if ((mappedPte & mappedMask) != mappedMask)
- {
- ThrowInvalidMemoryRegionException($"Not mapped: va=0x{va:X16}, size=0x{size:X16}");
- }
- pte &= mask;
- if ((pte & anyTrackingTag) != 0) // Search for any tracking.
- {
- // Writes trigger any tracking.
- // Only trigger tracking from reads if both bits are set on any page.
- if (write || (pte & (pte >> 1) & BlockMappedMask) != 0)
- {
- Tracking.VirtualMemoryEvent(va, size, write);
- break;
- }
- }
- mask = ulong.MaxValue;
- }
- }
- }
- /// <summary>
- /// Computes the number of pages in a virtual address range.
- /// </summary>
- /// <param name="va">Virtual address of the range</param>
- /// <param name="size">Size of the range</param>
- /// <param name="startVa">The virtual address of the beginning of the first page</param>
- /// <remarks>This function does not differentiate between allocated and unallocated pages.</remarks>
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- private int GetPagesCount(ulong va, ulong size, out ulong startVa)
- {
- // WARNING: Always check if ulong does not overflow during the operations.
- startVa = va & ~(ulong)PageMask;
- ulong vaSpan = (va - startVa + size + PageMask) & ~(ulong)PageMask;
- return (int)(vaSpan / PageSize);
- }
- /// <inheritdoc/>
- public void TrackingReprotect(ulong va, ulong size, MemoryPermission protection)
- {
- // Protection is inverted on software pages, since the default value is 0.
- protection = (~protection) & MemoryPermission.ReadAndWrite;
- int pages = GetPagesCount(va, size, out va);
- ulong pageStart = va >> PageBits;
- if (pages == 1)
- {
- ulong protTag = protection switch
- {
- MemoryPermission.None => (ulong)HostMappedPtBits.Mapped,
- MemoryPermission.Write => (ulong)HostMappedPtBits.WriteTracked,
- _ => (ulong)HostMappedPtBits.ReadWriteTracked,
- };
- int bit = (int)((pageStart & 31) << 1);
- ulong tagMask = 3UL << bit;
- ulong invTagMask = ~tagMask;
- ulong tag = protTag << bit;
- int pageIndex = (int)(pageStart >> PageToPteShift);
- ref ulong pageRef = ref _pageTable[pageIndex];
- ulong pte;
- do
- {
- pte = Volatile.Read(ref pageRef);
- }
- while ((pte & tagMask) != 0 && Interlocked.CompareExchange(ref pageRef, (pte & invTagMask) | tag, pte) != pte);
- }
- else
- {
- ulong pageEnd = pageStart + (ulong)pages;
- GetPageBlockRange(pageStart, pageEnd, out ulong startMask, out ulong endMask, out int pageIndex, out int pageEndIndex);
- ulong mask = startMask;
- ulong protTag = protection switch
- {
- MemoryPermission.None => (ulong)HostMappedPtBits.MappedReplicated,
- MemoryPermission.Write => (ulong)HostMappedPtBits.WriteTrackedReplicated,
- _ => (ulong)HostMappedPtBits.ReadWriteTrackedReplicated,
- };
- while (pageIndex <= pageEndIndex)
- {
- if (pageIndex == pageEndIndex)
- {
- mask &= endMask;
- }
- ref ulong pageRef = ref _pageTable[pageIndex++];
- ulong pte;
- ulong mappedMask;
- // Change the protection of all 2 bit entries that are mapped.
- do
- {
- pte = Volatile.Read(ref pageRef);
- mappedMask = pte | (pte >> 1);
- mappedMask |= (mappedMask & BlockMappedMask) << 1;
- mappedMask &= mask; // Only update mapped pages within the given range.
- }
- while (Interlocked.CompareExchange(ref pageRef, (pte & (~mappedMask)) | (protTag & mappedMask), pte) != pte);
- mask = ulong.MaxValue;
- }
- }
- protection = protection switch
- {
- MemoryPermission.None => MemoryPermission.ReadAndWrite,
- MemoryPermission.Write => MemoryPermission.Read,
- _ => MemoryPermission.None
- };
- _addressSpace.Reprotect(va, size, protection, false);
- }
- /// <inheritdoc/>
- public CpuRegionHandle BeginTracking(ulong address, ulong size)
- {
- return new CpuRegionHandle(Tracking.BeginTracking(address, size));
- }
- /// <inheritdoc/>
- public CpuMultiRegionHandle BeginGranularTracking(ulong address, ulong size, IEnumerable<IRegionHandle> handles, ulong granularity)
- {
- return new CpuMultiRegionHandle(Tracking.BeginGranularTracking(address, size, handles, granularity));
- }
- /// <inheritdoc/>
- public CpuSmartMultiRegionHandle BeginSmartGranularTracking(ulong address, ulong size, ulong granularity)
- {
- return new CpuSmartMultiRegionHandle(Tracking.BeginSmartGranularTracking(address, size, granularity));
- }
- /// <summary>
- /// Adds the given address mapping to the page table.
- /// </summary>
- /// <param name="va">Virtual memory address</param>
- /// <param name="size">Size to be mapped</param>
- private void AddMapping(ulong va, ulong size)
- {
- int pages = GetPagesCount(va, size, out _);
- ulong pageStart = va >> PageBits;
- ulong pageEnd = pageStart + (ulong)pages;
- GetPageBlockRange(pageStart, pageEnd, out ulong startMask, out ulong endMask, out int pageIndex, out int pageEndIndex);
- ulong mask = startMask;
- while (pageIndex <= pageEndIndex)
- {
- if (pageIndex == pageEndIndex)
- {
- mask &= endMask;
- }
- ref ulong pageRef = ref _pageTable[pageIndex++];
- ulong pte;
- ulong mappedMask;
- // Map all 2-bit entries that are unmapped.
- do
- {
- pte = Volatile.Read(ref pageRef);
- mappedMask = pte | (pte >> 1);
- mappedMask |= (mappedMask & BlockMappedMask) << 1;
- mappedMask |= ~mask; // Treat everything outside the range as mapped, thus unchanged.
- }
- while (Interlocked.CompareExchange(ref pageRef, (pte & mappedMask) | (BlockMappedMask & (~mappedMask)), pte) != pte);
- mask = ulong.MaxValue;
- }
- }
- /// <summary>
- /// Removes the given address mapping from the page table.
- /// </summary>
- /// <param name="va">Virtual memory address</param>
- /// <param name="size">Size to be unmapped</param>
- private void RemoveMapping(ulong va, ulong size)
- {
- int pages = GetPagesCount(va, size, out _);
- ulong pageStart = va >> PageBits;
- ulong pageEnd = pageStart + (ulong)pages;
- GetPageBlockRange(pageStart, pageEnd, out ulong startMask, out ulong endMask, out int pageIndex, out int pageEndIndex);
- startMask = ~startMask;
- endMask = ~endMask;
- ulong mask = startMask;
- while (pageIndex <= pageEndIndex)
- {
- if (pageIndex == pageEndIndex)
- {
- mask |= endMask;
- }
- ref ulong pageRef = ref _pageTable[pageIndex++];
- ulong pte;
- do
- {
- pte = Volatile.Read(ref pageRef);
- }
- while (Interlocked.CompareExchange(ref pageRef, pte & mask, pte) != pte);
- mask = 0;
- }
- }
- /// <summary>
- /// Disposes of resources used by the memory manager.
- /// </summary>
- protected override void Destroy()
- {
- _addressSpaceMirror.Dispose();
- _addressSpace.Dispose();
- _memoryEh.Dispose();
- }
- private void ThrowInvalidMemoryRegionException(string message) => throw new InvalidMemoryRegionException(message);
- }
- }
|