/*----------------------------------------------------------------*/ /* Perform a syscall for the client. This will run a syscall with the client's specific per-thread signal mask. The structure of this function is such that, if the syscall is interrupted by a signal, we can determine exactly what execution state we were in with respect to the execution of the syscall by examining the value of %eip in the signal handler. This means that we can always do the appropriate thing to precisely emulate the kernel's signal/syscall interactions. The syscall number is taken from the argument, even though it should also be in regs->m_eax. The syscall result is written back to regs->m_eax on completion. Returns 0 if the syscall was successfully called (even if the syscall itself failed), or a nonzero error code in the lowest 8 bits if one of the sigprocmasks failed (there's no way to determine which one failed). And there's no obvious way to recover from that either, but nevertheless we want to know. VG_(fixup_guest_state_after_syscall_interrupted) does the thread state fixup in the case where we were interrupted by a signal. Prototype: UWord ML_(do_syscall_for_client_WRK)( Int syscallno, // 0 void* guest_state, // 4 const vki_sigset_t *sysmask, // 8 const vki_sigset_t *postmask, // 12 Int nsigwords) // 16 */ #define VKI_SIG_SETMASK 2 .globl ML_(do_syscall_for_client_WRK) ML_(do_syscall_for_client_WRK): /* save callee-saved regs */ push %esi push %edi push %ebx push %ebp #define FSZ ((4+1)*4) /* 4 args + ret addr */ 1: /* Even though we can't take a signal until the sigprocmask completes, start the range early. If eip is in the range [1,2), the syscall hasn't been started yet */ /* Set the signal mask which should be current during the syscall. */ movl $__NR_sigprocmask, %eax movl $VKI_SIG_SETMASK, %ebx movl 8+FSZ(%esp), %ecx movl 12+FSZ(%esp), %edx movl 16+FSZ(%esp), %esi int $0x80 testl %eax, %eax js 7f /* sigprocmask failed */ movl 4+FSZ(%esp), %eax /* eax == ThreadState * */ movl OFFSET_x86_EBX(%eax), %ebx movl OFFSET_x86_ECX(%eax), %ecx movl OFFSET_x86_EDX(%eax), %edx movl OFFSET_x86_ESI(%eax), %esi movl OFFSET_x86_EDI(%eax), %edi movl OFFSET_x86_EBP(%eax), %ebp movl 0+FSZ(%esp), %eax /* use syscallno argument rather than thread EAX */ /* If eip==2, then the syscall was either just about to start, or was interrupted and the kernel was restarting it. */ 2: int $0x80 3: /* In the range [3, 4), the syscall result is in %eax, but hasn't been committed to EAX. */ movl 4+FSZ(%esp), %ebx movl %eax, OFFSET_x86_EAX(%ebx) /* save back to EAX */ 4: /* Re-block signals. If eip is in [4,5), then the syscall is complete and we needn't worry about it. */ movl $__NR_sigprocmask, %eax movl $VKI_SIG_SETMASK, %ebx movl 12+FSZ(%esp), %ecx xorl %edx, %edx movl 16+FSZ(%esp), %esi int $0x80 testl %eax, %eax js 7f /* sigprocmask failed */ 5: /* now safe from signals */ movl $0, %eax /* SUCCESS */ popl %ebp popl %ebx popl %edi popl %esi ret 7: /* failure: return 0x8000 | error code */ negl %eax andl $0x7FFF, %eax orl $0x8000, %eax popl %ebp popl %ebx popl %edi popl %esi ret #undef FSZ