为什么数据段和堆栈段是可执行的?

发布于 2024-12-11 12:52:16 字数 462 浏览 0 评论 0原文

我刚刚注意到我的简单程序的数据和堆栈段是可执行的。 我在 /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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

記柔刀 2024-12-18 12:52:16

在现代 Linux 系统上,链接器将标记堆栈/数据不可执行IFF参与链接的所有对象都有一个特殊的“标记”部分.note.GNU-stack

如果你编译例如 int foo() { return 1; } 到汇编中(使用 gcc -S foo.c),您将看到以下内容:

    .section    .note.GNU-stack,"",@progbits

对于 nasm,语法如 手册第 8.9.2 节;您想要这样的东西:

 section .note.GNU-stack noalloc noexec nowrite progbits

注意

必须对进入可执行文件的每个 .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 (with gcc -S foo.c), you'll see this:

    .section    .note.GNU-stack,"",@progbits

For nasm, the syntax is shown in section 8.9.2 of the manual; you want something like this:

 section .note.GNU-stack noalloc noexec nowrite progbits

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文