2 /*--------------------------------------------------------------------*/
3 /*--- Support for doing system calls. syscall-x86-darwin.S ---*/
4 /*--------------------------------------------------------------------*/
7 This file is part of Valgrind, a dynamic binary instrumentation
10 Copyright (C) 2000-2017 Julian Seward
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, see <http://www.gnu.org/licenses/>.
26 The GNU General Public License is contained in the file COPYING.
29 #include "pub_core_basics_asm.h"
31 #if defined(VGP_x86_darwin)
33 #include "pub_core_vkiscnums_asm.h"
34 #include "libvex_guest_offsets.h"
37 /*----------------------------------------------------------------*/
39 Perform a syscall for the client. This will run a syscall
40 with the client's specific per-thread signal mask.
42 The structure of this function is such that, if the syscall is
43 interrupted by a signal, we can determine exactly what
44 execution state we were in with respect to the execution of
45 the syscall by examining the value of %eip in the signal
46 handler. This means that we can always do the appropriate
47 thing to precisely emulate the kernel's signal/syscall
50 The syscall number is taken from the argument, even though it
51 should also be in regs->m_eax. The syscall result is written
52 back to regs->m_eax on completion.
54 Returns 0 if the syscall was successfully called (even if the
55 syscall itself failed), or a -ve error code if one of the
56 sigprocmasks failed (there's no way to determine which one
59 VG_(fixup_guest_state_after_syscall_interrupted) does the
60 thread state fixup in the case where we were interrupted by a
65 Int ML_(do_syscall_for_client_WRK)(
66 Int syscallno, // ebp+8
67 void* guest_state, // ebp+12
68 const vki_sigset_t *sysmask, // ebp+16
69 const vki_sigset_t *postmask, // ebp+20
70 Int sigsetSzB) // ebp+24
72 Note that sigsetSzB is totally ignored (and irrelevant).
75 /* from vki-darwin.h, checked at startup by m_vki.c */
76 #define VKI_SIG_SETMASK 3
78 /* DO_SYSCALL MACH|MDEP|UNIX */
84 /* establish stack frame */
87 subl $$8, %esp /* 16-byte align stack */
89 L_$0_1: /* Even though we can't take a signal until the
90 __pthread_sigmask completes, start the range early.
91 If eip is in the range [1,2), the syscall hasn't been started yet */
93 /* Set the signal mask which should be current during the syscall. */
94 /* Set up for __pthread_sigmask(SIG_SETMASK, sysmask, postmask) */
97 pushl $$VKI_SIG_SETMASK
98 pushl $$0xcafebabe /* totally fake return address */
99 movl $$__NR___pthread_sigmask, %eax
100 int $$0x80 /* should be sysenter? */
101 jc L_$0_7 /* __pthread_sigmask failed */
104 /* Copy syscall parameters to the stack - assume no more than 8
105 * plus the return address */
107 /* stack is currently aligned assuming 8 parameters */
109 movl OFFSET_x86_ESP(%edx), %edx /* edx = simulated ESP */
110 movl 28+4(%edx), %eax
112 movl 24+4(%edx), %eax
114 movl 20+4(%edx), %eax
116 movl 16+4(%edx), %eax
118 movl 12+4(%edx), %eax
130 /* Put syscall number in eax */
133 /* If eip==2, then the syscall was either just about to start,
134 or was interrupted and the kernel was restarting it. */
137 int $$0x80 /* UNIX (GrP fixme should be sysenter?) */
146 L_$0_3: /* In the range [3, 4), the syscall result is in %eax and %edx and C,
147 but hasn't been committed to the thread state. */
148 setc 0(%esp) /* stash returned carry flag */
150 movl %eax, OFFSET_x86_EAX(%ecx) /* save EAX to vex */
151 movl %edx, OFFSET_x86_EDX(%ecx) /* save EDX to vex */
153 /* UNIX: save carry flag to vex */
159 movl $$1, OFFSET_x86_SETC(%ecx)
160 call _LibVEX_GuestX86_put_eflag_c
162 movl $$0, OFFSET_x86_SETC(%ecx)
166 L_$0_4: /* Re-block signals. If eip is in [4,5), then the syscall is
167 complete and we needn't worry about it. */
168 /* Set up for __pthread_sigmask(SIG_SETMASK, postmask, NULL) */
171 pushl $$VKI_SIG_SETMASK
172 pushl $$0xcafef00d /* totally fake return address */
173 movl $$__NR___pthread_sigmask, %eax
174 int $$0x80 /* should be sysenter? */
175 jc L_$0_7 /* __pthread_sigmask failed */
178 L_$0_5: /* now safe from signals */
179 movl $$0, %eax /* SUCCESS */
184 L_$0_7: /* failure: return 0x8000 | error code */
185 /* Note that we enter here with %esp being 16 too low
186 (4 extra words on the stack). But because we're nuking
187 the stack frame now, that doesn't matter. */
197 .globl ML_(do_syscall_for_client_unix_WRK)
198 ML_(do_syscall_for_client_unix_WRK):
201 .globl ML_(do_syscall_for_client_mach_WRK)
202 ML_(do_syscall_for_client_mach_WRK):
205 .globl ML_(do_syscall_for_client_mdep_WRK)
206 ML_(do_syscall_for_client_mdep_WRK):
210 /* export the ranges so that
211 VG_(fixup_guest_state_after_syscall_interrupted) can do the
214 /* eg MK_L_SCLASS_N(UNIX,99) produces L_3_99
215 since UNIX is #defined to 3 at the top of this file */
216 #define FOO(scclass,labelno) L_##scclass##_##labelno
217 #define MK_L_SCCLASS_N(scclass,labelno) FOO(scclass,labelno)
219 .globl ML_(blksys_setup_MACH)
220 .globl ML_(blksys_restart_MACH)
221 .globl ML_(blksys_complete_MACH)
222 .globl ML_(blksys_committed_MACH)
223 .globl ML_(blksys_finished_MACH)
224 ML_(blksys_setup_MACH): .long MK_L_SCCLASS_N(MACH,1)
225 ML_(blksys_restart_MACH): .long MK_L_SCCLASS_N(MACH,2)
226 ML_(blksys_complete_MACH): .long MK_L_SCCLASS_N(MACH,3)
227 ML_(blksys_committed_MACH): .long MK_L_SCCLASS_N(MACH,4)
228 ML_(blksys_finished_MACH): .long MK_L_SCCLASS_N(MACH,5)
230 .globl ML_(blksys_setup_MDEP)
231 .globl ML_(blksys_restart_MDEP)
232 .globl ML_(blksys_complete_MDEP)
233 .globl ML_(blksys_committed_MDEP)
234 .globl ML_(blksys_finished_MDEP)
235 ML_(blksys_setup_MDEP): .long MK_L_SCCLASS_N(MDEP,1)
236 ML_(blksys_restart_MDEP): .long MK_L_SCCLASS_N(MDEP,2)
237 ML_(blksys_complete_MDEP): .long MK_L_SCCLASS_N(MDEP,3)
238 ML_(blksys_committed_MDEP): .long MK_L_SCCLASS_N(MDEP,4)
239 ML_(blksys_finished_MDEP): .long MK_L_SCCLASS_N(MDEP,5)
241 .globl ML_(blksys_setup_UNIX)
242 .globl ML_(blksys_restart_UNIX)
243 .globl ML_(blksys_complete_UNIX)
244 .globl ML_(blksys_committed_UNIX)
245 .globl ML_(blksys_finished_UNIX)
246 ML_(blksys_setup_UNIX): .long MK_L_SCCLASS_N(UNIX,1)
247 ML_(blksys_restart_UNIX): .long MK_L_SCCLASS_N(UNIX,2)
248 ML_(blksys_complete_UNIX): .long MK_L_SCCLASS_N(UNIX,3)
249 ML_(blksys_committed_UNIX): .long MK_L_SCCLASS_N(UNIX,4)
250 ML_(blksys_finished_UNIX): .long MK_L_SCCLASS_N(UNIX,5)
252 #endif // defined(VGP_x86_darwin)
254 /* Let the linker know we don't need an executable stack */
257 /*--------------------------------------------------------------------*/
259 /*--------------------------------------------------------------------*/