x86_64 Linux 中内联 asm 的系统调用?

发布于 2024-07-29 19:37:03 字数 233 浏览 6 评论 0原文

为什么这会打印垃圾而不是优雅地退出我的程序? 我在 BSD 上以这种方式使用系统调用,我想知道需要什么才能使其在 Linux 上工作。

int
main(int argc, char **argv)
{
    __asm ("movq $1,%rax; movq $0,%rdi; syscall"); /* exit(0) ? */
    return 0;
}

谢谢。

Why does this print garbage instead of exiting my program gracefully? I use system calls this way on BSD, and I wonder what would I need to make it work in Linux.

int
main(int argc, char **argv)
{
    __asm ("movq $1,%rax; movq $0,%rdi; syscall"); /* exit(0) ? */
    return 0;
}

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

葮薆情 2024-08-05 19:37:04

我相信 Syscall 1 在 i386 上退出,但在 x86-64 上写入。

编辑:这似乎不准确:
根据网络,似乎没有太多关于 x86-64 Linux 程序集的信息,这似乎是系统调用指令之前的预期寄存器设置。

 rax  system call number
 rbx  arg0
 rcx  return address from syscall
 rdx  arg2
 rsi  arg3
 rdi  arg4
 r8   arg5
 r9   arg1    (expected by gcc in %rcx)
 r10-r15  should be saved/restored by C code
 rbp  dito What is dito??

Syscall 1 is exit on i386 but write on x86-64 I believe.

EDIT: this seems inaccurate:
According to the web, which does not seem to have too much information about x86-64 Linux assembly this seems to be the expected register setup before the syscall instruction.

 rax  system call number
 rbx  arg0
 rcx  return address from syscall
 rdx  arg2
 rsi  arg3
 rdi  arg4
 r8   arg5
 r9   arg1    (expected by gcc in %rcx)
 r10-r15  should be saved/restored by C code
 rbp  dito What is dito??
新一帅帅 2024-08-05 19:37:03

为什么这会打印垃圾而不是优雅地退出我的程序?

根据 CESA-2009-001,“Syscall 1 在 i386 上退出,但是在 x86_64 上写入”。

我需要什么才能让它在 Linux 上工作

使用当前 unistd_64.h

希望这有帮助!

Why does this print garbage instead of exiting my program gracefully?

Per CESA-2009-001, "Syscall 1 is exit on i386 but write on x86_64".

what would I need to make it work in Linux

Use the syscall ordinals from the current unistd_64.h

Hope this helps!

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