- 论坛徽章:
- 0
|
原帖由 kouu 于 2009-11-15 01:26 发表 ![]()
突然想到一个问题,mmap映射0地址能够映射成功吗?
在我的Ubuntu 9.04,Linux 2.6.28-12-generic上,mmap映射0地址是不能成功的。
至于exploit的代码在我的机器上能够成功执行,是因为exploit是由run.c编译 ...
呵呵,在linux 2.6.29.4的代码中找到了以下一些内容:
personality.h
- enum {
- ......
- PER_SVR4 = 0x0001 | STICKY_TIMEOUTS | MMAP_PAGE_ZERO,
- ......
- };
复制代码
binfmt_elf.c:load_elf_binary()
- ......
- if (current->personality & MMAP_PAGE_ZERO) {
- /* Why this, you ask??? Well SVr4 maps page 0 as read-only,
- and some applications "depend" upon this behavior.
- Since we do not have the power to recompile these, we
- emulate the SVr4 behavior. Sigh. */
- down_write(¤t->mm->mmap_sem);
- error = do_mmap(NULL, 0, PAGE_SIZE, PROT_READ | PROT_EXEC,
- MAP_FIXED | MAP_PRIVATE, 0);
- up_write(¤t->mm->mmap_sem);
- }
- ......
复制代码 |
|