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、《十二战纪》塑造全新吕布形象4062
  2. 2、《萌娘契约》影萌大陆次元崛起二测福利全降临!3081
  3. 3、《楚乔传之谍纸天眼》原画首爆黑化燕洵疑是流出4914
  4. 4、十八个月后3D换装为何仍是一枝独秀465
  5. 5、《刀锋无双》2.1版本带你轻松破敌公会战可自动战斗1427
  6. 6、《希尔兰斯战记》借势ACG超爬梯开跑游戏内容大曝光4359
  7. 7、心愿达成!《熹妃Q传》人气美男子加入随从350
  8. 8、《那兔》仰望天空玩家赠属于亲们的种花星322
  9. 9、《雷霆海战》黎塞留号战列舰强势来袭打破一切舰艇2373
  10. 10、勒索病毒风靡全球《鬼剑豪》杀毒义不容辞484
全部评论(0)
我也有话说
0
收藏
点赞
顶部