是否有任何内核 API 来查找 VMA 对应的虚拟地址?
示例:如果地址为 0x13000,我需要如下所示的一些功能
struct vm_area_struct *vma = vma_corresponds_to (0x13000,task);
是否有任何内核 API 来查找 VMA 对应的虚拟地址?
示例:如果地址为 0x13000,我需要如下所示的一些功能
struct vm_area_struct *vma = vma_corresponds_to (0x13000,task);
您正在寻找find_vma
.linux/mm.h
/* Look up the first VMA which satisfies addr < vm_end, NULL if none. */
extern struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long addr);
这应该可以解决问题:
struct vm_area_struct *vma = find_vma(task->mm, 0x13000);
if (vma == NULL)
return -EFAULT;
if (0x13000 >= vma->vm_end)
return -EFAULT;
从 v5.14-rc1 开始,有一个新的 APIlinux/mm.h
被调用vma_lookup()
现在可以将代码简化为以下内容:
struct vm_area_struct *vma = vma_lookup(task->mm, 0x13000);
if (!vma)
return -EFAULT;