Linux下获取虚拟地址对应的物理地址的方式

* /proc/     pi   d/pagemap. This file lets a use     rs   pace process find out which

physical f     ram   e each virtual page is mapped to. It cont     ai   ns one 64-bit

value for each virtual page, containing the following data (f     rom  

fs/proc/task_mmu.c, above pagemap_read):

* Bits 0-54 page frame number (PFN) if present

* Bits 0-4 swap type if swapped

* Bits 5-54 swap offset if swapped

* Bit 55 p     te   is soft-dirty (see Documenta     ti   on/vm/soft-dirty.txt)

* Bits 56-60 zero

* Bit 61 page is file-page or shared-anon

* Bit 62 page swapped

* Bit 63 page present

If the page is not present but in swap, then the PFN contains an

encoding of the swap file number and the page‘s offset into the

swap. Unmapped pages return a null PFN. This allows deter     mi   ning

precisely which pages are mapped (or in swap) and comparing mapped

pages between processes.

接下来,我们根据上述描述,给出获取虚拟地址对应的物理地址的代码

#include 《stdio.h》

#include 《stdint.h》

#include 《sys/types.h》

#include 《sys/stat.h》

#include 《fcntl.h》

#include 《unistd.h》

#define page_map_file “/proc/self/pagemap”

#define PFN_MASK ((((uint64_t)1)《《55)-1)

#define PFN_PRESENT_FLAG (((uint64_t)1)《《63)

int mem_addr_vir2phy(unsigned long vir, unsigned long *phy)

{

int fd;

int page_size=getpagesize();

unsigned long vir_page_idx = vir/page_size;

unsigned long pfn_item_offset = vir_page_idx*sizeof(uint64_t);

uint64_t pfn_item;

fd = open(page_map_file, O_RDONLY);

if (fd《0)

{

printf(“open %s failed”, page_map_file);

return -1;

}

if ((off_t)-1 == lseek(fd, pfn_item_offset, SEEK_SET))

{

printf(“lseek %s failed”, page_map_file);

return -1;

}

if (sizeof(uint64_t) != read(fd, &pfn_item, sizeof(uint64_t)))

{

printf(“read %s failed”, page_map_file);

return -1;

}

if (0==(pfn_item & PFN_PRESENT_FLAG))

{

printf(“page is not present”);

return -1;

}

*phy = (pfn_item & PFN_MASK)*page_size + vir % page_size;

return 0;

}

如果担心vir地址对应的页面不在内存中,可以在调用mem_addr_vir2phy之前,先访问一下此地址。

例如, int a=*(int *)(void *)vir;

如果担心     Linux   的swap功能将进程的页面交换到硬盘上从而导致页面的物理地址变化,可以关闭swap功能。

下面两个C库函数可以阻止Linux将当前进程的部分或全部页面交换到硬盘上。

int mlock(const void *addr, size_t len);

int mlockall(int flags);

Linux下获取虚拟地址对应的物理地址的方式_设计制作_电源/新能源
9
90
0
14

相关资讯

  1. 1、《大唐荣耀》手游双人坐骑登场十一狂欢预热中4569
  2. 2、《街机雷电2015HD》画面欣赏经典与现代的完美结合2563
  3. 3、《悬空城》热玩进行时B站up联名推荐2285
  4. 4、权迎升出任《中国惊奇先生》手游大师团团长1038
  5. 5、《九阴真经3D》新资料片上线在即侠客系统首曝1328
  6. 6、要做海贼王的男人《美杜莎》七海王辛巴达扬帆起航4119
  7. 7、中国惊奇先生手游装备好坏怎么区别怎么鉴别装备1594
  8. 8、GAI+冯提莫+双笙《中国惊奇先生》主题曲邀约开始2409
  9. 9、《神域大乱斗》首测圆满结束全民约战神域之巅2103
  10. 10、《全民奇迹MU》领取提示再升级资源奖励不错过3072
全部评论(0)
我也有话说
0
收藏
点赞
顶部