int 0x80在Linux上总是调用32位ABI,不管是什么模式,这就是所谓的:ARGS中ebx,ecx…和系统调用号的/usr/include/asm/unistd_32.h。(或者在没有编译的64位内核上崩溃CONFIG_IA32_EMULATION)。
int 0x80
ebx
ecx
/usr/include/asm/unistd_32.h
CONFIG_IA32_EMULATION
64位代码应该使用syscall,从呼叫号码/usr/include/asm/unistd_64.h,并在args rdi,rsi等见什么是在i386和x86-64 UNIX和Linux系统调用的调用约定。如果您的问题被打上这样一个重复的, 看你怎么说链接,细节 应当 使32位或64位代码的系统调用。 如果您想了解到底发生了什么,请继续阅读。
syscall
/usr/include/asm/unistd_64.h
rdi
rsi
(有关32位和64位的示例sys_write,请参阅在64位Linux上使用中断0x80)
sys_write
syscall系统调用比int 0x80系统调用快,因此请使用本机64位,syscall除非您编写的多语言机器代码在以32位或64位执行时运行相同。(sysenter始终以32位模式返回,因此尽管它是有效的x86-64指令,但对64位用户空间没有用。)
sysenter
相关信息: 《 Linux系统调用的权威指南》 (在x86上)介绍了如何进行int 0x80或进行sysenter32位系统调用或syscall64位系统调用,或为vDSO进行“虚拟”系统调用(如)gettimeofday。加上有关系统调用的全部背景知识。
gettimeofday
使用int 0x80可以编写将以32位或64位模式汇编的内容,因此对于exit_group()在微基准测试末尾或其他内容很方便。
exit_group()
可从https://github.com/hjl- tools/x86-psABI/wiki/X86-psABI链接到i386和x86-64 System V psABI官方文档的当前PDF,这些文档对函数和syscall调用约定进行了标准化。
有关初学者指南,x86手册,官方文档以及性能优化指南/资源,请参见x86标签wiki。
但是,由于人们不断发布使用int 0x8064位代码使用的代码的问题,或者无意中从为32位编写的源构建64位二进制文件,所以我想知道 在当前Linux上 究竟 会发生 什么 ? __
是否int 0x80保存/恢复所有64位寄存器?是否将任何寄存器截断为32位?如果传递的上半部分非零的指针args会发生什么?
如果将其传递给32位指针,是否可以正常工作?
TL:DR :int 0x80只要正确使用任何指针,只要任何指针都适合32位( 堆栈指针不适合 ), 它就可以工作 。同样,将其 strace 解码错误,将寄存器内容当作64位syscallABI进行解码。(到目前为止,还没有一种简单/可靠的方法strace可以告诉您。)
strace
int 0x80将r8-r11归零,并保留其他所有内容。就像在32位代码中使用32位电话号码一样使用它。(或者更好,不要使用它!)
并非所有系统都支持int 0x80:Linux的Windows子系统(WSL)严格来说仅是64位:int 0x80根本不起作用。也可以在没有IA-32仿真的情况下构建Linux内核。(不支持32位可执行文件,不支持32位系统调用)。
int 0x80使用eax(不是完整的rax)作为系统调用号,调度到32位用户空间int 0x80使用的同一函数指针表。(这些指针指向sys_whatever内核内部本机64位实现的实现或包装。系统调用实际上是跨越用户/内核边界的函数调用。)
eax
rax
sys_whatever
仅传递arg寄存器的低32位。 的上半部分rbx- rbp被保留,但忽略了int 0x80系统调用。 请注意,将错误的指针传递给系统调用不会导致SIGSEGV。而是系统调用返回-EFAULT。如果您不检查错误返回值(使用调试器或跟踪工具),它将似乎无提示地失败。
rbx
rbp
-EFAULT
除了 r8-r11被清零 之外,所有寄存器(当然是eax除外)都被保存/恢复(包括RFLAGS和整数regs的高32位)。 r12-r15在x86-64 SysV ABI的函数调用约定中保留了调用,因此int 0x8064位清零的寄存器是AMD64添加的“新”寄存器的调用集中子集。
r12-r15
通过对内核内部实现寄存器保存的方式进行一些内部更改,保留了此行为,并且内核中的注释提到它可以在64位上使用,因此此ABI可能是稳定的。(即,您可以指望r8-r11被清零,并且所有其他内容都将保留。)
返回值被符号扩展以填充64位rax。 (Linux将32位sys_函数声明为返回有符号的long。)这意味着void *mmap()在64位寻址模式下使用之前,指针返回值(如from )需要零扩展。
long
void *mmap()
与不同sysenter,它保留的原始值cs,因此它以与调用时相同的方式返回到用户空间。(使用sysenter结果将内核设置cs为$__USER32_CS,这将为32位代码段选择一个描述符。)
cs
$__USER32_CS
strace``int 0x80为64位进程 解码 不正确 。它将好像处理已使用syscall而不是进行解码int 0x80。 这可能非常令人困惑。例如因为strace打印的write(0, NULL, 12 <unfinished ... exit status 1>是eax=1/ int $0x80,实际上_exit(ebx)不是write(rdi, rsi, rdx)。
strace``int 0x80
write(0, NULL, 12 <unfinished ... exit status 1>
eax=1
int $0x80
_exit(ebx)
write(rdi, rsi, rdx)
int 0x80 只要所有参数(包括指针)都适合寄存器的低32位,它就起作用。x86-64 SysV ABI中默认代码模型(“小”)中的静态代码和数据就是这种情况。(第3.5.1: 所有的符号被称为是位于该范围内的虚拟地址0x00000000到0x7effffff,所以你可以做一样的东西mov edi, hello(AT&T mov $hello, %edi),以获得一个指针与5个字节的指令寄存器)。
0x00000000
0x7effffff
mov edi, hello
mov $hello, %edi
但是, 这是 不是 对的情况下与位置无关的可执行文件,其中许多Linux发行版现在配置gcc默认情况下,使(他们启用ASLR的可执行文件)。例如,我hello.c在Arch Linux上编译了一个,并在main的开始处设置了一个断点。传递给的字符串常量puts为at 0x555555554724,因此32位ABI write系统调用将不起作用。(GDB默认情况下会禁用ASLR,因此,如果您从GDB内部运行,则每次运行时总是看到相同的地址。)
gcc
hello.c
puts
0x555555554724
write
Linux将堆栈放在规范地址的上限和下限之间的“间隙”附近,即,堆栈的顶部为2 ^ 48-1。(或者是随机的,启用了ASLR)。因此,rsp在进入_start典型的静态链接可执行文件时0x7fffffffe550,具体取决于env vars和args的大小。截断此指针esp不会指向任何有效的内存,因此,-EFAULT如果您尝试传递截断的堆栈指针,则通常会返回带有指针输入的系统调用。(如果你截断你的程序会崩溃rsp到esp,然后做与堆栈,例如,如果你建立的32位汇编源作为64位可执行任何东西。)
rsp
_start
0x7fffffffe550
esp
在Linux源代码中,arch/x86/entry/entry_64_compat.S定义 ENTRY(entry_INT80_compat)。32位和64位进程在执行时都使用相同的入口点int 0x80。
arch/x86/entry/entry_64_compat.S
ENTRY(entry_INT80_compat)
entry_64.S定义了64位内核的本机入口点,其中包括中断/错误处理程序以及syscall来自长模式(又名64位模式)进程的本机系统调用。
entry_64.S
entry_64_compat.S定义了从compat模式到64位内核的系统调用入口点,以及int 0x80在64位进程中的特殊情况。(sysenter在64位进程中也可能会到达该入口点,但它会推送$__USER32_CS,因此它将始终以32位模式返回。)该syscall指令有32位版本,在AMD CPU上受支持,Linux支持对于来自32位进程的快速32位系统调用也是如此。
entry_64_compat.S
我想一个 可能的用例 为int 0x80在64位模式是,如果你想使用一个 自定义代码段的描述符 ,你安装modify_ldt。 int 0x80推送段自身进行注册iret,Linux总是int 0x80通过调用从系统调用返回iret。64位syscall入口点设置pt_regs->cs和->ss常量,__USER_CS以及__USER_DS。(SS和DS使用相同的段描述符是正常的。权限差异是通过分页而不是分段来完成的。)
modify_ldt
iret
pt_regs->cs
->ss
__USER_CS
__USER_DS
entry_32.S 在32位内核中定义入口点,并且完全不涉及。
entry_32.S
将int 0x80在入口点的Linux 4.12的entry_64_compat.S: /* * 32-bit legacy system call entry. * * 32-bit x86 Linux system calls traditionally used the INT $0x80 * instruction. INT $0x80 lands here. * * This entry point can be used by 32-bit and 64-bit programs to perform * 32-bit system calls. Instances of INT $0x80 can be found inline in * various programs and libraries. It is also used by the vDSO's * __kernel_vsyscall fallback for hardware that doesn't support a faster * entry method. Restarted 32-bit system calls also fall back to INT * $0x80 regardless of what instruction was originally used to do the * system call. * * This is considered a slow path. It is not used by most libc * implementations on modern hardware except during process startup. ... */ ENTRY(entry_INT80_compat) ... (see the github URL for the full source)
将int 0x80在入口点的Linux 4.12的entry_64_compat.S:
/* * 32-bit legacy system call entry. * * 32-bit x86 Linux system calls traditionally used the INT $0x80 * instruction. INT $0x80 lands here. * * This entry point can be used by 32-bit and 64-bit programs to perform * 32-bit system calls. Instances of INT $0x80 can be found inline in * various programs and libraries. It is also used by the vDSO's * __kernel_vsyscall fallback for hardware that doesn't support a faster * entry method. Restarted 32-bit system calls also fall back to INT * $0x80 regardless of what instruction was originally used to do the * system call. * * This is considered a slow path. It is not used by most libc * implementations on modern hardware except during process startup. ... */ ENTRY(entry_INT80_compat) ... (see the github URL for the full source)
代码将eax零扩展为rax,然后将所有寄存器压入内核堆栈以形成a struct pt_regs。这是从系统调用返回时恢复的位置。它采用已保存用户空间寄存器(用于任何入口点)的标准布局,因此ptrace,如果其他进程(例如gdb或strace)ptrace在系统调用内使用该进程,则会从该进程读取和/或写入该内存。(ptrace修改寄存器是使其他入口点的返回路径变得复杂的一件事。请参见注释。)
struct pt_regs
ptrace
但是它推送$0而不是r8 / r9 / r10 / r11。(sysenter并且AMD syscall32入口点为r8-r15存储零。)
$0
syscall32
我认为r8-r11的调零与历史行为相符。在为所有compat syscall设置完整的pt_regs之前,入口点仅保存了C调用密集的寄存器。它直接从ASM出动call *ia32_sys_call_table(, %rax, 8),并且这些功能遵循调用约定,所以他们保留rbx,rbp,rsp,和r12-r15。调零r8-r11而不是让它们保持未定义状态可能是避免内核泄漏信息的一种方法。ptrace如果用户空间的调用保留寄存器的唯一副本位于C函数将其保存的内核堆栈上,则IDK如何处理。我怀疑它使用堆栈展开元数据在此处找到它们。
call *ia32_sys_call_table(, %rax, 8)
r8-r11
当前的实现(Linux的4.12)调度从C 32位ABI系统调用,重新加载保存的ebx,ecx等从pt_regs。(64位本机系统调用直接从asm调度,只mov %r10, %rcx需要考虑函数和之间的调用约定之间的细微差别syscall。不幸的是,它不能总是使用sysret,因为CPU错误使它对非规范地址不安全。它确实会尝试,因此快速路径确实非常快,尽管syscall它本身仍需要数十个周期。)
pt_regs
mov %r10, %rcx
sysret
无论如何,在当前的Linux中,32位系统调用(包括int 0x80从64位开始)最终以结束do_syscall_32_irqs_on(struct pt_regs *regs)。它分派给ia32_sys_call_table具有6个零扩展args 的函数指针。这样可以避免在更多情况下需要围绕64位本机syscall函数进行包装以保留该行为,因此更多ia32表条目可以直接作为本机系统调用实现。
do_syscall_32_irqs_on(struct pt_regs *regs)
ia32_sys_call_table
ia32
Linux 4.12 arch/x86/entry/common.c if (likely(nr < IA32_NR_syscalls)) { /* * It's possible that a 32-bit syscall implementation * takes a 64-bit parameter but nonetheless assumes that * the high bits are zero. Make sure we zero-extend all * of the args. */ regs->ax = ia32_sys_call_table[nr]( (unsigned int)regs->bx, (unsigned int)regs->cx, (unsigned int)regs->dx, (unsigned int)regs->si, (unsigned int)regs->di, (unsigned int)regs->bp); } syscall_return_slowpath(regs);
Linux 4.12 arch/x86/entry/common.c
arch/x86/entry/common.c
if (likely(nr < IA32_NR_syscalls)) { /* * It's possible that a 32-bit syscall implementation * takes a 64-bit parameter but nonetheless assumes that * the high bits are zero. Make sure we zero-extend all * of the args. */ regs->ax = ia32_sys_call_table[nr]( (unsigned int)regs->bx, (unsigned int)regs->cx, (unsigned int)regs->dx, (unsigned int)regs->si, (unsigned int)regs->di, (unsigned int)regs->bp); } syscall_return_slowpath(regs);
在从asm分派32位系统调用的旧版Linux中(就像64位仍然如此),int80入口点本身使用32位寄存器将args mov和和xchg指令放入正确的寄存器中。它甚至用于mov %edx,%edx将EDX零扩展为RDX(因为arg3在两种约定中都使用相同的寄存器)。 这里的代码。该代码在sysenter和syscall32入口点重复。
mov
xchg
mov %edx,%edx
我编写了一个简单的Hello World(使用NASM语法),该寄存器将所有寄存器设置为非零上半部分,然后使用进行两次write()系统调用int 0x80,其中一个使用指向.rodata(成功的)字符串的指针,第二个使用指向堆栈的指针(失败-EFAULT)。
write()
.rodata
然后,它将本机64位syscallABI用于write()堆栈中的字符(64位指针),然后再次退出。
因此,所有这些示例都正确地使用了ABI,除了第二个int 0x80尝试传递一个64位指针并将其截断之外。
如果将其构建为与位置无关的可执行文件,则第一个也会失败。(您必须使用相对于RIP 的地址,lea而不是mov将其地址保存hello:到寄存器中。)
lea
hello:
我使用了gdb,但使用了您喜欢的任何调试器。使用一个突出显示自上一步以来已更改的寄存器的寄存器。 gdbgui对于调试asm源代码效果很好,但对于反汇编而言效果不佳。尽管如此,它确实具有一个至少适用于整数reg的寄存器窗格,并且在此示例中效果很好。
gdbgui
请参阅内联;;;注释,描述系统调用如何更改寄存器
;;;
global _start _start: mov rax, 0x123456789abcdef mov rbx, rax mov rcx, rax mov rdx, rax mov rsi, rax mov rdi, rax mov rbp, rax mov r8, rax mov r9, rax mov r10, rax mov r11, rax mov r12, rax mov r13, rax mov r14, rax mov r15, rax ;; 32-bit ABI mov rax, 0xffffffff00000004 ; high garbage + __NR_write (unistd_32.h) mov rbx, 0xffffffff00000001 ; high garbage + fd=1 mov rcx, 0xffffffff00000000 + .hello mov rdx, 0xffffffff00000000 + .hellolen ;std after_setup: ; set a breakpoint here int 0x80 ; write(1, hello, hellolen); 32-bit ABI ;; succeeds, writing to stdout ;;; changes to registers: r8-r11 = 0. rax=14 = return value ; ebx still = 1 = STDOUT_FILENO push 'bye' + (0xa<<(3*8)) mov rcx, rsp ; rcx = 64-bit pointer that won't work if truncated mov edx, 4 mov eax, 4 ; __NR_write (unistd_32.h) int 0x80 ; write(ebx=1, ecx=truncated pointer, edx=4); 32-bit ;; fails, nothing printed ;;; changes to registers: rax=-14 = -EFAULT (from /usr/include/asm-generic/errno-base.h) mov r10, rax ; save return value as exit status mov r8, r15 mov r9, r15 mov r11, r15 ; make these regs non-zero again ;; 64-bit ABI mov eax, 1 ; __NR_write (unistd_64.h) mov edi, 1 mov rsi, rsp mov edx, 4 syscall ; write(edi=1, rsi='bye\n' on the stack, rdx=4); 64-bit ;; succeeds: writes to stdout and returns 4 in rax ;;; changes to registers: rax=4 = length return value ;;; rcx = 0x400112 = RIP. r11 = 0x302 = eflags with an extra bit set. ;;; (This is not a coincidence, it's how sysret works. But don't depend on it, since iret could leave something else) mov edi, r10d ;xor edi,edi mov eax, 60 ; __NR_exit (unistd_64.h) syscall ; _exit(edi = first int 0x80 result); 64-bit ;; succeeds, exit status = low byte of first int 0x80 result = 14 section .rodata _start.hello: db "Hello World!", 0xa, 0 _start.hellolen equ $ - _start.hello
使用以下命令将其构建为64位静态二进制文件
yasm -felf64 -Worphan-labels -gdwarf2 abi32-from-64.asm ld -o abi32-from-64 abi32-from-64.o
运行gdb ./abi32-from-64。在gdb中运行set disassembly-flavor intel,layout reg如果还没有,请运行~/.gdbinit。(GAS .intel_syntax就像MASM,而不是NASM,但是它们足够接近,如果您喜欢NASM语法,则很容易阅读。)
gdb ./abi32-from-64
gdb
set disassembly-flavor intel
layout reg
~/.gdbinit
.intel_syntax
(gdb) set disassembly-flavor intel (gdb) layout reg (gdb) b after_setup (gdb) r (gdb) si # step instruction press return to repeat the last command, keep stepping
当gdb的TUI模式混乱时,按Ctrl-L。即使程序无法自行打印输出,这种情况也很容易发生。