diff --git a/src/BizHawk.BizInvoke/IMemoryBlockPal.cs b/src/BizHawk.BizInvoke/IMemoryBlockPal.cs index daebd225a0..d9a3354042 100644 --- a/src/BizHawk.BizInvoke/IMemoryBlockPal.cs +++ b/src/BizHawk.BizInvoke/IMemoryBlockPal.cs @@ -10,14 +10,14 @@ namespace BizHawk.BizInvoke /// /// Map in the memory area at the predetermined address /// - void PalActivate(); + void Activate(); /// /// Unmap the memory area /// - void PalDeactivate(); + void Deactivate(); /// /// Change protection on some addresses, guaranteed to be page aligned and in the memory area /// - void PalProtect(ulong start, ulong size, MemoryBlock.Protection prot); + void Protect(ulong start, ulong size, MemoryBlock.Protection prot); } } diff --git a/src/BizHawk.BizInvoke/MemoryBlock.cs b/src/BizHawk.BizInvoke/MemoryBlock.cs index 61be1c4eaa..fe7e907f8d 100644 --- a/src/BizHawk.BizInvoke/MemoryBlock.cs +++ b/src/BizHawk.BizInvoke/MemoryBlock.cs @@ -57,8 +57,13 @@ namespace BizHawk.BizInvoke /// get a start address for a page index within the block protected ulong GetStartAddr(int page) => ((ulong) page << WaterboxUtils.PageShift) + Start; - /// Get a stream that can be used to read or write from part of the block. Does not check for or change ! - /// or end (= + - 1) are outside [, ), the range of the block + /// + /// Get a stream that can be used to read or write from part of the block. Does not check for or change ! + /// + /// + /// or end (= + - 1) + /// are outside [, ), the range of the block + /// public Stream GetStream(ulong start, ulong length, bool writer) { if (start < Start) @@ -68,14 +73,23 @@ namespace BizHawk.BizInvoke return new MemoryViewStream(!writer, writer, (long) start, (long) length, this); } - /// get a stream that can be used to read or write from part of the block. both reads and writes will be XORed against an earlier recorded snapshot - /// or end (= + - 1) are outside [, ), the range of the block + /// + /// get a stream that can be used to read or write from part of the block. + /// both reads and writes will be XORed against an earlier recorded snapshot + /// + /// + /// or end (= + - 1) are outside + /// [, ), the range of the block + /// /// no snapshot taken (haven't called ) public Stream GetXorStream(ulong start, ulong length, bool writer) { - if (start < Start) throw new ArgumentOutOfRangeException(nameof(start), start, "invalid address"); - if (EndExclusive < start + length) throw new ArgumentOutOfRangeException(nameof(length), length, "requested length implies invalid end address"); - if (_snapshot == null) throw new InvalidOperationException("No snapshot taken!"); + if (start < Start) + throw new ArgumentOutOfRangeException(nameof(start), start, "invalid address"); + if (EndExclusive < start + length) + throw new ArgumentOutOfRangeException(nameof(length), length, "requested length implies invalid end address"); + if (_snapshot == null) + throw new InvalidOperationException("No snapshot taken!"); return new MemoryViewXorStream(!writer, writer, (long) start, (long) length, this, _snapshot, (long) (start - Start)); } @@ -85,29 +99,33 @@ namespace BizHawk.BizInvoke { if (Active) throw new InvalidOperationException("Already active"); - _pal.PalActivate(); + _pal.Activate(); ProtectAll(); Active = true; } /// deactivate the memory block, removing it from RAM but leaving it immediately available to swap back in - /// is or failed to unmap file view + /// + /// is or failed to unmap file view + /// public void Deactivate() { if (!Active) throw new InvalidOperationException("Not active"); - _pal.PalDeactivate(); + _pal.Deactivate(); Active = false; } /// take a hash of the current full contents of the block, including unreadable areas - /// is or failed to make memory read-only + /// + /// is or failed to make memory read-only + /// public byte[] FullHash() { if (!Active) throw new InvalidOperationException("Not active"); // temporarily switch the entire block to `R` - _pal.PalProtect(Start, Size, Protection.R); + _pal.Protect(Start, Size, Protection.R); var ret = WaterboxUtils.Hash(GetStream(Start, Size, false)); ProtectAll(); return ret; @@ -132,7 +150,7 @@ namespace BizHawk.BizInvoke var computedEnd = WaterboxUtils.AlignUp(start + length); var computedLength = computedEnd - computedStart; - _pal.PalProtect(computedStart, computedLength, prot); + _pal.Protect(computedStart, computedLength, prot); } } @@ -146,14 +164,16 @@ namespace BizHawk.BizInvoke { ulong zstart = GetStartAddr(ps); ulong zend = GetStartAddr(i + 1); - _pal.PalProtect(zstart, zend - zstart, _pageData[i]); + _pal.Protect(zstart, zend - zstart, _pageData[i]); ps = i + 1; } } } /// take a snapshot of the entire memory block's contents, for use in - /// snapshot already taken, is , or failed to make memory read-only + /// + /// snapshot already taken, is , or failed to make memory read-only + /// public void SaveXorSnapshot() { if (_snapshot != null) @@ -163,7 +183,7 @@ namespace BizHawk.BizInvoke // temporarily switch the entire block to `R`: in case some areas are unreadable, we don't want // that to complicate things - _pal.PalProtect(Start, Size, Protection.R); + _pal.Protect(Start, Size, Protection.R); _snapshot = new byte[Size]; var ds = new MemoryStream(_snapshot, true); @@ -236,8 +256,10 @@ namespace BizHawk.BizInvoke public override int Read(byte[] buffer, int offset, int count) { - if (!_readable) throw new InvalidOperationException(); - if (count < 0 || buffer.Length < count + offset) throw new ArgumentOutOfRangeException(); + if (!_readable) + throw new InvalidOperationException(); + if (count < 0 || buffer.Length < count + offset) + throw new ArgumentOutOfRangeException(); EnsureNotDisposed(); count = (int) Math.Min(count, _length - _pos); @@ -273,8 +295,10 @@ namespace BizHawk.BizInvoke public override void Write(byte[] buffer, int offset, int count) { - if (!_writable) throw new InvalidOperationException(); - if (count < 0 || _length - _pos < count || buffer.Length < count + offset) throw new ArgumentOutOfRangeException(); + if (!_writable) + throw new InvalidOperationException(); + if (count < 0 || _length - _pos < count || buffer.Length < count + offset) + throw new ArgumentOutOfRangeException(); EnsureNotDisposed(); Marshal.Copy(buffer, offset, Z.SS(_ptr + _pos), count); diff --git a/src/BizHawk.BizInvoke/MemoryBlockUnixPal.cs b/src/BizHawk.BizInvoke/MemoryBlockUnixPal.cs index 81cd7f2700..961b414ac8 100644 --- a/src/BizHawk.BizInvoke/MemoryBlockUnixPal.cs +++ b/src/BizHawk.BizInvoke/MemoryBlockUnixPal.cs @@ -44,21 +44,21 @@ namespace BizHawk.BizInvoke Dispose(); } - public void PalActivate() + public void Activate() { var ptr = mmap(Z.US(_start), Z.UU(_size), MemoryProtection.Read | MemoryProtection.Write | MemoryProtection.Execute, 16, _fd, IntPtr.Zero); if (ptr != Z.US(_start)) throw new InvalidOperationException($"{nameof(mmap)}() returned NULL or the wrong pointer"); } - public void PalDeactivate() + public void Deactivate() { var exitCode = munmap(Z.US(_start), Z.UU(_size)); if (exitCode != 0) throw new InvalidOperationException($"{nameof(munmap)}() returned {exitCode}"); } - public void PalProtect(ulong start, ulong size, Protection prot) + public void Protect(ulong start, ulong size, Protection prot) { var exitCode = mprotect( Z.US(start), diff --git a/src/BizHawk.BizInvoke/MemoryBlockWindowsPal.cs b/src/BizHawk.BizInvoke/MemoryBlockWindowsPal.cs index 894f98a76a..b08d9edd86 100644 --- a/src/BizHawk.BizInvoke/MemoryBlockWindowsPal.cs +++ b/src/BizHawk.BizInvoke/MemoryBlockWindowsPal.cs @@ -36,7 +36,7 @@ namespace BizHawk.BizInvoke } } - public void PalActivate() + public void Activate() { if (Kernel32.MapViewOfFileEx( _handle, @@ -51,13 +51,13 @@ namespace BizHawk.BizInvoke } } - public void PalDeactivate() + public void Deactivate() { if (!Kernel32.UnmapViewOfFile(Z.US(_start))) throw new InvalidOperationException($"{nameof(Kernel32.UnmapViewOfFile)}() returned NULL"); } - public void PalProtect(ulong start, ulong size, Protection prot) + public void Protect(ulong start, ulong size, Protection prot) { if (!Kernel32.VirtualProtect(Z.UU(start), Z.UU(size), GetKernelMemoryProtectionValue(prot), out var old)) throw new InvalidOperationException($"{nameof(Kernel32.VirtualProtect)}() returned FALSE!");