blob: e105afa96d3f2485a267969c1d557067df202c97 [file] [log] [blame]
florian15fa8a22015-03-03 14:56:17 +00001/* -*- mode: C; c-basic-offset: 3; -*- */
sewardjde4a1d02002-03-22 01:27:54 +00002
3/*--------------------------------------------------------------------*/
njned6b8242005-06-01 00:03:17 +00004/*--- Implementation of POSIX signals. m_signals.c ---*/
sewardjde4a1d02002-03-22 01:27:54 +00005/*--------------------------------------------------------------------*/
njned6b8242005-06-01 00:03:17 +00006
sewardjde4a1d02002-03-22 01:27:54 +00007/*
njnb9c427c2004-12-01 14:14:42 +00008 This file is part of Valgrind, a dynamic binary instrumentation
9 framework.
sewardjde4a1d02002-03-22 01:27:54 +000010
sewardjb3a1e4b2015-08-21 11:32:26 +000011 Copyright (C) 2000-2015 Julian Seward
sewardjde4a1d02002-03-22 01:27:54 +000012 jseward@acm.org
sewardjde4a1d02002-03-22 01:27:54 +000013
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 02111-1307, USA.
28
njn25e49d8e72002-09-23 09:36:25 +000029 The GNU General Public License is contained in the file COPYING.
sewardjde4a1d02002-03-22 01:27:54 +000030*/
31
jsgf855d93d2003-10-13 22:26:55 +000032/*
sewardjb5f6f512005-03-10 23:59:00 +000033 Signal handling.
jsgf855d93d2003-10-13 22:26:55 +000034
sewardjb5f6f512005-03-10 23:59:00 +000035 There are 4 distinct classes of signal:
jsgf855d93d2003-10-13 22:26:55 +000036
sewardjb5f6f512005-03-10 23:59:00 +000037 1. Synchronous, instruction-generated (SIGILL, FPE, BUS, SEGV and
38 TRAP): these are signals as a result of an instruction fault. If
39 we get one while running client code, then we just do the
40 appropriate thing. If it happens while running Valgrind code, then
41 it indicates a Valgrind bug. Note that we "manually" implement
42 automatic stack growth, such that if a fault happens near the
43 client process stack, it is extended in the same way the kernel
44 would, and the fault is never reported to the client program.
jsgf855d93d2003-10-13 22:26:55 +000045
njn1ee02e32009-05-04 06:54:04 +000046 2. Asynchronous variants of the above signals: If the kernel tries
sewardjb5f6f512005-03-10 23:59:00 +000047 to deliver a sync signal while it is blocked, it just kills the
48 process. Therefore, we can't block those signals if we want to be
49 able to report on bugs in Valgrind. This means that we're also
50 open to receiving those signals from other processes, sent with
51 kill. We could get away with just dropping them, since they aren't
52 really signals that processes send to each other.
jsgf855d93d2003-10-13 22:26:55 +000053
sewardjb5f6f512005-03-10 23:59:00 +000054 3. Synchronous, general signals. If a thread/process sends itself
55 a signal with kill, its expected to be synchronous: ie, the signal
56 will have been delivered by the time the syscall finishes.
57
sewardj67b38c32010-01-01 12:44:12 +000058 4. Asynchronous, general signals. All other signals, sent by
sewardjb5f6f512005-03-10 23:59:00 +000059 another process with kill. These are generally blocked, except for
60 two special cases: we poll for them each time we're about to run a
61 thread for a time quanta, and while running blocking syscalls.
jsgf855d93d2003-10-13 22:26:55 +000062
jsgf855d93d2003-10-13 22:26:55 +000063
sewardjebf58442010-03-01 16:42:56 +000064 In addition, we reserve one signal for internal use: SIGVGKILL.
sewardjb5f6f512005-03-10 23:59:00 +000065 SIGVGKILL is used to terminate threads. When one thread wants
66 another to exit, it will set its exitreason and send it SIGVGKILL
67 if it appears to be blocked in a syscall.
68
69
70 We use a kernel thread for each application thread. When the
71 thread allows itself to be open to signals, it sets the thread
72 signal mask to what the client application set it to. This means
73 that we get the kernel to do all signal routing: under Valgrind,
74 signals get delivered in the same way as in the non-Valgrind case
75 (the exception being for the sync signal set, since they're almost
76 always unblocked).
jsgf855d93d2003-10-13 22:26:55 +000077 */
sewardjde4a1d02002-03-22 01:27:54 +000078
njn1ee02e32009-05-04 06:54:04 +000079/*
80 Some more details...
81
82 First off, we take note of the client's requests (via sys_sigaction
83 and sys_sigprocmask) to set the signal state (handlers for each
84 signal, which are process-wide, + a mask for each signal, which is
85 per-thread). This info is duly recorded in the SCSS (static Client
86 signal state) in m_signals.c, and if the client later queries what
87 the state is, we merely fish the relevant info out of SCSS and give
88 it back.
89
90 However, we set the real signal state in the kernel to something
91 entirely different. This is recorded in SKSS, the static Kernel
92 signal state. What's nice (to the extent that anything is nice w.r.t
93 signals) is that there's a pure function to calculate SKSS from SCSS,
94 calculate_SKSS_from_SCSS. So when the client changes SCSS then we
95 recompute the associated SKSS and apply any changes from the previous
96 SKSS through to the kernel.
97
98 Now, that said, the general scheme we have now is, that regardless of
99 what the client puts into the SCSS (viz, asks for), what we would
100 like to do is as follows:
101
102 (1) run code on the virtual CPU with all signals blocked
103
104 (2) at convenient moments for us (that is, when the VCPU stops, and
105 control is back with the scheduler), ask the kernel "do you have
106 any signals for me?" and if it does, collect up the info, and
107 deliver them to the client (by building sigframes).
108
109 And that's almost what we do. The signal polling is done by
110 VG_(poll_signals), which calls through to VG_(sigtimedwait_zero) to
111 do the dirty work. (of which more later).
112
113 By polling signals, rather than catching them, we get to deal with
114 them only at convenient moments, rather than having to recover from
115 taking a signal while generated code is running.
116
117 Now unfortunately .. the above scheme only works for so-called async
118 signals. An async signal is one which isn't associated with any
119 particular instruction, eg Control-C (SIGINT). For those, it doesn't
120 matter if we don't deliver the signal to the client immediately; it
121 only matters that we deliver it eventually. Hence polling is OK.
122
123 But the other group -- sync signals -- are all related by the fact
124 that they are various ways for the host CPU to fail to execute an
125 instruction: SIGILL, SIGSEGV, SIGFPU. And they can't be deferred,
126 because obviously if a host instruction can't execute, well then we
127 have to immediately do Plan B, whatever that is.
128
129 So the next approximation of what happens is:
130
131 (1) run code on vcpu with all async signals blocked
132
133 (2) at convenient moments (when NOT running the vcpu), poll for async
134 signals.
135
136 (1) and (2) together imply that if the host does deliver a signal to
137 async_signalhandler while the VCPU is running, something's
138 seriously wrong.
139
140 (3) when running code on vcpu, don't block sync signals. Instead
141 register sync_signalhandler and catch any such via that. Of
142 course, that means an ugly recovery path if we do -- the
143 sync_signalhandler has to longjump, exiting out of the generated
144 code, and the assembly-dispatcher thingy that runs it, and gets
145 caught in m_scheduler, which then tells m_signals to deliver the
146 signal.
147
148 Now naturally (ha ha) even that might be tolerable, but there's
149 something worse: dealing with signals delivered to threads in
150 syscalls.
151
152 Obviously from the above, SKSS's signal mask (viz, what we really run
153 with) is way different from SCSS's signal mask (viz, what the client
154 thread thought it asked for). (eg) It may well be that the client
155 did not block control-C, so that it just expects to drop dead if it
156 receives ^C whilst blocked in a syscall, but by default we are
157 running with all async signals blocked, and so that signal could be
158 arbitrarily delayed, or perhaps even lost (not sure).
159
160 So what we have to do, when doing any syscall which SfMayBlock, is to
161 quickly switch in the SCSS-specified signal mask just before the
162 syscall, and switch it back just afterwards, and hope that we don't
florianad4e9792015-07-05 21:53:33 +0000163 get caught up in some weird race condition. This is the primary
njn1ee02e32009-05-04 06:54:04 +0000164 purpose of the ultra-magical pieces of assembly code in
165 coregrind/m_syswrap/syscall-<plat>.S
166
167 -----------
168
169 The ways in which V can come to hear of signals that need to be
170 forwarded to the client as are follows:
171
172 sync signals: can arrive at any time whatsoever. These are caught
173 by sync_signalhandler
174
175 async signals:
176
177 if running generated code
178 then these are blocked, so we don't expect to catch them in
179 async_signalhandler
180
181 else
182 if thread is blocked in a syscall marked SfMayBlock
183 then signals may be delivered to async_sighandler, since we
184 temporarily unblocked them for the duration of the syscall,
185 by using the real (SCSS) mask for this thread
186
187 else we're doing misc housekeeping activities (eg, making a translation,
188 washing our hair, etc). As in the normal case, these signals are
189 blocked, but we can and do poll for them using VG_(poll_signals).
190
191 Now, re VG_(poll_signals), it polls the kernel by doing
192 VG_(sigtimedwait_zero). This is trivial on Linux, since it's just a
193 syscall. But on Darwin and AIX, we have to cobble together the
194 functionality in a tedious, longwinded and probably error-prone way.
sewardj3b290482011-05-06 21:02:55 +0000195
196 Finally, if a gdb is debugging the process under valgrind,
197 the signal can be ignored if gdb tells this. So, before resuming the
198 scheduler/delivering the signal, a call to VG_(gdbserver_report_signal)
199 is done. If this returns True, the signal is delivered.
njn1ee02e32009-05-04 06:54:04 +0000200 */
201
njnc7561b92005-06-19 01:24:32 +0000202#include "pub_core_basics.h"
sewardj4cfea4f2006-10-14 19:26:10 +0000203#include "pub_core_vki.h"
sewardj489bfec2006-10-17 02:00:29 +0000204#include "pub_core_vkiscnums.h"
sewardj45f4e7c2005-09-27 19:20:21 +0000205#include "pub_core_debuglog.h"
njnc7561b92005-06-19 01:24:32 +0000206#include "pub_core_threadstate.h"
sewardj14c7cc52007-02-25 15:08:24 +0000207#include "pub_core_xarray.h"
sewardj45f4e7c2005-09-27 19:20:21 +0000208#include "pub_core_clientstate.h"
njn2521d322005-05-08 14:45:13 +0000209#include "pub_core_aspacemgr.h"
njnd2b17112005-04-19 04:10:25 +0000210#include "pub_core_errormgr.h"
sewardj3b290482011-05-06 21:02:55 +0000211#include "pub_core_gdbserver.h"
njn97405b22005-06-02 03:39:33 +0000212#include "pub_core_libcbase.h"
njn132bfcc2005-06-04 19:16:06 +0000213#include "pub_core_libcassert.h"
njn36a20fa2005-06-03 03:08:39 +0000214#include "pub_core_libcprint.h"
njnf39e9a32005-06-12 02:43:17 +0000215#include "pub_core_libcproc.h"
njnde62cbf2005-06-10 22:08:14 +0000216#include "pub_core_libcsignal.h"
njnf536bbb2005-06-13 04:21:38 +0000217#include "pub_core_machine.h"
njnaf1d7df2005-06-11 01:31:52 +0000218#include "pub_core_mallocfree.h"
njn20242342005-05-16 23:31:24 +0000219#include "pub_core_options.h"
njnc7561b92005-06-19 01:24:32 +0000220#include "pub_core_scheduler.h"
njn0c246472005-05-31 01:00:08 +0000221#include "pub_core_signals.h"
njn24a6efb2005-06-20 03:36:51 +0000222#include "pub_core_sigframe.h" // For VG_(sigframe_create)()
njn945ed2e2005-06-24 03:28:30 +0000223#include "pub_core_stacks.h" // For VG_(change_stack)()
njn24a6efb2005-06-20 03:36:51 +0000224#include "pub_core_stacktrace.h" // For VG_(get_and_pp_StackTrace)()
njn9abd6082005-06-17 21:31:45 +0000225#include "pub_core_syscall.h"
njnc1b01812005-06-17 22:19:06 +0000226#include "pub_core_syswrap.h"
njn43b9a8a2005-05-10 04:37:01 +0000227#include "pub_core_tooliface.h"
sewardjcf4ac712005-11-01 00:03:40 +0000228#include "pub_core_coredump.h"
sewardj985fabb2005-04-24 14:18:14 +0000229
njnd2b17112005-04-19 04:10:25 +0000230
sewardj018f7622002-05-15 21:13:39 +0000231/* ---------------------------------------------------------------------
232 Forwards decls.
233 ------------------------------------------------------------------ */
234
njn5a350be2009-04-30 03:05:05 +0000235static void sync_signalhandler ( Int sigNo, vki_siginfo_t *info,
236 struct vki_ucontext * );
237static void async_signalhandler ( Int sigNo, vki_siginfo_t *info,
238 struct vki_ucontext * );
239static void sigvgkill_handler ( Int sigNo, vki_siginfo_t *info,
240 struct vki_ucontext * );
sewardj018f7622002-05-15 21:13:39 +0000241
sewardjb5f6f512005-03-10 23:59:00 +0000242/* Maximum usable signal. */
243Int VG_(max_signal) = _VKI_NSIG;
nethercote759dda32004-08-07 18:16:56 +0000244
sewardjb5f6f512005-03-10 23:59:00 +0000245#define N_QUEUED_SIGNALS 8
nethercote759dda32004-08-07 18:16:56 +0000246
sewardjb5f6f512005-03-10 23:59:00 +0000247typedef struct SigQueue {
248 Int next;
249 vki_siginfo_t sigs[N_QUEUED_SIGNALS];
250} SigQueue;
nethercote759dda32004-08-07 18:16:56 +0000251
sewardj489bfec2006-10-17 02:00:29 +0000252/* ------ Macros for pulling stuff out of ucontexts ------ */
253
njncda2f0f2009-05-18 02:12:08 +0000254/* Q: what does VG_UCONTEXT_SYSCALL_SYSRES do? A: let's suppose the
njn5a350be2009-04-30 03:05:05 +0000255 machine context (uc) reflects the situation that a syscall had just
256 completed, quite literally -- that is, that the program counter was
257 now at the instruction following the syscall. (or we're slightly
258 downstream, but we're sure no relevant register has yet changed
njncda2f0f2009-05-18 02:12:08 +0000259 value.) Then VG_UCONTEXT_SYSCALL_SYSRES returns a SysRes reflecting
njn5a350be2009-04-30 03:05:05 +0000260 the result of the syscall; it does this by fishing relevant bits of
261 the machine state out of the uc. Of course if the program counter
262 was somewhere else entirely then the result is likely to be
njncda2f0f2009-05-18 02:12:08 +0000263 meaningless, so the caller of VG_UCONTEXT_SYSCALL_SYSRES has to be
njn5a350be2009-04-30 03:05:05 +0000264 very careful to pay attention to the results only when it is sure
265 that the said constraint on the program counter is indeed valid. */
sewardjf5f1e122010-01-02 13:24:58 +0000266
njn605f4882005-05-29 17:50:40 +0000267#if defined(VGP_x86_linux)
njnaf839f52005-06-23 03:27:57 +0000268# define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.eip)
269# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.esp)
sewardjacaec5f2005-08-19 16:02:59 +0000270# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
sewardja8d8e232005-06-07 20:04:56 +0000271 /* Convert the value in uc_mcontext.eax into a SysRes. */ \
cerion85665ca2005-06-20 15:51:07 +0000272 VG_(mk_SysRes_x86_linux)( (uc)->uc_mcontext.eax )
sewardj59570ff2010-01-01 11:59:33 +0000273# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
274 { (srP)->r_pc = (ULong)((uc)->uc_mcontext.eip); \
275 (srP)->r_sp = (ULong)((uc)->uc_mcontext.esp); \
276 (srP)->misc.X86.r_ebp = (uc)->uc_mcontext.ebp; \
277 }
sewardje7aa4ae2005-06-09 12:43:42 +0000278
njn605f4882005-05-29 17:50:40 +0000279#elif defined(VGP_amd64_linux)
njnaf839f52005-06-23 03:27:57 +0000280# define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.rip)
281# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.rsp)
sewardjacaec5f2005-08-19 16:02:59 +0000282# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
sewardje7aa4ae2005-06-09 12:43:42 +0000283 /* Convert the value in uc_mcontext.rax into a SysRes. */ \
cerion85665ca2005-06-20 15:51:07 +0000284 VG_(mk_SysRes_amd64_linux)( (uc)->uc_mcontext.rax )
sewardj59570ff2010-01-01 11:59:33 +0000285# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
286 { (srP)->r_pc = (uc)->uc_mcontext.rip; \
287 (srP)->r_sp = (uc)->uc_mcontext.rsp; \
288 (srP)->misc.AMD64.r_rbp = (uc)->uc_mcontext.rbp; \
289 }
sewardje7aa4ae2005-06-09 12:43:42 +0000290
cerion85665ca2005-06-20 15:51:07 +0000291#elif defined(VGP_ppc32_linux)
sewardja36dcfa2005-11-25 02:16:58 +0000292/* Comments from Paul Mackerras 25 Nov 05:
293
294 > I'm tracking down a problem where V's signal handling doesn't
295 > work properly on a ppc440gx running 2.4.20. The problem is that
296 > the ucontext being presented to V's sighandler seems completely
297 > bogus.
298
299 > V's kernel headers and hence ucontext layout are derived from
300 > 2.6.9. I compared include/asm-ppc/ucontext.h from 2.4.20 and
301 > 2.6.13.
302
303 > Can I just check my interpretation: the 2.4.20 one contains the
304 > uc_mcontext field in line, whereas the 2.6.13 one has a pointer
305 > to said struct? And so if V is using the 2.6.13 struct then a
306 > 2.4.20 one will make no sense to it.
307
308 Not quite... what is inline in the 2.4.20 version is a
309 sigcontext_struct, not an mcontext. The sigcontext looks like
310 this:
311
312 struct sigcontext_struct {
313 unsigned long _unused[4];
314 int signal;
315 unsigned long handler;
316 unsigned long oldmask;
317 struct pt_regs *regs;
318 };
319
320 The regs pointer of that struct ends up at the same offset as the
321 uc_regs of the 2.6 struct ucontext, and a struct pt_regs is the
322 same as the mc_gregs field of the mcontext. In fact the integer
323 regs are followed in memory by the floating point regs on 2.4.20.
324
325 Thus if you are using the 2.6 definitions, it should work on 2.4.20
326 provided that you go via uc->uc_regs rather than looking in
327 uc->uc_mcontext directly.
328
329 There is another subtlety: 2.4.20 doesn't save the vector regs when
330 delivering a signal, and 2.6.x only saves the vector regs if the
331 process has ever used an altivec instructions. If 2.6.x does save
332 the vector regs, it sets the MSR_VEC bit in
333 uc->uc_regs->mc_gregs[PT_MSR], otherwise it clears it. That bit
334 will always be clear under 2.4.20. So you can use that bit to tell
335 whether uc->uc_regs->mc_vregs is valid. */
sewardjf5f1e122010-01-02 13:24:58 +0000336# define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_regs->mc_gregs[VKI_PT_NIP])
337# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_regs->mc_gregs[VKI_PT_R1])
sewardj39a7c1d2005-11-24 03:54:38 +0000338# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
339 /* Convert the values in uc_mcontext r3,cr into a SysRes. */ \
340 VG_(mk_SysRes_ppc32_linux)( \
sewardja36dcfa2005-11-25 02:16:58 +0000341 (uc)->uc_regs->mc_gregs[VKI_PT_R3], \
342 (((uc)->uc_regs->mc_gregs[VKI_PT_CCR] >> 28) & 1) \
sewardj39a7c1d2005-11-24 03:54:38 +0000343 )
sewardjf5f1e122010-01-02 13:24:58 +0000344# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
345 { (srP)->r_pc = (ULong)((uc)->uc_regs->mc_gregs[VKI_PT_NIP]); \
346 (srP)->r_sp = (ULong)((uc)->uc_regs->mc_gregs[VKI_PT_R1]); \
347 (srP)->misc.PPC32.r_lr = (uc)->uc_regs->mc_gregs[VKI_PT_LNK]; \
348 }
cerion85665ca2005-06-20 15:51:07 +0000349
carllcae0cc22014-08-07 23:17:29 +0000350#elif defined(VGP_ppc64be_linux) || defined(VGP_ppc64le_linux)
sewardjf5f1e122010-01-02 13:24:58 +0000351# define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.gp_regs[VKI_PT_NIP])
352# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.gp_regs[VKI_PT_R1])
sewardjdcb6ec82006-01-19 03:44:10 +0000353 /* Dubious hack: if there is an error, only consider the lowest 8
354 bits of r3. memcheck/tests/post-syscall shows a case where an
355 interrupted syscall should have produced a ucontext with 0x4
356 (VKI_EINTR) in r3 but is in fact producing 0x204. */
357 /* Awaiting clarification from PaulM. Evidently 0x204 is
358 ERESTART_RESTARTBLOCK, which shouldn't have made it into user
359 space. */
360 static inline SysRes VG_UCONTEXT_SYSCALL_SYSRES( struct vki_ucontext* uc )
361 {
362 ULong err = (uc->uc_mcontext.gp_regs[VKI_PT_CCR] >> 28) & 1;
363 ULong r3 = uc->uc_mcontext.gp_regs[VKI_PT_R3];
364 if (err) r3 &= 0xFF;
365 return VG_(mk_SysRes_ppc64_linux)( r3, err );
366 }
sewardjf5f1e122010-01-02 13:24:58 +0000367# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
368 { (srP)->r_pc = (uc)->uc_mcontext.gp_regs[VKI_PT_NIP]; \
369 (srP)->r_sp = (uc)->uc_mcontext.gp_regs[VKI_PT_R1]; \
370 (srP)->misc.PPC64.r_lr = (uc)->uc_mcontext.gp_regs[VKI_PT_LNK]; \
371 }
sewardj2c48c7b2005-11-29 13:05:56 +0000372
sewardj59570ff2010-01-01 11:59:33 +0000373#elif defined(VGP_arm_linux)
374# define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.arm_pc)
375# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.arm_sp)
376# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
377 /* Convert the value in uc_mcontext.rax into a SysRes. */ \
378 VG_(mk_SysRes_arm_linux)( (uc)->uc_mcontext.arm_r0 )
379# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
380 { (srP)->r_pc = (uc)->uc_mcontext.arm_pc; \
381 (srP)->r_sp = (uc)->uc_mcontext.arm_sp; \
382 (srP)->misc.ARM.r14 = (uc)->uc_mcontext.arm_lr; \
383 (srP)->misc.ARM.r12 = (uc)->uc_mcontext.arm_ip; \
384 (srP)->misc.ARM.r11 = (uc)->uc_mcontext.arm_fp; \
sewardjfa5ce562010-09-23 22:05:59 +0000385 (srP)->misc.ARM.r7 = (uc)->uc_mcontext.arm_r7; \
sewardj59570ff2010-01-01 11:59:33 +0000386 }
387
sewardjf0c12502014-01-12 12:54:00 +0000388#elif defined(VGP_arm64_linux)
389# define VG_UCONTEXT_INSTR_PTR(uc) ((UWord)((uc)->uc_mcontext.pc))
390# define VG_UCONTEXT_STACK_PTR(uc) ((UWord)((uc)->uc_mcontext.sp))
391# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
392 /* Convert the value in uc_mcontext.regs[0] into a SysRes. */ \
393 VG_(mk_SysRes_arm64_linux)( (uc)->uc_mcontext.regs[0] )
394# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
395 { (srP)->r_pc = (uc)->uc_mcontext.pc; \
396 (srP)->r_sp = (uc)->uc_mcontext.sp; \
397 (srP)->misc.ARM64.x29 = (uc)->uc_mcontext.regs[29]; \
398 (srP)->misc.ARM64.x30 = (uc)->uc_mcontext.regs[30]; \
399 }
400
njnf76d27a2009-05-28 01:53:07 +0000401#elif defined(VGP_x86_darwin)
402
403 static inline Addr VG_UCONTEXT_INSTR_PTR( void* ucV ) {
404 ucontext_t* uc = (ucontext_t*)ucV;
405 struct __darwin_mcontext32* mc = uc->uc_mcontext;
406 struct __darwin_i386_thread_state* ss = &mc->__ss;
407 return ss->__eip;
408 }
409 static inline Addr VG_UCONTEXT_STACK_PTR( void* ucV ) {
410 ucontext_t* uc = (ucontext_t*)ucV;
411 struct __darwin_mcontext32* mc = uc->uc_mcontext;
412 struct __darwin_i386_thread_state* ss = &mc->__ss;
413 return ss->__esp;
414 }
415 static inline SysRes VG_UCONTEXT_SYSCALL_SYSRES( void* ucV,
416 UWord scclass ) {
417 /* this is complicated by the problem that there are 3 different
418 kinds of syscalls, each with its own return convention.
419 NB: scclass is a host word, hence UWord is good for both
420 amd64-darwin and x86-darwin */
421 ucontext_t* uc = (ucontext_t*)ucV;
422 struct __darwin_mcontext32* mc = uc->uc_mcontext;
423 struct __darwin_i386_thread_state* ss = &mc->__ss;
424 /* duplicates logic in m_syswrap.getSyscallStatusFromGuestState */
425 UInt carry = 1 & ss->__eflags;
426 UInt err = 0;
427 UInt wLO = 0;
428 UInt wHI = 0;
429 switch (scclass) {
430 case VG_DARWIN_SYSCALL_CLASS_UNIX:
431 err = carry;
432 wLO = ss->__eax;
433 wHI = ss->__edx;
434 break;
435 case VG_DARWIN_SYSCALL_CLASS_MACH:
436 wLO = ss->__eax;
437 break;
438 case VG_DARWIN_SYSCALL_CLASS_MDEP:
439 wLO = ss->__eax;
440 break;
441 default:
442 vg_assert(0);
443 break;
444 }
445 return VG_(mk_SysRes_x86_darwin)( scclass, err ? True : False,
446 wHI, wLO );
447 }
sewardj67b38c32010-01-01 12:44:12 +0000448 static inline
449 void VG_UCONTEXT_TO_UnwindStartRegs( UnwindStartRegs* srP,
450 void* ucV ) {
451 ucontext_t* uc = (ucontext_t*)(ucV);
njnf76d27a2009-05-28 01:53:07 +0000452 struct __darwin_mcontext32* mc = uc->uc_mcontext;
453 struct __darwin_i386_thread_state* ss = &mc->__ss;
sewardj67b38c32010-01-01 12:44:12 +0000454 srP->r_pc = (ULong)(ss->__eip);
455 srP->r_sp = (ULong)(ss->__esp);
456 srP->misc.X86.r_ebp = (UInt)(ss->__ebp);
njnf76d27a2009-05-28 01:53:07 +0000457 }
458
459#elif defined(VGP_amd64_darwin)
460
461 static inline Addr VG_UCONTEXT_INSTR_PTR( void* ucV ) {
sewardj625c3e72012-03-27 08:44:17 +0000462 ucontext_t* uc = (ucontext_t*)ucV;
463 struct __darwin_mcontext64* mc = uc->uc_mcontext;
464 struct __darwin_x86_thread_state64* ss = &mc->__ss;
465 return ss->__rip;
njnf76d27a2009-05-28 01:53:07 +0000466 }
467 static inline Addr VG_UCONTEXT_STACK_PTR( void* ucV ) {
sewardj625c3e72012-03-27 08:44:17 +0000468 ucontext_t* uc = (ucontext_t*)ucV;
469 struct __darwin_mcontext64* mc = uc->uc_mcontext;
470 struct __darwin_x86_thread_state64* ss = &mc->__ss;
471 return ss->__rsp;
njnf76d27a2009-05-28 01:53:07 +0000472 }
473 static inline SysRes VG_UCONTEXT_SYSCALL_SYSRES( void* ucV,
474 UWord scclass ) {
sewardj625c3e72012-03-27 08:44:17 +0000475 /* This is copied from the x86-darwin case. I'm not sure if it
476 is correct. */
477 ucontext_t* uc = (ucontext_t*)ucV;
478 struct __darwin_mcontext64* mc = uc->uc_mcontext;
479 struct __darwin_x86_thread_state64* ss = &mc->__ss;
480 /* duplicates logic in m_syswrap.getSyscallStatusFromGuestState */
481 ULong carry = 1 & ss->__rflags;
482 ULong err = 0;
483 ULong wLO = 0;
484 ULong wHI = 0;
485 switch (scclass) {
486 case VG_DARWIN_SYSCALL_CLASS_UNIX:
487 err = carry;
488 wLO = ss->__rax;
489 wHI = ss->__rdx;
490 break;
491 case VG_DARWIN_SYSCALL_CLASS_MACH:
492 wLO = ss->__rax;
493 break;
494 case VG_DARWIN_SYSCALL_CLASS_MDEP:
495 wLO = ss->__rax;
496 break;
497 default:
498 vg_assert(0);
499 break;
500 }
501 return VG_(mk_SysRes_amd64_darwin)( scclass, err ? True : False,
502 wHI, wLO );
njnf76d27a2009-05-28 01:53:07 +0000503 }
njnea2d6fd2010-07-01 00:20:20 +0000504 static inline
505 void VG_UCONTEXT_TO_UnwindStartRegs( UnwindStartRegs* srP,
506 void* ucV ) {
sewardj625c3e72012-03-27 08:44:17 +0000507 ucontext_t* uc = (ucontext_t*)ucV;
508 struct __darwin_mcontext64* mc = uc->uc_mcontext;
509 struct __darwin_x86_thread_state64* ss = &mc->__ss;
510 srP->r_pc = (ULong)(ss->__rip);
511 srP->r_sp = (ULong)(ss->__rsp);
512 srP->misc.AMD64.r_rbp = (ULong)(ss->__rbp);
njnf76d27a2009-05-28 01:53:07 +0000513 }
514
sewardjb5b87402011-03-07 16:05:35 +0000515#elif defined(VGP_s390x_linux)
516
517# define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.regs.psw.addr)
518# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.regs.gprs[15])
519# define VG_UCONTEXT_FRAME_PTR(uc) ((uc)->uc_mcontext.regs.gprs[11])
520# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
521 VG_(mk_SysRes_s390x_linux)((uc)->uc_mcontext.regs.gprs[2])
522# define VG_UCONTEXT_LINK_REG(uc) ((uc)->uc_mcontext.regs.gprs[14])
523
524# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
525 { (srP)->r_pc = (ULong)((uc)->uc_mcontext.regs.psw.addr); \
526 (srP)->r_sp = (ULong)((uc)->uc_mcontext.regs.gprs[15]); \
527 (srP)->misc.S390X.r_fp = (uc)->uc_mcontext.regs.gprs[11]; \
528 (srP)->misc.S390X.r_lr = (uc)->uc_mcontext.regs.gprs[14]; \
529 }
530
sewardj5db15402012-06-07 09:13:21 +0000531#elif defined(VGP_mips32_linux)
532# define VG_UCONTEXT_INSTR_PTR(uc) ((UWord)(((uc)->uc_mcontext.sc_pc)))
533# define VG_UCONTEXT_STACK_PTR(uc) ((UWord)((uc)->uc_mcontext.sc_regs[29]))
534# define VG_UCONTEXT_FRAME_PTR(uc) ((uc)->uc_mcontext.sc_regs[30])
535# define VG_UCONTEXT_SYSCALL_NUM(uc) ((uc)->uc_mcontext.sc_regs[2])
536# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
537 /* Convert the value in uc_mcontext.rax into a SysRes. */ \
538 VG_(mk_SysRes_mips32_linux)( (uc)->uc_mcontext.sc_regs[2], \
539 (uc)->uc_mcontext.sc_regs[3], \
540 (uc)->uc_mcontext.sc_regs[7])
541
542# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
543 { (srP)->r_pc = (uc)->uc_mcontext.sc_pc; \
544 (srP)->r_sp = (uc)->uc_mcontext.sc_regs[29]; \
545 (srP)->misc.MIPS32.r30 = (uc)->uc_mcontext.sc_regs[30]; \
546 (srP)->misc.MIPS32.r31 = (uc)->uc_mcontext.sc_regs[31]; \
547 (srP)->misc.MIPS32.r28 = (uc)->uc_mcontext.sc_regs[28]; \
548 }
549
petarj4df0bfc2013-02-27 23:17:33 +0000550#elif defined(VGP_mips64_linux)
551# define VG_UCONTEXT_INSTR_PTR(uc) (((uc)->uc_mcontext.sc_pc))
552# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.sc_regs[29])
553# define VG_UCONTEXT_FRAME_PTR(uc) ((uc)->uc_mcontext.sc_regs[30])
554# define VG_UCONTEXT_SYSCALL_NUM(uc) ((uc)->uc_mcontext.sc_regs[2])
555# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
556 /* Convert the value in uc_mcontext.rax into a SysRes. */ \
557 VG_(mk_SysRes_mips64_linux)((uc)->uc_mcontext.sc_regs[2], \
558 (uc)->uc_mcontext.sc_regs[3], \
559 (uc)->uc_mcontext.sc_regs[7])
560
561# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
562 { (srP)->r_pc = (uc)->uc_mcontext.sc_pc; \
563 (srP)->r_sp = (uc)->uc_mcontext.sc_regs[29]; \
564 (srP)->misc.MIPS64.r30 = (uc)->uc_mcontext.sc_regs[30]; \
565 (srP)->misc.MIPS64.r31 = (uc)->uc_mcontext.sc_regs[31]; \
566 (srP)->misc.MIPS64.r28 = (uc)->uc_mcontext.sc_regs[28]; \
567 }
sewardj8eb8bab2015-07-21 14:44:28 +0000568
sewardj112711a2015-04-10 12:30:09 +0000569#elif defined(VGP_tilegx_linux)
570# define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_mcontext.pc)
571# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_mcontext.sp)
572# define VG_UCONTEXT_FRAME_PTR(uc) ((uc)->uc_mcontext.gregs[52])
573# define VG_UCONTEXT_SYSCALL_NUM(uc) ((uc)->uc_mcontext.gregs[10])
574# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
575 /* Convert the value in uc_mcontext.rax into a SysRes. */ \
florian72dabf42015-04-20 21:13:03 +0000576 VG_(mk_SysRes_tilegx_linux)((uc)->uc_mcontext.gregs[0])
sewardj112711a2015-04-10 12:30:09 +0000577# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
578 { (srP)->r_pc = (uc)->uc_mcontext.pc; \
579 (srP)->r_sp = (uc)->uc_mcontext.sp; \
580 (srP)->misc.TILEGX.r52 = (uc)->uc_mcontext.gregs[52]; \
581 (srP)->misc.TILEGX.r55 = (uc)->uc_mcontext.lr; \
582 }
sewardj8eb8bab2015-07-21 14:44:28 +0000583
584#elif defined(VGP_x86_solaris)
585# define VG_UCONTEXT_INSTR_PTR(uc) ((Addr)(uc)->uc_mcontext.gregs[VKI_EIP])
586# define VG_UCONTEXT_STACK_PTR(uc) ((Addr)(uc)->uc_mcontext.gregs[VKI_UESP])
587# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
588 VG_(mk_SysRes_x86_solaris)((uc)->uc_mcontext.gregs[VKI_EFL] & 1, \
589 (uc)->uc_mcontext.gregs[VKI_EAX], \
590 (uc)->uc_mcontext.gregs[VKI_EFL] & 1 \
591 ? 0 : (uc)->uc_mcontext.gregs[VKI_EDX])
592# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
593 { (srP)->r_pc = (ULong)(uc)->uc_mcontext.gregs[VKI_EIP]; \
594 (srP)->r_sp = (ULong)(uc)->uc_mcontext.gregs[VKI_UESP]; \
595 (srP)->misc.X86.r_ebp = (uc)->uc_mcontext.gregs[VKI_EBP]; \
596 }
597
598#elif defined(VGP_amd64_solaris)
599# define VG_UCONTEXT_INSTR_PTR(uc) ((Addr)(uc)->uc_mcontext.gregs[VKI_REG_RIP])
600# define VG_UCONTEXT_STACK_PTR(uc) ((Addr)(uc)->uc_mcontext.gregs[VKI_REG_RSP])
601# define VG_UCONTEXT_SYSCALL_SYSRES(uc) \
602 VG_(mk_SysRes_amd64_solaris)((uc)->uc_mcontext.gregs[VKI_REG_RFL] & 1, \
603 (uc)->uc_mcontext.gregs[VKI_REG_RAX], \
604 (uc)->uc_mcontext.gregs[VKI_REG_RFL] & 1 \
605 ? 0 : (uc)->uc_mcontext.gregs[VKI_REG_RDX])
606# define VG_UCONTEXT_TO_UnwindStartRegs(srP, uc) \
607 { (srP)->r_pc = (uc)->uc_mcontext.gregs[VKI_REG_RIP]; \
608 (srP)->r_sp = (uc)->uc_mcontext.gregs[VKI_REG_RSP]; \
609 (srP)->misc.AMD64.r_rbp = (uc)->uc_mcontext.gregs[VKI_REG_RBP]; \
610 }
sewardj112711a2015-04-10 12:30:09 +0000611#else
njn605f4882005-05-29 17:50:40 +0000612# error Unknown platform
613#endif
614
sewardj489bfec2006-10-17 02:00:29 +0000615
616/* ------ Macros for pulling stuff out of siginfos ------ */
617
618/* These macros allow use of uniform names when working with
floriand2190292015-01-08 21:05:03 +0000619 both the Linux and Darwin vki definitions. */
sewardj489bfec2006-10-17 02:00:29 +0000620#if defined(VGO_linux)
621# define VKI_SIGINFO_si_addr _sifields._sigfault._addr
622# define VKI_SIGINFO_si_pid _sifields._kill._pid
sewardj8eb8bab2015-07-21 14:44:28 +0000623#elif defined(VGO_darwin) || defined(VGO_solaris)
njnf76d27a2009-05-28 01:53:07 +0000624# define VKI_SIGINFO_si_addr si_addr
625# define VKI_SIGINFO_si_pid si_pid
sewardj489bfec2006-10-17 02:00:29 +0000626#else
627# error Unknown OS
628#endif
629
630
nethercote759dda32004-08-07 18:16:56 +0000631/* ---------------------------------------------------------------------
sewardj018f7622002-05-15 21:13:39 +0000632 HIGH LEVEL STUFF TO DO WITH SIGNALS: POLICY (MOSTLY)
633 ------------------------------------------------------------------ */
634
sewardjde4a1d02002-03-22 01:27:54 +0000635/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000636 Signal state for this process.
637 ------------------------------------------------------------------ */
638
sewardj018f7622002-05-15 21:13:39 +0000639
nethercote73b526f2004-10-31 18:48:21 +0000640/* Base-ment of these arrays[_VKI_NSIG].
sewardjb48e5002002-05-13 00:16:03 +0000641
nethercote73b526f2004-10-31 18:48:21 +0000642 Valid signal numbers are 1 .. _VKI_NSIG inclusive.
sewardjb48e5002002-05-13 00:16:03 +0000643 Rather than subtracting 1 for indexing these arrays, which
644 is tedious and error-prone, they are simply dimensioned 1 larger,
645 and entry [0] is not used.
646 */
647
sewardjb48e5002002-05-13 00:16:03 +0000648
sewardj018f7622002-05-15 21:13:39 +0000649/* -----------------------------------------------------
650 Static client signal state (SCSS). This is the state
651 that the client thinks it has the kernel in.
652 SCSS records verbatim the client's settings. These
653 are mashed around only when SKSS is calculated from it.
654 -------------------------------------------------- */
sewardjb48e5002002-05-13 00:16:03 +0000655
sewardj018f7622002-05-15 21:13:39 +0000656typedef
657 struct {
658 void* scss_handler; /* VKI_SIG_DFL or VKI_SIG_IGN or ptr to
659 client's handler */
660 UInt scss_flags;
nethercote73b526f2004-10-31 18:48:21 +0000661 vki_sigset_t scss_mask;
sewardjb5f6f512005-03-10 23:59:00 +0000662 void* scss_restorer; /* where sigreturn goes */
njncda2f0f2009-05-18 02:12:08 +0000663 void* scss_sa_tramp; /* sa_tramp setting, Darwin only */
664 /* re _restorer and _sa_tramp, we merely record the values
665 supplied when the client does 'sigaction' and give them back
666 when requested. Otherwise they are simply ignored. */
sewardj018f7622002-05-15 21:13:39 +0000667 }
668 SCSS_Per_Signal;
sewardjb48e5002002-05-13 00:16:03 +0000669
sewardj018f7622002-05-15 21:13:39 +0000670typedef
671 struct {
sewardj2342c972002-05-22 23:34:20 +0000672 /* per-signal info */
nethercote73b526f2004-10-31 18:48:21 +0000673 SCSS_Per_Signal scss_per_sig[1+_VKI_NSIG];
sewardj2342c972002-05-22 23:34:20 +0000674
sewardj018f7622002-05-15 21:13:39 +0000675 /* Additional elements to SCSS not stored here:
676 - for each thread, the thread's blocking mask
677 - for each thread in WaitSIG, the set of waited-on sigs
678 */
679 }
680 SCSS;
sewardjb48e5002002-05-13 00:16:03 +0000681
njn695c16e2005-03-27 03:40:28 +0000682static SCSS scss;
sewardj018f7622002-05-15 21:13:39 +0000683
684
685/* -----------------------------------------------------
686 Static kernel signal state (SKSS). This is the state
687 that we have the kernel in. It is computed from SCSS.
688 -------------------------------------------------- */
689
690/* Let's do:
691 sigprocmask assigns to all thread masks
692 so that at least everything is always consistent
693 Flags:
jsgf855d93d2003-10-13 22:26:55 +0000694 SA_SIGINFO -- we always set it, and honour it for the client
sewardj018f7622002-05-15 21:13:39 +0000695 SA_NOCLDSTOP -- passed to kernel
sewardjb5f6f512005-03-10 23:59:00 +0000696 SA_ONESHOT or SA_RESETHAND -- pass through
jsgf855d93d2003-10-13 22:26:55 +0000697 SA_RESTART -- we observe this but set our handlers to always restart
sewardj8eb8bab2015-07-21 14:44:28 +0000698 (this doesn't apply to the Solaris port)
jsgf855d93d2003-10-13 22:26:55 +0000699 SA_NOMASK or SA_NODEFER -- we observe this, but our handlers block everything
sewardjb5f6f512005-03-10 23:59:00 +0000700 SA_ONSTACK -- pass through
701 SA_NOCLDWAIT -- pass through
sewardjb48e5002002-05-13 00:16:03 +0000702*/
sewardjde4a1d02002-03-22 01:27:54 +0000703
sewardj77e466c2002-04-14 02:29:29 +0000704
sewardj018f7622002-05-15 21:13:39 +0000705typedef
706 struct {
707 void* skss_handler; /* VKI_SIG_DFL or VKI_SIG_IGN
708 or ptr to our handler */
709 UInt skss_flags;
710 /* There is no skss_mask, since we know that we will always ask
jsgf855d93d2003-10-13 22:26:55 +0000711 for all signals to be blocked in our sighandlers. */
sewardj018f7622002-05-15 21:13:39 +0000712 /* Also there is no skss_restorer. */
713 }
714 SKSS_Per_Signal;
sewardjde4a1d02002-03-22 01:27:54 +0000715
sewardj018f7622002-05-15 21:13:39 +0000716typedef
717 struct {
nethercote73b526f2004-10-31 18:48:21 +0000718 SKSS_Per_Signal skss_per_sig[1+_VKI_NSIG];
sewardj018f7622002-05-15 21:13:39 +0000719 }
720 SKSS;
721
njn695c16e2005-03-27 03:40:28 +0000722static SKSS skss;
sewardjde4a1d02002-03-22 01:27:54 +0000723
sewardj3b290482011-05-06 21:02:55 +0000724/* returns True if signal is to be ignored.
725 To check this, possibly call gdbserver with tid. */
philippeb3014692015-05-17 13:38:25 +0000726static Bool is_sig_ign(vki_siginfo_t *info, ThreadId tid)
jsgf855d93d2003-10-13 22:26:55 +0000727{
philippeb3014692015-05-17 13:38:25 +0000728 vg_assert(info->si_signo >= 1 && info->si_signo <= _VKI_NSIG);
sewardj2e93c502002-04-12 11:12:52 +0000729
philippeb3014692015-05-17 13:38:25 +0000730 /* If VG_(gdbserver_report_signal) tells to report the signal,
731 then verify if this signal is not to be ignored. GDB might have
732 modified si_signo, so we check after the call to gdbserver. */
733 return !VG_(gdbserver_report_signal) (info, tid)
734 || scss.scss_per_sig[info->si_signo].scss_handler == VKI_SIG_IGN;
jsgf855d93d2003-10-13 22:26:55 +0000735}
sewardjb48e5002002-05-13 00:16:03 +0000736
sewardj018f7622002-05-15 21:13:39 +0000737/* ---------------------------------------------------------------------
738 Compute the SKSS required by the current SCSS.
739 ------------------------------------------------------------------ */
740
sewardj4f29ddf2002-05-03 22:29:04 +0000741static
sewardj018f7622002-05-15 21:13:39 +0000742void pp_SKSS ( void )
743{
744 Int sig;
745 VG_(printf)("\n\nSKSS:\n");
nethercote73b526f2004-10-31 18:48:21 +0000746 for (sig = 1; sig <= _VKI_NSIG; sig++) {
dirk61780382007-10-01 10:33:41 +0000747 VG_(printf)("sig %d: handler %p, flags 0x%x\n", sig,
njn695c16e2005-03-27 03:40:28 +0000748 skss.skss_per_sig[sig].skss_handler,
749 skss.skss_per_sig[sig].skss_flags );
sewardj77e466c2002-04-14 02:29:29 +0000750
sewardj018f7622002-05-15 21:13:39 +0000751 }
sewardj018f7622002-05-15 21:13:39 +0000752}
753
sewardj018f7622002-05-15 21:13:39 +0000754/* This is the core, clever bit. Computation is as follows:
755
756 For each signal
757 handler = if client has a handler, then our handler
jsgf855d93d2003-10-13 22:26:55 +0000758 else if client is DFL, then our handler as well
759 else (client must be IGN)
sewardjb5f6f512005-03-10 23:59:00 +0000760 then hander is IGN
sewardj018f7622002-05-15 21:13:39 +0000761*/
762static
763void calculate_SKSS_from_SCSS ( SKSS* dst )
764{
765 Int sig;
sewardj018f7622002-05-15 21:13:39 +0000766 UInt scss_flags;
767 UInt skss_flags;
768
nethercote73b526f2004-10-31 18:48:21 +0000769 for (sig = 1; sig <= _VKI_NSIG; sig++) {
jsgf855d93d2003-10-13 22:26:55 +0000770 void *skss_handler;
771 void *scss_handler;
772
njn695c16e2005-03-27 03:40:28 +0000773 scss_handler = scss.scss_per_sig[sig].scss_handler;
774 scss_flags = scss.scss_per_sig[sig].scss_flags;
sewardj018f7622002-05-15 21:13:39 +0000775
jsgf855d93d2003-10-13 22:26:55 +0000776 switch(sig) {
777 case VKI_SIGSEGV:
778 case VKI_SIGBUS:
779 case VKI_SIGFPE:
780 case VKI_SIGILL:
sewardjb5f6f512005-03-10 23:59:00 +0000781 case VKI_SIGTRAP:
jsgf855d93d2003-10-13 22:26:55 +0000782 /* For these, we always want to catch them and report, even
783 if the client code doesn't. */
njn695c16e2005-03-27 03:40:28 +0000784 skss_handler = sync_signalhandler;
jsgf855d93d2003-10-13 22:26:55 +0000785 break;
786
sewardjb5f6f512005-03-10 23:59:00 +0000787 case VKI_SIGCONT:
788 /* Let the kernel handle SIGCONT unless the client is actually
789 catching it. */
njn5a350be2009-04-30 03:05:05 +0000790 case VKI_SIGCHLD:
791 case VKI_SIGWINCH:
792 case VKI_SIGURG:
793 /* For signals which are have a default action of Ignore,
794 only set a handler if the client has set a signal handler.
795 Otherwise the kernel will interrupt a syscall which
796 wouldn't have otherwise been interrupted. */
njn695c16e2005-03-27 03:40:28 +0000797 if (scss.scss_per_sig[sig].scss_handler == VKI_SIG_DFL)
sewardjb5f6f512005-03-10 23:59:00 +0000798 skss_handler = VKI_SIG_DFL;
njn695c16e2005-03-27 03:40:28 +0000799 else if (scss.scss_per_sig[sig].scss_handler == VKI_SIG_IGN)
jsgf855d93d2003-10-13 22:26:55 +0000800 skss_handler = VKI_SIG_IGN;
sewardjb5f6f512005-03-10 23:59:00 +0000801 else
njn695c16e2005-03-27 03:40:28 +0000802 skss_handler = async_signalhandler;
jsgf855d93d2003-10-13 22:26:55 +0000803 break;
jsgf855d93d2003-10-13 22:26:55 +0000804
sewardjb5f6f512005-03-10 23:59:00 +0000805 default:
njna530fc62005-03-13 04:46:36 +0000806 // VKI_SIGVG* are runtime variables, so we can't make them
807 // cases in the switch, so we handle them in the 'default' case.
njn351d0062005-06-21 22:23:59 +0000808 if (sig == VG_SIGVGKILL)
sewardjb5f6f512005-03-10 23:59:00 +0000809 skss_handler = sigvgkill_handler;
sewardjb5f6f512005-03-10 23:59:00 +0000810 else {
811 if (scss_handler == VKI_SIG_IGN)
812 skss_handler = VKI_SIG_IGN;
813 else
njn695c16e2005-03-27 03:40:28 +0000814 skss_handler = async_signalhandler;
sewardjb5f6f512005-03-10 23:59:00 +0000815 }
816 break;
817 }
sewardj018f7622002-05-15 21:13:39 +0000818
sewardj018f7622002-05-15 21:13:39 +0000819 /* Flags */
820
821 skss_flags = 0;
jsgf855d93d2003-10-13 22:26:55 +0000822
sewardjb5f6f512005-03-10 23:59:00 +0000823 /* SA_NOCLDSTOP, SA_NOCLDWAIT: pass to kernel */
824 skss_flags |= scss_flags & (VKI_SA_NOCLDSTOP | VKI_SA_NOCLDWAIT);
jsgf855d93d2003-10-13 22:26:55 +0000825
sewardj018f7622002-05-15 21:13:39 +0000826 /* SA_ONESHOT: ignore client setting */
sewardjb5f6f512005-03-10 23:59:00 +0000827
sewardj8eb8bab2015-07-21 14:44:28 +0000828# if !defined(VGO_solaris)
sewardja8d8e232005-06-07 20:04:56 +0000829 /* SA_RESTART: ignore client setting and always set it for us.
830 Though we never rely on the kernel to restart a
jsgf855d93d2003-10-13 22:26:55 +0000831 syscall, we observe whether it wanted to restart the syscall
sewardja8d8e232005-06-07 20:04:56 +0000832 or not, which is needed by
833 VG_(fixup_guest_state_after_syscall_interrupted) */
sewardj018f7622002-05-15 21:13:39 +0000834 skss_flags |= VKI_SA_RESTART;
sewardj8eb8bab2015-07-21 14:44:28 +0000835#else
836 /* The above does not apply to the Solaris port, where the kernel does
837 not directly restart syscalls, but instead it checks SA_RESTART flag
838 and if it is set then it returns ERESTART to libc and the library
839 actually restarts the syscall. */
840 skss_flags |= scss_flags & VKI_SA_RESTART;
841# endif
jsgf855d93d2003-10-13 22:26:55 +0000842
843 /* SA_NOMASK: ignore it */
844
sewardj2342c972002-05-22 23:34:20 +0000845 /* SA_ONSTACK: client setting is irrelevant here */
sewardjb5f6f512005-03-10 23:59:00 +0000846 /* We don't set a signal stack, so ignore */
sewardj018f7622002-05-15 21:13:39 +0000847
jsgf855d93d2003-10-13 22:26:55 +0000848 /* always ask for SA_SIGINFO */
849 skss_flags |= VKI_SA_SIGINFO;
sewardj018f7622002-05-15 21:13:39 +0000850
fitzhardinge4f10ada2004-06-03 10:00:42 +0000851 /* use our own restorer */
852 skss_flags |= VKI_SA_RESTORER;
853
jsgf855d93d2003-10-13 22:26:55 +0000854 /* Create SKSS entry for this signal. */
sewardj6a3c26e2002-05-23 17:09:43 +0000855 if (sig != VKI_SIGKILL && sig != VKI_SIGSTOP)
856 dst->skss_per_sig[sig].skss_handler = skss_handler;
857 else
858 dst->skss_per_sig[sig].skss_handler = VKI_SIG_DFL;
859
sewardj018f7622002-05-15 21:13:39 +0000860 dst->skss_per_sig[sig].skss_flags = skss_flags;
861 }
862
863 /* Sanity checks. */
nethercote5fd72bb2004-11-04 19:28:38 +0000864 vg_assert(dst->skss_per_sig[VKI_SIGKILL].skss_handler == VKI_SIG_DFL);
865 vg_assert(dst->skss_per_sig[VKI_SIGSTOP].skss_handler == VKI_SIG_DFL);
sewardj018f7622002-05-15 21:13:39 +0000866
867 if (0)
868 pp_SKSS();
869}
870
871
872/* ---------------------------------------------------------------------
873 After a possible SCSS change, update SKSS and the kernel itself.
874 ------------------------------------------------------------------ */
875
njn9abd6082005-06-17 21:31:45 +0000876// We need two levels of macro-expansion here to convert __NR_rt_sigreturn
877// to a number before converting it to a string... sigh.
sewardj03d8aa82005-10-14 11:25:49 +0000878extern void my_sigreturn(void);
njn9abd6082005-06-17 21:31:45 +0000879
880#if defined(VGP_x86_linux)
njn5a350be2009-04-30 03:05:05 +0000881# define _MY_SIGRETURN(name) \
sewardjd9fc3822005-11-18 23:50:43 +0000882 ".text\n" \
philippe9fdca562012-04-16 22:06:47 +0000883 ".globl my_sigreturn\n" \
njn9abd6082005-06-17 21:31:45 +0000884 "my_sigreturn:\n" \
885 " movl $" #name ", %eax\n" \
sewardj2fedc642005-11-19 02:02:57 +0000886 " int $0x80\n" \
887 ".previous\n"
sewardj59570ff2010-01-01 11:59:33 +0000888
njn9abd6082005-06-17 21:31:45 +0000889#elif defined(VGP_amd64_linux)
njn5a350be2009-04-30 03:05:05 +0000890# define _MY_SIGRETURN(name) \
sewardjd9fc3822005-11-18 23:50:43 +0000891 ".text\n" \
philippe9fdca562012-04-16 22:06:47 +0000892 ".globl my_sigreturn\n" \
njn9abd6082005-06-17 21:31:45 +0000893 "my_sigreturn:\n" \
894 " movq $" #name ", %rax\n" \
sewardj2fedc642005-11-19 02:02:57 +0000895 " syscall\n" \
896 ".previous\n"
sewardj59570ff2010-01-01 11:59:33 +0000897
cerion85665ca2005-06-20 15:51:07 +0000898#elif defined(VGP_ppc32_linux)
njn5a350be2009-04-30 03:05:05 +0000899# define _MY_SIGRETURN(name) \
sewardjd9fc3822005-11-18 23:50:43 +0000900 ".text\n" \
philippe9fdca562012-04-16 22:06:47 +0000901 ".globl my_sigreturn\n" \
cerion85665ca2005-06-20 15:51:07 +0000902 "my_sigreturn:\n" \
903 " li 0, " #name "\n" \
sewardj2fedc642005-11-19 02:02:57 +0000904 " sc\n" \
905 ".previous\n"
sewardj59570ff2010-01-01 11:59:33 +0000906
carllcae0cc22014-08-07 23:17:29 +0000907#elif defined(VGP_ppc64be_linux)
njn5a350be2009-04-30 03:05:05 +0000908# define _MY_SIGRETURN(name) \
cerion297c88f2005-12-22 15:53:12 +0000909 ".align 2\n" \
910 ".globl my_sigreturn\n" \
911 ".section \".opd\",\"aw\"\n" \
912 ".align 3\n" \
sewardj2c48c7b2005-11-29 13:05:56 +0000913 "my_sigreturn:\n" \
cerion297c88f2005-12-22 15:53:12 +0000914 ".quad .my_sigreturn,.TOC.@tocbase,0\n" \
915 ".previous\n" \
916 ".type .my_sigreturn,@function\n" \
917 ".globl .my_sigreturn\n" \
918 ".my_sigreturn:\n" \
sewardj2c48c7b2005-11-29 13:05:56 +0000919 " li 0, " #name "\n" \
cerion297c88f2005-12-22 15:53:12 +0000920 " sc\n"
sewardj59570ff2010-01-01 11:59:33 +0000921
carll582d5822014-08-07 23:35:54 +0000922#elif defined(VGP_ppc64le_linux)
923/* Little Endian supports ELF version 2. In the future, it may
924 * support other versions.
925 */
926# define _MY_SIGRETURN(name) \
927 ".align 2\n" \
928 ".globl my_sigreturn\n" \
929 ".type .my_sigreturn,@function\n" \
930 "my_sigreturn:\n" \
931 "#if _CALL_ELF == 2 \n" \
932 "0: addis 2,12,.TOC.-0b@ha\n" \
933 " addi 2,2,.TOC.-0b@l\n" \
934 " .localentry my_sigreturn,.-my_sigreturn\n" \
935 "#endif \n" \
936 " sc\n" \
937 " .size my_sigreturn,.-my_sigreturn\n"
938
sewardj59570ff2010-01-01 11:59:33 +0000939#elif defined(VGP_arm_linux)
940# define _MY_SIGRETURN(name) \
941 ".text\n" \
philippe9fdca562012-04-16 22:06:47 +0000942 ".globl my_sigreturn\n" \
sewardj59570ff2010-01-01 11:59:33 +0000943 "my_sigreturn:\n\t" \
944 " mov r7, #" #name "\n\t" \
945 " svc 0x00000000\n" \
946 ".previous\n"
947
sewardjf0c12502014-01-12 12:54:00 +0000948#elif defined(VGP_arm64_linux)
949# define _MY_SIGRETURN(name) \
950 ".text\n" \
951 ".globl my_sigreturn\n" \
952 "my_sigreturn:\n\t" \
953 " mov x8, #" #name "\n\t" \
954 " svc 0x0\n" \
955 ".previous\n"
956
njnf76d27a2009-05-28 01:53:07 +0000957#elif defined(VGP_x86_darwin)
958# define _MY_SIGRETURN(name) \
959 ".text\n" \
philippe9fdca562012-04-16 22:06:47 +0000960 ".globl my_sigreturn\n" \
njnf76d27a2009-05-28 01:53:07 +0000961 "my_sigreturn:\n" \
962 "movl $" VG_STRINGIFY(__NR_DARWIN_FAKE_SIGRETURN) ",%eax\n" \
963 "int $0x80"
sewardj59570ff2010-01-01 11:59:33 +0000964
njnf76d27a2009-05-28 01:53:07 +0000965#elif defined(VGP_amd64_darwin)
966 // DDD: todo
967# define _MY_SIGRETURN(name) \
968 ".text\n" \
philippe9fdca562012-04-16 22:06:47 +0000969 ".globl my_sigreturn\n" \
njnf76d27a2009-05-28 01:53:07 +0000970 "my_sigreturn:\n" \
971 "ud2\n"
sewardj59570ff2010-01-01 11:59:33 +0000972
sewardjb5b87402011-03-07 16:05:35 +0000973#elif defined(VGP_s390x_linux)
974# define _MY_SIGRETURN(name) \
975 ".text\n" \
philippe9fdca562012-04-16 22:06:47 +0000976 ".globl my_sigreturn\n" \
sewardjb5b87402011-03-07 16:05:35 +0000977 "my_sigreturn:\n" \
978 " svc " #name "\n" \
979 ".previous\n"
980
sewardj5db15402012-06-07 09:13:21 +0000981#elif defined(VGP_mips32_linux)
982# define _MY_SIGRETURN(name) \
983 ".text\n" \
984 "my_sigreturn:\n" \
985 " li $2, " #name "\n" /* apparently $2 is v0 */ \
986 " syscall\n" \
987 ".previous\n"
988
petarj4df0bfc2013-02-27 23:17:33 +0000989#elif defined(VGP_mips64_linux)
990# define _MY_SIGRETURN(name) \
991 ".text\n" \
992 "my_sigreturn:\n" \
993 " li $2, " #name "\n" \
994 " syscall\n" \
995 ".previous\n"
996
sewardj112711a2015-04-10 12:30:09 +0000997#elif defined(VGP_tilegx_linux)
998# define _MY_SIGRETURN(name) \
999 ".text\n" \
1000 "my_sigreturn:\n" \
1001 " moveli r10 ," #name "\n" \
1002 " swint1\n" \
1003 ".previous\n"
1004
sewardj8eb8bab2015-07-21 14:44:28 +00001005#elif defined(VGP_x86_solaris) || defined(VGP_amd64_solaris)
1006/* Not used on Solaris. */
1007# define _MY_SIGRETURN(name) \
1008 ".text\n" \
1009 ".globl my_sigreturn\n" \
1010 "my_sigreturn:\n" \
1011 "ud2\n" \
1012 ".previous\n"
1013
njn9abd6082005-06-17 21:31:45 +00001014#else
1015# error Unknown platform
1016#endif
1017
njn5a350be2009-04-30 03:05:05 +00001018#define MY_SIGRETURN(name) _MY_SIGRETURN(name)
njn9abd6082005-06-17 21:31:45 +00001019asm(
njn5a350be2009-04-30 03:05:05 +00001020 MY_SIGRETURN(__NR_rt_sigreturn)
njn9abd6082005-06-17 21:31:45 +00001021);
1022
1023
nethercote9dd11512004-08-04 15:31:30 +00001024static void handle_SCSS_change ( Bool force_update )
sewardj018f7622002-05-15 21:13:39 +00001025{
nethercote73b526f2004-10-31 18:48:21 +00001026 Int res, sig;
1027 SKSS skss_old;
njncda2f0f2009-05-18 02:12:08 +00001028 vki_sigaction_toK_t ksa;
1029 vki_sigaction_fromK_t ksa_old;
sewardj018f7622002-05-15 21:13:39 +00001030
sewardj018f7622002-05-15 21:13:39 +00001031 /* Remember old SKSS and calculate new one. */
njn695c16e2005-03-27 03:40:28 +00001032 skss_old = skss;
1033 calculate_SKSS_from_SCSS ( &skss );
sewardj018f7622002-05-15 21:13:39 +00001034
1035 /* Compare the new SKSS entries vs the old ones, and update kernel
1036 where they differ. */
sewardjb5f6f512005-03-10 23:59:00 +00001037 for (sig = 1; sig <= VG_(max_signal); sig++) {
sewardj018f7622002-05-15 21:13:39 +00001038
1039 /* Trying to do anything with SIGKILL is pointless; just ignore
1040 it. */
1041 if (sig == VKI_SIGKILL || sig == VKI_SIGSTOP)
1042 continue;
1043
sewardj018f7622002-05-15 21:13:39 +00001044 if (!force_update) {
1045 if ((skss_old.skss_per_sig[sig].skss_handler
njn695c16e2005-03-27 03:40:28 +00001046 == skss.skss_per_sig[sig].skss_handler)
sewardj018f7622002-05-15 21:13:39 +00001047 && (skss_old.skss_per_sig[sig].skss_flags
njn695c16e2005-03-27 03:40:28 +00001048 == skss.skss_per_sig[sig].skss_flags))
sewardj018f7622002-05-15 21:13:39 +00001049 /* no difference */
1050 continue;
1051 }
1052
njn695c16e2005-03-27 03:40:28 +00001053 ksa.ksa_handler = skss.skss_per_sig[sig].skss_handler;
1054 ksa.sa_flags = skss.skss_per_sig[sig].skss_flags;
njnf76d27a2009-05-28 01:53:07 +00001055# if !defined(VGP_ppc32_linux) && \
sewardj5db15402012-06-07 09:13:21 +00001056 !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
sewardj8eb8bab2015-07-21 14:44:28 +00001057 !defined(VGP_mips32_linux) && !defined(VGO_solaris)
njn9abd6082005-06-17 21:31:45 +00001058 ksa.sa_restorer = my_sigreturn;
sewardjce2a6152005-07-08 18:25:13 +00001059# endif
sewardj162bebd2005-07-09 10:43:45 +00001060 /* Re above ifdef (also the assertion below), PaulM says:
1061 The sa_restorer field is not used at all on ppc. Glibc
1062 converts the sigaction you give it into a kernel sigaction,
1063 but it doesn't put anything in the sa_restorer field.
1064 */
fitzhardinge4f10ada2004-06-03 10:00:42 +00001065
sewardjb5f6f512005-03-10 23:59:00 +00001066 /* block all signals in handler */
nethercote73b526f2004-10-31 18:48:21 +00001067 VG_(sigfillset)( &ksa.sa_mask );
1068 VG_(sigdelset)( &ksa.sa_mask, VKI_SIGKILL );
1069 VG_(sigdelset)( &ksa.sa_mask, VKI_SIGSTOP );
sewardj018f7622002-05-15 21:13:39 +00001070
sewardjb5f6f512005-03-10 23:59:00 +00001071 if (VG_(clo_trace_signals) && VG_(clo_verbosity) > 2)
sewardj738856f2009-07-15 14:48:32 +00001072 VG_(dmsg)("setting ksig %d to: hdlr %p, flags 0x%lx, "
1073 "mask(msb..lsb) 0x%llx 0x%llx\n",
1074 sig, ksa.ksa_handler,
1075 (UWord)ksa.sa_flags,
1076 _VKI_NSIG_WORDS > 1 ? (ULong)ksa.sa_mask.sig[1] : 0,
1077 (ULong)ksa.sa_mask.sig[0]);
sewardj018f7622002-05-15 21:13:39 +00001078
nethercote73b526f2004-10-31 18:48:21 +00001079 res = VG_(sigaction)( sig, &ksa, &ksa_old );
sewardj018f7622002-05-15 21:13:39 +00001080 vg_assert(res == 0);
1081
1082 /* Since we got the old sigaction more or less for free, might
1083 as well extract the maximum sanity-check value from it. */
1084 if (!force_update) {
1085 vg_assert(ksa_old.ksa_handler
1086 == skss_old.skss_per_sig[sig].skss_handler);
sewardj8eb8bab2015-07-21 14:44:28 +00001087# if defined(VGO_solaris)
1088 if (ksa_old.ksa_handler == VKI_SIG_DFL
1089 || ksa_old.ksa_handler == VKI_SIG_IGN) {
1090 /* The Solaris kernel ignores signal flags (except SA_NOCLDWAIT
1091 and SA_NOCLDSTOP) and a signal mask if a handler is set to
1092 SIG_DFL or SIG_IGN. */
1093 skss_old.skss_per_sig[sig].skss_flags
1094 &= (VKI_SA_NOCLDWAIT | VKI_SA_NOCLDSTOP);
1095 vg_assert(VG_(isemptysigset)( &ksa_old.sa_mask ));
1096 VG_(sigfillset)( &ksa_old.sa_mask );
1097 }
1098# endif
nethercote73b526f2004-10-31 18:48:21 +00001099 vg_assert(ksa_old.sa_flags
sewardj018f7622002-05-15 21:13:39 +00001100 == skss_old.skss_per_sig[sig].skss_flags);
njnf76d27a2009-05-28 01:53:07 +00001101# if !defined(VGP_ppc32_linux) && \
sewardj5db15402012-06-07 09:13:21 +00001102 !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
sewardj8eb8bab2015-07-21 14:44:28 +00001103 !defined(VGP_mips32_linux) && !defined(VGP_mips64_linux) && \
1104 !defined(VGO_solaris)
sewardjf0c12502014-01-12 12:54:00 +00001105 vg_assert(ksa_old.sa_restorer == my_sigreturn);
sewardjce2a6152005-07-08 18:25:13 +00001106# endif
nethercote73b526f2004-10-31 18:48:21 +00001107 VG_(sigaddset)( &ksa_old.sa_mask, VKI_SIGKILL );
1108 VG_(sigaddset)( &ksa_old.sa_mask, VKI_SIGSTOP );
1109 vg_assert(VG_(isfullsigset)( &ksa_old.sa_mask ));
sewardj018f7622002-05-15 21:13:39 +00001110 }
1111 }
sewardj018f7622002-05-15 21:13:39 +00001112}
1113
1114
1115/* ---------------------------------------------------------------------
1116 Update/query SCSS in accordance with client requests.
1117 ------------------------------------------------------------------ */
1118
sewardj2342c972002-05-22 23:34:20 +00001119/* Logic for this alt-stack stuff copied directly from do_sigaltstack
1120 in kernel/signal.[ch] */
1121
1122/* True if we are on the alternate signal stack. */
sewardjb5f6f512005-03-10 23:59:00 +00001123static Bool on_sig_stack ( ThreadId tid, Addr m_SP )
sewardj2342c972002-05-22 23:34:20 +00001124{
fitzhardinge98c4dc02004-03-16 08:27:29 +00001125 ThreadState *tst = VG_(get_ThreadState)(tid);
1126
njn5a350be2009-04-30 03:05:05 +00001127 return (m_SP - (Addr)tst->altstack.ss_sp < (Addr)tst->altstack.ss_size);
sewardj2342c972002-05-22 23:34:20 +00001128}
1129
nethercote511e4062004-09-11 13:34:08 +00001130static Int sas_ss_flags ( ThreadId tid, Addr m_SP )
sewardj2342c972002-05-22 23:34:20 +00001131{
fitzhardinge98c4dc02004-03-16 08:27:29 +00001132 ThreadState *tst = VG_(get_ThreadState)(tid);
1133
1134 return (tst->altstack.ss_size == 0
sewardj2342c972002-05-22 23:34:20 +00001135 ? VKI_SS_DISABLE
nethercote511e4062004-09-11 13:34:08 +00001136 : on_sig_stack(tid, m_SP) ? VKI_SS_ONSTACK : 0);
sewardj2342c972002-05-22 23:34:20 +00001137}
1138
1139
sewardja8d8e232005-06-07 20:04:56 +00001140SysRes VG_(do_sys_sigaltstack) ( ThreadId tid, vki_stack_t* ss, vki_stack_t* oss )
sewardj2342c972002-05-22 23:34:20 +00001141{
njn502badb2005-05-08 02:04:49 +00001142 Addr m_SP;
sewardj2342c972002-05-22 23:34:20 +00001143
1144 vg_assert(VG_(is_valid_tid)(tid));
njnf536bbb2005-06-13 04:21:38 +00001145 m_SP = VG_(get_SP)(tid);
sewardj2342c972002-05-22 23:34:20 +00001146
1147 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00001148 VG_(dmsg)("sys_sigaltstack: tid %u, "
sewardj738856f2009-07-15 14:48:32 +00001149 "ss %p{%p,sz=%llu,flags=0x%llx}, oss %p (current SP %p)\n",
1150 tid, (void*)ss,
1151 ss ? ss->ss_sp : 0,
1152 (ULong)(ss ? ss->ss_size : 0),
1153 (ULong)(ss ? ss->ss_flags : 0),
1154 (void*)oss, (void*)m_SP);
sewardj2342c972002-05-22 23:34:20 +00001155
1156 if (oss != NULL) {
fitzhardinge98c4dc02004-03-16 08:27:29 +00001157 oss->ss_sp = VG_(threads)[tid].altstack.ss_sp;
1158 oss->ss_size = VG_(threads)[tid].altstack.ss_size;
njn5a350be2009-04-30 03:05:05 +00001159 oss->ss_flags = VG_(threads)[tid].altstack.ss_flags
1160 | sas_ss_flags(tid, m_SP);
sewardj2342c972002-05-22 23:34:20 +00001161 }
1162
1163 if (ss != NULL) {
njnf536bbb2005-06-13 04:21:38 +00001164 if (on_sig_stack(tid, VG_(get_SP)(tid))) {
sewardja8d8e232005-06-07 20:04:56 +00001165 return VG_(mk_SysRes_Error)( VKI_EPERM );
sewardj2342c972002-05-22 23:34:20 +00001166 }
1167 if (ss->ss_flags != VKI_SS_DISABLE
1168 && ss->ss_flags != VKI_SS_ONSTACK
1169 && ss->ss_flags != 0) {
sewardja8d8e232005-06-07 20:04:56 +00001170 return VG_(mk_SysRes_Error)( VKI_EINVAL );
sewardj2342c972002-05-22 23:34:20 +00001171 }
1172 if (ss->ss_flags == VKI_SS_DISABLE) {
fitzhardinge98c4dc02004-03-16 08:27:29 +00001173 VG_(threads)[tid].altstack.ss_flags = VKI_SS_DISABLE;
sewardj2342c972002-05-22 23:34:20 +00001174 } else {
1175 if (ss->ss_size < VKI_MINSIGSTKSZ) {
sewardja8d8e232005-06-07 20:04:56 +00001176 return VG_(mk_SysRes_Error)( VKI_ENOMEM );
sewardj2342c972002-05-22 23:34:20 +00001177 }
jsgf855d93d2003-10-13 22:26:55 +00001178
nethercote20283c62004-11-04 19:43:22 +00001179 VG_(threads)[tid].altstack.ss_sp = ss->ss_sp;
1180 VG_(threads)[tid].altstack.ss_size = ss->ss_size;
fitzhardinge98c4dc02004-03-16 08:27:29 +00001181 VG_(threads)[tid].altstack.ss_flags = 0;
sewardj2342c972002-05-22 23:34:20 +00001182 }
sewardj2342c972002-05-22 23:34:20 +00001183 }
sewardja8d8e232005-06-07 20:04:56 +00001184 return VG_(mk_SysRes_Success)( 0 );
sewardj2342c972002-05-22 23:34:20 +00001185}
1186
1187
sewardja8d8e232005-06-07 20:04:56 +00001188SysRes VG_(do_sys_sigaction) ( Int signo,
njncda2f0f2009-05-18 02:12:08 +00001189 const vki_sigaction_toK_t* new_act,
1190 vki_sigaction_fromK_t* old_act )
sewardj018f7622002-05-15 21:13:39 +00001191{
sewardj018f7622002-05-15 21:13:39 +00001192 if (VG_(clo_trace_signals))
njn18a71e82010-07-06 04:21:47 +00001193 VG_(dmsg)("sys_sigaction: sigNo %d, "
sewardj738856f2009-07-15 14:48:32 +00001194 "new %#lx, old %#lx, new flags 0x%llx\n",
1195 signo, (UWord)new_act, (UWord)old_act,
1196 (ULong)(new_act ? new_act->sa_flags : 0));
sewardj018f7622002-05-15 21:13:39 +00001197
1198 /* Rule out various error conditions. The aim is to ensure that if
1199 when the call is passed to the kernel it will definitely
1200 succeed. */
1201
1202 /* Reject out-of-range signal numbers. */
sewardjb5f6f512005-03-10 23:59:00 +00001203 if (signo < 1 || signo > VG_(max_signal)) goto bad_signo;
sewardj018f7622002-05-15 21:13:39 +00001204
jsgf855d93d2003-10-13 22:26:55 +00001205 /* don't let them use our signals */
njn351d0062005-06-21 22:23:59 +00001206 if ( (signo > VG_SIGVGRTUSERMAX)
jsgf855d93d2003-10-13 22:26:55 +00001207 && new_act
sewardja8d8e232005-06-07 20:04:56 +00001208 && !(new_act->ksa_handler == VKI_SIG_DFL
1209 || new_act->ksa_handler == VKI_SIG_IGN) )
nethercote9c42a0f2003-11-17 10:37:19 +00001210 goto bad_signo_reserved;
jsgf855d93d2003-10-13 22:26:55 +00001211
sewardj018f7622002-05-15 21:13:39 +00001212 /* Reject attempts to set a handler (or set ignore) for SIGKILL. */
1213 if ( (signo == VKI_SIGKILL || signo == VKI_SIGSTOP)
1214 && new_act
1215 && new_act->ksa_handler != VKI_SIG_DFL)
1216 goto bad_sigkill_or_sigstop;
1217
1218 /* If the client supplied non-NULL old_act, copy the relevant SCSS
1219 entry into it. */
1220 if (old_act) {
njn695c16e2005-03-27 03:40:28 +00001221 old_act->ksa_handler = scss.scss_per_sig[signo].scss_handler;
1222 old_act->sa_flags = scss.scss_per_sig[signo].scss_flags;
1223 old_act->sa_mask = scss.scss_per_sig[signo].scss_mask;
sewardj8eb8bab2015-07-21 14:44:28 +00001224# if !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
1225 !defined(VGO_solaris)
njn695c16e2005-03-27 03:40:28 +00001226 old_act->sa_restorer = scss.scss_per_sig[signo].scss_restorer;
sewardj489bfec2006-10-17 02:00:29 +00001227# endif
sewardj018f7622002-05-15 21:13:39 +00001228 }
1229
1230 /* And now copy new SCSS entry from new_act. */
1231 if (new_act) {
njn695c16e2005-03-27 03:40:28 +00001232 scss.scss_per_sig[signo].scss_handler = new_act->ksa_handler;
1233 scss.scss_per_sig[signo].scss_flags = new_act->sa_flags;
1234 scss.scss_per_sig[signo].scss_mask = new_act->sa_mask;
sewardj489bfec2006-10-17 02:00:29 +00001235
njncda2f0f2009-05-18 02:12:08 +00001236 scss.scss_per_sig[signo].scss_restorer = NULL;
sewardj8eb8bab2015-07-21 14:44:28 +00001237# if !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
1238 !defined(VGO_solaris)
njn695c16e2005-03-27 03:40:28 +00001239 scss.scss_per_sig[signo].scss_restorer = new_act->sa_restorer;
sewardj489bfec2006-10-17 02:00:29 +00001240# endif
sewardjb5f6f512005-03-10 23:59:00 +00001241
njncda2f0f2009-05-18 02:12:08 +00001242 scss.scss_per_sig[signo].scss_sa_tramp = NULL;
njnf76d27a2009-05-28 01:53:07 +00001243# if defined(VGP_x86_darwin) || defined(VGP_amd64_darwin)
1244 scss.scss_per_sig[signo].scss_sa_tramp = new_act->sa_tramp;
1245# endif
njncda2f0f2009-05-18 02:12:08 +00001246
njn695c16e2005-03-27 03:40:28 +00001247 VG_(sigdelset)(&scss.scss_per_sig[signo].scss_mask, VKI_SIGKILL);
1248 VG_(sigdelset)(&scss.scss_per_sig[signo].scss_mask, VKI_SIGSTOP);
sewardj018f7622002-05-15 21:13:39 +00001249 }
1250
1251 /* All happy bunnies ... */
1252 if (new_act) {
nethercote9dd11512004-08-04 15:31:30 +00001253 handle_SCSS_change( False /* lazy update */ );
sewardj018f7622002-05-15 21:13:39 +00001254 }
sewardja8d8e232005-06-07 20:04:56 +00001255 return VG_(mk_SysRes_Success)( 0 );
sewardj018f7622002-05-15 21:13:39 +00001256
1257 bad_signo:
sewardjec6e27c2007-11-17 21:31:48 +00001258 if (VG_(showing_core_errors)() && !VG_(clo_xml)) {
sewardj738856f2009-07-15 14:48:32 +00001259 VG_(umsg)("Warning: bad signal number %d in sigaction()\n", signo);
sewardj9a3d8bd2005-05-23 14:47:52 +00001260 }
sewardja8d8e232005-06-07 20:04:56 +00001261 return VG_(mk_SysRes_Error)( VKI_EINVAL );
sewardj018f7622002-05-15 21:13:39 +00001262
nethercote9c42a0f2003-11-17 10:37:19 +00001263 bad_signo_reserved:
sewardjec6e27c2007-11-17 21:31:48 +00001264 if (VG_(showing_core_errors)() && !VG_(clo_xml)) {
sewardj738856f2009-07-15 14:48:32 +00001265 VG_(umsg)("Warning: ignored attempt to set %s handler in sigaction();\n",
philippe886fde32012-03-29 21:56:47 +00001266 VG_(signame)(signo));
sewardj738856f2009-07-15 14:48:32 +00001267 VG_(umsg)(" the %s signal is used internally by Valgrind\n",
philippe886fde32012-03-29 21:56:47 +00001268 VG_(signame)(signo));
fitzhardingebf459872003-11-18 16:55:33 +00001269 }
sewardja8d8e232005-06-07 20:04:56 +00001270 return VG_(mk_SysRes_Error)( VKI_EINVAL );
nethercote9c42a0f2003-11-17 10:37:19 +00001271
sewardj018f7622002-05-15 21:13:39 +00001272 bad_sigkill_or_sigstop:
sewardjec6e27c2007-11-17 21:31:48 +00001273 if (VG_(showing_core_errors)() && !VG_(clo_xml)) {
sewardj738856f2009-07-15 14:48:32 +00001274 VG_(umsg)("Warning: ignored attempt to set %s handler in sigaction();\n",
philippe886fde32012-03-29 21:56:47 +00001275 VG_(signame)(signo));
sewardj738856f2009-07-15 14:48:32 +00001276 VG_(umsg)(" the %s signal is uncatchable\n",
philippe886fde32012-03-29 21:56:47 +00001277 VG_(signame)(signo));
sewardj9a3d8bd2005-05-23 14:47:52 +00001278 }
sewardja8d8e232005-06-07 20:04:56 +00001279 return VG_(mk_SysRes_Error)( VKI_EINVAL );
sewardj018f7622002-05-15 21:13:39 +00001280}
1281
1282
1283static
1284void do_sigprocmask_bitops ( Int vki_how,
nethercote73b526f2004-10-31 18:48:21 +00001285 vki_sigset_t* orig_set,
1286 vki_sigset_t* modifier )
sewardj018f7622002-05-15 21:13:39 +00001287{
1288 switch (vki_how) {
1289 case VKI_SIG_BLOCK:
nethercote73b526f2004-10-31 18:48:21 +00001290 VG_(sigaddset_from_set)( orig_set, modifier );
sewardj018f7622002-05-15 21:13:39 +00001291 break;
1292 case VKI_SIG_UNBLOCK:
nethercote73b526f2004-10-31 18:48:21 +00001293 VG_(sigdelset_from_set)( orig_set, modifier );
sewardj018f7622002-05-15 21:13:39 +00001294 break;
1295 case VKI_SIG_SETMASK:
1296 *orig_set = *modifier;
1297 break;
1298 default:
njne427a662002-10-02 11:08:25 +00001299 VG_(core_panic)("do_sigprocmask_bitops");
sewardj018f7622002-05-15 21:13:39 +00001300 break;
1301 }
1302}
1303
tomf7781e92005-11-02 15:31:21 +00001304static
njn5a350be2009-04-30 03:05:05 +00001305HChar* format_sigset ( const vki_sigset_t* set )
tomf7781e92005-11-02 15:31:21 +00001306{
florian7b7d5942014-12-19 20:29:22 +00001307 static HChar buf[_VKI_NSIG_WORDS * 16 + 1];
tomf7781e92005-11-02 15:31:21 +00001308 int w;
1309
1310 VG_(strcpy)(buf, "");
1311
1312 for (w = _VKI_NSIG_WORDS - 1; w >= 0; w--)
1313 {
sewardja8ffda62008-07-18 18:23:24 +00001314# if _VKI_NSIG_BPW == 32
1315 VG_(sprintf)(buf + VG_(strlen)(buf), "%08llx",
1316 set ? (ULong)set->sig[w] : 0);
1317# elif _VKI_NSIG_BPW == 64
1318 VG_(sprintf)(buf + VG_(strlen)(buf), "%16llx",
1319 set ? (ULong)set->sig[w] : 0);
1320# else
1321# error "Unsupported value for _VKI_NSIG_BPW"
1322# endif
tomf7781e92005-11-02 15:31:21 +00001323 }
1324
1325 return buf;
1326}
1327
jsgf855d93d2003-10-13 22:26:55 +00001328/*
1329 This updates the thread's signal mask. There's no such thing as a
1330 process-wide signal mask.
sewardj018f7622002-05-15 21:13:39 +00001331
1332 Note that the thread signal masks are an implicit part of SCSS,
1333 which is why this routine is allowed to mess with them.
1334*/
1335static
1336void do_setmask ( ThreadId tid,
1337 Int how,
nethercote73b526f2004-10-31 18:48:21 +00001338 vki_sigset_t* newset,
1339 vki_sigset_t* oldset )
sewardj018f7622002-05-15 21:13:39 +00001340{
sewardj018f7622002-05-15 21:13:39 +00001341 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00001342 VG_(dmsg)("do_setmask: tid = %u how = %d (%s), newset = %p (%s)\n",
sewardj738856f2009-07-15 14:48:32 +00001343 tid, how,
1344 how==VKI_SIG_BLOCK ? "SIG_BLOCK" : (
1345 how==VKI_SIG_UNBLOCK ? "SIG_UNBLOCK" : (
1346 how==VKI_SIG_SETMASK ? "SIG_SETMASK" : "???")),
1347 newset, newset ? format_sigset(newset) : "NULL" );
sewardj018f7622002-05-15 21:13:39 +00001348
jsgf855d93d2003-10-13 22:26:55 +00001349 /* Just do this thread. */
1350 vg_assert(VG_(is_valid_tid)(tid));
1351 if (oldset) {
sewardjb5f6f512005-03-10 23:59:00 +00001352 *oldset = VG_(threads)[tid].sig_mask;
jsgf855d93d2003-10-13 22:26:55 +00001353 if (VG_(clo_trace_signals))
njn18a71e82010-07-06 04:21:47 +00001354 VG_(dmsg)("\toldset=%p %s\n", oldset, format_sigset(oldset));
sewardj018f7622002-05-15 21:13:39 +00001355 }
sewardj018f7622002-05-15 21:13:39 +00001356 if (newset) {
jsgf855d93d2003-10-13 22:26:55 +00001357 do_sigprocmask_bitops (how, &VG_(threads)[tid].sig_mask, newset );
nethercote73b526f2004-10-31 18:48:21 +00001358 VG_(sigdelset)(&VG_(threads)[tid].sig_mask, VKI_SIGKILL);
1359 VG_(sigdelset)(&VG_(threads)[tid].sig_mask, VKI_SIGSTOP);
sewardjb5f6f512005-03-10 23:59:00 +00001360 VG_(threads)[tid].tmp_sig_mask = VG_(threads)[tid].sig_mask;
sewardj018f7622002-05-15 21:13:39 +00001361 }
1362}
1363
1364
sewardja8d8e232005-06-07 20:04:56 +00001365SysRes VG_(do_sys_sigprocmask) ( ThreadId tid,
1366 Int how,
1367 vki_sigset_t* set,
1368 vki_sigset_t* oldset )
sewardj018f7622002-05-15 21:13:39 +00001369{
jsgf855d93d2003-10-13 22:26:55 +00001370 switch(how) {
njncda2f0f2009-05-18 02:12:08 +00001371 case VKI_SIG_BLOCK:
1372 case VKI_SIG_UNBLOCK:
1373 case VKI_SIG_SETMASK:
1374 vg_assert(VG_(is_valid_tid)(tid));
1375 do_setmask ( tid, how, set, oldset );
1376 return VG_(mk_SysRes_Success)( 0 );
jsgf855d93d2003-10-13 22:26:55 +00001377
njncda2f0f2009-05-18 02:12:08 +00001378 default:
sewardj738856f2009-07-15 14:48:32 +00001379 VG_(dmsg)("sigprocmask: unknown 'how' field %d\n", how);
njncda2f0f2009-05-18 02:12:08 +00001380 return VG_(mk_SysRes_Error)( VKI_EINVAL );
sewardj018f7622002-05-15 21:13:39 +00001381 }
1382}
1383
1384
sewardj018f7622002-05-15 21:13:39 +00001385/* ---------------------------------------------------------------------
1386 LOW LEVEL STUFF TO DO WITH SIGNALS: IMPLEMENTATION
1387 ------------------------------------------------------------------ */
sewardj77e466c2002-04-14 02:29:29 +00001388
sewardj2e93c502002-04-12 11:12:52 +00001389/* ---------------------------------------------------------------------
1390 Handy utilities to block/restore all host signals.
1391 ------------------------------------------------------------------ */
1392
1393/* Block all host signals, dumping the old mask in *saved_mask. */
njn444eba12005-05-12 03:47:31 +00001394static void block_all_host_signals ( /* OUT */ vki_sigset_t* saved_mask )
sewardj2e93c502002-04-12 11:12:52 +00001395{
1396 Int ret;
nethercote73b526f2004-10-31 18:48:21 +00001397 vki_sigset_t block_procmask;
1398 VG_(sigfillset)(&block_procmask);
1399 ret = VG_(sigprocmask)
sewardj2e93c502002-04-12 11:12:52 +00001400 (VKI_SIG_SETMASK, &block_procmask, saved_mask);
1401 vg_assert(ret == 0);
1402}
1403
1404/* Restore the blocking mask using the supplied saved one. */
njn444eba12005-05-12 03:47:31 +00001405static void restore_all_host_signals ( /* IN */ vki_sigset_t* saved_mask )
sewardj2e93c502002-04-12 11:12:52 +00001406{
1407 Int ret;
nethercote73b526f2004-10-31 18:48:21 +00001408 ret = VG_(sigprocmask)(VKI_SIG_SETMASK, saved_mask, NULL);
sewardj2e93c502002-04-12 11:12:52 +00001409 vg_assert(ret == 0);
1410}
sewardjde4a1d02002-03-22 01:27:54 +00001411
njn444eba12005-05-12 03:47:31 +00001412void VG_(clear_out_queued_signals)( ThreadId tid, vki_sigset_t* saved_mask )
1413{
1414 block_all_host_signals(saved_mask);
1415 if (VG_(threads)[tid].sig_queue != NULL) {
florian77eb20b2014-09-11 21:19:17 +00001416 VG_(free)(VG_(threads)[tid].sig_queue);
njn444eba12005-05-12 03:47:31 +00001417 VG_(threads)[tid].sig_queue = NULL;
1418 }
1419 restore_all_host_signals(saved_mask);
1420}
1421
sewardjde4a1d02002-03-22 01:27:54 +00001422/* ---------------------------------------------------------------------
1423 The signal simulation proper. A simplified version of what the
1424 Linux kernel does.
1425 ------------------------------------------------------------------ */
1426
sewardjde4a1d02002-03-22 01:27:54 +00001427/* Set up a stack frame (VgSigContext) for the client's signal
nethercotefedd8102004-09-13 15:19:34 +00001428 handler. */
sewardj2c5ffbe2005-03-12 13:32:06 +00001429static
njn5a350be2009-04-30 03:05:05 +00001430void push_signal_frame ( ThreadId tid, const vki_siginfo_t *siginfo,
1431 const struct vki_ucontext *uc )
sewardjde4a1d02002-03-22 01:27:54 +00001432{
sewardj8eb8bab2015-07-21 14:44:28 +00001433 Bool on_altstack;
nethercote6eec4602004-09-13 14:15:36 +00001434 Addr esp_top_of_frame;
sewardj2e93c502002-04-12 11:12:52 +00001435 ThreadState* tst;
jsgf855d93d2003-10-13 22:26:55 +00001436 Int sigNo = siginfo->si_signo;
sewardj2e93c502002-04-12 11:12:52 +00001437
sewardjb5f6f512005-03-10 23:59:00 +00001438 vg_assert(sigNo >= 1 && sigNo <= VG_(max_signal));
sewardj018f7622002-05-15 21:13:39 +00001439 vg_assert(VG_(is_valid_tid)(tid));
1440 tst = & VG_(threads)[tid];
sewardj2e93c502002-04-12 11:12:52 +00001441
sewardja672ea32006-04-29 18:03:14 +00001442 if (VG_(clo_trace_signals)) {
floriana5e06c32015-08-05 21:16:09 +00001443 VG_(dmsg)("push_signal_frame (thread %u): signal %d\n", tid, sigNo);
sewardja672ea32006-04-29 18:03:14 +00001444 VG_(get_and_pp_StackTrace)(tid, 10);
1445 }
jsgf855d93d2003-10-13 22:26:55 +00001446
sewardj2342c972002-05-22 23:34:20 +00001447 if (/* this signal asked to run on an alt stack */
njn695c16e2005-03-27 03:40:28 +00001448 (scss.scss_per_sig[sigNo].scss_flags & VKI_SA_ONSTACK )
sewardj2342c972002-05-22 23:34:20 +00001449 && /* there is a defined and enabled alt stack, which we're not
1450 already using. Logic from get_sigframe in
1451 arch/i386/kernel/signal.c. */
njnf536bbb2005-06-13 04:21:38 +00001452 sas_ss_flags(tid, VG_(get_SP)(tid)) == 0
sewardj2342c972002-05-22 23:34:20 +00001453 ) {
sewardj8eb8bab2015-07-21 14:44:28 +00001454 on_altstack = True;
sewardj2342c972002-05-22 23:34:20 +00001455 esp_top_of_frame
fitzhardinge98c4dc02004-03-16 08:27:29 +00001456 = (Addr)(tst->altstack.ss_sp) + tst->altstack.ss_size;
sewardj2342c972002-05-22 23:34:20 +00001457 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00001458 VG_(dmsg)("delivering signal %d (%s) to thread %u: "
sewardj738856f2009-07-15 14:48:32 +00001459 "on ALT STACK (%p-%p; %ld bytes)\n",
philippe886fde32012-03-29 21:56:47 +00001460 sigNo, VG_(signame)(sigNo), tid, tst->altstack.ss_sp,
sewardj738856f2009-07-15 14:48:32 +00001461 (UChar *)tst->altstack.ss_sp + tst->altstack.ss_size,
1462 (Word)tst->altstack.ss_size );
sewardj2342c972002-05-22 23:34:20 +00001463 } else {
sewardj8eb8bab2015-07-21 14:44:28 +00001464 on_altstack = False;
njnaf839f52005-06-23 03:27:57 +00001465 esp_top_of_frame = VG_(get_SP)(tid) - VG_STACK_REDZONE_SZB;
sewardj2342c972002-05-22 23:34:20 +00001466 }
sewardjb5f6f512005-03-10 23:59:00 +00001467
sewardj8eb8bab2015-07-21 14:44:28 +00001468 /* Signal delivery to tools */
1469 VG_TRACK( pre_deliver_signal, tid, sigNo, on_altstack );
1470
njn695c16e2005-03-27 03:40:28 +00001471 vg_assert(scss.scss_per_sig[sigNo].scss_handler != VKI_SIG_IGN);
1472 vg_assert(scss.scss_per_sig[sigNo].scss_handler != VKI_SIG_DFL);
sewardjb5f6f512005-03-10 23:59:00 +00001473
1474 /* This may fail if the client stack is busted; if that happens,
1475 the whole process will exit rather than simply calling the
1476 signal handler. */
sewardj8eb8bab2015-07-21 14:44:28 +00001477 VG_(sigframe_create) (tid, on_altstack, esp_top_of_frame, siginfo, uc,
sewardj985fabb2005-04-24 14:18:14 +00001478 scss.scss_per_sig[sigNo].scss_handler,
1479 scss.scss_per_sig[sigNo].scss_flags,
1480 &tst->sig_mask,
1481 scss.scss_per_sig[sigNo].scss_restorer);
sewardjde4a1d02002-03-22 01:27:54 +00001482}
1483
sewardjde4a1d02002-03-22 01:27:54 +00001484
florian2b8059a2012-10-14 16:45:23 +00001485const HChar *VG_(signame)(Int sigNo)
sewardjde4a1d02002-03-22 01:27:54 +00001486{
florianf44ff622014-12-20 16:52:08 +00001487 static HChar buf[20]; // large enough
sewardjb48e5002002-05-13 00:16:03 +00001488
jsgf855d93d2003-10-13 22:26:55 +00001489 switch(sigNo) {
sewardj489bfec2006-10-17 02:00:29 +00001490 case VKI_SIGHUP: return "SIGHUP";
1491 case VKI_SIGINT: return "SIGINT";
1492 case VKI_SIGQUIT: return "SIGQUIT";
1493 case VKI_SIGILL: return "SIGILL";
1494 case VKI_SIGTRAP: return "SIGTRAP";
1495 case VKI_SIGABRT: return "SIGABRT";
1496 case VKI_SIGBUS: return "SIGBUS";
1497 case VKI_SIGFPE: return "SIGFPE";
1498 case VKI_SIGKILL: return "SIGKILL";
1499 case VKI_SIGUSR1: return "SIGUSR1";
1500 case VKI_SIGUSR2: return "SIGUSR2";
1501 case VKI_SIGSEGV: return "SIGSEGV";
sewardj8eb8bab2015-07-21 14:44:28 +00001502 case VKI_SIGSYS: return "SIGSYS";
sewardj489bfec2006-10-17 02:00:29 +00001503 case VKI_SIGPIPE: return "SIGPIPE";
1504 case VKI_SIGALRM: return "SIGALRM";
1505 case VKI_SIGTERM: return "SIGTERM";
1506# if defined(VKI_SIGSTKFLT)
1507 case VKI_SIGSTKFLT: return "SIGSTKFLT";
1508# endif
1509 case VKI_SIGCHLD: return "SIGCHLD";
1510 case VKI_SIGCONT: return "SIGCONT";
1511 case VKI_SIGSTOP: return "SIGSTOP";
1512 case VKI_SIGTSTP: return "SIGTSTP";
1513 case VKI_SIGTTIN: return "SIGTTIN";
1514 case VKI_SIGTTOU: return "SIGTTOU";
1515 case VKI_SIGURG: return "SIGURG";
1516 case VKI_SIGXCPU: return "SIGXCPU";
1517 case VKI_SIGXFSZ: return "SIGXFSZ";
1518 case VKI_SIGVTALRM: return "SIGVTALRM";
1519 case VKI_SIGPROF: return "SIGPROF";
1520 case VKI_SIGWINCH: return "SIGWINCH";
1521 case VKI_SIGIO: return "SIGIO";
njncda2f0f2009-05-18 02:12:08 +00001522# if defined(VKI_SIGPWR)
sewardj489bfec2006-10-17 02:00:29 +00001523 case VKI_SIGPWR: return "SIGPWR";
njncda2f0f2009-05-18 02:12:08 +00001524# endif
sewardj8eb8bab2015-07-21 14:44:28 +00001525# if defined(VKI_SIGUNUSED) && (VKI_SIGUNUSED != VKI_SIGSYS)
sewardj489bfec2006-10-17 02:00:29 +00001526 case VKI_SIGUNUSED: return "SIGUNUSED";
1527# endif
sewardjde4a1d02002-03-22 01:27:54 +00001528
sewardj8eb8bab2015-07-21 14:44:28 +00001529 /* Solaris-specific signals. */
1530# if defined(VKI_SIGEMT)
1531 case VKI_SIGEMT: return "SIGEMT";
1532# endif
1533# if defined(VKI_SIGWAITING)
1534 case VKI_SIGWAITING: return "SIGWAITING";
1535# endif
1536# if defined(VKI_SIGLWP)
1537 case VKI_SIGLWP: return "SIGLWP";
1538# endif
1539# if defined(VKI_SIGFREEZE)
1540 case VKI_SIGFREEZE: return "SIGFREEZE";
1541# endif
1542# if defined(VKI_SIGTHAW)
1543 case VKI_SIGTHAW: return "SIGTHAW";
1544# endif
1545# if defined(VKI_SIGCANCEL)
1546 case VKI_SIGCANCEL: return "SIGCANCEL";
1547# endif
1548# if defined(VKI_SIGLOST)
1549 case VKI_SIGLOST: return "SIGLOST";
1550# endif
1551# if defined(VKI_SIGXRES)
1552 case VKI_SIGXRES: return "SIGXRES";
1553# endif
1554# if defined(VKI_SIGJVM1)
1555 case VKI_SIGJVM1: return "SIGJVM1";
1556# endif
1557# if defined(VKI_SIGJVM2)
1558 case VKI_SIGJVM2: return "SIGJVM2";
1559# endif
1560
njncda2f0f2009-05-18 02:12:08 +00001561# if defined(VKI_SIGRTMIN) && defined(VKI_SIGRTMAX)
jsgf855d93d2003-10-13 22:26:55 +00001562 case VKI_SIGRTMIN ... VKI_SIGRTMAX:
sewardjb5f6f512005-03-10 23:59:00 +00001563 VG_(sprintf)(buf, "SIGRT%d", sigNo-VKI_SIGRTMIN);
jsgf855d93d2003-10-13 22:26:55 +00001564 return buf;
njncda2f0f2009-05-18 02:12:08 +00001565# endif
sewardjde4a1d02002-03-22 01:27:54 +00001566
jsgf855d93d2003-10-13 22:26:55 +00001567 default:
1568 VG_(sprintf)(buf, "SIG%d", sigNo);
1569 return buf;
1570 }
1571}
sewardjde4a1d02002-03-22 01:27:54 +00001572
jsgf855d93d2003-10-13 22:26:55 +00001573/* Hit ourselves with a signal using the default handler */
1574void VG_(kill_self)(Int sigNo)
1575{
njnf76d27a2009-05-28 01:53:07 +00001576 Int r;
njncda2f0f2009-05-18 02:12:08 +00001577 vki_sigset_t mask, origmask;
1578 vki_sigaction_toK_t sa, origsa2;
1579 vki_sigaction_fromK_t origsa;
sewardj018f7622002-05-15 21:13:39 +00001580
jsgf855d93d2003-10-13 22:26:55 +00001581 sa.ksa_handler = VKI_SIG_DFL;
nethercote73b526f2004-10-31 18:48:21 +00001582 sa.sa_flags = 0;
sewardj8eb8bab2015-07-21 14:44:28 +00001583# if !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
1584 !defined(VGO_solaris)
nethercote73b526f2004-10-31 18:48:21 +00001585 sa.sa_restorer = 0;
sewardj489bfec2006-10-17 02:00:29 +00001586# endif
nethercote73b526f2004-10-31 18:48:21 +00001587 VG_(sigemptyset)(&sa.sa_mask);
sewardj2e93c502002-04-12 11:12:52 +00001588
nethercote73b526f2004-10-31 18:48:21 +00001589 VG_(sigaction)(sigNo, &sa, &origsa);
sewardj018f7622002-05-15 21:13:39 +00001590
sewardjb5f6f512005-03-10 23:59:00 +00001591 VG_(sigemptyset)(&mask);
1592 VG_(sigaddset)(&mask, sigNo);
1593 VG_(sigprocmask)(VKI_SIG_UNBLOCK, &mask, &origmask);
jsgf855d93d2003-10-13 22:26:55 +00001594
njnf76d27a2009-05-28 01:53:07 +00001595 r = VG_(kill)(VG_(getpid)(), sigNo);
sewardj8eb8bab2015-07-21 14:44:28 +00001596# if !defined(VGO_darwin)
njnf76d27a2009-05-28 01:53:07 +00001597 /* This sometimes fails with EPERM on Darwin. I don't know why. */
sewardjc7ffc942011-03-28 16:26:42 +00001598 vg_assert(r == 0);
1599# endif
jsgf855d93d2003-10-13 22:26:55 +00001600
njncda2f0f2009-05-18 02:12:08 +00001601 VG_(convert_sigaction_fromK_to_toK)( &origsa, &origsa2 );
1602 VG_(sigaction)(sigNo, &origsa2, NULL);
nethercote73b526f2004-10-31 18:48:21 +00001603 VG_(sigprocmask)(VKI_SIG_SETMASK, &origmask, NULL);
jsgf855d93d2003-10-13 22:26:55 +00001604}
1605
njn36fce1b2009-04-28 01:55:01 +00001606// The si_code describes where the signal came from. Some come from the
1607// kernel, eg.: seg faults, illegal opcodes. Some come from the user, eg.:
1608// from kill() (SI_USER), or timer_settime() (SI_TIMER), or an async I/O
1609// request (SI_ASYNCIO). There's lots of implementation-defined leeway in
njnf76d27a2009-05-28 01:53:07 +00001610// POSIX, but the user vs. kernal distinction is what we want here. We also
1611// pass in some other details that can help when si_code is unreliable.
1612static Bool is_signal_from_kernel(ThreadId tid, int signum, int si_code)
njn36fce1b2009-04-28 01:55:01 +00001613{
sewardj8eb8bab2015-07-21 14:44:28 +00001614# if defined(VGO_linux) || defined(VGO_solaris)
njn36fce1b2009-04-28 01:55:01 +00001615 // On Linux, SI_USER is zero, negative values are from the user, positive
1616 // values are from the kernel. There are SI_FROMUSER and SI_FROMKERNEL
1617 // macros but we don't use them here because other platforms don't have
1618 // them.
1619 return ( si_code > VKI_SI_USER ? True : False );
sewardj6e9de462011-06-28 07:25:29 +00001620
1621# elif defined(VGO_darwin)
njnf76d27a2009-05-28 01:53:07 +00001622 // On Darwin 9.6.0, the si_code is completely unreliable. It should be the
1623 // case that 0 means "user", and >0 means "kernel". But:
1624 // - For SIGSEGV, it seems quite reliable.
1625 // - For SIGBUS, it's always 2.
1626 // - For SIGFPE, it's often 0, even for kernel ones (eg.
1627 // div-by-integer-zero always gives zero).
1628 // - For SIGILL, it's unclear.
1629 // - For SIGTRAP, it's always 1.
1630 // You can see the "NOTIMP" (not implemented) status of a number of the
1631 // sub-cases in sys/signal.h. Hopefully future versions of Darwin will
1632 // get this right.
1633
1634 // If we're blocked waiting on a syscall, it must be a user signal, because
1635 // the kernel won't generate sync signals within syscalls.
1636 if (VG_(threads)[tid].status == VgTs_WaitSys) {
1637 return False;
1638
1639 // If it's a SIGSEGV, use the proper condition, since it's fairly reliable.
1640 } else if (SIGSEGV == signum) {
1641 return ( si_code > 0 ? True : False );
1642
1643 // If it's anything else, assume it's kernel-generated. Reason being that
1644 // kernel-generated sync signals are more common, and it's probable that
1645 // misdiagnosing a user signal as a kernel signal is better than the
1646 // opposite.
1647 } else {
1648 return True;
1649 }
sewardj6e9de462011-06-28 07:25:29 +00001650# else
1651# error Unknown OS
1652# endif
njn36fce1b2009-04-28 01:55:01 +00001653}
1654
jsgf855d93d2003-10-13 22:26:55 +00001655/*
sewardjb5f6f512005-03-10 23:59:00 +00001656 Perform the default action of a signal. If the signal is fatal, it
1657 marks all threads as needing to exit, but it doesn't actually kill
1658 the process or thread.
jsgf855d93d2003-10-13 22:26:55 +00001659
1660 If we're not being quiet, then print out some more detail about
1661 fatal signals (esp. core dumping signals).
1662 */
njn695c16e2005-03-27 03:40:28 +00001663static void default_action(const vki_siginfo_t *info, ThreadId tid)
jsgf855d93d2003-10-13 22:26:55 +00001664{
1665 Int sigNo = info->si_signo;
sewardjb5f6f512005-03-10 23:59:00 +00001666 Bool terminate = False; /* kills process */
1667 Bool core = False; /* kills process w/ core */
1668 struct vki_rlimit corelim;
1669 Bool could_core;
jsgf855d93d2003-10-13 22:26:55 +00001670
sewardjb5f6f512005-03-10 23:59:00 +00001671 vg_assert(VG_(is_running_thread)(tid));
1672
jsgf855d93d2003-10-13 22:26:55 +00001673 switch(sigNo) {
njncda2f0f2009-05-18 02:12:08 +00001674 case VKI_SIGQUIT: /* core */
1675 case VKI_SIGILL: /* core */
1676 case VKI_SIGABRT: /* core */
1677 case VKI_SIGFPE: /* core */
1678 case VKI_SIGSEGV: /* core */
1679 case VKI_SIGBUS: /* core */
1680 case VKI_SIGTRAP: /* core */
sewardj8eb8bab2015-07-21 14:44:28 +00001681 case VKI_SIGSYS: /* core */
njncda2f0f2009-05-18 02:12:08 +00001682 case VKI_SIGXCPU: /* core */
1683 case VKI_SIGXFSZ: /* core */
sewardj8eb8bab2015-07-21 14:44:28 +00001684
1685 /* Solaris-specific signals. */
1686# if defined(VKI_SIGEMT)
1687 case VKI_SIGEMT: /* core */
1688# endif
1689
njncda2f0f2009-05-18 02:12:08 +00001690 terminate = True;
1691 core = True;
1692 break;
jsgf855d93d2003-10-13 22:26:55 +00001693
njncda2f0f2009-05-18 02:12:08 +00001694 case VKI_SIGHUP: /* term */
1695 case VKI_SIGINT: /* term */
1696 case VKI_SIGKILL: /* term - we won't see this */
1697 case VKI_SIGPIPE: /* term */
1698 case VKI_SIGALRM: /* term */
1699 case VKI_SIGTERM: /* term */
1700 case VKI_SIGUSR1: /* term */
1701 case VKI_SIGUSR2: /* term */
1702 case VKI_SIGIO: /* term */
1703# if defined(VKI_SIGPWR)
1704 case VKI_SIGPWR: /* term */
1705# endif
njncda2f0f2009-05-18 02:12:08 +00001706 case VKI_SIGPROF: /* term */
1707 case VKI_SIGVTALRM: /* term */
1708# if defined(VKI_SIGRTMIN) && defined(VKI_SIGRTMAX)
1709 case VKI_SIGRTMIN ... VKI_SIGRTMAX: /* term */
1710# endif
sewardj8eb8bab2015-07-21 14:44:28 +00001711
1712 /* Solaris-specific signals. */
1713# if defined(VKI_SIGLOST)
1714 case VKI_SIGLOST: /* term */
1715# endif
1716
njncda2f0f2009-05-18 02:12:08 +00001717 terminate = True;
1718 break;
jsgf855d93d2003-10-13 22:26:55 +00001719 }
1720
1721 vg_assert(!core || (core && terminate));
1722
fitzhardinge98abfc72003-12-16 02:05:15 +00001723 if (VG_(clo_trace_signals))
sewardj738856f2009-07-15 14:48:32 +00001724 VG_(dmsg)("delivering %d (code %d) to default handler; action: %s%s\n",
1725 sigNo, info->si_code, terminate ? "terminate" : "ignore",
1726 core ? "+core" : "");
fitzhardinge98abfc72003-12-16 02:05:15 +00001727
sewardjb5f6f512005-03-10 23:59:00 +00001728 if (!terminate)
1729 return; /* nothing to do */
fitzhardinge4a4d1082004-03-15 23:46:54 +00001730
sewardjb5f6f512005-03-10 23:59:00 +00001731 could_core = core;
1732
1733 if (core) {
1734 /* If they set the core-size limit to zero, don't generate a
1735 core file */
fitzhardinge61a53412004-03-15 23:44:11 +00001736
sewardjb5f6f512005-03-10 23:59:00 +00001737 VG_(getrlimit)(VKI_RLIMIT_CORE, &corelim);
fitzhardinge61a53412004-03-15 23:44:11 +00001738
sewardjb5f6f512005-03-10 23:59:00 +00001739 if (corelim.rlim_cur == 0)
1740 core = False;
1741 }
fitzhardinge61a53412004-03-15 23:44:11 +00001742
philippef6185652015-05-17 18:31:55 +00001743 if ( (VG_(clo_verbosity) >= 1 ||
njnf76d27a2009-05-28 01:53:07 +00001744 (could_core && is_signal_from_kernel(tid, sigNo, info->si_code))
njn36fce1b2009-04-28 01:55:01 +00001745 ) &&
1746 !VG_(clo_xml) ) {
sewardj738856f2009-07-15 14:48:32 +00001747 VG_(umsg)(
njnb6267bd2009-08-12 00:14:16 +00001748 "\n"
sewardj738856f2009-07-15 14:48:32 +00001749 "Process terminating with default action of signal %d (%s)%s\n",
philippe886fde32012-03-29 21:56:47 +00001750 sigNo, VG_(signame)(sigNo), core ? ": dumping core" : "");
jsgf855d93d2003-10-13 22:26:55 +00001751
sewardjb5f6f512005-03-10 23:59:00 +00001752 /* Be helpful - decode some more details about this fault */
njnf76d27a2009-05-28 01:53:07 +00001753 if (is_signal_from_kernel(tid, sigNo, info->si_code)) {
florian2b8059a2012-10-14 16:45:23 +00001754 const HChar *event = NULL;
sewardjb5f6f512005-03-10 23:59:00 +00001755 Bool haveaddr = True;
jsgf855d93d2003-10-13 22:26:55 +00001756
sewardjb5f6f512005-03-10 23:59:00 +00001757 switch(sigNo) {
1758 case VKI_SIGSEGV:
1759 switch(info->si_code) {
sewardj738856f2009-07-15 14:48:32 +00001760 case VKI_SEGV_MAPERR: event = "Access not within mapped region";
1761 break;
1762 case VKI_SEGV_ACCERR: event = "Bad permissions for mapped region";
1763 break;
njn059539d2009-04-28 08:00:23 +00001764 case VKI_SEGV_MADE_UP_GPF:
sewardjb5f6f512005-03-10 23:59:00 +00001765 /* General Protection Fault: The CPU/kernel
1766 isn't telling us anything useful, but this
1767 is commonly the result of exceeding a
sewardj74b4cca2005-10-20 01:37:15 +00001768 segment limit. */
1769 event = "General Protection Fault";
sewardjb5f6f512005-03-10 23:59:00 +00001770 haveaddr = False;
jsgf855d93d2003-10-13 22:26:55 +00001771 break;
1772 }
sewardj45f4e7c2005-09-27 19:20:21 +00001773#if 0
1774 {
florian7b7d5942014-12-19 20:29:22 +00001775 HChar buf[50]; // large enough
sewardj45f4e7c2005-09-27 19:20:21 +00001776 VG_(am_show_nsegments)(0,"post segfault");
1777 VG_(sprintf)(buf, "/bin/cat /proc/%d/maps", VG_(getpid)());
1778 VG_(system)(buf);
1779 }
1780#endif
sewardjb5f6f512005-03-10 23:59:00 +00001781 break;
jsgf855d93d2003-10-13 22:26:55 +00001782
sewardjb5f6f512005-03-10 23:59:00 +00001783 case VKI_SIGILL:
1784 switch(info->si_code) {
tom148250b2005-11-12 00:13:20 +00001785 case VKI_ILL_ILLOPC: event = "Illegal opcode"; break;
1786 case VKI_ILL_ILLOPN: event = "Illegal operand"; break;
1787 case VKI_ILL_ILLADR: event = "Illegal addressing mode"; break;
1788 case VKI_ILL_ILLTRP: event = "Illegal trap"; break;
1789 case VKI_ILL_PRVOPC: event = "Privileged opcode"; break;
1790 case VKI_ILL_PRVREG: event = "Privileged register"; break;
1791 case VKI_ILL_COPROC: event = "Coprocessor error"; break;
1792 case VKI_ILL_BADSTK: event = "Internal stack error"; break;
sewardjb5f6f512005-03-10 23:59:00 +00001793 }
1794 break;
1795
1796 case VKI_SIGFPE:
1797 switch (info->si_code) {
tom148250b2005-11-12 00:13:20 +00001798 case VKI_FPE_INTDIV: event = "Integer divide by zero"; break;
1799 case VKI_FPE_INTOVF: event = "Integer overflow"; break;
1800 case VKI_FPE_FLTDIV: event = "FP divide by zero"; break;
1801 case VKI_FPE_FLTOVF: event = "FP overflow"; break;
1802 case VKI_FPE_FLTUND: event = "FP underflow"; break;
1803 case VKI_FPE_FLTRES: event = "FP inexact"; break;
1804 case VKI_FPE_FLTINV: event = "FP invalid operation"; break;
1805 case VKI_FPE_FLTSUB: event = "FP subscript out of range"; break;
sewardj8eb8bab2015-07-21 14:44:28 +00001806
1807 /* Solaris-specific codes. */
1808# if defined(VKI_FPE_FLTDEN)
1809 case VKI_FPE_FLTDEN: event = "FP denormalize"; break;
1810# endif
sewardjb5f6f512005-03-10 23:59:00 +00001811 }
1812 break;
1813
1814 case VKI_SIGBUS:
1815 switch (info->si_code) {
tom148250b2005-11-12 00:13:20 +00001816 case VKI_BUS_ADRALN: event = "Invalid address alignment"; break;
1817 case VKI_BUS_ADRERR: event = "Non-existent physical address"; break;
1818 case VKI_BUS_OBJERR: event = "Hardware error"; break;
sewardjb5f6f512005-03-10 23:59:00 +00001819 }
1820 break;
sewardj3059d272007-12-21 01:24:59 +00001821 } /* switch (sigNo) */
sewardjb5f6f512005-03-10 23:59:00 +00001822
1823 if (event != NULL) {
1824 if (haveaddr)
sewardj738856f2009-07-15 14:48:32 +00001825 VG_(umsg)(" %s at address %p\n",
1826 event, info->VKI_SIGINFO_si_addr);
sewardjb5f6f512005-03-10 23:59:00 +00001827 else
sewardj738856f2009-07-15 14:48:32 +00001828 VG_(umsg)(" %s\n", event);
jsgf855d93d2003-10-13 22:26:55 +00001829 }
1830 }
sewardj3059d272007-12-21 01:24:59 +00001831 /* Print a stack trace. Be cautious if the thread's SP is in an
1832 obviously stupid place (not mapped readable) that would
1833 likely cause a segfault. */
1834 if (VG_(is_valid_tid)(tid)) {
florian2baf7532012-07-26 02:41:31 +00001835 Word first_ip_delta = 0;
sewardj8eb8bab2015-07-21 14:44:28 +00001836#if defined(VGO_linux) || defined(VGO_solaris)
florianede9caf2012-07-15 01:31:45 +00001837 /* Make sure that the address stored in the stack pointer is
1838 located in a mapped page. That is not necessarily so. E.g.
1839 consider the scenario where the stack pointer was decreased
1840 and now has a value that is just below the end of a page that has
1841 not been mapped yet. In that case VG_(am_is_valid_for_client)
1842 will consider the address of the stack pointer invalid and that
1843 would cause a back-trace of depth 1 to be printed, instead of a
1844 full back-trace. */
1845 if (tid == 1) { // main thread
1846 Addr esp = VG_(get_SP)(tid);
1847 Addr base = VG_PGROUNDDN(esp - VG_STACK_REDZONE_SZB);
florian7d4a28b2015-04-23 15:20:00 +00001848 if (VG_(am_addr_is_in_extensible_client_stack)(base) &&
1849 VG_(extend_stack)(tid, base)) {
florianede9caf2012-07-15 01:31:45 +00001850 if (VG_(clo_trace_signals))
1851 VG_(dmsg)(" -> extended stack base to %#lx\n",
1852 VG_PGROUNDDN(esp));
1853 }
1854 }
1855#endif
florian2baf7532012-07-26 02:41:31 +00001856#if defined(VGA_s390x)
1857 if (sigNo == VKI_SIGILL) {
1858 /* The guest instruction address has been adjusted earlier to
1859 point to the insn following the one that could not be decoded.
1860 When printing the back-trace here we need to undo that
1861 adjustment so the first line in the back-trace reports the
1862 correct address. */
1863 Addr addr = (Addr)info->VKI_SIGINFO_si_addr;
1864 UChar byte = ((UChar *)addr)[0];
1865 Int insn_length = ((((byte >> 6) + 1) >> 1) + 1) << 1;
1866
1867 first_ip_delta = -insn_length;
1868 }
1869#endif
sewardj3059d272007-12-21 01:24:59 +00001870 ExeContext* ec = VG_(am_is_valid_for_client)
1871 (VG_(get_SP)(tid), sizeof(Addr), VKI_PROT_READ)
florian2baf7532012-07-26 02:41:31 +00001872 ? VG_(record_ExeContext)( tid, first_ip_delta )
florianbb4f5da2012-07-23 15:40:41 +00001873 : VG_(record_depth_1_ExeContext)( tid,
florian2baf7532012-07-26 02:41:31 +00001874 first_ip_delta );
sewardj3059d272007-12-21 01:24:59 +00001875 vg_assert(ec);
1876 VG_(pp_ExeContext)( ec );
fitzhardinge126c64f2003-12-08 21:58:37 +00001877 }
sewardj95d86c02007-12-18 01:49:23 +00001878 if (sigNo == VKI_SIGSEGV
florianfcd96352013-01-21 20:29:54 +00001879 && is_signal_from_kernel(tid, sigNo, info->si_code)
sewardj95d86c02007-12-18 01:49:23 +00001880 && info->si_code == VKI_SEGV_MAPERR) {
sewardj738856f2009-07-15 14:48:32 +00001881 VG_(umsg)(" If you believe this happened as a result of a stack\n" );
1882 VG_(umsg)(" overflow in your program's main thread (unlikely but\n");
1883 VG_(umsg)(" possible), you can try to increase the size of the\n" );
1884 VG_(umsg)(" main thread stack using the --main-stacksize= flag.\n" );
sewardj95d86c02007-12-18 01:49:23 +00001885 // FIXME: assumes main ThreadId == 1
1886 if (VG_(is_valid_tid)(1)) {
sewardj738856f2009-07-15 14:48:32 +00001887 VG_(umsg)(
philippedfa54a52013-03-13 21:44:07 +00001888 " The main thread stack size used in this run was %lu.\n",
1889 VG_(threads)[1].client_stack_szB);
sewardj95d86c02007-12-18 01:49:23 +00001890 }
1891 }
sewardjb5f6f512005-03-10 23:59:00 +00001892 }
1893
philippe2d1f2562014-09-19 08:57:29 +00001894 if (VG_(clo_vgdb) != Vg_VgdbNo
1895 && VG_(dyn_vgdb_error) <= VG_(get_n_errs_shown)() + 1) {
1896 /* Note: we add + 1 to n_errs_shown as the fatal signal was not
1897 reported through error msg, and so was not counted. */
philippeb3014692015-05-17 13:38:25 +00001898 VG_(gdbserver_report_fatal_signal) (info, tid);
philippe2d1f2562014-09-19 08:57:29 +00001899 }
1900
sewardjb5f6f512005-03-10 23:59:00 +00001901 if (core) {
florian90694062015-05-16 16:17:52 +00001902 static const struct vki_rlimit zero = { 0, 0 };
fitzhardinge4a4d1082004-03-15 23:46:54 +00001903
njn67229832005-08-28 04:38:12 +00001904 VG_(make_coredump)(tid, info, corelim.rlim_cur);
fitzhardinged65dcad2004-03-13 02:06:58 +00001905
sewardjb5f6f512005-03-10 23:59:00 +00001906 /* Make sure we don't get a confusing kernel-generated
1907 coredump when we finally exit */
1908 VG_(setrlimit)(VKI_RLIMIT_CORE, &zero);
1909 }
fitzhardinged65dcad2004-03-13 02:06:58 +00001910
sewardjb5f6f512005-03-10 23:59:00 +00001911 /* stash fatal signal in main thread */
sewardj1d887112005-05-30 21:44:08 +00001912 // what's this for?
1913 //VG_(threads)[VG_(master_tid)].os_state.fatalsig = sigNo;
sewardjde4a1d02002-03-22 01:27:54 +00001914
sewardjb5f6f512005-03-10 23:59:00 +00001915 /* everyone dies */
1916 VG_(nuke_all_threads_except)(tid, VgSrc_FatalSig);
1917 VG_(threads)[tid].exitreason = VgSrc_FatalSig;
1918 VG_(threads)[tid].os_state.fatalsig = sigNo;
sewardjb48e5002002-05-13 00:16:03 +00001919}
1920
sewardjb5f6f512005-03-10 23:59:00 +00001921/*
1922 This does the business of delivering a signal to a thread. It may
1923 be called from either a real signal handler, or from normal code to
1924 cause the thread to enter the signal handler.
sewardj5e2f0012004-12-13 14:10:34 +00001925
sewardjb5f6f512005-03-10 23:59:00 +00001926 This updates the thread state, but it does not set it to be
1927 Runnable.
1928*/
njn5a350be2009-04-30 03:05:05 +00001929static void deliver_signal ( ThreadId tid, const vki_siginfo_t *info,
1930 const struct vki_ucontext *uc )
sewardjde4a1d02002-03-22 01:27:54 +00001931{
jsgf855d93d2003-10-13 22:26:55 +00001932 Int sigNo = info->si_signo;
njn695c16e2005-03-27 03:40:28 +00001933 SCSS_Per_Signal *handler = &scss.scss_per_sig[sigNo];
fitzhardinge98abfc72003-12-16 02:05:15 +00001934 void *handler_fn;
jsgf855d93d2003-10-13 22:26:55 +00001935 ThreadState *tst = VG_(get_ThreadState)(tid);
1936
1937 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00001938 VG_(dmsg)("delivering signal %d (%s):%d to thread %u\n",
philippe886fde32012-03-29 21:56:47 +00001939 sigNo, VG_(signame)(sigNo), info->si_code, tid );
jsgf855d93d2003-10-13 22:26:55 +00001940
njn351d0062005-06-21 22:23:59 +00001941 if (sigNo == VG_SIGVGKILL) {
sewardjb5f6f512005-03-10 23:59:00 +00001942 /* If this is a SIGVGKILL, we're expecting it to interrupt any
1943 blocked syscall. It doesn't matter whether the VCPU state is
1944 set to restart or not, because we don't expect it will
1945 execute any more client instructions. */
1946 vg_assert(VG_(is_exiting)(tid));
jsgf855d93d2003-10-13 22:26:55 +00001947 return;
1948 }
1949
sewardjb5f6f512005-03-10 23:59:00 +00001950 /* If the client specifies SIG_IGN, treat it as SIG_DFL.
jsgf855d93d2003-10-13 22:26:55 +00001951
njn9ec0f3e2005-03-13 06:00:47 +00001952 If deliver_signal() is being called on a thread, we want
sewardjb5f6f512005-03-10 23:59:00 +00001953 the signal to get through no matter what; if they're ignoring
1954 it, then we do this override (this is so we can send it SIGSEGV,
1955 etc). */
fitzhardinge98abfc72003-12-16 02:05:15 +00001956 handler_fn = handler->scss_handler;
sewardjb5f6f512005-03-10 23:59:00 +00001957 if (handler_fn == VKI_SIG_IGN)
fitzhardinge98abfc72003-12-16 02:05:15 +00001958 handler_fn = VKI_SIG_DFL;
1959
1960 vg_assert(handler_fn != VKI_SIG_IGN);
jsgf855d93d2003-10-13 22:26:55 +00001961
fitzhardinge98abfc72003-12-16 02:05:15 +00001962 if (handler_fn == VKI_SIG_DFL) {
njn695c16e2005-03-27 03:40:28 +00001963 default_action(info, tid);
jsgf855d93d2003-10-13 22:26:55 +00001964 } else {
1965 /* Create a signal delivery frame, and set the client's %ESP and
1966 %EIP so that when execution continues, we will enter the
1967 signal handler with the frame on top of the client's stack,
sewardjb5f6f512005-03-10 23:59:00 +00001968 as it expects.
1969
1970 Signal delivery can fail if the client stack is too small or
1971 missing, and we can't push the frame. If that happens,
1972 push_signal_frame will cause the whole process to exit when
1973 we next hit the scheduler.
1974 */
jsgf855d93d2003-10-13 22:26:55 +00001975 vg_assert(VG_(is_valid_tid)(tid));
sewardjb5f6f512005-03-10 23:59:00 +00001976
tomadacaf92007-12-21 10:24:24 +00001977 push_signal_frame ( tid, info, uc );
jsgf855d93d2003-10-13 22:26:55 +00001978
1979 if (handler->scss_flags & VKI_SA_ONESHOT) {
1980 /* Do the ONESHOT thing. */
1981 handler->scss_handler = VKI_SIG_DFL;
1982
nethercote9dd11512004-08-04 15:31:30 +00001983 handle_SCSS_change( False /* lazy update */ );
jsgf855d93d2003-10-13 22:26:55 +00001984 }
sewardjb5f6f512005-03-10 23:59:00 +00001985
1986 /* At this point:
1987 tst->sig_mask is the current signal mask
1988 tst->tmp_sig_mask is the same as sig_mask, unless we're in sigsuspend
1989 handler->scss_mask is the mask set by the handler
1990
1991 Handler gets a mask of tmp_sig_mask|handler_mask|signo
1992 */
1993 tst->sig_mask = tst->tmp_sig_mask;
1994 if (!(handler->scss_flags & VKI_SA_NOMASK)) {
1995 VG_(sigaddset_from_set)(&tst->sig_mask, &handler->scss_mask);
1996 VG_(sigaddset)(&tst->sig_mask, sigNo);
sewardjb5f6f512005-03-10 23:59:00 +00001997 tst->tmp_sig_mask = tst->sig_mask;
1998 }
1999 }
2000
2001 /* Thread state is ready to go - just add Runnable */
2002}
2003
njn06244e72005-06-21 22:27:19 +00002004static void resume_scheduler(ThreadId tid)
2005{
2006 ThreadState *tst = VG_(get_ThreadState)(tid);
2007
2008 vg_assert(tst->os_state.lwpid == VG_(gettid)());
2009
2010 if (tst->sched_jmpbuf_valid) {
2011 /* Can't continue; must longjmp back to the scheduler and thus
2012 enter the sighandler immediately. */
sewardj6c591e12011-04-11 16:17:51 +00002013 VG_MINIMAL_LONGJMP(tst->sched_jmpbuf);
njn06244e72005-06-21 22:27:19 +00002014 }
2015}
2016
njn9ec0f3e2005-03-13 06:00:47 +00002017static void synth_fault_common(ThreadId tid, Addr addr, Int si_code)
2018{
2019 vki_siginfo_t info;
2020
2021 vg_assert(VG_(threads)[tid].status == VgTs_Runnable);
2022
njn5a350be2009-04-30 03:05:05 +00002023 VG_(memset)(&info, 0, sizeof(info));
njn9ec0f3e2005-03-13 06:00:47 +00002024 info.si_signo = VKI_SIGSEGV;
2025 info.si_code = si_code;
sewardj489bfec2006-10-17 02:00:29 +00002026 info.VKI_SIGINFO_si_addr = (void*)addr;
njn9ec0f3e2005-03-13 06:00:47 +00002027
philippe448e2bf2013-03-03 17:52:31 +00002028 /* Even if gdbserver indicates to ignore the signal, we must deliver it.
2029 So ignore the return value of VG_(gdbserver_report_signal). */
philippeb3014692015-05-17 13:38:25 +00002030 (void) VG_(gdbserver_report_signal) (&info, tid);
sewardj3b290482011-05-06 21:02:55 +00002031
njn9ec0f3e2005-03-13 06:00:47 +00002032 /* If they're trying to block the signal, force it to be delivered */
2033 if (VG_(sigismember)(&VG_(threads)[tid].sig_mask, VKI_SIGSEGV))
2034 VG_(set_default_handler)(VKI_SIGSEGV);
2035
tomadacaf92007-12-21 10:24:24 +00002036 deliver_signal(tid, &info, NULL);
njn9ec0f3e2005-03-13 06:00:47 +00002037}
2038
2039// Synthesize a fault where the address is OK, but the page
2040// permissions are bad.
2041void VG_(synth_fault_perms)(ThreadId tid, Addr addr)
2042{
njn059539d2009-04-28 08:00:23 +00002043 synth_fault_common(tid, addr, VKI_SEGV_ACCERR);
njn9ec0f3e2005-03-13 06:00:47 +00002044}
2045
2046// Synthesize a fault where the address there's nothing mapped at the address.
2047void VG_(synth_fault_mapping)(ThreadId tid, Addr addr)
2048{
njn059539d2009-04-28 08:00:23 +00002049 synth_fault_common(tid, addr, VKI_SEGV_MAPERR);
njn9ec0f3e2005-03-13 06:00:47 +00002050}
2051
2052// Synthesize a misc memory fault.
2053void VG_(synth_fault)(ThreadId tid)
2054{
njn059539d2009-04-28 08:00:23 +00002055 synth_fault_common(tid, 0, VKI_SEGV_MADE_UP_GPF);
njn9ec0f3e2005-03-13 06:00:47 +00002056}
2057
2058// Synthesise a SIGILL.
2059void VG_(synth_sigill)(ThreadId tid, Addr addr)
2060{
2061 vki_siginfo_t info;
2062
2063 vg_assert(VG_(threads)[tid].status == VgTs_Runnable);
2064
njn5a350be2009-04-30 03:05:05 +00002065 VG_(memset)(&info, 0, sizeof(info));
njn9ec0f3e2005-03-13 06:00:47 +00002066 info.si_signo = VKI_SIGILL;
sewardj489bfec2006-10-17 02:00:29 +00002067 info.si_code = VKI_ILL_ILLOPC; /* jrs: no idea what this should be */
2068 info.VKI_SIGINFO_si_addr = (void*)addr;
njn9ec0f3e2005-03-13 06:00:47 +00002069
philippeb3014692015-05-17 13:38:25 +00002070 if (VG_(gdbserver_report_signal) (&info, tid)) {
sewardj3b290482011-05-06 21:02:55 +00002071 resume_scheduler(tid);
2072 deliver_signal(tid, &info, NULL);
2073 }
2074 else
2075 resume_scheduler(tid);
njn9ec0f3e2005-03-13 06:00:47 +00002076}
2077
sewardj1c0ce7a2009-07-01 08:10:49 +00002078// Synthesise a SIGBUS.
2079void VG_(synth_sigbus)(ThreadId tid)
2080{
2081 vki_siginfo_t info;
2082
2083 vg_assert(VG_(threads)[tid].status == VgTs_Runnable);
2084
2085 VG_(memset)(&info, 0, sizeof(info));
2086 info.si_signo = VKI_SIGBUS;
2087 /* There are several meanings to SIGBUS (as per POSIX, presumably),
2088 but the most widely understood is "invalid address alignment",
2089 so let's use that. */
2090 info.si_code = VKI_BUS_ADRALN;
2091 /* If we knew the invalid address in question, we could put it
2092 in .si_addr. Oh well. */
2093 /* info.VKI_SIGINFO_si_addr = (void*)addr; */
2094
philippeb3014692015-05-17 13:38:25 +00002095 if (VG_(gdbserver_report_signal) (&info, tid)) {
sewardj3b290482011-05-06 21:02:55 +00002096 resume_scheduler(tid);
2097 deliver_signal(tid, &info, NULL);
2098 }
2099 else
2100 resume_scheduler(tid);
sewardj1c0ce7a2009-07-01 08:10:49 +00002101}
2102
sewardj86df1552006-02-07 20:56:41 +00002103// Synthesise a SIGTRAP.
2104void VG_(synth_sigtrap)(ThreadId tid)
2105{
2106 vki_siginfo_t info;
tomadacaf92007-12-21 10:24:24 +00002107 struct vki_ucontext uc;
njnf76d27a2009-05-28 01:53:07 +00002108# if defined(VGP_x86_darwin)
2109 struct __darwin_mcontext32 mc;
2110# elif defined(VGP_amd64_darwin)
2111 struct __darwin_mcontext64 mc;
2112# endif
sewardj86df1552006-02-07 20:56:41 +00002113
2114 vg_assert(VG_(threads)[tid].status == VgTs_Runnable);
2115
njn5a350be2009-04-30 03:05:05 +00002116 VG_(memset)(&info, 0, sizeof(info));
2117 VG_(memset)(&uc, 0, sizeof(uc));
sewardj86df1552006-02-07 20:56:41 +00002118 info.si_signo = VKI_SIGTRAP;
tomadacaf92007-12-21 10:24:24 +00002119 info.si_code = VKI_TRAP_BRKPT; /* tjh: only ever called for a brkpt ins */
njncda2f0f2009-05-18 02:12:08 +00002120
2121# if defined(VGP_x86_linux) || defined(VGP_amd64_linux)
tomadacaf92007-12-21 10:24:24 +00002122 uc.uc_mcontext.trapno = 3; /* tjh: this is the x86 trap number
2123 for a breakpoint trap... */
tom8b243022008-06-13 08:37:49 +00002124 uc.uc_mcontext.err = 0; /* tjh: no error code for x86
2125 breakpoint trap... */
njnf76d27a2009-05-28 01:53:07 +00002126# elif defined(VGP_x86_darwin) || defined(VGP_amd64_darwin)
2127 /* the same thing, but using Darwin field/struct names */
2128 VG_(memset)(&mc, 0, sizeof(mc));
2129 uc.uc_mcontext = &mc;
2130 uc.uc_mcontext->__es.__trapno = 3;
2131 uc.uc_mcontext->__es.__err = 0;
sewardj8eb8bab2015-07-21 14:44:28 +00002132# elif defined(VGP_x86_solaris)
2133 uc.uc_mcontext.gregs[VKI_ERR] = 0;
2134 uc.uc_mcontext.gregs[VKI_TRAPNO] = VKI_T_BPTFLT;
njncda2f0f2009-05-18 02:12:08 +00002135# endif
sewardj86df1552006-02-07 20:56:41 +00002136
sewardjb5b87402011-03-07 16:05:35 +00002137 /* fixs390: do we need to do anything here for s390 ? */
philippeb3014692015-05-17 13:38:25 +00002138 if (VG_(gdbserver_report_signal) (&info, tid)) {
sewardj3b290482011-05-06 21:02:55 +00002139 resume_scheduler(tid);
2140 deliver_signal(tid, &info, &uc);
2141 }
2142 else
2143 resume_scheduler(tid);
sewardj86df1552006-02-07 20:56:41 +00002144}
2145
petarj80e5c172012-10-19 14:45:17 +00002146// Synthesise a SIGFPE.
2147void VG_(synth_sigfpe)(ThreadId tid, UInt code)
2148{
petarj4df0bfc2013-02-27 23:17:33 +00002149// Only tested on mips32 and mips64
2150#if !defined(VGA_mips32) && !defined(VGA_mips64)
petarj80e5c172012-10-19 14:45:17 +00002151 vg_assert(0);
2152#else
2153 vki_siginfo_t info;
2154 struct vki_ucontext uc;
2155
2156 vg_assert(VG_(threads)[tid].status == VgTs_Runnable);
2157
2158 VG_(memset)(&info, 0, sizeof(info));
2159 VG_(memset)(&uc, 0, sizeof(uc));
2160 info.si_signo = VKI_SIGFPE;
2161 info.si_code = code;
2162
2163 if (VG_(gdbserver_report_signal) (VKI_SIGFPE, tid)) {
2164 resume_scheduler(tid);
2165 deliver_signal(tid, &info, &uc);
2166 }
2167 else
2168 resume_scheduler(tid);
2169#endif
2170}
2171
sewardjb5f6f512005-03-10 23:59:00 +00002172/* Make a signal pending for a thread, for later delivery.
2173 VG_(poll_signals) will arrange for it to be delivered at the right
2174 time.
2175
2176 tid==0 means add it to the process-wide queue, and not sent it to a
2177 specific thread.
2178*/
sewardj2c5ffbe2005-03-12 13:32:06 +00002179static
sewardjb5f6f512005-03-10 23:59:00 +00002180void queue_signal(ThreadId tid, const vki_siginfo_t *si)
2181{
2182 ThreadState *tst;
2183 SigQueue *sq;
2184 vki_sigset_t savedmask;
2185
2186 tst = VG_(get_ThreadState)(tid);
2187
2188 /* Protect the signal queue against async deliveries */
njn444eba12005-05-12 03:47:31 +00002189 block_all_host_signals(&savedmask);
sewardjb5f6f512005-03-10 23:59:00 +00002190
2191 if (tst->sig_queue == NULL) {
florian77eb20b2014-09-11 21:19:17 +00002192 tst->sig_queue = VG_(malloc)("signals.qs.1", sizeof(*tst->sig_queue));
sewardjb5f6f512005-03-10 23:59:00 +00002193 VG_(memset)(tst->sig_queue, 0, sizeof(*tst->sig_queue));
2194 }
2195 sq = tst->sig_queue;
2196
2197 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00002198 VG_(dmsg)("Queueing signal %d (idx %d) to thread %u\n",
sewardj738856f2009-07-15 14:48:32 +00002199 si->si_signo, sq->next, tid);
sewardjb5f6f512005-03-10 23:59:00 +00002200
2201 /* Add signal to the queue. If the queue gets overrun, then old
2202 queued signals may get lost.
2203
2204 XXX We should also keep a sigset of pending signals, so that at
2205 least a non-siginfo signal gets deliviered.
2206 */
2207 if (sq->sigs[sq->next].si_signo != 0)
floriana5e06c32015-08-05 21:16:09 +00002208 VG_(umsg)("Signal %d being dropped from thread %u's queue\n",
sewardj738856f2009-07-15 14:48:32 +00002209 sq->sigs[sq->next].si_signo, tid);
sewardjb5f6f512005-03-10 23:59:00 +00002210
2211 sq->sigs[sq->next] = *si;
2212 sq->next = (sq->next+1) % N_QUEUED_SIGNALS;
2213
njn444eba12005-05-12 03:47:31 +00002214 restore_all_host_signals(&savedmask);
sewardjb5f6f512005-03-10 23:59:00 +00002215}
2216
2217/*
2218 Returns the next queued signal for thread tid which is in "set".
2219 tid==0 means process-wide signal. Set si_signo to 0 when the
2220 signal has been delivered.
2221
2222 Must be called with all signals blocked, to protect against async
2223 deliveries.
2224*/
2225static vki_siginfo_t *next_queued(ThreadId tid, const vki_sigset_t *set)
2226{
2227 ThreadState *tst = VG_(get_ThreadState)(tid);
2228 SigQueue *sq;
2229 Int idx;
2230 vki_siginfo_t *ret = NULL;
2231
2232 sq = tst->sig_queue;
2233 if (sq == NULL)
2234 goto out;
jsgf855d93d2003-10-13 22:26:55 +00002235
sewardjb5f6f512005-03-10 23:59:00 +00002236 idx = sq->next;
2237 do {
2238 if (0)
2239 VG_(printf)("idx=%d si_signo=%d inset=%d\n", idx,
sewardj738856f2009-07-15 14:48:32 +00002240 sq->sigs[idx].si_signo,
2241 VG_(sigismember)(set, sq->sigs[idx].si_signo));
jsgf855d93d2003-10-13 22:26:55 +00002242
sewardj738856f2009-07-15 14:48:32 +00002243 if (sq->sigs[idx].si_signo != 0
2244 && VG_(sigismember)(set, sq->sigs[idx].si_signo)) {
sewardjb5f6f512005-03-10 23:59:00 +00002245 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00002246 VG_(dmsg)("Returning queued signal %d (idx %d) for thread %u\n",
sewardj738856f2009-07-15 14:48:32 +00002247 sq->sigs[idx].si_signo, idx, tid);
sewardjb5f6f512005-03-10 23:59:00 +00002248 ret = &sq->sigs[idx];
2249 goto out;
jsgf855d93d2003-10-13 22:26:55 +00002250 }
2251
sewardjb5f6f512005-03-10 23:59:00 +00002252 idx = (idx + 1) % N_QUEUED_SIGNALS;
2253 } while(idx != sq->next);
2254 out:
sewardj489bfec2006-10-17 02:00:29 +00002255 return ret;
jsgf855d93d2003-10-13 22:26:55 +00002256}
2257
njn3b6b2aa2009-04-30 03:30:09 +00002258static int sanitize_si_code(int si_code)
2259{
2260#if defined(VGO_linux)
2261 /* The linux kernel uses the top 16 bits of si_code for it's own
2262 use and only exports the bottom 16 bits to user space - at least
2263 that is the theory, but it turns out that there are some kernels
2264 around that forget to mask out the top 16 bits so we do it here.
2265
2266 The kernel treats the bottom 16 bits as signed and (when it does
2267 mask them off) sign extends them when exporting to user space so
2268 we do the same thing here. */
2269 return (Short)si_code;
sewardj8eb8bab2015-07-21 14:44:28 +00002270#elif defined(VGO_darwin) || defined(VGO_solaris)
njn3b6b2aa2009-04-30 03:30:09 +00002271 return si_code;
njn52040a42009-04-30 04:00:13 +00002272#else
2273# error Unknown OS
njn3b6b2aa2009-04-30 03:30:09 +00002274#endif
2275}
2276
sewardj8eb8bab2015-07-21 14:44:28 +00002277#if defined(VGO_solaris)
2278/* Following function is used to switch Valgrind from a client stack back onto
2279 a Valgrind stack. It is used only when the door_return call was invoked by
2280 the client because this is the only syscall which is executed directly on
2281 the client stack (see syscall-{x86,amd64}-solaris.S). The switch onto the
2282 Valgrind stack has to be made as soon as possible because there is no
2283 guarantee that there is enough space on the client stack to run the
2284 complete signal machinery. Also, Valgrind has to be switched back onto its
2285 stack before a simulated signal frame is created because that will
2286 overwrite the real sigframe built by the kernel. */
2287static void async_signalhandler_solaris_preprocess(ThreadId tid, Int *signo,
2288 vki_siginfo_t *info,
2289 struct vki_ucontext *uc)
2290{
2291# define RECURSION_BIT 0x1000
2292 Addr sp;
2293 vki_sigframe_t *frame;
2294 ThreadState *tst = VG_(get_ThreadState)(tid);
2295 Int rec_signo;
2296
2297 /* If not doing door_return then return instantly. */
2298 if (!tst->os_state.in_door_return)
2299 return;
2300
2301 /* Check for the recursion:
2302 v ...
2303 | async_signalhandler - executed on the client stack
2304 v async_signalhandler_solaris_preprocess - first call switches the
2305 | stacks and sets the RECURSION_BIT flag
2306 v async_signalhandler - executed on the Valgrind stack
2307 | async_signalhandler_solaris_preprocess - the RECURSION_BIT flag is
2308 v set, clear it and return
2309 */
2310 if (*signo & RECURSION_BIT) {
2311 *signo &= ~RECURSION_BIT;
2312 return;
2313 }
2314
2315 rec_signo = *signo | RECURSION_BIT;
2316
2317# if defined(VGP_x86_solaris)
2318 /* Register %ebx/%rbx points to the top of the original V stack. */
2319 sp = uc->uc_mcontext.gregs[VKI_EBX];
2320# elif defined(VGP_amd64_solaris)
2321 sp = uc->uc_mcontext.gregs[VKI_REG_RBX];
2322# else
2323# error "Unknown platform"
2324# endif
2325
2326 /* Build a fake signal frame, similarly as in sigframe-solaris.c. */
2327 /* Calculate a new stack pointer. */
2328 sp -= sizeof(vki_sigframe_t);
2329 sp = VG_ROUNDDN(sp, 16) - sizeof(UWord);
2330
2331 /* Fill in the frame. */
2332 frame = (vki_sigframe_t*)sp;
2333 /* Set a bogus return address. */
2334 frame->return_addr = (void*)~0UL;
2335 frame->a1_signo = rec_signo;
2336 /* The first parameter has to be 16-byte aligned, resembling a function
2337 call. */
2338 {
2339 /* Using
2340 vg_assert(VG_IS_16_ALIGNED(&frame->a1_signo));
2341 seems to get miscompiled on amd64 with GCC 4.7.2. */
2342 Addr signo_addr = (Addr)&frame->a1_signo;
2343 vg_assert(VG_IS_16_ALIGNED(signo_addr));
2344 }
2345 frame->a2_siginfo = &frame->siginfo;
2346 frame->siginfo = *info;
2347 frame->ucontext = *uc;
2348
2349# if defined(VGP_x86_solaris)
2350 frame->a3_ucontext = &frame->ucontext;
2351
2352 /* Switch onto the V stack and restart the signal processing. */
2353 __asm__ __volatile__(
2354 "xorl %%ebp, %%ebp\n"
2355 "movl %[sp], %%esp\n"
2356 "jmp async_signalhandler\n"
2357 :
2358 : [sp] "a" (sp)
2359 : /*"ebp"*/);
2360
2361# elif defined(VGP_amd64_solaris)
2362 __asm__ __volatile__(
2363 "xorq %%rbp, %%rbp\n"
2364 "movq %[sp], %%rsp\n"
2365 "jmp async_signalhandler\n"
2366 :
2367 : [sp] "a" (sp), "D" (rec_signo), "S" (&frame->siginfo),
2368 "d" (&frame->ucontext)
2369 : /*"rbp"*/);
2370# else
2371# error "Unknown platform"
2372# endif
2373
2374 /* We should never get here. */
2375 vg_assert(0);
2376
2377# undef RECURSION_BIT
2378}
2379#endif
2380
jsgf855d93d2003-10-13 22:26:55 +00002381/*
sewardjb5f6f512005-03-10 23:59:00 +00002382 Receive an async signal from the kernel.
jsgf855d93d2003-10-13 22:26:55 +00002383
sewardjb5f6f512005-03-10 23:59:00 +00002384 This should only happen when the thread is blocked in a syscall,
2385 since that's the only time this set of signals is unblocked.
jsgf855d93d2003-10-13 22:26:55 +00002386*/
2387static
njn5a350be2009-04-30 03:05:05 +00002388void async_signalhandler ( Int sigNo,
2389 vki_siginfo_t *info, struct vki_ucontext *uc )
jsgf855d93d2003-10-13 22:26:55 +00002390{
njn5a350be2009-04-30 03:05:05 +00002391 ThreadId tid = VG_(lwpid_to_vgtid)(VG_(gettid)());
2392 ThreadState* tst = VG_(get_ThreadState)(tid);
njncda2f0f2009-05-18 02:12:08 +00002393 SysRes sres;
jsgf855d93d2003-10-13 22:26:55 +00002394
njn5a350be2009-04-30 03:05:05 +00002395 vg_assert(tst->status == VgTs_WaitSys);
sewardj8eb8bab2015-07-21 14:44:28 +00002396
2397# if defined(VGO_solaris)
2398 async_signalhandler_solaris_preprocess(tid, &sigNo, info, uc);
2399# endif
2400
2401 /* The thread isn't currently running, make it so before going on */
njn5a350be2009-04-30 03:05:05 +00002402 VG_(acquire_BigLock)(tid, "async_signalhandler");
2403
njn3b6b2aa2009-04-30 03:30:09 +00002404 info->si_code = sanitize_si_code(info->si_code);
tom9f4a7bf2005-11-13 00:01:20 +00002405
sewardjb5f6f512005-03-10 23:59:00 +00002406 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00002407 VG_(dmsg)("async signal handler: signal=%d, tid=%u, si_code=%d\n",
sewardj738856f2009-07-15 14:48:32 +00002408 sigNo, tid, info->si_code);
sewardjb5f6f512005-03-10 23:59:00 +00002409
njncda2f0f2009-05-18 02:12:08 +00002410 /* Update thread state properly. The signal can only have been
2411 delivered whilst we were in
2412 coregrind/m_syswrap/syscall-<PLAT>.S, and only then in the
2413 window between the two sigprocmask calls, since at all other
2414 times, we run with async signals on the host blocked. Hence
2415 make enquiries on the basis that we were in or very close to a
2416 syscall, and attempt to fix up the guest state accordingly.
2417
2418 (normal async signals occurring during computation are blocked,
2419 but periodically polled for using VG_(sigtimedwait_zero), and
2420 delivered at a point convenient for us. Hence this routine only
2421 deals with signals that are delivered to a thread during a
2422 syscall.) */
2423
2424 /* First, extract a SysRes from the ucontext_t* given to this
2425 handler. If it is subsequently established by
2426 VG_(fixup_guest_state_after_syscall_interrupted) that the
2427 syscall was complete but the results had not been committed yet
2428 to the guest state, then it'll have to commit the results itself
2429 "by hand", and so we need to extract the SysRes. Of course if
2430 the thread was not in that particular window then the
2431 SysRes will be meaningless, but that's OK too because
2432 VG_(fixup_guest_state_after_syscall_interrupted) will detect
2433 that the thread was not in said window and ignore the SysRes. */
2434
njnf76d27a2009-05-28 01:53:07 +00002435 /* To make matters more complex still, on Darwin we need to know
2436 the "class" of the syscall under consideration in order to be
2437 able to extract the a correct SysRes. The class will have been
2438 saved just before the syscall, by VG_(client_syscall), into this
2439 thread's tst->arch.vex.guest_SC_CLASS. Hence: */
2440# if defined(VGO_darwin)
2441 sres = VG_UCONTEXT_SYSCALL_SYSRES(uc, tst->arch.vex.guest_SC_CLASS);
2442# else
njncda2f0f2009-05-18 02:12:08 +00002443 sres = VG_UCONTEXT_SYSCALL_SYSRES(uc);
njnf76d27a2009-05-28 01:53:07 +00002444# endif
njncda2f0f2009-05-18 02:12:08 +00002445
2446 /* (1) */
sewardja8d8e232005-06-07 20:04:56 +00002447 VG_(fixup_guest_state_after_syscall_interrupted)(
2448 tid,
njnaf839f52005-06-23 03:27:57 +00002449 VG_UCONTEXT_INSTR_PTR(uc),
njncda2f0f2009-05-18 02:12:08 +00002450 sres,
sewardj8eb8bab2015-07-21 14:44:28 +00002451 !!(scss.scss_per_sig[sigNo].scss_flags & VKI_SA_RESTART),
2452 uc
sewardja8d8e232005-06-07 20:04:56 +00002453 );
sewardjb5f6f512005-03-10 23:59:00 +00002454
njncda2f0f2009-05-18 02:12:08 +00002455 /* (2) */
sewardjb5f6f512005-03-10 23:59:00 +00002456 /* Set up the thread's state to deliver a signal */
philippeb3014692015-05-17 13:38:25 +00002457 if (!is_sig_ign(info, tid))
tomadacaf92007-12-21 10:24:24 +00002458 deliver_signal(tid, info, uc);
sewardjb5f6f512005-03-10 23:59:00 +00002459
njncda2f0f2009-05-18 02:12:08 +00002460 /* It's crucial that (1) and (2) happen in the order (1) then (2)
2461 and not the other way around. (1) fixes up the guest thread
2462 state to reflect the fact that the syscall was interrupted --
2463 either to restart the syscall or to return EINTR. (2) then sets
2464 up the thread state to deliver the signal. Then we resume
2465 execution. First, the signal handler is run, since that's the
2466 second adjustment we made to the thread state. If that returns,
2467 then we resume at the guest state created by (1), viz, either
2468 the syscall returns EINTR or is restarted.
2469
2470 If (2) was done before (1) the outcome would be completely
2471 different, and wrong. */
2472
sewardjb5f6f512005-03-10 23:59:00 +00002473 /* longjmp back to the thread's main loop to start executing the
2474 handler. */
njn06244e72005-06-21 22:27:19 +00002475 resume_scheduler(tid);
sewardjb5f6f512005-03-10 23:59:00 +00002476
njn5a350be2009-04-30 03:05:05 +00002477 VG_(core_panic)("async_signalhandler: got unexpected signal "
2478 "while outside of scheduler");
jsgf855d93d2003-10-13 22:26:55 +00002479}
2480
florian017d8f52015-03-23 17:13:04 +00002481/* Extend the stack of thread #tid to cover addr. It is expected that
2482 addr either points into an already mapped anonymous segment or into a
2483 reservation segment abutting the stack segment. Everything else is a bug.
sewardjb5f6f512005-03-10 23:59:00 +00002484
2485 Returns True on success, False on failure.
2486
2487 Succeeds without doing anything if addr is already within a segment.
2488
2489 Failure could be caused by:
florian017d8f52015-03-23 17:13:04 +00002490 - addr not below a growable segment
florian15fa8a22015-03-03 14:56:17 +00002491 - new stack size would exceed the stack limit for the given thread
sewardjb5f6f512005-03-10 23:59:00 +00002492 - mmap failed for some other reason
florian15fa8a22015-03-03 14:56:17 +00002493*/
2494Bool VG_(extend_stack)(ThreadId tid, Addr addr)
sewardjb5f6f512005-03-10 23:59:00 +00002495{
sewardj45f4e7c2005-09-27 19:20:21 +00002496 SizeT udelta;
sewardjb5f6f512005-03-10 23:59:00 +00002497
florian15fa8a22015-03-03 14:56:17 +00002498 /* Get the segment containing addr. */
2499 const NSegment* seg = VG_(am_find_nsegment)(addr);
florian017d8f52015-03-23 17:13:04 +00002500 vg_assert(seg != NULL);
sewardj45f4e7c2005-09-27 19:20:21 +00002501
florianbe38cdd2015-03-02 21:10:46 +00002502 /* TODO: the test "seg->kind == SkAnonC" is really inadequate,
2503 because although it tests whether the segment is mapped
2504 _somehow_, it doesn't check that it has the right permissions
2505 (r,w, maybe x) ? */
florian15fa8a22015-03-03 14:56:17 +00002506 if (seg->kind == SkAnonC)
sewardj45f4e7c2005-09-27 19:20:21 +00002507 /* addr is already mapped. Nothing to do. */
sewardjb5f6f512005-03-10 23:59:00 +00002508 return True;
2509
florian15fa8a22015-03-03 14:56:17 +00002510 const NSegment* seg_next = VG_(am_next_nsegment)( seg, True/*fwds*/ );
florian017d8f52015-03-23 17:13:04 +00002511 vg_assert(seg_next != NULL);
sewardjb5f6f512005-03-10 23:59:00 +00002512
sewardj45f4e7c2005-09-27 19:20:21 +00002513 udelta = VG_PGROUNDUP(seg_next->start - addr);
florian15fa8a22015-03-03 14:56:17 +00002514
sewardj45f4e7c2005-09-27 19:20:21 +00002515 VG_(debugLog)(1, "signals",
floriana5e06c32015-08-05 21:16:09 +00002516 "extending a stack base 0x%lx down by %lu\n",
2517 seg_next->start, udelta);
florian15fa8a22015-03-03 14:56:17 +00002518 Bool overflow;
sewardj45f4e7c2005-09-27 19:20:21 +00002519 if (! VG_(am_extend_into_adjacent_reservation_client)
florian15fa8a22015-03-03 14:56:17 +00002520 ( seg_next->start, -(SSizeT)udelta, &overflow )) {
2521 Addr new_stack_base = seg_next->start - udelta;
2522 if (overflow)
floriana5e06c32015-08-05 21:16:09 +00002523 VG_(umsg)("Stack overflow in thread #%u: can't grow stack to %#lx\n",
florian15fa8a22015-03-03 14:56:17 +00002524 tid, new_stack_base);
2525 else
floriana5e06c32015-08-05 21:16:09 +00002526 VG_(umsg)("Cannot map memory to grow the stack for thread #%u "
florian15fa8a22015-03-03 14:56:17 +00002527 "to %#lx\n", tid, new_stack_base);
sewardjb5f6f512005-03-10 23:59:00 +00002528 return False;
sewardj45f4e7c2005-09-27 19:20:21 +00002529 }
sewardjb5f6f512005-03-10 23:59:00 +00002530
rjwalsh0140af52005-06-04 20:42:33 +00002531 /* When we change the main stack, we have to let the stack handling
2532 code know about it. */
sewardj45f4e7c2005-09-27 19:20:21 +00002533 VG_(change_stack)(VG_(clstk_id), addr, VG_(clstk_end));
sewardjb5f6f512005-03-10 23:59:00 +00002534
2535 if (VG_(clo_sanity_level) > 2)
2536 VG_(sanity_check_general)(False);
2537
2538 return True;
2539}
2540
sewardj489bfec2006-10-17 02:00:29 +00002541static void (*fault_catcher)(Int sig, Addr addr) = NULL;
sewardjb5f6f512005-03-10 23:59:00 +00002542
2543void VG_(set_fault_catcher)(void (*catcher)(Int, Addr))
2544{
sewardj489bfec2006-10-17 02:00:29 +00002545 if (0)
2546 VG_(debugLog)(0, "signals", "set fault catcher to %p\n", catcher);
njn50ae1a72005-04-08 23:28:23 +00002547 vg_assert2(NULL == catcher || NULL == fault_catcher,
2548 "Fault catcher is already registered");
sewardjb5f6f512005-03-10 23:59:00 +00002549
2550 fault_catcher = catcher;
2551}
2552
njn96986052009-04-30 07:41:24 +00002553static
njn2d5ff4f2009-05-03 22:53:19 +00002554void sync_signalhandler_from_user ( ThreadId tid,
njn96986052009-04-30 07:41:24 +00002555 Int sigNo, vki_siginfo_t *info, struct vki_ucontext *uc )
2556{
2557 ThreadId qtid;
2558
njn2d5ff4f2009-05-03 22:53:19 +00002559 /* If some user-process sent us a sync signal (ie. it's not the result
njn96986052009-04-30 07:41:24 +00002560 of a faulting instruction), then how we treat it depends on when it
2561 arrives... */
2562
sewardj8eb8bab2015-07-21 14:44:28 +00002563 if (VG_(threads)[tid].status == VgTs_WaitSys
2564# if defined(VGO_solaris)
2565 /* Check if the signal was really received while doing a blocking
2566 syscall. Only then the async_signalhandler() path can be used. */
2567 && VG_(is_ip_in_blocking_syscall)(tid, VG_UCONTEXT_INSTR_PTR(uc))
2568# endif
2569 ) {
njn96986052009-04-30 07:41:24 +00002570 /* Signal arrived while we're blocked in a syscall. This means that
2571 the client's signal mask was applied. In other words, so we can't
2572 get here unless the client wants this signal right now. This means
2573 we can simply use the async_signalhandler. */
2574 if (VG_(clo_trace_signals))
sewardj738856f2009-07-15 14:48:32 +00002575 VG_(dmsg)("Delivering user-sent sync signal %d as async signal\n",
2576 sigNo);
njn96986052009-04-30 07:41:24 +00002577
2578 async_signalhandler(sigNo, info, uc);
2579 VG_(core_panic)("async_signalhandler returned!?\n");
2580
2581 } else {
2582 /* Signal arrived while in generated client code, or while running
2583 Valgrind core code. That means that every thread has these signals
2584 unblocked, so we can't rely on the kernel to route them properly, so
2585 we need to queue them manually. */
2586 if (VG_(clo_trace_signals))
sewardj738856f2009-07-15 14:48:32 +00002587 VG_(dmsg)("Routing user-sent sync signal %d via queue\n", sigNo);
njn96986052009-04-30 07:41:24 +00002588
2589# if defined(VGO_linux)
2590 /* On Linux, first we have to do a sanity check of the siginfo. */
2591 if (info->VKI_SIGINFO_si_pid == 0) {
2592 /* There's a per-user limit of pending siginfo signals. If
2593 you exceed this, by having more than that number of
2594 pending signals with siginfo, then new signals are
2595 delivered without siginfo. This condition can be caused
2596 by any unrelated program you're running at the same time
2597 as Valgrind, if it has a large number of pending siginfo
2598 signals which it isn't taking delivery of.
2599
2600 Since we depend on siginfo to work out why we were sent a
2601 signal and what we should do about it, we really can't
2602 continue unless we get it. */
sewardj738856f2009-07-15 14:48:32 +00002603 VG_(umsg)("Signal %d (%s) appears to have lost its siginfo; "
philippe886fde32012-03-29 21:56:47 +00002604 "I can't go on.\n", sigNo, VG_(signame)(sigNo));
njn96986052009-04-30 07:41:24 +00002605 VG_(printf)(
2606" This may be because one of your programs has consumed your ration of\n"
2607" siginfo structures. For more information, see:\n"
2608" http://kerneltrap.org/mailarchive/1/message/25599/thread\n"
2609" Basically, some program on your system is building up a large queue of\n"
2610" pending signals, and this causes the siginfo data for other signals to\n"
2611" be dropped because it's exceeding a system limit. However, Valgrind\n"
2612" absolutely needs siginfo for SIGSEGV. A workaround is to track down the\n"
2613" offending program and avoid running it while using Valgrind, but there\n"
2614" is no easy way to do this. Apparently the problem was fixed in kernel\n"
2615" 2.6.12.\n");
2616
2617 /* It's a fatal signal, so we force the default handler. */
2618 VG_(set_default_handler)(sigNo);
2619 deliver_signal(tid, info, uc);
2620 resume_scheduler(tid);
2621 VG_(exit)(99); /* If we can't resume, then just exit */
2622 }
2623# endif
2624
2625 qtid = 0; /* shared pending by default */
2626# if defined(VGO_linux)
2627 if (info->si_code == VKI_SI_TKILL)
2628 qtid = tid; /* directed to us specifically */
2629# endif
2630 queue_signal(qtid, info);
2631 }
2632}
2633
sewardjb5b87402011-03-07 16:05:35 +00002634/* Returns the reported fault address for an exact address */
2635static Addr fault_mask(Addr in)
2636{
2637 /* We have to use VG_PGROUNDDN because faults on s390x only deliver
2638 the page address but not the address within a page.
2639 */
2640# if defined(VGA_s390x)
2641 return VG_PGROUNDDN(in);
2642# else
2643 return in;
2644#endif
2645}
2646
njn96986052009-04-30 07:41:24 +00002647/* Returns True if the sync signal was due to the stack requiring extension
2648 and the extension was successful.
2649*/
2650static Bool extend_stack_if_appropriate(ThreadId tid, vki_siginfo_t* info)
2651{
2652 Addr fault;
2653 Addr esp;
florian4465bd52015-04-14 19:59:21 +00002654 NSegment const *seg, *seg_next;
njn96986052009-04-30 07:41:24 +00002655
2656 if (info->si_signo != VKI_SIGSEGV)
2657 return False;
2658
2659 fault = (Addr)info->VKI_SIGINFO_si_addr;
2660 esp = VG_(get_SP)(tid);
2661 seg = VG_(am_find_nsegment)(fault);
florian4465bd52015-04-14 19:59:21 +00002662 seg_next = seg ? VG_(am_next_nsegment)( seg, True/*fwds*/ )
2663 : NULL;
njn96986052009-04-30 07:41:24 +00002664
2665 if (VG_(clo_trace_signals)) {
2666 if (seg == NULL)
floriana5e06c32015-08-05 21:16:09 +00002667 VG_(dmsg)("SIGSEGV: si_code=%d faultaddr=%#lx tid=%u ESP=%#lx "
sewardj738856f2009-07-15 14:48:32 +00002668 "seg=NULL\n",
2669 info->si_code, fault, tid, esp);
njn96986052009-04-30 07:41:24 +00002670 else
floriana5e06c32015-08-05 21:16:09 +00002671 VG_(dmsg)("SIGSEGV: si_code=%d faultaddr=%#lx tid=%u ESP=%#lx "
sewardj738856f2009-07-15 14:48:32 +00002672 "seg=%#lx-%#lx\n",
2673 info->si_code, fault, tid, esp, seg->start, seg->end);
njn96986052009-04-30 07:41:24 +00002674 }
2675
2676 if (info->si_code == VKI_SEGV_MAPERR
2677 && seg
florian4465bd52015-04-14 19:59:21 +00002678 && seg->kind == SkResvn
2679 && seg->smode == SmUpper
2680 && seg_next
2681 && seg_next->kind == SkAnonC
sewardjb5b87402011-03-07 16:05:35 +00002682 && fault >= fault_mask(esp - VG_STACK_REDZONE_SZB)) {
njn96986052009-04-30 07:41:24 +00002683 /* If the fault address is above esp but below the current known
2684 stack segment base, and it was a fault because there was
2685 nothing mapped there (as opposed to a permissions fault),
2686 then extend the stack segment.
2687 */
2688 Addr base = VG_PGROUNDDN(esp - VG_STACK_REDZONE_SZB);
florian7d4a28b2015-04-23 15:20:00 +00002689 if (VG_(am_addr_is_in_extensible_client_stack)(base) &&
2690 VG_(extend_stack)(tid, base)) {
njn96986052009-04-30 07:41:24 +00002691 if (VG_(clo_trace_signals))
sewardj738856f2009-07-15 14:48:32 +00002692 VG_(dmsg)(" -> extended stack base to %#lx\n",
2693 VG_PGROUNDDN(fault));
njn96986052009-04-30 07:41:24 +00002694 return True;
2695 } else {
njn96986052009-04-30 07:41:24 +00002696 return False;
2697 }
2698 } else {
2699 return False;
2700 }
2701}
2702
2703static
njn2d5ff4f2009-05-03 22:53:19 +00002704void sync_signalhandler_from_kernel ( ThreadId tid,
njn96986052009-04-30 07:41:24 +00002705 Int sigNo, vki_siginfo_t *info, struct vki_ucontext *uc )
2706{
2707 /* Check to see if some part of Valgrind itself is interested in faults.
2708 The fault catcher should never be set whilst we're in generated code, so
2709 check for that. AFAIK the only use of the catcher right now is
2710 memcheck's leak detector. */
2711 if (fault_catcher) {
2712 vg_assert(VG_(in_generated_code) == False);
2713
2714 (*fault_catcher)(sigNo, (Addr)info->VKI_SIGINFO_si_addr);
2715 /* If the catcher returns, then it didn't handle the fault,
2716 so carry on panicking. */
2717 }
2718
2719 if (extend_stack_if_appropriate(tid, info)) {
2720 /* Stack extension occurred, so we don't need to do anything else; upon
2721 returning from this function, we'll restart the host (hence guest)
2722 instruction. */
2723 } else {
2724 /* OK, this is a signal we really have to deal with. If it came
2725 from the client's code, then we can jump back into the scheduler
2726 and have it delivered. Otherwise it's a Valgrind bug. */
2727 ThreadState *tst = VG_(get_ThreadState)(tid);
2728
2729 if (VG_(sigismember)(&tst->sig_mask, sigNo)) {
2730 /* signal is blocked, but they're not allowed to block faults */
2731 VG_(set_default_handler)(sigNo);
2732 }
2733
2734 if (VG_(in_generated_code)) {
philippeb3014692015-05-17 13:38:25 +00002735 if (VG_(gdbserver_report_signal) (info, tid)
sewardj3b290482011-05-06 21:02:55 +00002736 || VG_(sigismember)(&tst->sig_mask, sigNo)) {
2737 /* Can't continue; must longjmp back to the scheduler and thus
2738 enter the sighandler immediately. */
2739 deliver_signal(tid, info, uc);
2740 resume_scheduler(tid);
2741 }
2742 else
2743 resume_scheduler(tid);
njn96986052009-04-30 07:41:24 +00002744 }
2745
2746 /* If resume_scheduler returns or its our fault, it means we
2747 don't have longjmp set up, implying that we weren't running
2748 client code, and therefore it was actually generated by
2749 Valgrind internally.
2750 */
sewardj738856f2009-07-15 14:48:32 +00002751 VG_(dmsg)("VALGRIND INTERNAL ERROR: Valgrind received "
2752 "a signal %d (%s) - exiting\n",
philippe886fde32012-03-29 21:56:47 +00002753 sigNo, VG_(signame)(sigNo));
njn96986052009-04-30 07:41:24 +00002754
floriana5e06c32015-08-05 21:16:09 +00002755 VG_(dmsg)("si_code=%d; Faulting address: %p; sp: %#lx\n",
sewardj738856f2009-07-15 14:48:32 +00002756 info->si_code, info->VKI_SIGINFO_si_addr,
2757 VG_UCONTEXT_STACK_PTR(uc));
njn96986052009-04-30 07:41:24 +00002758
2759 if (0)
2760 VG_(kill_self)(sigNo); /* generate a core dump */
2761
2762 //if (tid == 0) /* could happen after everyone has exited */
2763 // tid = VG_(master_tid);
2764 vg_assert(tid != 0);
2765
sewardj59570ff2010-01-01 11:59:33 +00002766 UnwindStartRegs startRegs;
2767 VG_(memset)(&startRegs, 0, sizeof(startRegs));
2768
2769 VG_UCONTEXT_TO_UnwindStartRegs(&startRegs, uc);
2770 VG_(core_panic_at)("Killed by fatal signal", &startRegs);
njn96986052009-04-30 07:41:24 +00002771 }
2772}
sewardjb5f6f512005-03-10 23:59:00 +00002773
jsgf855d93d2003-10-13 22:26:55 +00002774/*
sewardj2a99cf62004-11-24 10:44:19 +00002775 Receive a sync signal from the host.
jsgf855d93d2003-10-13 22:26:55 +00002776*/
2777static
njn5a350be2009-04-30 03:05:05 +00002778void sync_signalhandler ( Int sigNo,
2779 vki_siginfo_t *info, struct vki_ucontext *uc )
jsgf855d93d2003-10-13 22:26:55 +00002780{
sewardj42781722006-12-17 19:36:06 +00002781 ThreadId tid = VG_(lwpid_to_vgtid)(VG_(gettid)());
njn2d5ff4f2009-05-03 22:53:19 +00002782 Bool from_user;
jsgf855d93d2003-10-13 22:26:55 +00002783
njn5a350be2009-04-30 03:05:05 +00002784 if (0)
2785 VG_(printf)("sync_sighandler(%d, %p, %p)\n", sigNo, info, uc);
2786
jsgf855d93d2003-10-13 22:26:55 +00002787 vg_assert(info != NULL);
2788 vg_assert(info->si_signo == sigNo);
2789 vg_assert(sigNo == VKI_SIGSEGV ||
2790 sigNo == VKI_SIGBUS ||
2791 sigNo == VKI_SIGFPE ||
sewardjb5f6f512005-03-10 23:59:00 +00002792 sigNo == VKI_SIGILL ||
2793 sigNo == VKI_SIGTRAP);
jsgf855d93d2003-10-13 22:26:55 +00002794
njn3b6b2aa2009-04-30 03:30:09 +00002795 info->si_code = sanitize_si_code(info->si_code);
tom9f4a7bf2005-11-13 00:01:20 +00002796
njnf76d27a2009-05-28 01:53:07 +00002797 from_user = !is_signal_from_kernel(tid, sigNo, info->si_code);
njn81f52d12009-04-30 03:49:06 +00002798
2799 if (VG_(clo_trace_signals)) {
sewardj738856f2009-07-15 14:48:32 +00002800 VG_(dmsg)("sync signal handler: "
2801 "signal=%d, si_code=%d, EIP=%#lx, eip=%#lx, from %s\n",
2802 sigNo, info->si_code, VG_(get_IP)(tid),
2803 VG_UCONTEXT_INSTR_PTR(uc),
2804 ( from_user ? "user" : "kernel" ));
njn81f52d12009-04-30 03:49:06 +00002805 }
2806 vg_assert(sigNo >= 1 && sigNo <= VG_(max_signal));
2807
njn36fce1b2009-04-28 01:55:01 +00002808 /* // debug code:
2809 if (0) {
2810 VG_(printf)("info->si_signo %d\n", info->si_signo);
2811 VG_(printf)("info->si_errno %d\n", info->si_errno);
2812 VG_(printf)("info->si_code %d\n", info->si_code);
2813 VG_(printf)("info->si_pid %d\n", info->si_pid);
2814 VG_(printf)("info->si_uid %d\n", info->si_uid);
2815 VG_(printf)("info->si_status %d\n", info->si_status);
2816 VG_(printf)("info->si_addr %p\n", info->si_addr);
2817 }
2818 */
2819
2820 /* Figure out if the signal is being sent from outside the process.
2821 (Why do we care?) If the signal is from the user rather than the
njn96986052009-04-30 07:41:24 +00002822 kernel, then treat it more like an async signal than a sync signal --
njn36fce1b2009-04-28 01:55:01 +00002823 that is, merely queue it for later delivery. */
njn2d5ff4f2009-05-03 22:53:19 +00002824 if (from_user) {
njnc8a91072009-05-20 06:51:11 +00002825 sync_signalhandler_from_user( tid, sigNo, info, uc);
njn96986052009-04-30 07:41:24 +00002826 } else {
njnc8a91072009-05-20 06:51:11 +00002827 sync_signalhandler_from_kernel(tid, sigNo, info, uc);
jsgf855d93d2003-10-13 22:26:55 +00002828 }
sewardj8eb8bab2015-07-21 14:44:28 +00002829
2830# if defined(VGO_solaris)
2831 /* On Solaris we have to return from signal handler manually. */
2832 VG_(do_syscall2)(__NR_context, VKI_SETCONTEXT, (UWord)uc);
2833# endif
jsgf855d93d2003-10-13 22:26:55 +00002834}
2835
2836
2837/*
sewardjb5f6f512005-03-10 23:59:00 +00002838 Kill this thread. Makes it leave any syscall it might be currently
2839 blocked in, and return to the scheduler. This doesn't mark the thread
2840 as exiting; that's the caller's job.
jsgf855d93d2003-10-13 22:26:55 +00002841 */
njn5a350be2009-04-30 03:05:05 +00002842static void sigvgkill_handler(int signo, vki_siginfo_t *si,
2843 struct vki_ucontext *uc)
jsgf855d93d2003-10-13 22:26:55 +00002844{
sewardj42781722006-12-17 19:36:06 +00002845 ThreadId tid = VG_(lwpid_to_vgtid)(VG_(gettid)());
sewardj489bfec2006-10-17 02:00:29 +00002846 ThreadStatus at_signal = VG_(threads)[tid].status;
sewardjb5f6f512005-03-10 23:59:00 +00002847
2848 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00002849 VG_(dmsg)("sigvgkill for lwp %d tid %u\n", VG_(gettid)(), tid);
sewardj489bfec2006-10-17 02:00:29 +00002850
sewardjad0a3a82006-12-17 18:58:55 +00002851 VG_(acquire_BigLock)(tid, "sigvgkill_handler");
sewardjb5f6f512005-03-10 23:59:00 +00002852
njn351d0062005-06-21 22:23:59 +00002853 vg_assert(signo == VG_SIGVGKILL);
jsgf855d93d2003-10-13 22:26:55 +00002854 vg_assert(si->si_signo == signo);
2855
sewardj489bfec2006-10-17 02:00:29 +00002856 /* jrs 2006 August 3: the following assertion seems incorrect to
2857 me, and fails on AIX. sigvgkill could be sent to a thread which
2858 is runnable - see VG_(nuke_all_threads_except) in the scheduler.
2859 Hence comment these out ..
2860
2861 vg_assert(VG_(threads)[tid].status == VgTs_WaitSys);
2862 VG_(post_syscall)(tid);
2863
2864 and instead do:
2865 */
2866 if (at_signal == VgTs_WaitSys)
2867 VG_(post_syscall)(tid);
2868 /* jrs 2006 August 3 ends */
sewardjb5f6f512005-03-10 23:59:00 +00002869
njn06244e72005-06-21 22:27:19 +00002870 resume_scheduler(tid);
sewardjb5f6f512005-03-10 23:59:00 +00002871
2872 VG_(core_panic)("sigvgkill_handler couldn't return to the scheduler\n");
sewardjde4a1d02002-03-22 01:27:54 +00002873}
2874
sewardjde4a1d02002-03-22 01:27:54 +00002875static __attribute((unused))
njncda2f0f2009-05-18 02:12:08 +00002876void pp_ksigaction ( vki_sigaction_toK_t* sa )
sewardjde4a1d02002-03-22 01:27:54 +00002877{
2878 Int i;
njn695c16e2005-03-27 03:40:28 +00002879 VG_(printf)("pp_ksigaction: handler %p, flags 0x%x, restorer %p\n",
sewardj489bfec2006-10-17 02:00:29 +00002880 sa->ksa_handler,
2881 (UInt)sa->sa_flags,
sewardj8eb8bab2015-07-21 14:44:28 +00002882# if !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
2883 !defined(VGO_solaris)
sewardj489bfec2006-10-17 02:00:29 +00002884 sa->sa_restorer
2885# else
sewardja8ffda62008-07-18 18:23:24 +00002886 (void*)0
sewardj489bfec2006-10-17 02:00:29 +00002887# endif
2888 );
njn695c16e2005-03-27 03:40:28 +00002889 VG_(printf)("pp_ksigaction: { ");
sewardjb5f6f512005-03-10 23:59:00 +00002890 for (i = 1; i <= VG_(max_signal); i++)
nethercote73b526f2004-10-31 18:48:21 +00002891 if (VG_(sigismember(&(sa->sa_mask),i)))
sewardjde4a1d02002-03-22 01:27:54 +00002892 VG_(printf)("%d ", i);
2893 VG_(printf)("}\n");
2894}
2895
jsgf855d93d2003-10-13 22:26:55 +00002896/*
sewardjb5f6f512005-03-10 23:59:00 +00002897 Force signal handler to default
jsgf855d93d2003-10-13 22:26:55 +00002898 */
sewardjb5f6f512005-03-10 23:59:00 +00002899void VG_(set_default_handler)(Int signo)
2900{
njncda2f0f2009-05-18 02:12:08 +00002901 vki_sigaction_toK_t sa;
sewardjb5f6f512005-03-10 23:59:00 +00002902
2903 sa.ksa_handler = VKI_SIG_DFL;
2904 sa.sa_flags = 0;
sewardj8eb8bab2015-07-21 14:44:28 +00002905# if !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
2906 !defined(VGO_solaris)
sewardjb5f6f512005-03-10 23:59:00 +00002907 sa.sa_restorer = 0;
sewardj489bfec2006-10-17 02:00:29 +00002908# endif
sewardjb5f6f512005-03-10 23:59:00 +00002909 VG_(sigemptyset)(&sa.sa_mask);
2910
2911 VG_(do_sys_sigaction)(signo, &sa, NULL);
2912}
2913
2914/*
2915 Poll for pending signals, and set the next one up for delivery.
2916 */
2917void VG_(poll_signals)(ThreadId tid)
jsgf855d93d2003-10-13 22:26:55 +00002918{
sewardjb5f6f512005-03-10 23:59:00 +00002919 vki_siginfo_t si, *sip;
2920 vki_sigset_t pollset;
2921 ThreadState *tst = VG_(get_ThreadState)(tid);
sewardjb5f6f512005-03-10 23:59:00 +00002922 vki_sigset_t saved_mask;
jsgf855d93d2003-10-13 22:26:55 +00002923
sewardjb5f6f512005-03-10 23:59:00 +00002924 /* look for all the signals this thread isn't blocking */
njncda2f0f2009-05-18 02:12:08 +00002925 /* pollset = ~tst->sig_mask */
2926 VG_(sigcomplementset)( &pollset, &tst->sig_mask );
jsgf855d93d2003-10-13 22:26:55 +00002927
njn444eba12005-05-12 03:47:31 +00002928 block_all_host_signals(&saved_mask); // protect signal queue
sewardjb5f6f512005-03-10 23:59:00 +00002929
2930 /* First look for any queued pending signals */
2931 sip = next_queued(tid, &pollset); /* this thread */
2932
2933 if (sip == NULL)
2934 sip = next_queued(0, &pollset); /* process-wide */
2935
2936 /* If there was nothing queued, ask the kernel for a pending signal */
sewardj489bfec2006-10-17 02:00:29 +00002937 if (sip == NULL && VG_(sigtimedwait_zero)(&pollset, &si) > 0) {
sewardjb5f6f512005-03-10 23:59:00 +00002938 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00002939 VG_(dmsg)("poll_signals: got signal %d for thread %u\n",
sewardj738856f2009-07-15 14:48:32 +00002940 si.si_signo, tid);
sewardjb5f6f512005-03-10 23:59:00 +00002941 sip = &si;
thughes8abf3922004-10-16 10:59:49 +00002942 }
fitzhardingee1c06d82003-10-30 07:21:44 +00002943
sewardjb5f6f512005-03-10 23:59:00 +00002944 if (sip != NULL) {
2945 /* OK, something to do; deliver it */
2946 if (VG_(clo_trace_signals))
floriana5e06c32015-08-05 21:16:09 +00002947 VG_(dmsg)("Polling found signal %d for tid %u\n", sip->si_signo, tid);
philippeb3014692015-05-17 13:38:25 +00002948 if (!is_sig_ign(sip, tid))
tomadacaf92007-12-21 10:24:24 +00002949 deliver_signal(tid, sip, NULL);
sewardjb5f6f512005-03-10 23:59:00 +00002950 else if (VG_(clo_trace_signals))
sewardj738856f2009-07-15 14:48:32 +00002951 VG_(dmsg)(" signal %d ignored\n", sip->si_signo);
sewardjb5f6f512005-03-10 23:59:00 +00002952
2953 sip->si_signo = 0; /* remove from signal queue, if that's
2954 where it came from */
jsgf855d93d2003-10-13 22:26:55 +00002955 }
2956
njn444eba12005-05-12 03:47:31 +00002957 restore_all_host_signals(&saved_mask);
sewardjb5f6f512005-03-10 23:59:00 +00002958}
2959
sewardj018f7622002-05-15 21:13:39 +00002960/* At startup, copy the process' real signal state to the SCSS.
2961 Whilst doing this, block all real signals. Then calculate SKSS and
2962 set the kernel to that. Also initialise DCSS.
sewardjde4a1d02002-03-22 01:27:54 +00002963*/
2964void VG_(sigstartup_actions) ( void )
2965{
njncda2f0f2009-05-18 02:12:08 +00002966 Int i, ret, vKI_SIGRTMIN;
nethercote73b526f2004-10-31 18:48:21 +00002967 vki_sigset_t saved_procmask;
njncda2f0f2009-05-18 02:12:08 +00002968 vki_sigaction_fromK_t sa;
2969
2970 VG_(memset)(&scss, 0, sizeof(scss));
2971 VG_(memset)(&skss, 0, sizeof(skss));
2972
2973# if defined(VKI_SIGRTMIN)
2974 vKI_SIGRTMIN = VKI_SIGRTMIN;
2975# else
2976 vKI_SIGRTMIN = 0; /* eg Darwin */
2977# endif
sewardjde4a1d02002-03-22 01:27:54 +00002978
sewardj2e93c502002-04-12 11:12:52 +00002979 /* VG_(printf)("SIGSTARTUP\n"); */
jsgf855d93d2003-10-13 22:26:55 +00002980 /* Block all signals. saved_procmask remembers the previous mask,
2981 which the first thread inherits.
2982 */
njn444eba12005-05-12 03:47:31 +00002983 block_all_host_signals( &saved_procmask );
sewardjde4a1d02002-03-22 01:27:54 +00002984
sewardj018f7622002-05-15 21:13:39 +00002985 /* Copy per-signal settings to SCSS. */
nethercote73b526f2004-10-31 18:48:21 +00002986 for (i = 1; i <= _VKI_NSIG; i++) {
sewardj018f7622002-05-15 21:13:39 +00002987 /* Get the old host action */
nethercote73b526f2004-10-31 18:48:21 +00002988 ret = VG_(sigaction)(i, NULL, &sa);
sewardj018f7622002-05-15 21:13:39 +00002989
njnea2d6fd2010-07-01 00:20:20 +00002990# if defined(VGP_x86_darwin) || defined(VGP_amd64_darwin)
njnf76d27a2009-05-28 01:53:07 +00002991 /* apparently we may not even ask about the disposition of these
2992 signals, let alone change them */
2993 if (ret != 0 && (i == VKI_SIGKILL || i == VKI_SIGSTOP))
2994 continue;
2995# endif
2996
sewardjb5f6f512005-03-10 23:59:00 +00002997 if (ret != 0)
2998 break;
2999
3000 /* Try setting it back to see if this signal is really
3001 available */
njncda2f0f2009-05-18 02:12:08 +00003002 if (vKI_SIGRTMIN > 0 /* it actually exists on this platform */
3003 && i >= vKI_SIGRTMIN) {
3004 vki_sigaction_toK_t tsa, sa2;
sewardjb5f6f512005-03-10 23:59:00 +00003005
njn695c16e2005-03-27 03:40:28 +00003006 tsa.ksa_handler = (void *)sync_signalhandler;
sewardjb5f6f512005-03-10 23:59:00 +00003007 tsa.sa_flags = VKI_SA_SIGINFO;
sewardj8eb8bab2015-07-21 14:44:28 +00003008# if !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
3009 !defined(VGO_solaris)
sewardjb5f6f512005-03-10 23:59:00 +00003010 tsa.sa_restorer = 0;
sewardj489bfec2006-10-17 02:00:29 +00003011# endif
sewardjb5f6f512005-03-10 23:59:00 +00003012 VG_(sigfillset)(&tsa.sa_mask);
3013
3014 /* try setting it to some arbitrary handler */
3015 if (VG_(sigaction)(i, &tsa, NULL) != 0) {
3016 /* failed - not really usable */
3017 break;
3018 }
3019
njncda2f0f2009-05-18 02:12:08 +00003020 VG_(convert_sigaction_fromK_to_toK)( &sa, &sa2 );
3021 ret = VG_(sigaction)(i, &sa2, NULL);
sewardjb5f6f512005-03-10 23:59:00 +00003022 vg_assert(ret == 0);
3023 }
3024
3025 VG_(max_signal) = i;
3026
3027 if (VG_(clo_trace_signals) && VG_(clo_verbosity) > 2)
njn8a7b41b2007-09-23 00:51:24 +00003028 VG_(printf)("snaffling handler 0x%lx for signal %d\n",
sewardj018f7622002-05-15 21:13:39 +00003029 (Addr)(sa.ksa_handler), i );
3030
njn695c16e2005-03-27 03:40:28 +00003031 scss.scss_per_sig[i].scss_handler = sa.ksa_handler;
3032 scss.scss_per_sig[i].scss_flags = sa.sa_flags;
3033 scss.scss_per_sig[i].scss_mask = sa.sa_mask;
njncda2f0f2009-05-18 02:12:08 +00003034
3035 scss.scss_per_sig[i].scss_restorer = NULL;
sewardj8eb8bab2015-07-21 14:44:28 +00003036# if !defined(VGP_x86_darwin) && !defined(VGP_amd64_darwin) && \
3037 !defined(VGO_solaris)
njn695c16e2005-03-27 03:40:28 +00003038 scss.scss_per_sig[i].scss_restorer = sa.sa_restorer;
sewardj489bfec2006-10-17 02:00:29 +00003039# endif
njncda2f0f2009-05-18 02:12:08 +00003040
3041 scss.scss_per_sig[i].scss_sa_tramp = NULL;
njnf76d27a2009-05-28 01:53:07 +00003042# if defined(VGP_x86_darwin) || defined(VGP_amd64_darwin)
3043 scss.scss_per_sig[i].scss_sa_tramp = NULL;
3044 /*sa.sa_tramp;*/
3045 /* We can't know what it was, because Darwin's sys_sigaction
3046 doesn't tell us. */
3047# endif
sewardj018f7622002-05-15 21:13:39 +00003048 }
3049
sewardjb5f6f512005-03-10 23:59:00 +00003050 if (VG_(clo_trace_signals))
sewardj738856f2009-07-15 14:48:32 +00003051 VG_(dmsg)("Max kernel-supported signal is %d\n", VG_(max_signal));
sewardjb5f6f512005-03-10 23:59:00 +00003052
jsgf855d93d2003-10-13 22:26:55 +00003053 /* Our private internal signals are treated as ignored */
njn351d0062005-06-21 22:23:59 +00003054 scss.scss_per_sig[VG_SIGVGKILL].scss_handler = VKI_SIG_IGN;
3055 scss.scss_per_sig[VG_SIGVGKILL].scss_flags = VKI_SA_SIGINFO;
3056 VG_(sigfillset)(&scss.scss_per_sig[VG_SIGVGKILL].scss_mask);
jsgf855d93d2003-10-13 22:26:55 +00003057
sewardj018f7622002-05-15 21:13:39 +00003058 /* Copy the process' signal mask into the root thread. */
sewardj1d887112005-05-30 21:44:08 +00003059 vg_assert(VG_(threads)[1].status == VgTs_Init);
3060 for (i = 2; i < VG_N_THREADS; i++)
3061 vg_assert(VG_(threads)[i].status == VgTs_Empty);
3062
3063 VG_(threads)[1].sig_mask = saved_procmask;
3064 VG_(threads)[1].tmp_sig_mask = saved_procmask;
sewardj7a61d912002-04-25 01:27:35 +00003065
sewardj018f7622002-05-15 21:13:39 +00003066 /* Calculate SKSS and apply it. This also sets the initial kernel
3067 mask we need to run with. */
nethercote9dd11512004-08-04 15:31:30 +00003068 handle_SCSS_change( True /* forced update */ );
jsgf855d93d2003-10-13 22:26:55 +00003069
sewardjb5f6f512005-03-10 23:59:00 +00003070 /* Leave with all signals still blocked; the thread scheduler loop
3071 will set the appropriate mask at the appropriate time. */
sewardjde4a1d02002-03-22 01:27:54 +00003072}
3073
sewardjde4a1d02002-03-22 01:27:54 +00003074/*--------------------------------------------------------------------*/
njned6b8242005-06-01 00:03:17 +00003075/*--- end ---*/
sewardjde4a1d02002-03-22 01:27:54 +00003076/*--------------------------------------------------------------------*/