zoukankan      html  css  js  c++  java
  • Rva2Offset

          /// <summary>
          /// The PE format frequently uses the term RVA (Relative Virtual Address). An RVA is the address of an item
          /// <i>once loaded into memory</i>, with the base address of the image file subtracted from it (i.e., the offset from the
          /// base address where the file is loaded). The RVA of an item will almost always differ from its position within
          /// the file on disk. To compute the file position of an item with RVA <i>r</i>, search all the sections in the PE file to find
          /// the section with RVA s, length <i>l</i> and file position <i>p </i>in which the RVA lies, ie <i>s ≤ r < s+l</i>. The file position of
          /// the item is then given by <i>p+(r-s)</i>.
          /// <see cref="c042927_ISO_IEC_23271_2006(E).pdf"/>page 299 of 556.
          /// </summary>
          /// <param name="rva"></param>
          /// <returns></returns>
    -     public uint Rva2Offset(uint rva) {
            if (rva == 0)
              return 0;
    -       else {
    -         for (int i = 0; i < this.pe.SectionHeaders.Length; i++) {
                SectionHeader sh = this.pe.SectionHeaders[i];
                if ((sh.VirtualAddress <= rva) && (sh.VirtualAddress + sh.SizeOfRawData > rva))
                  return (sh.PointerToRawData + (rva - sh.VirtualAddress));
              }
            }
            throw new Exception("Invalid RVA address.");
          }
  • 相关阅读:
    子网掩码
    linux中grep工具
    C#尝试读取或写入受保护的内存。这通常指示其他内存已损坏。
    c#常用的Datable转换为json,以及json转换为DataTable操作方法
    easyui-从数据库读取创建无极菜单
    wpf 进度条 下拉
    进度条与执行过程
    属性表格 datagridproperty
    Jquery easyui开启行编辑模式增删改操作
    asp.net (jquery easy-ui datagrid)通用Excel文件导出(NPOI)
  • 原文地址:https://www.cnblogs.com/peanut/p/1083597.html
Copyright © 2011-2022 走看看