linux – mmap内存保护的目的是什么PROT_NONE

前端之家收集整理的这篇文章主要介绍了linux – mmap内存保护的目的是什么PROT_NONE前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在阅读mmap的 documentation,并落在这条线上:

PROT_NONE Pages may not be accessed.

有没有用来将文件映射到内存,但是不能访问它?

解决方法

PROT_NONE可以用来实现 guard pages,微软有同样的概念( MSDN).

引用第一个链接

… allocation of additional inaccessible memory during memory allocation
operations is a technique for mitigating against exploitation of heap
buffer overflows. These guard pages are unmapped pages placed between
all memory allocations of one page or larger. The guard page causes a
segmentation fault upon any access.

因此在实现对诸如网络接口,虚拟机和解释器等领域的保护方面非常有用.示例用法pthread_attr_setguardsize,pthread_attr_getguardsize.

原文链接:https://www.f2er.com/linux/401276.html

猜你在找的Linux相关文章