为什么数据段和堆栈段是可执行的?
我刚刚注意到我的简单程序的数据和堆栈段是可执行的。 我在 /proc/[pid]/maps 中看到它,并且简单的代码证实了这一点。
例如:
; prog.asm
section .data
code: db 0xCC ;int3
section .text
global _start
_start:
jmp code
mov rax, 60 ; sys_exit
mov rdi, 0
syscall
then
nasm -f elf64 prog.asm
ld -o prog prog.o
./prog
导致 prog 执行 int3 指令。
用 C 编写并使用 gcc 构建的程序的数据、堆栈和堆不可执行,那么为什么用汇编语言编写的程序会有不同的行为呢?
I have just noticed that my simple program has its data and stack segments executable.
I saw it in /proc/[pid]/maps, and simple code confirmed it.
For example:
; prog.asm
section .data
code: db 0xCC ;int3
section .text
global _start
_start:
jmp code
mov rax, 60 ; sys_exit
mov rdi, 0
syscall
then
nasm -f elf64 prog.asm
ld -o prog prog.o
./prog
causes prog to execute int3 instruction.
Programs written in C and built with gcc have their data, stack and heap non-executable, so why those written in assembly behave in a different manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在现代 Linux 系统上,链接器将标记堆栈/数据不可执行IFF参与链接的所有对象都有一个特殊的“标记”部分
.note.GNU-stack
。如果你编译例如
int foo() { return 1; }
到汇编中(使用gcc -S foo.c
),您将看到以下内容:对于
nasm
,语法如 手册第 8.9.2 节;您想要这样的东西:注意
必须对进入可执行文件的每个
.o
文件执行此操作。如果任何目标文件需要可执行堆栈或数据,则为整个段设置它。On modern Linux systems, the linker will mark stack/data non-executable IFF all objects that participate in the link have a special "marker" section
.note.GNU-stack
.If you compile e.g.
int foo() { return 1; }
into assembly (withgcc -S foo.c
), you'll see this:For
nasm
, the syntax is shown in section 8.9.2 of the manual; you want something like this:Note
This has to be done for every
.o
file that goes into the executable. If any object file needs executable stack or data, then it's set for the entire segment.