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、网络电影迎来“开门红”,2021“狄仁杰”依旧很忙|网络电影1月备案2172
  2. 2、高云翔案件新进展,女方被曝不孕愿意五千万和解1822
  3. 3、还珠格格:同样是含香献舞,老版满脸无奈,新版是着急当妃子吗?5010
  4. 4、国内首部“反奴剧”开机《孩奴》呼吁孩子减负1478
  5. 5、杨紫赵丽颖:我在拍哭戏,baby:我也是拍哭戏3227
  6. 6、行走的子宫,这部末世神剧回归!!!4317
  7. 7、《幸福向前走》着眼中年情感冯远征遭命运危机4156
  8. 8、吴京新电影《长津湖》今年上映,超强演员阵容能否超越《战狼2》2002
  9. 9、影市观察:《苏丹》,印度电影的票房神话就此终结?3616
  10. 10、《悬崖之上》凭借高口碑实现逆袭,单日票房超《你的婚礼》!4835
全部评论(0)
我也有话说
0
收藏
点赞
顶部