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、智能传感器预测农作物需水量将扩展到无人机和卫星3546
  2. 2、设计数据库时如何选择键和索引?2979
  3. 3、长城欧拉好猫9月25日开启预售10月上市起价10万?1336
  4. 4、捷尼赛思GV70豪华轿跑SUV官图发布外观有点东西1383
  5. 5、小米电动滑板车Pro2发布与奔驰AMG合作约售4000元4801
  6. 6、大数据工程师需要掌握哪些技术?有哪些基本工作要求?2270
  7. 7、PMP认证证书怎么看过期时间?PMP认证证书到期后可以隔段时间再续吗?382
  8. 8、大数据未来的发展趋势怎么样?1548
  9. 9、神州汽车租赁成被执行人!标的超22万元否认被收购630
  10. 10、TOGAF认证有用吗3077
全部评论(0)
我也有话说
0
收藏
点赞
顶部