blob: f6eeed0e8e3ba8407d6f619b7766c350d1c4a095 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
6 * Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
7 * Linux for s390 port by D.J. Barrow
8 * <barrow_dj@mail.yahoo.com,djbarrow@de.ibm.com>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000032 */
33
34#include "defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035#include <sys/user.h>
36#include <fcntl.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000037
Wichert Akkerman36915a11999-07-13 15:45:02 +000038#ifdef HAVE_SYS_REG_H
39# include <sys/reg.h>
Wichert Akkermanfaf72222000-02-19 23:59:03 +000040#elif defined(HAVE_LINUX_PTRACE_H)
Denys Vlasenko84703742012-02-25 02:38:52 +010041# undef PTRACE_SYSCALL
Roland McGrathb0acdfd2004-03-01 21:31:02 +000042# ifdef HAVE_STRUCT_IA64_FPREG
43# define ia64_fpreg XXX_ia64_fpreg
44# endif
45# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
46# define pt_all_user_regs XXX_pt_all_user_regs
47# endif
Ali Polatel0b4060f2013-09-24 20:04:32 +030048# ifdef HAVE_STRUCT_PTRACE_PEEKSIGINFO_ARGS
49# define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args
50# endif
Denys Vlasenko84703742012-02-25 02:38:52 +010051# include <linux/ptrace.h>
Ali Polatel0b4060f2013-09-24 20:04:32 +030052# undef ptrace_peeksiginfo_args
Roland McGrathb0acdfd2004-03-01 21:31:02 +000053# undef ia64_fpreg
54# undef pt_all_user_regs
Wichert Akkerman15dea971999-10-06 13:06:34 +000055#endif
Wichert Akkerman36915a11999-07-13 15:45:02 +000056
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000057#ifdef IA64
58# include <asm/ptrace_offsets.h>
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020059#endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000060
Denys Vlasenko84703742012-02-25 02:38:52 +010061#if defined(SPARC) || defined(SPARC64) || defined(MIPS)
Roland McGrath576b7842007-11-04 00:00:00 +000062typedef struct {
63 struct pt_regs si_regs;
64 int si_mask;
65} m_siginfo_t;
Roland McGrath30ff45e2003-01-30 20:15:23 +000066#elif defined HAVE_ASM_SIGCONTEXT_H
H.J. Lu35be5812012-04-16 13:00:01 +020067# if !defined(IA64) && !defined(X86_64) && !defined(X32)
Denys Vlasenko84703742012-02-25 02:38:52 +010068# include <asm/sigcontext.h>
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010069# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000070#else /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenkob51f3642013-07-16 12:06:25 +020071# if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT
72struct sigcontext {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000073 unsigned long sc_mask;
74 unsigned long sc_usp;
75 unsigned long sc_d0;
76 unsigned long sc_d1;
77 unsigned long sc_a0;
78 unsigned long sc_a1;
79 unsigned short sc_sr;
80 unsigned long sc_pc;
81 unsigned short sc_formatvec;
82};
Denys Vlasenkob51f3642013-07-16 12:06:25 +020083# endif /* M68K */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000084#endif /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020085
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000086#ifndef NSIG
Denys Vlasenko84703742012-02-25 02:38:52 +010087# warning: NSIG is not defined, using 32
88# define NSIG 32
Dmitry V. Levin38593e92014-02-26 16:51:28 +000089#elif NSIG < 32
90# error: NSIG < 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091#endif
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020092
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000093#ifdef HAVE_SIGACTION
94
Roland McGrath2638cb42002-12-15 23:58:41 +000095/* The libc headers do not define this constant since it should only be
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020096 used by the implementation. So we define it here. */
Dmitry V. Levin5c7f6272014-02-08 00:26:06 +000097#ifndef SA_RESTORER
98# ifdef ASM_SA_RESTORER
99# define SA_RESTORER ASM_SA_RESTORER
Roland McGrath2638cb42002-12-15 23:58:41 +0000100# endif
101#endif
102
Mike Frysingerdd80a872014-08-14 00:30:24 -0400103/* Some arches define this in their headers, but don't actually have it,
Mike Frysingerd632e102014-08-09 09:04:18 -0400104 so we have to delete the define. */
Mike Frysingerdd80a872014-08-14 00:30:24 -0400105#if defined(HPPA) || defined(IA64)
Mike Frysingerd632e102014-08-09 09:04:18 -0400106# undef SA_RESTORER
107#endif
108
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000109#include "xlat/sigact_flags.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000110#include "xlat/sigprocmaskcmds.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000111
112#endif /* HAVE_SIGACTION */
113
Nate Sammonsce780fc1999-03-29 23:23:13 +0000114/* Anonymous realtime signals. */
115/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
116 constant. This is what we want. Otherwise, just use SIGRTMIN. */
117#ifdef SIGRTMIN
118#ifndef __SIGRTMIN
119#define __SIGRTMIN SIGRTMIN
120#define __SIGRTMAX SIGRTMAX /* likewise */
121#endif
122#endif
123
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200124/* Note on the size of sigset_t:
125 *
126 * In glibc, sigset_t is an array with space for 1024 bits (!),
127 * even though all arches supported by Linux have only 64 signals
128 * except MIPS, which has 128. IOW, it is 128 bytes long.
129 *
130 * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
131 * However, some old syscall return only 32 lower bits (one word).
132 * Example: sys_sigpending vs sys_rt_sigpending.
133 *
134 * Be aware of this fact when you try to
135 * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
136 * - sizeof(sigset_t) is much bigger than you think,
137 * it may overflow tcp->u_arg[] array, and it may try to copy more data
138 * than is really available in <something>.
139 * Similarly,
140 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
141 * may be a bad idea: it'll try to read much more data than needed
142 * to fetch a sigset_t.
143 * Use (NSIG / 8) as a size instead.
144 */
145
Roland McGrathee36ce12004-09-04 03:53:10 +0000146const char *
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200147signame(int sig)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000148{
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200149 static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
150
151 if (sig >= 0 && sig < nsignals)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000152 return signalent[sig];
153#ifdef SIGRTMIN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200154 if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
155 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000156 return buf;
157 }
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200158#endif
159 sprintf(buf, "%d", sig);
160 return buf;
Nate Sammonsce780fc1999-03-29 23:23:13 +0000161}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000162
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000163static unsigned int
164popcount32(const uint32_t *a, unsigned int size)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000165{
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000166 unsigned int count = 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200167
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000168 for (; size; ++a, --size) {
169 uint32_t x = *a;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000170
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000171#ifdef HAVE___BUILTIN_POPCOUNT
172 count += __builtin_popcount(x);
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200173#else
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000174 for (; x; ++count)
175 x &= x - 1;
Nate Sammons4a121431999-04-06 01:19:39 +0000176#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000177 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100178
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000179 return count;
180}
181
182static const char *
183sprintsigmask_n(const char *prefix, const void *sig_mask, unsigned int bytes)
184{
185 /*
186 * The maximum number of signal names to be printed is NSIG * 2 / 3.
187 * Most of signal names have length 7,
188 * average length of signal names is less than 7.
189 * The length of prefix string does not exceed 16.
190 */
191 static char outstr[128 + 8 * (NSIG * 2 / 3)];
192
193 char *s;
194 const uint32_t *mask;
195 uint32_t inverted_mask[NSIG / 32];
196 unsigned int size;
197 int i;
198 char sep;
199
200 s = stpcpy(outstr, prefix);
201
202 mask = sig_mask;
203 /* length of signal mask in 4-byte words */
204 size = (bytes >= NSIG / 8) ? NSIG / 32 : (bytes + 3) / 4;
205
206 /* check whether 2/3 or more bits are set */
207 if (popcount32(mask, size) >= size * 32 * 2 / 3) {
208 /* show those signals that are NOT in the mask */
209 unsigned int j;
210 for (j = 0; j < size; ++j)
211 inverted_mask[j] = ~mask[j];
212 mask = inverted_mask;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000213 *s++ = '~';
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000214 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100215
216 sep = '[';
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000217 for (i = 0; (i = next_set_bit(mask, i, size * 32)) >= 0; ) {
218 ++i;
219 *s++ = sep;
220 if (i < nsignals) {
221 s = stpcpy(s, signalent[i] + 3);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000222 }
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000223#ifdef SIGRTMIN
224 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
225 s += sprintf(s, "RT_%u", i - __SIGRTMIN);
226 }
227#endif
228 else {
229 s += sprintf(s, "%u", i);
230 }
231 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000232 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100233 if (sep == '[')
234 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000235 *s++ = ']';
236 *s = '\0';
237 return outstr;
238}
239
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000240#define tprintsigmask_addr(prefix, mask) \
241 tprints(sprintsigmask_n((prefix), (mask), sizeof(mask)))
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200242
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000243#define sprintsigmask_val(prefix, mask) \
244 sprintsigmask_n((prefix), &(mask), sizeof(mask))
245
246#define tprintsigmask_val(prefix, mask) \
247 tprints(sprintsigmask_n((prefix), &(mask), sizeof(mask)))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000248
249void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200250printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000251{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200252 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000253}
254
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000255void
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200256print_sigset_addr_len(struct tcb *tcp, long addr, long len)
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000257{
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000258 char mask[NSIG / 8];
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000259
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200260 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200261 tprints("NULL");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200262 return;
263 }
264 /* Here len is usually equals NSIG / 8 or current_wordsize.
265 * But we code this defensively:
266 */
267 if (len < 0) {
268 bad:
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000269 tprintf("%#lx", addr);
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200270 return;
271 }
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000272 if (len >= NSIG / 8)
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200273 len = NSIG / 8;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000274 else
275 len = (len + 3) & ~3;
276
277 if (umoven(tcp, addr, len, mask) < 0)
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200278 goto bad;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000279 tprints(sprintsigmask_n("", mask, len));
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000280}
281
John Hughes58265892001-10-18 15:13:53 +0000282#ifndef ILL_ILLOPC
283#define ILL_ILLOPC 1 /* illegal opcode */
284#define ILL_ILLOPN 2 /* illegal operand */
285#define ILL_ILLADR 3 /* illegal addressing mode */
286#define ILL_ILLTRP 4 /* illegal trap */
287#define ILL_PRVOPC 5 /* privileged opcode */
288#define ILL_PRVREG 6 /* privileged register */
289#define ILL_COPROC 7 /* coprocessor error */
290#define ILL_BADSTK 8 /* internal stack error */
291#define FPE_INTDIV 1 /* integer divide by zero */
292#define FPE_INTOVF 2 /* integer overflow */
293#define FPE_FLTDIV 3 /* floating point divide by zero */
294#define FPE_FLTOVF 4 /* floating point overflow */
295#define FPE_FLTUND 5 /* floating point underflow */
296#define FPE_FLTRES 6 /* floating point inexact result */
297#define FPE_FLTINV 7 /* floating point invalid operation */
298#define FPE_FLTSUB 8 /* subscript out of range */
299#define SEGV_MAPERR 1 /* address not mapped to object */
300#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
301#define BUS_ADRALN 1 /* invalid address alignment */
302#define BUS_ADRERR 2 /* non-existant physical address */
303#define BUS_OBJERR 3 /* object specific hardware error */
Dmitry V. Levinbc091e32014-03-11 22:18:40 +0000304#define SYS_SECCOMP 1 /* seccomp triggered */
John Hughes58265892001-10-18 15:13:53 +0000305#define TRAP_BRKPT 1 /* process breakpoint */
306#define TRAP_TRACE 2 /* process trace trap */
307#define CLD_EXITED 1 /* child has exited */
308#define CLD_KILLED 2 /* child was killed */
309#define CLD_DUMPED 3 /* child terminated abnormally */
310#define CLD_TRAPPED 4 /* traced child has trapped */
311#define CLD_STOPPED 5 /* child has stopped */
312#define CLD_CONTINUED 6 /* stopped child has continued */
313#define POLL_IN 1 /* data input available */
314#define POLL_OUT 2 /* output buffers available */
315#define POLL_MSG 3 /* input message available */
316#define POLL_ERR 4 /* i/o error */
317#define POLL_PRI 5 /* high priority input available */
318#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000319#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000320#define SI_USER 0 /* sent by kill, sigsend, raise */
321#define SI_QUEUE -1 /* sent by sigqueue */
322#define SI_TIMER -2 /* sent by timer expiration */
323#define SI_MESGQ -3 /* sent by real time mesq state change */
324#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000325#define SI_SIGIO -5 /* sent by SIGIO */
326#define SI_TKILL -6 /* sent by tkill */
Dmitry V. Levinb9d4d212014-03-11 01:57:02 +0000327#define SI_DETHREAD -7 /* sent by execve killing subsidiary threads */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000328#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100329#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000330
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100331#ifndef SI_FROMUSER
332# define SI_FROMUSER(sip) ((sip)->si_code <= 0)
Denys Vlasenko84703742012-02-25 02:38:52 +0100333#endif
John Hughes58265892001-10-18 15:13:53 +0000334
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000335#include "xlat/siginfo_codes.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000336#include "xlat/sigill_codes.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000337#include "xlat/sigfpe_codes.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000338#include "xlat/sigtrap_codes.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000339#include "xlat/sigchld_codes.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000340#include "xlat/sigpoll_codes.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000341#include "xlat/sigprof_codes.h"
John Hughes58265892001-10-18 15:13:53 +0000342
343#ifdef SIGEMT
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000344#include "xlat/sigemt_codes.h"
John Hughes58265892001-10-18 15:13:53 +0000345#endif
346
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000347#include "xlat/sigsegv_codes.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000348#include "xlat/sigbus_codes.h"
John Hughes58265892001-10-18 15:13:53 +0000349
Dmitry V. Levinbc091e32014-03-11 22:18:40 +0000350#ifndef SYS_SECCOMP
351# define SYS_SECCOMP 1
352#endif
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000353#include "xlat/sigsys_codes.h"
Dmitry V. Levinbc091e32014-03-11 22:18:40 +0000354
Elliott Hughes4dd1e892014-03-10 19:27:22 +0000355static void
Dmitry V. Levin4a524db2014-03-11 00:05:19 +0000356printsigsource(const siginfo_t *sip)
357{
358 tprintf(", si_pid=%lu, si_uid=%lu",
359 (unsigned long) sip->si_pid,
360 (unsigned long) sip->si_uid);
361}
362
363static void
364printsigval(const siginfo_t *sip, int verbose)
Elliott Hughes4dd1e892014-03-10 19:27:22 +0000365{
366 if (!verbose)
367 tprints(", ...");
368 else
369 tprintf(", si_value={int=%u, ptr=%#lx}",
370 sip->si_int,
371 (unsigned long) sip->si_ptr);
372}
373
John Hughes58265892001-10-18 15:13:53 +0000374void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000375printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000376{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000377 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000378
379 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200380 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000381 return;
382 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200383 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000384 printsignal(sip->si_signo);
385 code = xlookup(siginfo_codes, sip->si_code);
386 if (!code) {
387 switch (sip->si_signo) {
388 case SIGTRAP:
389 code = xlookup(sigtrap_codes, sip->si_code);
390 break;
391 case SIGCHLD:
392 code = xlookup(sigchld_codes, sip->si_code);
393 break;
394 case SIGPOLL:
395 code = xlookup(sigpoll_codes, sip->si_code);
396 break;
397 case SIGPROF:
398 code = xlookup(sigprof_codes, sip->si_code);
399 break;
400 case SIGILL:
401 code = xlookup(sigill_codes, sip->si_code);
402 break;
403#ifdef SIGEMT
404 case SIGEMT:
405 code = xlookup(sigemt_codes, sip->si_code);
406 break;
407#endif
408 case SIGFPE:
409 code = xlookup(sigfpe_codes, sip->si_code);
410 break;
411 case SIGSEGV:
412 code = xlookup(sigsegv_codes, sip->si_code);
413 break;
414 case SIGBUS:
415 code = xlookup(sigbus_codes, sip->si_code);
416 break;
Dmitry V. Levinbc091e32014-03-11 22:18:40 +0000417 case SIGSYS:
418 code = xlookup(sigsys_codes, sip->si_code);
419 break;
John Hughes58265892001-10-18 15:13:53 +0000420 }
421 }
422 if (code)
423 tprintf(", si_code=%s", code);
424 else
425 tprintf(", si_code=%#x", sip->si_code);
426#ifdef SI_NOINFO
427 if (sip->si_code != SI_NOINFO)
428#endif
429 {
430 if (sip->si_errno) {
431 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
432 tprintf(", si_errno=%d", sip->si_errno);
433 else
434 tprintf(", si_errno=%s",
435 errnoent[sip->si_errno]);
436 }
437#ifdef SI_FROMUSER
438 if (SI_FROMUSER(sip)) {
John Hughes58265892001-10-18 15:13:53 +0000439 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000440#ifdef SI_USER
441 case SI_USER:
Dmitry V. Levin4a524db2014-03-11 00:05:19 +0000442 printsigsource(sip);
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000443 break;
444#endif
445#ifdef SI_TKILL
446 case SI_TKILL:
Dmitry V. Levin4a524db2014-03-11 00:05:19 +0000447 printsigsource(sip);
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000448 break;
449#endif
John Hughes58265892001-10-18 15:13:53 +0000450#ifdef SI_TIMER
451 case SI_TIMER:
Elliott Hughes4dd1e892014-03-10 19:27:22 +0000452 tprintf(", si_timerid=%#x, si_overrun=%d",
453 sip->si_timerid, sip->si_overrun);
454 printsigval(sip, verbose);
John Hughes58265892001-10-18 15:13:53 +0000455 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000456#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000457 default:
Dmitry V. Levin4a524db2014-03-11 00:05:19 +0000458 printsigsource(sip);
459 if (sip->si_ptr)
460 printsigval(sip, verbose);
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000461 break;
John Hughes58265892001-10-18 15:13:53 +0000462 }
John Hughes58265892001-10-18 15:13:53 +0000463 }
464 else
465#endif /* SI_FROMUSER */
466 {
467 switch (sip->si_signo) {
468 case SIGCHLD:
Dmitry V. Levin4a524db2014-03-11 00:05:19 +0000469 printsigsource(sip);
470 tprints(", si_status=");
John Hughes58265892001-10-18 15:13:53 +0000471 if (sip->si_code == CLD_EXITED)
472 tprintf("%d", sip->si_status);
473 else
474 printsignal(sip->si_status);
John Hughes58265892001-10-18 15:13:53 +0000475 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200476 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000477 else
H.J. Lu2bb45812012-04-15 11:17:13 -0700478 tprintf(", si_utime=%llu, si_stime=%llu",
479 (unsigned long long) sip->si_utime,
480 (unsigned long long) sip->si_stime);
John Hughes58265892001-10-18 15:13:53 +0000481 break;
482 case SIGILL: case SIGFPE:
483 case SIGSEGV: case SIGBUS:
484 tprintf(", si_addr=%#lx",
485 (unsigned long) sip->si_addr);
486 break;
487 case SIGPOLL:
488 switch (sip->si_code) {
489 case POLL_IN: case POLL_OUT: case POLL_MSG:
490 tprintf(", si_band=%ld",
491 (long) sip->si_band);
492 break;
493 }
494 break;
Dmitry V. Levinbc091e32014-03-11 22:18:40 +0000495#ifdef HAVE_SIGINFO_T_SI_SYSCALL
496 case SIGSYS:
497 tprintf(", si_call_addr=%#lx, si_syscall=%d, si_arch=%u",
498 (unsigned long) sip->si_call_addr,
499 sip->si_syscall, sip->si_arch);
500 break;
501#endif
John Hughes58265892001-10-18 15:13:53 +0000502 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000503 if (sip->si_pid || sip->si_uid)
Dmitry V. Levin4a524db2014-03-11 00:05:19 +0000504 printsigsource(sip);
505 if (sip->si_ptr)
506 printsigval(sip, verbose);
John Hughes58265892001-10-18 15:13:53 +0000507 }
508 }
509 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200510 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000511}
512
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +0100513void
514printsiginfo_at(struct tcb *tcp, long addr)
515{
516 siginfo_t si;
517 if (!addr) {
518 tprints("NULL");
519 return;
520 }
521 if (syserror(tcp)) {
522 tprintf("%#lx", addr);
523 return;
524 }
525 if (umove(tcp, addr, &si) < 0) {
526 tprints("{???}");
527 return;
528 }
529 printsiginfo(&si, verbose(tcp));
530}
531
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000532int
Denys Vlasenko12014262011-05-30 14:00:14 +0200533sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000534{
535 if (entering(tcp)) {
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000536 tprintsigmask_val("", tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000537 }
538 else if (!syserror(tcp)) {
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000539 tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000540 return RVAL_HEX | RVAL_STR;
541 }
542 return 0;
543}
544
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000545#ifdef HAVE_SIGACTION
546
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000547struct old_sigaction {
Denys Vlasenko86d94842013-02-08 12:59:13 +0100548 /* sa_handler may be a libc #define, need to use other name: */
Chris Dearman2b4bb1c2013-12-09 19:58:42 -0800549#ifdef MIPS
550 unsigned int sa_flags;
551 void (*__sa_handler)(int);
552 /* Kernel treats sa_mask as an array of longs. */
553 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
554#else
Denys Vlasenko86d94842013-02-08 12:59:13 +0100555 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000556 unsigned long sa_mask;
557 unsigned long sa_flags;
558 void (*sa_restorer)(void);
Chris Dearman2b4bb1c2013-12-09 19:58:42 -0800559#endif /* !MIPS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000560};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000561
Elliott Hughes458b3f22014-02-28 23:21:35 +0000562struct old_sigaction32 {
563 /* sa_handler may be a libc #define, need to use other name: */
564 uint32_t __sa_handler;
565 uint32_t sa_mask;
566 uint32_t sa_flags;
567 uint32_t sa_restorer;
568};
569
Dmitry V. Levinac655a82014-01-07 22:41:30 +0000570static void
571decode_old_sigaction(struct tcb *tcp, long addr)
572{
573 struct old_sigaction sa;
Elliott Hughes458b3f22014-02-28 23:21:35 +0000574 int r;
Dmitry V. Levinac655a82014-01-07 22:41:30 +0000575
576 if (!addr) {
577 tprints("NULL");
578 return;
579 }
580 if (!verbose(tcp) || (exiting(tcp) && syserror(tcp))) {
581 tprintf("%#lx", addr);
582 return;
583 }
Elliott Hughes458b3f22014-02-28 23:21:35 +0000584
585#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
586 if (current_wordsize != sizeof(sa.__sa_handler) && current_wordsize == 4) {
587 struct old_sigaction32 sa32;
588 r = umove(tcp, addr, &sa32);
589 if (r >= 0) {
590 memset(&sa, 0, sizeof(sa));
591 sa.__sa_handler = (void*)(uintptr_t)sa32.__sa_handler;
592 sa.sa_flags = sa32.sa_flags;
593 sa.sa_restorer = (void*)(uintptr_t)sa32.sa_restorer;
594 sa.sa_mask = sa32.sa_mask;
595 }
596 } else
597#endif
598 {
599 r = umove(tcp, addr, &sa);
600 }
601 if (r < 0) {
Dmitry V. Levinac655a82014-01-07 22:41:30 +0000602 tprints("{...}");
603 return;
604 }
605
606 /* Architectures using function pointers, like
607 * hppa, may need to manipulate the function pointer
608 * to compute the result of a comparison. However,
609 * the __sa_handler function pointer exists only in
610 * the address space of the traced process, and can't
611 * be manipulated by strace. In order to prevent the
612 * compiler from generating code to manipulate
613 * __sa_handler we cast the function pointers to long. */
614 if ((long)sa.__sa_handler == (long)SIG_ERR)
615 tprints("{SIG_ERR, ");
616 else if ((long)sa.__sa_handler == (long)SIG_DFL)
617 tprints("{SIG_DFL, ");
618 else if ((long)sa.__sa_handler == (long)SIG_IGN)
619 tprints("{SIG_IGN, ");
620 else
621 tprintf("{%#lx, ", (long) sa.__sa_handler);
Chris Dearman2b4bb1c2013-12-09 19:58:42 -0800622#ifdef MIPS
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000623 tprintsigmask_addr("", sa.sa_mask);
Chris Dearman2b4bb1c2013-12-09 19:58:42 -0800624#else
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000625 tprintsigmask_val("", sa.sa_mask);
Chris Dearman2b4bb1c2013-12-09 19:58:42 -0800626#endif
Dmitry V. Levinac655a82014-01-07 22:41:30 +0000627 tprints(", ");
628 printflags(sigact_flags, sa.sa_flags, "SA_???");
629#ifdef SA_RESTORER
630 if (sa.sa_flags & SA_RESTORER)
631 tprintf(", %p", sa.sa_restorer);
632#endif
633 tprints("}");
634}
635
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000636int
Denys Vlasenko12014262011-05-30 14:00:14 +0200637sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000638{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000639 if (entering(tcp)) {
640 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200641 tprints(", ");
Dmitry V. Levinac655a82014-01-07 22:41:30 +0000642 decode_old_sigaction(tcp, tcp->u_arg[1]);
643 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000644 } else
Dmitry V. Levinac655a82014-01-07 22:41:30 +0000645 decode_old_sigaction(tcp, tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000646 return 0;
647}
648
649int
Denys Vlasenko12014262011-05-30 14:00:14 +0200650sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000651{
652 if (entering(tcp)) {
653 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200654 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000655 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000656 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200657 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000658 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000659 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200660 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000661 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000662 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200663 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000664 break;
665 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000666 tprintf("%#lx", tcp->u_arg[1]);
667 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000668 return 0;
669 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000670 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000671 switch (tcp->u_rval) {
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100672 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000673 tcp->auxstr = "SIG_ERR"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100674 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000675 tcp->auxstr = "SIG_DFL"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100676 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000677 tcp->auxstr = "SIG_IGN"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100678 default:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000679 tcp->auxstr = NULL;
680 }
681 return RVAL_HEX | RVAL_STR;
682 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000683 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000684}
685
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000686#endif /* HAVE_SIGACTION */
687
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000688int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000689sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000690{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000691#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000692 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200693 struct arm_sigcontext {
694 unsigned long trap_no;
695 unsigned long error_code;
696 unsigned long oldmask;
697 unsigned long arm_r0;
698 unsigned long arm_r1;
699 unsigned long arm_r2;
700 unsigned long arm_r3;
701 unsigned long arm_r4;
702 unsigned long arm_r5;
703 unsigned long arm_r6;
704 unsigned long arm_r7;
705 unsigned long arm_r8;
706 unsigned long arm_r9;
707 unsigned long arm_r10;
708 unsigned long arm_fp;
709 unsigned long arm_ip;
710 unsigned long arm_sp;
711 unsigned long arm_lr;
712 unsigned long arm_pc;
713 unsigned long arm_cpsr;
714 unsigned long fault_address;
715 };
716 struct arm_ucontext {
717 unsigned long uc_flags;
718 unsigned long uc_link; /* struct ucontext* */
719 /* The next three members comprise stack_t struct: */
720 unsigned long ss_sp; /* void* */
721 unsigned long ss_flags; /* int */
722 unsigned long ss_size; /* size_t */
723 struct arm_sigcontext sc;
724 /* These two members are sigset_t: */
725 unsigned long uc_sigmask[2];
726 /* more fields follow, which we aren't interested in */
727 };
728 struct arm_ucontext uc;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200729 if (umove(tcp, arm_regs.ARM_sp, &uc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000730 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000731 /*
732 * Kernel fills out uc.sc.oldmask too when it sets up signal stack,
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200733 * but for sigmask restore, sigreturn syscall uses uc.uc_sigmask instead.
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200734 */
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000735 tprintsigmask_addr(") (mask ", uc.uc_sigmask);
Roland McGrath0f87c492003-06-03 23:29:04 +0000736 }
Roland McGrath0f87c492003-06-03 23:29:04 +0000737#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +0000738 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200739 long usp;
Dmitry V. Levine2de3bd2013-11-12 15:27:38 +0000740 struct sigcontext sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200741 if (upeek(tcp->pid, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000742 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100743 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000744 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000745 tprintsigmask_addr(") (mask ", sc.oldmask);
Roland McGrath0f87c492003-06-03 23:29:04 +0000746 }
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200747#elif defined(I386) || defined(X86_64)
748# if defined(X86_64)
749 if (current_personality == 0) /* 64-bit */
750 return 0;
751# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000752 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200753 struct i386_sigcontext_struct {
754 uint16_t gs, __gsh;
755 uint16_t fs, __fsh;
756 uint16_t es, __esh;
757 uint16_t ds, __dsh;
758 uint32_t edi;
759 uint32_t esi;
760 uint32_t ebp;
761 uint32_t esp;
762 uint32_t ebx;
763 uint32_t edx;
764 uint32_t ecx;
765 uint32_t eax;
766 uint32_t trapno;
767 uint32_t err;
768 uint32_t eip;
769 uint16_t cs, __csh;
770 uint32_t eflags;
771 uint32_t esp_at_signal;
772 uint16_t ss, __ssh;
773 uint32_t i387;
774 uint32_t oldmask;
775 uint32_t cr2;
776 };
777 struct i386_fpstate {
778 uint32_t cw;
779 uint32_t sw;
780 uint32_t tag;
781 uint32_t ipoff;
782 uint32_t cssel;
783 uint32_t dataoff;
784 uint32_t datasel;
785 uint8_t st[8][10]; /* 8*10 bytes: FP regs */
786 uint16_t status;
787 uint16_t magic;
788 uint32_t fxsr_env[6];
789 uint32_t mxcsr;
790 uint32_t reserved;
791 uint8_t stx[8][16]; /* 8*16 bytes: FP regs, each padded to 16 bytes */
792 uint8_t xmm[8][16]; /* 8 XMM regs */
793 uint32_t padding1[44];
794 uint32_t padding2[12]; /* union with struct _fpx_sw_bytes */
795 };
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200796 struct {
797 struct i386_sigcontext_struct sc;
798 struct i386_fpstate fp;
799 uint32_t extramask[1];
800 } signal_stack;
801 /* On i386, sc is followed on stack by struct fpstate
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100802 * and after it an additional u32 extramask[1] which holds
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200803 * upper half of the mask.
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100804 */
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000805 uint32_t sigmask[2];
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200806 if (umove(tcp, *i386_esp_ptr, &signal_stack) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000807 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000808 sigmask[0] = signal_stack.sc.oldmask;
809 sigmask[1] = signal_stack.extramask[0];
810 tprintsigmask_addr(") (mask ", sigmask);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000811 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000812#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000813 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200814 struct sigcontext sc;
815 long sp;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000816 /* offset of sigcontext in the kernel's sigframe structure: */
817# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200818 if (upeek(tcp->pid, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000819 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000820 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000821 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000822 tprintsigmask_val(") (mask ", sc.sc_mask);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000823 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000824#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +0000825 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200826 long esp;
Dmitry V. Levine2de3bd2013-11-12 15:27:38 +0000827 struct sigcontext sc;
Anton Blanchardce6e33b2013-06-26 15:53:33 +0200828
829 esp = ppc_regs.gpr[1];
830
Andreas Schwabedb39342010-02-23 00:18:51 +0100831 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200832#ifdef POWERPC64
833 if (current_personality == 0)
834 esp += 128;
835 else
836 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +0100837#else
838 esp += 64;
839#endif
Roland McGrath0f87c492003-06-03 23:29:04 +0000840 if (umove(tcp, esp, &sc) < 0)
841 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000842 tprintsigmask_val(") (mask ", sc.oldmask);
Roland McGrath0f87c492003-06-03 23:29:04 +0000843 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000844#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000845 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200846 long usp;
847 struct sigcontext sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200848 if (upeek(tcp->pid, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000849 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000850 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000851 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000852 tprintsigmask_val(") (mask ", sc.sc_mask);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000853 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000854#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000855 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200856 long fp;
Dmitry V. Levine2de3bd2013-11-12 15:27:38 +0000857 struct sigcontext sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200858 if (upeek(tcp->pid, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000859 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000860 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000861 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000862 tprintsigmask_val(") (mask ", sc.sc_mask);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000863 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100864#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200865 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200866 long i1;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200867 m_siginfo_t si;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100868 i1 = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200869 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100870 perror_msg("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000871 return 0;
872 }
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000873 tprintsigmask_val(") (mask ", si.si_mask);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000874 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100875#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +0000876 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
877 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200878 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200879 long sp;
880 struct ucontext uc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200881 if (upeek(tcp->pid, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000882 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +0000883 /* There are six words followed by a 128-byte siginfo. */
884 sp = sp + 6 * 4 + 128;
885 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000886 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000887 tprintsigmask_val(") (mask ", uc.uc_sigmask);
Roland McGrath542c2c62008-05-20 01:11:56 +0000888 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000889#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200890 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200891 long sp;
892 struct pt_regs regs;
893 m_siginfo_t si;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200894 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100895 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenko56a52982011-06-09 01:36:29 +0200896 return 0;
897 }
Roland McGrath576b7842007-11-04 00:00:00 +0000898 sp = regs.regs[29];
899 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +0200900 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000901 tprintsigmask_val(") (mask ", si.si_mask);
Wichert Akkermanf90da011999-10-31 21:15:38 +0000902 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000903#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000904 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200905 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000906 long regs[PT_MAX+1];
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000907 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100908 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000909 return 0;
910 }
911 if (umove(tcp, regs[PT_USP], &sc) < 0)
912 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000913 tprintsigmask_val(") (mask ", sc.oldmask);
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000914 }
Chris Metcalfc8c66982009-12-28 10:00:15 -0500915#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -0500916 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200917 struct ucontext uc;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200918
919 /* offset of ucontext in the kernel's sigframe structure */
Chris Metcalf5c0796f2013-05-21 20:25:22 -0400920# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(siginfo_t)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100921 if (umove(tcp, tile_regs.sp + SIGFRAME_UC_OFFSET, &uc) < 0)
Chris Metcalfc8c66982009-12-28 10:00:15 -0500922 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000923 tprintsigmask_val(") (mask ", uc.uc_sigmask);
Chris Metcalfc8c66982009-12-28 10:00:15 -0500924 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200925#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200926 /* TODO: Verify that this is correct... */
927 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200928 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200929 long sp;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200930 /* Read r1, the stack pointer. */
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200931 if (upeek(tcp->pid, 1 * 4, &sp) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200932 return 0;
933 if (umove(tcp, sp, &sc) < 0)
934 return 0;
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000935 tprintsigmask_val(") (mask ", sc.oldmask);
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200936 }
Chris Zankel8f636ed2013-03-25 10:22:07 -0700937#elif defined(XTENSA)
938 /* Xtensa only has rt_sys_sigreturn */
Vineet Gupta7daacbb2013-08-16 12:47:06 +0530939#elif defined(ARC)
940 /* ARC syscall ABI only supports rt_sys_sigreturn */
Wichert Akkermanc1652e22001-03-27 12:17:16 +0000941#else
Dmitry V. Levinf112d072012-05-15 00:13:59 +0000942# warning No sys_sigreturn() for this architecture
943# warning (no problem, just a reminder :-)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000944#endif
Dmitry V. Levinf112d072012-05-15 00:13:59 +0000945 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000946}
947
948int
Denys Vlasenko12014262011-05-30 14:00:14 +0200949sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000950{
951 if (exiting(tcp)) {
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000952 tcp->auxstr = sprintsigmask_val("mask ", tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000953 }
954 return RVAL_HEX | RVAL_STR;
955}
956
957int
Dmitry V. Levine5e60852009-12-31 22:50:49 +0000958sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000959{
960 if (entering(tcp)) {
Dmitry V. Levin38593e92014-02-26 16:51:28 +0000961 tprintsigmask_val("", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000962 }
963 return 0;
964}
965
Denys Vlasenko84703742012-02-25 02:38:52 +0100966#if !defined SS_ONSTACK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000967#define SS_ONSTACK 1
968#define SS_DISABLE 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000969#endif
970
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000971#include "xlat/sigaltstack_flags.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000972
Dmitry V. Levin338c0692013-02-09 02:03:04 +0000973static void
Denys Vlasenko12014262011-05-30 14:00:14 +0200974print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000975{
976 stack_t ss;
Dmitry V. Levind153bfc2014-02-26 22:29:27 +0000977 int r;
Dmitry V. Levin338c0692013-02-09 02:03:04 +0000978
979 if (!addr) {
980 tprints("NULL");
Dmitry V. Levind153bfc2014-02-26 22:29:27 +0000981 return;
982 }
983
984#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
985 if (current_wordsize != sizeof(ss.ss_sp) && current_wordsize == 4) {
986 struct {
987 uint32_t ss_sp;
988 int32_t ss_flags;
989 uint32_t ss_size;
990 } ss32;
991 r = umove(tcp, addr, &ss32);
992 if (r >= 0) {
993 memset(&ss, 0, sizeof(ss));
994 ss.ss_sp = (void*)(unsigned long) ss32.ss_sp;
995 ss.ss_flags = ss32.ss_flags;
996 ss.ss_size = (unsigned long) ss32.ss_size;
997 }
998 } else
999#endif
1000 {
1001 r = umove(tcp, addr, &ss);
1002 }
1003 if (r < 0) {
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001004 tprintf("%#lx", addr);
1005 } else {
1006 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1007 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
1008 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1009 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001010}
1011
1012int
Denys Vlasenko12014262011-05-30 14:00:14 +02001013sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001014{
1015 if (entering(tcp)) {
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001016 print_stack_t(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001017 }
1018 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001019 tprints(", ");
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001020 print_stack_t(tcp, tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001021 }
1022 return 0;
1023}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001024
1025#ifdef HAVE_SIGACTION
1026
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001027/* "Old" sigprocmask, which operates with word-sized signal masks */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001028int
Denys Vlasenko12014262011-05-30 14:00:14 +02001029sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001030{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001031# ifdef ALPHA
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001032 if (entering(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001033 /*
1034 * Alpha/OSF is different: it doesn't pass in two pointers,
1035 * but rather passes in the new bitmask as an argument and
1036 * then returns the old bitmask. This "works" because we
1037 * only have 64 signals to worry about. If you want more,
1038 * use of the rt_sigprocmask syscall is required.
1039 * Alpha:
1040 * old = osf_sigprocmask(how, new);
1041 * Everyone else:
1042 * ret = sigprocmask(how, &new, &old, ...);
1043 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001044 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Dmitry V. Levin38593e92014-02-26 16:51:28 +00001045 tprintsigmask_val(", ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001046 }
1047 else if (!syserror(tcp)) {
Dmitry V. Levin38593e92014-02-26 16:51:28 +00001048 tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001049 return RVAL_HEX | RVAL_STR;
1050 }
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001051# else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001052 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001053 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001054 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001055 print_sigset_addr_len(tcp, tcp->u_arg[1], current_wordsize);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001056 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001057 }
1058 else {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001059 if (syserror(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001060 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001061 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001062 print_sigset_addr_len(tcp, tcp->u_arg[2], current_wordsize);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001063 }
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001064# endif /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001065 return 0;
1066}
1067
1068#endif /* HAVE_SIGACTION */
1069
1070int
Denys Vlasenko12014262011-05-30 14:00:14 +02001071sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001072{
1073 if (entering(tcp)) {
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001074 tprintf("%ld, %s",
1075 widen_to_long(tcp->u_arg[0]),
1076 signame(tcp->u_arg[1])
1077 );
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001078 }
1079 return 0;
1080}
1081
Roland McGrath8ffc3522003-07-09 09:47:49 +00001082int
Denys Vlasenko12014262011-05-30 14:00:14 +02001083sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001084{
1085 if (entering(tcp)) {
1086 tprintf("%ld, %ld, %s",
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001087 widen_to_long(tcp->u_arg[0]),
1088 widen_to_long(tcp->u_arg[1]),
1089 signame(tcp->u_arg[2])
1090 );
Roland McGrath8ffc3522003-07-09 09:47:49 +00001091 }
1092 return 0;
1093}
Roland McGrath8ffc3522003-07-09 09:47:49 +00001094
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001095int
Denys Vlasenko12014262011-05-30 14:00:14 +02001096sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001097{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001098 if (exiting(tcp)) {
1099 if (syserror(tcp))
1100 tprintf("%#lx", tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001101 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001102 print_sigset_addr_len(tcp, tcp->u_arg[0], current_wordsize);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001103 }
1104 return 0;
1105}
1106
Denys Vlasenko12014262011-05-30 14:00:14 +02001107int
1108sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001109{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001110 /* Note: arg[3] is the length of the sigset. Kernel requires NSIG / 8 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001111 if (entering(tcp)) {
1112 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001113 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001114 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[3]);
1115 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001116 }
1117 else {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001118 if (syserror(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001119 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001120 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001121 print_sigset_addr_len(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001122 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001123 }
1124 return 0;
1125}
1126
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001127/* Structure describing the action to be taken when a signal arrives. */
1128struct new_sigaction
1129{
Denys Vlasenko86d94842013-02-08 12:59:13 +01001130 /* sa_handler may be a libc #define, need to use other name: */
Chris Dearman2b4bb1c2013-12-09 19:58:42 -08001131#ifdef MIPS
1132 unsigned int sa_flags;
1133 void (*__sa_handler)(int);
1134#else
Denys Vlasenko86d94842013-02-08 12:59:13 +01001135 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001136 unsigned long sa_flags;
Mike Frysingerdd80a872014-08-14 00:30:24 -04001137# if !defined(ALPHA) && !defined(HPPA) && !defined(IA64)
Denys Vlasenko86d94842013-02-08 12:59:13 +01001138 void (*sa_restorer)(void);
Mike Frysingerdd80a872014-08-14 00:30:24 -04001139# endif /* !ALPHA && !HPPA && !IA64 */
Chris Dearman2b4bb1c2013-12-09 19:58:42 -08001140#endif /* !MIPS */
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001141 /* Kernel treats sa_mask as an array of longs. */
1142 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1143};
1144/* Same for i386-on-x86_64 and similar cases */
1145struct new_sigaction32
1146{
1147 uint32_t __sa_handler;
1148 uint32_t sa_flags;
1149 uint32_t sa_restorer;
1150 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001151};
1152
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001153static void
1154decode_new_sigaction(struct tcb *tcp, long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001155{
1156 struct new_sigaction sa;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001157 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001158
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001159 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001160 tprints("NULL");
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001161 return;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001162 }
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001163 if (!verbose(tcp) || (exiting(tcp) && syserror(tcp))) {
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001164 tprintf("%#lx", addr);
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001165 return;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001166 }
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001167#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001168 if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001169 struct new_sigaction32 sa32;
1170 r = umove(tcp, addr, &sa32);
1171 if (r >= 0) {
1172 memset(&sa, 0, sizeof(sa));
1173 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1174 sa.sa_flags = sa32.sa_flags;
1175 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1176 /* Kernel treats sa_mask as an array of longs.
1177 * For 32-bit process, "long" is uint32_t, thus, for example,
1178 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1179 * But for (64-bit) kernel, 32th bit in sa_mask is
1180 * 32th bit in 0th (64-bit) long!
1181 * For little-endian, it's the same.
1182 * For big-endian, we swap 32-bit words.
1183 */
1184 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1185 }
1186 } else
1187#endif
1188 {
1189 r = umove(tcp, addr, &sa);
1190 }
1191 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001192 tprints("{...}");
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001193 return;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001194 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001195 /* Architectures using function pointers, like
1196 * hppa, may need to manipulate the function pointer
1197 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +01001198 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001199 * the address space of the traced process, and can't
1200 * be manipulated by strace. In order to prevent the
1201 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +01001202 * __sa_handler we cast the function pointers to long. */
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001203 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001204 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001205 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001206 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001207 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001208 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001209 else
1210 tprintf("{%#lx, ", (long) sa.__sa_handler);
Denys Vlasenko80b73a22013-07-18 10:10:46 +02001211 /*
1212 * Sigset size is in tcp->u_arg[4] (SPARC)
1213 * or in tcp->u_arg[3] (all other),
1214 * but kernel won't handle sys_rt_sigaction
1215 * with wrong sigset size (just returns EINVAL instead).
1216 * We just fetch the right size, which is NSIG / 8.
1217 */
Dmitry V. Levin38593e92014-02-26 16:51:28 +00001218 tprintsigmask_val("", sa.sa_mask);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001219 tprints(", ");
Denys Vlasenko80b73a22013-07-18 10:10:46 +02001220
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001221 printflags(sigact_flags, sa.sa_flags, "SA_???");
1222#ifdef SA_RESTORER
1223 if (sa.sa_flags & SA_RESTORER)
1224 tprintf(", %p", sa.sa_restorer);
1225#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001226 tprints("}");
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001227}
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001228
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001229int
1230sys_rt_sigaction(struct tcb *tcp)
1231{
1232 if (entering(tcp)) {
1233 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001234 tprints(", ");
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001235 decode_new_sigaction(tcp, tcp->u_arg[1]);
1236 tprints(", ");
1237 } else {
1238 decode_new_sigaction(tcp, tcp->u_arg[2]);
Denys Vlasenko9472a272013-02-12 11:43:46 +01001239#if defined(SPARC) || defined(SPARC64)
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001240 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1241#elif defined(ALPHA)
1242 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1243#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001244 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001245#endif
Dmitry V. Levinac655a82014-01-07 22:41:30 +00001246 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001247 return 0;
1248}
1249
Denys Vlasenko1d632462009-04-14 12:51:00 +00001250int
1251sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001252{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001253 if (exiting(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001254 /*
1255 * One of the few syscalls where sigset size (arg[1])
1256 * is allowed to be <= NSIG / 8, not strictly ==.
1257 * This allows non-rt sigpending() syscall
1258 * to reuse rt_sigpending() code in kernel.
1259 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001260 if (syserror(tcp))
1261 tprintf("%#lx", tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001262 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001263 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
1264 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001265 }
1266 return 0;
1267}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001268
1269int
1270sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001271{
1272 if (entering(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001273 /* NB: kernel requires arg[1] == NSIG / 8 */
1274 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
1275 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001276 }
1277 return 0;
1278}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001279
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001280static void
1281print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1282{
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001283 printsignal(sig);
1284 tprints(", ");
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001285 printsiginfo_at(tcp, uinfo);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001286}
1287
Denys Vlasenko1d632462009-04-14 12:51:00 +00001288int
1289sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001290{
1291 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001292 tprintf("%lu, ", tcp->u_arg[0]);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001293 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1294 }
1295 return 0;
1296}
1297
1298int
1299sys_rt_tgsigqueueinfo(struct tcb *tcp)
1300{
1301 if (entering(tcp)) {
1302 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1303 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001304 }
1305 return 0;
1306}
1307
Denys Vlasenko1d632462009-04-14 12:51:00 +00001308int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001309{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001310 /* NB: kernel requires arg[3] == NSIG / 8 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001311 if (entering(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001312 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001313 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001314 /* This is the only "return" parameter, */
1315 if (tcp->u_arg[1] != 0)
1316 return 0;
1317 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001318 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001319 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001320 else if (tcp->u_arg[1] != 0) {
1321 /* syscall exit, and u_arg[1] wasn't NULL */
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001322 printsiginfo_at(tcp, tcp->u_arg[1]);
1323 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001324 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001325 else {
1326 /* syscall exit, and u_arg[1] was NULL */
1327 return 0;
1328 }
1329 print_timespec(tcp, tcp->u_arg[2]);
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001330 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001331 return 0;
1332};
1333
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001334int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001335sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001336{
1337 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001338 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001339 return 0;
1340}
1341
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001342static int
1343do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001344{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001345 /* NB: kernel requires arg[2] == NSIG / 8 */
Roland McGrathf46ccd32007-08-02 01:15:59 +00001346 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001347 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001348 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001349 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001350 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001351 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001352 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001353 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1354 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001355 }
1356 return 0;
1357}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001358
1359int
1360sys_signalfd(struct tcb *tcp)
1361{
1362 return do_signalfd(tcp, -1);
1363}
1364
1365int
1366sys_signalfd4(struct tcb *tcp)
1367{
1368 return do_signalfd(tcp, 3);
1369}