public static async Task <DelayedImports> GetAsync(PortableExecutableImage image) { var directory = await DelayedImportDirectory.GetAsync(image).ConfigureAwait(false); if (directory == null) { return(null); } var ilt = await DelayedImportAddressTables.GetLookupTableAsync(image, directory).ConfigureAwait(false); if (ilt == null) { return(null); } var hnt = await DelayedImportHintNameTable.GetAsync(image, directory).ConfigureAwait(false); if (hnt == null) { return(null); } return(await GetAsync(image, ilt, hnt).ConfigureAwait(false)); }
public static async Task <DelayedImportHintNameTable> GetAsync(PortableExecutableImage image, DelayedImportDirectory directory = null) { if (directory == null) { directory = await DelayedImportDirectory.GetAsync(image).ConfigureAwait(false); } var entries = new Dictionary <uint, Tuple <ulong, uint, ushort, string, bool> >(); var ilt = await DelayedImportAddressTables.GetLookupTableAsync(image, directory).ConfigureAwait(false); var calc = image.GetCalculator(); var stream = image.GetStream(); foreach (var table in ilt) { foreach (var entry in table) { if (entry.Address == 0) { continue; } if (entries.ContainsKey(entry.Address)) { continue; } if (!entry.IsOrdinal) { var offset = calc.RVAToOffset(entry.Address); var size = 0u; var isPadded = false; ushort hint = 0; var name = new StringBuilder(256); stream.Seek(offset.ToInt64(), SeekOrigin.Begin); hint = await stream.ReadUInt16Async().ConfigureAwait(false); size += sizeof(ushort); while (true) { var b = await stream.ReadByteAsync().ConfigureAwait(false); size++; if (b <= 0) { break; } name.Append((char)b); } if (size % 2 != 0) { isPadded = true; size++; } var tuple = new Tuple <ulong, uint, ushort, string, bool>(offset, size, hint, name.ToString(), isPadded); entries.Add(entry.Address, tuple); } } } Location location; if (entries.Count > 0) { var firstEntry = entries.Values.MinBy(tuple => tuple.Item1); var lastEntry = entries.Values.MaxBy(tuple => tuple.Item1); var tableOffset = firstEntry.Item1; var tableSize = ((lastEntry.Item1 + lastEntry.Item2) - tableOffset).ToUInt32(); var tableRVA = calc.OffsetToRVA(tableOffset); var tableVA = image.NTHeaders.OptionalHeader.ImageBase + tableRVA; var tableSection = calc.RVAToSection(tableRVA); location = new Location(image, tableOffset, tableRVA, tableVA, tableSize, tableSize, tableSection); } else { location = new Location(image, 0, 0, 0, 0, 0, null); } var result = new DelayedImportHintNameTable(image, directory.DataDirectory, location, entries.Values.ToArray()); return(result); }