mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
166 lines
6.3 KiB
C#
166 lines
6.3 KiB
C#
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Threading;
|
|
|
|
namespace Dalamud.Game;
|
|
|
|
/// <summary>
|
|
/// A SigScanner facilitates searching for memory signatures in a given ProcessModule.
|
|
/// </summary>
|
|
public interface ISigScanner
|
|
{
|
|
/// <summary>
|
|
/// Gets a value indicating whether the search on this module is performed on a copy.
|
|
/// </summary>
|
|
public bool IsCopy { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether the ProcessModule is 32-bit.
|
|
/// </summary>
|
|
public bool Is32BitProcess { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the base address of the search area. When copied, this will be the address of the copy.
|
|
/// </summary>
|
|
public IntPtr SearchBase { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the base address of the .text section search area.
|
|
/// </summary>
|
|
public IntPtr TextSectionBase { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the offset of the .text section from the base of the module.
|
|
/// </summary>
|
|
public long TextSectionOffset { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the size of the text section.
|
|
/// </summary>
|
|
public int TextSectionSize { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the base address of the .data section search area.
|
|
/// </summary>
|
|
public IntPtr DataSectionBase { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the offset of the .data section from the base of the module.
|
|
/// </summary>
|
|
public long DataSectionOffset { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the size of the .data section.
|
|
/// </summary>
|
|
public int DataSectionSize { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the base address of the .rdata section search area.
|
|
/// </summary>
|
|
public IntPtr RDataSectionBase { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the offset of the .rdata section from the base of the module.
|
|
/// </summary>
|
|
public long RDataSectionOffset { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the size of the .rdata section.
|
|
/// </summary>
|
|
public int RDataSectionSize { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the ProcessModule on which the search is performed.
|
|
/// </summary>
|
|
public ProcessModule Module { get; }
|
|
|
|
/// <summary>
|
|
/// Scan for a .data address using a .text function.
|
|
/// This is intended to be used with IDA sigs.
|
|
/// Place your cursor on the line calling a static address, and create and IDA sig.
|
|
/// The signature and offset should not break through instruction boundaries.
|
|
/// </summary>
|
|
/// <param name="signature">The signature of the function using the data.</param>
|
|
/// <param name="offset">The offset from function start of the instruction using the data.</param>
|
|
/// <returns>An IntPtr to the static memory location.</returns>
|
|
public nint GetStaticAddressFromSig(string signature, int offset = 0);
|
|
|
|
/// <summary>
|
|
/// Try scanning for a .data address using a .text function.
|
|
/// This is intended to be used with IDA sigs.
|
|
/// Place your cursor on the line calling a static address, and create and IDA sig.
|
|
/// </summary>
|
|
/// <param name="signature">The signature of the function using the data.</param>
|
|
/// <param name="result">An IntPtr to the static memory location, if found.</param>
|
|
/// <param name="offset">The offset from function start of the instruction using the data.</param>
|
|
/// <returns>true if the signature was found.</returns>
|
|
public bool TryGetStaticAddressFromSig(string signature, out nint result, int offset = 0);
|
|
|
|
/// <summary>
|
|
/// Scan for a byte signature in the .data section.
|
|
/// </summary>
|
|
/// <param name="signature">The signature.</param>
|
|
/// <returns>The real offset of the found signature.</returns>
|
|
public nint ScanData(string signature);
|
|
|
|
/// <summary>
|
|
/// Try scanning for a byte signature in the .data section.
|
|
/// </summary>
|
|
/// <param name="signature">The signature.</param>
|
|
/// <param name="result">The real offset of the signature, if found.</param>
|
|
/// <returns>true if the signature was found.</returns>
|
|
public bool TryScanData(string signature, out nint result);
|
|
|
|
/// <summary>
|
|
/// Scan for a byte signature in the whole module search area.
|
|
/// </summary>
|
|
/// <param name="signature">The signature.</param>
|
|
/// <returns>The real offset of the found signature.</returns>
|
|
public nint ScanModule(string signature);
|
|
|
|
/// <summary>
|
|
/// Try scanning for a byte signature in the whole module search area.
|
|
/// </summary>
|
|
/// <param name="signature">The signature.</param>
|
|
/// <param name="result">The real offset of the signature, if found.</param>
|
|
/// <returns>true if the signature was found.</returns>
|
|
public bool TryScanModule(string signature, out nint result);
|
|
|
|
/// <summary>
|
|
/// Resolve a RVA address.
|
|
/// </summary>
|
|
/// <param name="nextInstAddr">The address of the next instruction.</param>
|
|
/// <param name="relOffset">The relative offset.</param>
|
|
/// <returns>The calculated offset.</returns>
|
|
public nint ResolveRelativeAddress(nint nextInstAddr, int relOffset);
|
|
|
|
/// <summary>
|
|
/// Scan for a byte signature in the .text section.
|
|
/// </summary>
|
|
/// <param name="signature">The signature.</param>
|
|
/// <returns>The real offset of the found signature.</returns>
|
|
public nint ScanText(string signature);
|
|
|
|
/// <summary>
|
|
/// Try scanning for a byte signature in the .text section.
|
|
/// </summary>
|
|
/// <param name="signature">The signature.</param>
|
|
/// <param name="result">The real offset of the signature, if found.</param>
|
|
/// <returns>true if the signature was found.</returns>
|
|
public bool TryScanText(string signature, out nint result);
|
|
|
|
/// <summary>
|
|
/// Scan for all matching byte signatures in the .text section.
|
|
/// </summary>
|
|
/// <param name="signature">The Signature.</param>
|
|
/// <returns>The list of real offsets of the found elements based on signature.</returns>
|
|
public nint[] ScanAllText(string signature);
|
|
|
|
/// <summary>
|
|
/// Scan for all matching byte signatures in the .text section.
|
|
/// </summary>
|
|
/// <param name="signature">The Signature.</param>
|
|
/// <param name="cancellationToken">Cancellation token.</param>
|
|
/// <returns>Enumerable yielding the real offsets of the found elements based on signature.</returns>
|
|
public IEnumerable<nint> ScanAllText(string signature, CancellationToken cancellationToken);
|
|
}
|