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、选择PMP认证培训机构的方法有哪些?参加PMP认证考试题型有哪些?3336
  2. 2、华米手表不充电,更换电池芯解决故障3378
  3. 3、数据库类型有哪些?如何选择合适的数据库类型?5031
  4. 4、IT运维工作如何做的更好?4148
  5. 5、CISP认证和NISP认证哪个更好?4613
  6. 6、人工智能和机器学习入门的5种编程语言2985
  7. 7、“百万英里”电池来了?特斯拉9月22日宣布重大消息4149
  8. 8、新一代别克君威上市长轴距带来更大空间约19万元起1499
  9. 9、理想汽车将与英伟达、德赛西威合作难道要换“芯”了?381
  10. 10、如何判断网络安全重大事件?653
全部评论(0)
我也有话说
0
收藏
点赞
顶部