blob: 4e35274cc925f94e513e618ebd7368a908f7a048 [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>
Denys Vlasenko84703742012-02-25 02:38:52 +010040# ifndef PTRACE_PEEKUSR
41# define PTRACE_PEEKUSR PTRACE_PEEKUSER
42# endif
43# ifndef PTRACE_POKEUSR
44# define PTRACE_POKEUSR PTRACE_POKEUSER
45# endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000046#elif defined(HAVE_LINUX_PTRACE_H)
Denys Vlasenko84703742012-02-25 02:38:52 +010047# undef PTRACE_SYSCALL
Roland McGrathb0acdfd2004-03-01 21:31:02 +000048# ifdef HAVE_STRUCT_IA64_FPREG
49# define ia64_fpreg XXX_ia64_fpreg
50# endif
51# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
52# define pt_all_user_regs XXX_pt_all_user_regs
53# endif
Denys Vlasenko84703742012-02-25 02:38:52 +010054# include <linux/ptrace.h>
Roland McGrathb0acdfd2004-03-01 21:31:02 +000055# undef ia64_fpreg
56# undef pt_all_user_regs
Wichert Akkerman15dea971999-10-06 13:06:34 +000057#endif
Wichert Akkerman36915a11999-07-13 15:45:02 +000058
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000059#ifdef IA64
60# include <asm/ptrace_offsets.h>
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020061#endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000062
Denys Vlasenko84703742012-02-25 02:38:52 +010063#if defined(SPARC) || defined(SPARC64) || defined(MIPS)
Roland McGrath576b7842007-11-04 00:00:00 +000064typedef struct {
65 struct pt_regs si_regs;
66 int si_mask;
67} m_siginfo_t;
Roland McGrath30ff45e2003-01-30 20:15:23 +000068#elif defined HAVE_ASM_SIGCONTEXT_H
H.J. Lu35be5812012-04-16 13:00:01 +020069# if !defined(IA64) && !defined(X86_64) && !defined(X32)
Denys Vlasenko84703742012-02-25 02:38:52 +010070# include <asm/sigcontext.h>
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010071# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000072#else /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenkob51f3642013-07-16 12:06:25 +020073# if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT
74struct sigcontext {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000075 unsigned long sc_mask;
76 unsigned long sc_usp;
77 unsigned long sc_d0;
78 unsigned long sc_d1;
79 unsigned long sc_a0;
80 unsigned long sc_a1;
81 unsigned short sc_sr;
82 unsigned long sc_pc;
83 unsigned short sc_formatvec;
84};
Denys Vlasenkob51f3642013-07-16 12:06:25 +020085# endif /* M68K */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000086#endif /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020087
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000088#ifndef NSIG
Denys Vlasenko84703742012-02-25 02:38:52 +010089# warning: NSIG is not defined, using 32
90# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091#endif
92#ifdef ARM
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020093/* Ugh. Is this really correct? ARM has no RT signals?! */
Denys Vlasenko84703742012-02-25 02:38:52 +010094# undef NSIG
95# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000096#endif
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020097
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000098#ifdef HAVE_SIGACTION
99
H.J. Lu35be5812012-04-16 13:00:01 +0200100#if defined I386 || defined X86_64 || defined X32
Roland McGrath2638cb42002-12-15 23:58:41 +0000101/* The libc headers do not define this constant since it should only be
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200102 used by the implementation. So we define it here. */
Roland McGrath2638cb42002-12-15 23:58:41 +0000103# ifndef SA_RESTORER
104# define SA_RESTORER 0x04000000
105# endif
106#endif
107
Roland McGrathd9f816f2004-09-04 03:39:20 +0000108static const struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000109#ifdef SA_RESTORER
110 { SA_RESTORER, "SA_RESTORER" },
111#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000112#ifdef SA_STACK
113 { SA_STACK, "SA_STACK" },
114#endif
115#ifdef SA_RESTART
116 { SA_RESTART, "SA_RESTART" },
117#endif
118#ifdef SA_INTERRUPT
119 { SA_INTERRUPT, "SA_INTERRUPT" },
120#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000121#ifdef SA_NODEFER
122 { SA_NODEFER, "SA_NODEFER" },
123#endif
124#if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000125 { SA_NOMASK, "SA_NOMASK" },
126#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000127#ifdef SA_RESETHAND
128 { SA_RESETHAND, "SA_RESETHAND" },
129#endif
130#if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000131 { SA_ONESHOT, "SA_ONESHOT" },
132#endif
133#ifdef SA_SIGINFO
134 { SA_SIGINFO, "SA_SIGINFO" },
135#endif
136#ifdef SA_RESETHAND
137 { SA_RESETHAND, "SA_RESETHAND" },
138#endif
139#ifdef SA_ONSTACK
140 { SA_ONSTACK, "SA_ONSTACK" },
141#endif
142#ifdef SA_NODEFER
143 { SA_NODEFER, "SA_NODEFER" },
144#endif
145#ifdef SA_NOCLDSTOP
146 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
147#endif
148#ifdef SA_NOCLDWAIT
149 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
150#endif
151#ifdef _SA_BSDCALL
152 { _SA_BSDCALL, "_SA_BSDCALL" },
153#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500154#ifdef SA_NOPTRACE
155 { SA_NOPTRACE, "SA_NOPTRACE" },
156#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000157 { 0, NULL },
158};
159
Roland McGrathd9f816f2004-09-04 03:39:20 +0000160static const struct xlat sigprocmaskcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000161 { SIG_BLOCK, "SIG_BLOCK" },
162 { SIG_UNBLOCK, "SIG_UNBLOCK" },
163 { SIG_SETMASK, "SIG_SETMASK" },
164#ifdef SIG_SETMASK32
165 { SIG_SETMASK32,"SIG_SETMASK32" },
166#endif
167 { 0, NULL },
168};
169
170#endif /* HAVE_SIGACTION */
171
Nate Sammonsce780fc1999-03-29 23:23:13 +0000172/* Anonymous realtime signals. */
173/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
174 constant. This is what we want. Otherwise, just use SIGRTMIN. */
175#ifdef SIGRTMIN
176#ifndef __SIGRTMIN
177#define __SIGRTMIN SIGRTMIN
178#define __SIGRTMAX SIGRTMAX /* likewise */
179#endif
180#endif
181
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200182/* Note on the size of sigset_t:
183 *
184 * In glibc, sigset_t is an array with space for 1024 bits (!),
185 * even though all arches supported by Linux have only 64 signals
186 * except MIPS, which has 128. IOW, it is 128 bytes long.
187 *
188 * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
189 * However, some old syscall return only 32 lower bits (one word).
190 * Example: sys_sigpending vs sys_rt_sigpending.
191 *
192 * Be aware of this fact when you try to
193 * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
194 * - sizeof(sigset_t) is much bigger than you think,
195 * it may overflow tcp->u_arg[] array, and it may try to copy more data
196 * than is really available in <something>.
197 * Similarly,
198 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
199 * may be a bad idea: it'll try to read much more data than needed
200 * to fetch a sigset_t.
201 * Use (NSIG / 8) as a size instead.
202 */
203
Roland McGrathee36ce12004-09-04 03:53:10 +0000204const char *
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200205signame(int sig)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000206{
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200207 static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
208
209 if (sig >= 0 && sig < nsignals)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000210 return signalent[sig];
211#ifdef SIGRTMIN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200212 if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
213 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000214 return buf;
215 }
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200216#endif
217 sprintf(buf, "%d", sig);
218 return buf;
Nate Sammonsce780fc1999-03-29 23:23:13 +0000219}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000220
Nate Sammons4a121431999-04-06 01:19:39 +0000221static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200222long_to_sigset(long l, sigset_t *s)
Nate Sammons4a121431999-04-06 01:19:39 +0000223{
224 sigemptyset(s);
225 *(long *)s = l;
226}
227
228static int
Denys Vlasenko12014262011-05-30 14:00:14 +0200229copy_sigset_len(struct tcb *tcp, long addr, sigset_t *s, int len)
Nate Sammons4a121431999-04-06 01:19:39 +0000230{
231 if (len > sizeof(*s))
232 len = sizeof(*s);
233 sigemptyset(s);
234 if (umoven(tcp, addr, len, (char *)s) < 0)
235 return -1;
236 return 0;
237}
238
Nate Sammons4a121431999-04-06 01:19:39 +0000239/* Original sigset is unsigned long */
240#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
Nate Sammons4a121431999-04-06 01:19:39 +0000241
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000242static const char *
243sprintsigmask(const char *str, sigset_t *mask, int rt)
244/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000245{
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200246 /* Was [8 * sizeof(sigset_t) * 8], but
247 * glibc sigset_t is huge (1024 bits = 128 *bytes*),
248 * and we were ending up with 8k (!) buffer here.
249 *
250 * No Unix system can have sig > 255
251 * (waitpid API won't be able to indicate death from one)
252 * and sig 0 doesn't exist either.
253 * Therefore max possible no of sigs is 255: 1..255
254 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100255 static char outstr[8 * (255 * 2 / 3)];
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200256
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000257 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000258 int maxsigs;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100259 int show_members;
260 char sep;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000261 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000262
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200263 /* Note: nsignals = ARRAY_SIZE(signalent[]),
264 * and that array may not have SIGRTnn.
265 */
Nate Sammons4a121431999-04-06 01:19:39 +0000266 maxsigs = nsignals;
267#ifdef __SIGRTMAX
268 if (rt)
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200269 maxsigs = __SIGRTMAX + 1; /* instead */
Nate Sammons4a121431999-04-06 01:19:39 +0000270#endif
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100271 s = stpcpy(outstr, str);
272 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000273 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000274 if (sigismember(mask, i) == 1)
275 nsigs++;
276 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100277
278 /* 1: show mask members, 0: show those which are NOT in mask */
279 show_members = (nsigs < nsignals * 2 / 3);
280 if (!show_members)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000281 *s++ = '~';
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100282
283 sep = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000284 for (i = 1; i < maxsigs; i++) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100285 if (sigismember(mask, i) == show_members) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100286 *s++ = sep;
John Hughesbdf48f52001-03-06 15:08:09 +0000287 if (i < nsignals) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100288 s = stpcpy(s, signalent[i] + 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000289 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000290#ifdef SIGRTMIN
291 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200292 s += sprintf(s, "RT_%u", i - __SIGRTMIN);
Roland McGrath90b4cb52003-09-23 22:19:32 +0000293 }
294#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000295 else {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200296 s += sprintf(s, "%u", i);
John Hughesbdf48f52001-03-06 15:08:09 +0000297 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100298 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299 }
300 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100301 if (sep == '[')
302 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000303 *s++ = ']';
304 *s = '\0';
305 return outstr;
306}
307
308static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200309printsigmask(sigset_t *mask, int rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000310{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200311 tprints(sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000312}
313
314void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200315printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000316{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200317 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000318}
319
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000320void
321print_sigset(struct tcb *tcp, long addr, int rt)
322{
323 sigset_t ss;
324
325 if (!addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200326 tprints("NULL");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000327 else if (copy_sigset(tcp, addr, &ss) < 0)
328 tprintf("%#lx", addr);
329 else
330 printsigmask(&ss, rt);
331}
332
John Hughes58265892001-10-18 15:13:53 +0000333#ifndef ILL_ILLOPC
334#define ILL_ILLOPC 1 /* illegal opcode */
335#define ILL_ILLOPN 2 /* illegal operand */
336#define ILL_ILLADR 3 /* illegal addressing mode */
337#define ILL_ILLTRP 4 /* illegal trap */
338#define ILL_PRVOPC 5 /* privileged opcode */
339#define ILL_PRVREG 6 /* privileged register */
340#define ILL_COPROC 7 /* coprocessor error */
341#define ILL_BADSTK 8 /* internal stack error */
342#define FPE_INTDIV 1 /* integer divide by zero */
343#define FPE_INTOVF 2 /* integer overflow */
344#define FPE_FLTDIV 3 /* floating point divide by zero */
345#define FPE_FLTOVF 4 /* floating point overflow */
346#define FPE_FLTUND 5 /* floating point underflow */
347#define FPE_FLTRES 6 /* floating point inexact result */
348#define FPE_FLTINV 7 /* floating point invalid operation */
349#define FPE_FLTSUB 8 /* subscript out of range */
350#define SEGV_MAPERR 1 /* address not mapped to object */
351#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
352#define BUS_ADRALN 1 /* invalid address alignment */
353#define BUS_ADRERR 2 /* non-existant physical address */
354#define BUS_OBJERR 3 /* object specific hardware error */
355#define TRAP_BRKPT 1 /* process breakpoint */
356#define TRAP_TRACE 2 /* process trace trap */
357#define CLD_EXITED 1 /* child has exited */
358#define CLD_KILLED 2 /* child was killed */
359#define CLD_DUMPED 3 /* child terminated abnormally */
360#define CLD_TRAPPED 4 /* traced child has trapped */
361#define CLD_STOPPED 5 /* child has stopped */
362#define CLD_CONTINUED 6 /* stopped child has continued */
363#define POLL_IN 1 /* data input available */
364#define POLL_OUT 2 /* output buffers available */
365#define POLL_MSG 3 /* input message available */
366#define POLL_ERR 4 /* i/o error */
367#define POLL_PRI 5 /* high priority input available */
368#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000369#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000370#define SI_USER 0 /* sent by kill, sigsend, raise */
371#define SI_QUEUE -1 /* sent by sigqueue */
372#define SI_TIMER -2 /* sent by timer expiration */
373#define SI_MESGQ -3 /* sent by real time mesq state change */
374#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000375#define SI_SIGIO -5 /* sent by SIGIO */
376#define SI_TKILL -6 /* sent by tkill */
377#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100378#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000379
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100380#ifndef SI_FROMUSER
381# define SI_FROMUSER(sip) ((sip)->si_code <= 0)
Denys Vlasenko84703742012-02-25 02:38:52 +0100382#endif
John Hughes58265892001-10-18 15:13:53 +0000383
Roland McGrathd9f816f2004-09-04 03:39:20 +0000384static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000385#ifdef SI_KERNEL
386 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000387#endif
388#ifdef SI_USER
389 { SI_USER, "SI_USER" },
390#endif
John Hughes58265892001-10-18 15:13:53 +0000391#ifdef SI_QUEUE
392 { SI_QUEUE, "SI_QUEUE" },
393#endif
394#ifdef SI_TIMER
395 { SI_TIMER, "SI_TIMER" },
396#endif
John Hughes58265892001-10-18 15:13:53 +0000397#ifdef SI_MESGQ
398 { SI_MESGQ, "SI_MESGQ" },
399#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000400#ifdef SI_ASYNCIO
401 { SI_ASYNCIO, "SI_ASYNCIO" },
402#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000403#ifdef SI_SIGIO
404 { SI_SIGIO, "SI_SIGIO" },
405#endif
406#ifdef SI_TKILL
407 { SI_TKILL, "SI_TKILL" },
408#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000409#ifdef SI_ASYNCNL
410 { SI_ASYNCNL, "SI_ASYNCNL" },
411#endif
412#ifdef SI_NOINFO
413 { SI_NOINFO, "SI_NOINFO" },
414#endif
415#ifdef SI_LWP
416 { SI_LWP, "SI_LWP" },
417#endif
John Hughes58265892001-10-18 15:13:53 +0000418 { 0, NULL },
419};
420
Roland McGrathd9f816f2004-09-04 03:39:20 +0000421static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000422 { ILL_ILLOPC, "ILL_ILLOPC" },
423 { ILL_ILLOPN, "ILL_ILLOPN" },
424 { ILL_ILLADR, "ILL_ILLADR" },
425 { ILL_ILLTRP, "ILL_ILLTRP" },
426 { ILL_PRVOPC, "ILL_PRVOPC" },
427 { ILL_PRVREG, "ILL_PRVREG" },
428 { ILL_COPROC, "ILL_COPROC" },
429 { ILL_BADSTK, "ILL_BADSTK" },
430 { 0, NULL },
431};
432
Roland McGrathd9f816f2004-09-04 03:39:20 +0000433static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000434 { FPE_INTDIV, "FPE_INTDIV" },
435 { FPE_INTOVF, "FPE_INTOVF" },
436 { FPE_FLTDIV, "FPE_FLTDIV" },
437 { FPE_FLTOVF, "FPE_FLTOVF" },
438 { FPE_FLTUND, "FPE_FLTUND" },
439 { FPE_FLTRES, "FPE_FLTRES" },
440 { FPE_FLTINV, "FPE_FLTINV" },
441 { FPE_FLTSUB, "FPE_FLTSUB" },
442 { 0, NULL },
443};
444
Roland McGrathd9f816f2004-09-04 03:39:20 +0000445static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000446 { TRAP_BRKPT, "TRAP_BRKPT" },
447 { TRAP_TRACE, "TRAP_TRACE" },
448 { 0, NULL },
449};
450
Roland McGrathd9f816f2004-09-04 03:39:20 +0000451static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000452 { CLD_EXITED, "CLD_EXITED" },
453 { CLD_KILLED, "CLD_KILLED" },
454 { CLD_DUMPED, "CLD_DUMPED" },
455 { CLD_TRAPPED, "CLD_TRAPPED" },
456 { CLD_STOPPED, "CLD_STOPPED" },
457 { CLD_CONTINUED,"CLD_CONTINUED" },
458 { 0, NULL },
459};
460
Roland McGrathd9f816f2004-09-04 03:39:20 +0000461static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000462 { POLL_IN, "POLL_IN" },
463 { POLL_OUT, "POLL_OUT" },
464 { POLL_MSG, "POLL_MSG" },
465 { POLL_ERR, "POLL_ERR" },
466 { POLL_PRI, "POLL_PRI" },
467 { POLL_HUP, "POLL_HUP" },
468 { 0, NULL },
469};
470
Roland McGrathd9f816f2004-09-04 03:39:20 +0000471static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000472#ifdef PROF_SIG
473 { PROF_SIG, "PROF_SIG" },
474#endif
475 { 0, NULL },
476};
477
478#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000479static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000480#ifdef EMT_TAGOVF
481 { EMT_TAGOVF, "EMT_TAGOVF" },
482#endif
483 { 0, NULL },
484};
485#endif
486
Roland McGrathd9f816f2004-09-04 03:39:20 +0000487static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000488 { SEGV_MAPERR, "SEGV_MAPERR" },
489 { SEGV_ACCERR, "SEGV_ACCERR" },
490 { 0, NULL },
491};
492
Roland McGrathd9f816f2004-09-04 03:39:20 +0000493static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000494 { BUS_ADRALN, "BUS_ADRALN" },
495 { BUS_ADRERR, "BUS_ADRERR" },
496 { BUS_OBJERR, "BUS_OBJERR" },
497 { 0, NULL },
498};
499
500void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000501printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000502{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000503 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000504
505 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200506 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000507 return;
508 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200509 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000510 printsignal(sip->si_signo);
511 code = xlookup(siginfo_codes, sip->si_code);
512 if (!code) {
513 switch (sip->si_signo) {
514 case SIGTRAP:
515 code = xlookup(sigtrap_codes, sip->si_code);
516 break;
517 case SIGCHLD:
518 code = xlookup(sigchld_codes, sip->si_code);
519 break;
520 case SIGPOLL:
521 code = xlookup(sigpoll_codes, sip->si_code);
522 break;
523 case SIGPROF:
524 code = xlookup(sigprof_codes, sip->si_code);
525 break;
526 case SIGILL:
527 code = xlookup(sigill_codes, sip->si_code);
528 break;
529#ifdef SIGEMT
530 case SIGEMT:
531 code = xlookup(sigemt_codes, sip->si_code);
532 break;
533#endif
534 case SIGFPE:
535 code = xlookup(sigfpe_codes, sip->si_code);
536 break;
537 case SIGSEGV:
538 code = xlookup(sigsegv_codes, sip->si_code);
539 break;
540 case SIGBUS:
541 code = xlookup(sigbus_codes, sip->si_code);
542 break;
543 }
544 }
545 if (code)
546 tprintf(", si_code=%s", code);
547 else
548 tprintf(", si_code=%#x", sip->si_code);
549#ifdef SI_NOINFO
550 if (sip->si_code != SI_NOINFO)
551#endif
552 {
553 if (sip->si_errno) {
554 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
555 tprintf(", si_errno=%d", sip->si_errno);
556 else
557 tprintf(", si_errno=%s",
558 errnoent[sip->si_errno]);
559 }
560#ifdef SI_FROMUSER
561 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000562 tprintf(", si_pid=%lu, si_uid=%lu",
563 (unsigned long) sip->si_pid,
564 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000565 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000566#ifdef SI_USER
567 case SI_USER:
568 break;
569#endif
570#ifdef SI_TKILL
571 case SI_TKILL:
572 break;
573#endif
John Hughes58265892001-10-18 15:13:53 +0000574#ifdef SI_TIMER
575 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000576 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000577 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000578#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000579 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000580 if (!sip->si_ptr)
581 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000582 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200583 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000584 else
585 tprintf(", si_value={int=%u, ptr=%#lx}",
586 sip->si_int,
587 (unsigned long) sip->si_ptr);
588 break;
John Hughes58265892001-10-18 15:13:53 +0000589 }
John Hughes58265892001-10-18 15:13:53 +0000590 }
591 else
592#endif /* SI_FROMUSER */
593 {
594 switch (sip->si_signo) {
595 case SIGCHLD:
596 tprintf(", si_pid=%ld, si_status=",
597 (long) sip->si_pid);
598 if (sip->si_code == CLD_EXITED)
599 tprintf("%d", sip->si_status);
600 else
601 printsignal(sip->si_status);
John Hughes58265892001-10-18 15:13:53 +0000602 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200603 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000604 else
H.J. Lu2bb45812012-04-15 11:17:13 -0700605 tprintf(", si_utime=%llu, si_stime=%llu",
606 (unsigned long long) sip->si_utime,
607 (unsigned long long) sip->si_stime);
John Hughes58265892001-10-18 15:13:53 +0000608 break;
609 case SIGILL: case SIGFPE:
610 case SIGSEGV: case SIGBUS:
611 tprintf(", si_addr=%#lx",
612 (unsigned long) sip->si_addr);
613 break;
614 case SIGPOLL:
615 switch (sip->si_code) {
616 case POLL_IN: case POLL_OUT: case POLL_MSG:
617 tprintf(", si_band=%ld",
618 (long) sip->si_band);
619 break;
620 }
621 break;
John Hughes58265892001-10-18 15:13:53 +0000622 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000623 if (sip->si_pid || sip->si_uid)
624 tprintf(", si_pid=%lu, si_uid=%lu",
625 (unsigned long) sip->si_pid,
626 (unsigned long) sip->si_uid);
627 if (!sip->si_ptr)
628 break;
John Hughes58265892001-10-18 15:13:53 +0000629 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200630 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000631 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000632 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000633 sip->si_int,
634 (unsigned long) sip->si_ptr);
635 }
Roland McGratha39c5a12002-12-17 05:10:37 +0000636
John Hughes58265892001-10-18 15:13:53 +0000637 }
638 }
639 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200640 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000641}
642
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +0100643void
644printsiginfo_at(struct tcb *tcp, long addr)
645{
646 siginfo_t si;
647 if (!addr) {
648 tprints("NULL");
649 return;
650 }
651 if (syserror(tcp)) {
652 tprintf("%#lx", addr);
653 return;
654 }
655 if (umove(tcp, addr, &si) < 0) {
656 tprints("{???}");
657 return;
658 }
659 printsiginfo(&si, verbose(tcp));
660}
661
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000662int
Denys Vlasenko12014262011-05-30 14:00:14 +0200663sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000664{
665 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000666 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000667 long_to_sigset(tcp->u_arg[0], &sigm);
668 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000669 }
670 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000671 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000672 long_to_sigset(tcp->u_rval, &sigm);
673 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000674
675 return RVAL_HEX | RVAL_STR;
676 }
677 return 0;
678}
679
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000680#ifdef HAVE_SIGACTION
681
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000682struct old_sigaction {
Denys Vlasenko86d94842013-02-08 12:59:13 +0100683 /* sa_handler may be a libc #define, need to use other name: */
684 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000685 unsigned long sa_mask;
686 unsigned long sa_flags;
687 void (*sa_restorer)(void);
688};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000689
690int
Denys Vlasenko12014262011-05-30 14:00:14 +0200691sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000692{
693 long addr;
John Hughes1e4cb342001-03-06 09:25:46 +0000694 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000695 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000696
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000697 if (entering(tcp)) {
698 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200699 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000700 addr = tcp->u_arg[1];
701 } else
702 addr = tcp->u_arg[2];
703 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200704 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000705 else if (!verbose(tcp))
706 tprintf("%#lx", addr);
707 else if (umove(tcp, addr, &sa) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200708 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000709 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000710 /* Architectures using function pointers, like
711 * hppa, may need to manipulate the function pointer
712 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +0100713 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000714 * the address space of the traced process, and can't
715 * be manipulated by strace. In order to prevent the
716 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +0100717 * __sa_handler we cast the function pointers to long. */
718 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200719 tprints("{SIG_ERR, ");
Denys Vlasenko86d94842013-02-08 12:59:13 +0100720 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200721 tprints("{SIG_DFL, ");
Denys Vlasenko86d94842013-02-08 12:59:13 +0100722 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200723 tprints("{SIG_IGN, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100724 else
Denys Vlasenko86d94842013-02-08 12:59:13 +0100725 tprintf("{%#lx, ", (long) sa.__sa_handler);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100726 long_to_sigset(sa.sa_mask, &sigset);
727 printsigmask(&sigset, 0);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100728 tprints(", ");
729 printflags(sigact_flags, sa.sa_flags, "SA_???");
730#ifdef SA_RESTORER
731 if (sa.sa_flags & SA_RESTORER)
732 tprintf(", %p", sa.sa_restorer);
733#endif
734 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000735 }
736 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200737 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000738 else
739 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000740 return 0;
741}
742
743int
Denys Vlasenko12014262011-05-30 14:00:14 +0200744sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000745{
746 if (entering(tcp)) {
747 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200748 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000749 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000750 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200751 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000752 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000753 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200754 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000755 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000756 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200757 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000758 break;
759 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000760 tprintf("%#lx", tcp->u_arg[1]);
761 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000762 return 0;
763 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000764 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000765 switch (tcp->u_rval) {
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100766 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000767 tcp->auxstr = "SIG_ERR"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100768 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000769 tcp->auxstr = "SIG_DFL"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100770 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000771 tcp->auxstr = "SIG_IGN"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100772 default:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000773 tcp->auxstr = NULL;
774 }
775 return RVAL_HEX | RVAL_STR;
776 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000777 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000778}
779
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000780#endif /* HAVE_SIGACTION */
781
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000782int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000783sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000784{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000785#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000786 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200787 struct arm_sigcontext {
788 unsigned long trap_no;
789 unsigned long error_code;
790 unsigned long oldmask;
791 unsigned long arm_r0;
792 unsigned long arm_r1;
793 unsigned long arm_r2;
794 unsigned long arm_r3;
795 unsigned long arm_r4;
796 unsigned long arm_r5;
797 unsigned long arm_r6;
798 unsigned long arm_r7;
799 unsigned long arm_r8;
800 unsigned long arm_r9;
801 unsigned long arm_r10;
802 unsigned long arm_fp;
803 unsigned long arm_ip;
804 unsigned long arm_sp;
805 unsigned long arm_lr;
806 unsigned long arm_pc;
807 unsigned long arm_cpsr;
808 unsigned long fault_address;
809 };
810 struct arm_ucontext {
811 unsigned long uc_flags;
812 unsigned long uc_link; /* struct ucontext* */
813 /* The next three members comprise stack_t struct: */
814 unsigned long ss_sp; /* void* */
815 unsigned long ss_flags; /* int */
816 unsigned long ss_size; /* size_t */
817 struct arm_sigcontext sc;
818 /* These two members are sigset_t: */
819 unsigned long uc_sigmask[2];
820 /* more fields follow, which we aren't interested in */
821 };
822 struct arm_ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100823 sigset_t sigm;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200824 if (umove(tcp, arm_regs.ARM_sp, &uc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000825 return 0;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200826 /* Kernel fills out uc.sc.oldmask too when it sets up signal stack,
827 * but for sigmask restore, sigreturn syscall uses uc.uc_sigmask instead.
828 * long_to_sigset(uc.sc.oldmask, &sigm);
829 * tprints(sprintsigmask(") (mask ", &sigm, 0));
830 */
831 sigemptyset(&sigm);
832 ((uint32_t*)&sigm)[0] = uc.uc_sigmask[0];
833 ((uint32_t*)&sigm)[1] = uc.uc_sigmask[1];
834 tprints(sprintsigmask(") (mask ", &sigm, /*rt:*/ 1));
Roland McGrath0f87c492003-06-03 23:29:04 +0000835 }
Roland McGrath0f87c492003-06-03 23:29:04 +0000836#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +0000837 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200838 long usp;
839 struct sigcontext_struct sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200840 if (upeek(tcp->pid, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000841 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100842 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000843 return 0;
Andreas Schwaba7920a82012-01-17 17:56:44 +0100844 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000845 }
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200846#elif defined(I386) || defined(X86_64)
847# if defined(X86_64)
848 if (current_personality == 0) /* 64-bit */
849 return 0;
850# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000851 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200852 struct i386_sigcontext_struct {
853 uint16_t gs, __gsh;
854 uint16_t fs, __fsh;
855 uint16_t es, __esh;
856 uint16_t ds, __dsh;
857 uint32_t edi;
858 uint32_t esi;
859 uint32_t ebp;
860 uint32_t esp;
861 uint32_t ebx;
862 uint32_t edx;
863 uint32_t ecx;
864 uint32_t eax;
865 uint32_t trapno;
866 uint32_t err;
867 uint32_t eip;
868 uint16_t cs, __csh;
869 uint32_t eflags;
870 uint32_t esp_at_signal;
871 uint16_t ss, __ssh;
872 uint32_t i387;
873 uint32_t oldmask;
874 uint32_t cr2;
875 };
876 struct i386_fpstate {
877 uint32_t cw;
878 uint32_t sw;
879 uint32_t tag;
880 uint32_t ipoff;
881 uint32_t cssel;
882 uint32_t dataoff;
883 uint32_t datasel;
884 uint8_t st[8][10]; /* 8*10 bytes: FP regs */
885 uint16_t status;
886 uint16_t magic;
887 uint32_t fxsr_env[6];
888 uint32_t mxcsr;
889 uint32_t reserved;
890 uint8_t stx[8][16]; /* 8*16 bytes: FP regs, each padded to 16 bytes */
891 uint8_t xmm[8][16]; /* 8 XMM regs */
892 uint32_t padding1[44];
893 uint32_t padding2[12]; /* union with struct _fpx_sw_bytes */
894 };
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200895 struct {
896 struct i386_sigcontext_struct sc;
897 struct i386_fpstate fp;
898 uint32_t extramask[1];
899 } signal_stack;
900 /* On i386, sc is followed on stack by struct fpstate
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100901 * and after it an additional u32 extramask[1] which holds
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200902 * upper half of the mask.
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100903 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000904 sigset_t sigm;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200905 if (umove(tcp, *i386_esp_ptr, &signal_stack) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000906 return 0;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200907 sigemptyset(&sigm);
908 ((uint32_t*)&sigm)[0] = signal_stack.sc.oldmask;
909 ((uint32_t*)&sigm)[1] = signal_stack.extramask[0];
910 tprints(sprintsigmask(") (mask ", &sigm, /*RT sigs too?:*/ 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000911 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000912#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000913 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200914 struct sigcontext sc;
915 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100916 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000917 /* offset of sigcontext in the kernel's sigframe structure: */
918# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200919 if (upeek(tcp->pid, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000920 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000921 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000922 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200923 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100924 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100925 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000926 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000927#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +0000928 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200929 long esp;
930 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100931 sigset_t sigm;
Anton Blanchardce6e33b2013-06-26 15:53:33 +0200932
933 esp = ppc_regs.gpr[1];
934
Andreas Schwabedb39342010-02-23 00:18:51 +0100935 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200936#ifdef POWERPC64
937 if (current_personality == 0)
938 esp += 128;
939 else
940 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +0100941#else
942 esp += 64;
943#endif
Roland McGrath0f87c492003-06-03 23:29:04 +0000944 if (umove(tcp, esp, &sc) < 0)
945 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100946 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100947 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000948 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000949#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000950 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200951 long usp;
952 struct sigcontext sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100953 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200954 if (upeek(tcp->pid, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000955 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000956 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000957 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100958 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100959 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000960 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000961#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000962 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200963 long fp;
964 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100965 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200966 if (upeek(tcp->pid, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000967 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000968 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000969 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100970 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100971 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000972 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100973#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200974 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200975 long i1;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200976 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100977 sigset_t sigm;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100978 i1 = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200979 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100980 perror_msg("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000981 return 0;
982 }
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100983 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100984 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000985 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100986#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +0000987 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
988 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200989 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200990 long sp;
991 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100992 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200993 if (upeek(tcp->pid, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000994 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +0000995 /* There are six words followed by a 128-byte siginfo. */
996 sp = sp + 6 * 4 + 128;
997 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000998 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100999 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001000 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath542c2c62008-05-20 01:11:56 +00001001 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001002#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001003 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001004 long sp;
1005 struct pt_regs regs;
1006 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001007 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001008 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001009 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenko56a52982011-06-09 01:36:29 +02001010 return 0;
1011 }
Roland McGrath576b7842007-11-04 00:00:00 +00001012 sp = regs.regs[29];
1013 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +02001014 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001015 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001016 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkermanf90da011999-10-31 21:15:38 +00001017 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001018#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001019 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001020 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001021 long regs[PT_MAX+1];
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001022 sigset_t sigm;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001023 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001024 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001025 return 0;
1026 }
1027 if (umove(tcp, regs[PT_USP], &sc) < 0)
1028 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001029 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001030 tprints(sprintsigmask(") (mask ", &sigm, 0));
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001031 }
Chris Metcalfc8c66982009-12-28 10:00:15 -05001032#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001033 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001034 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001035 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001036
1037 /* offset of ucontext in the kernel's sigframe structure */
Chris Metcalf5c0796f2013-05-21 20:25:22 -04001038# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(siginfo_t)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001039 if (umove(tcp, tile_regs.sp + SIGFRAME_UC_OFFSET, &uc) < 0)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001040 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001041 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001042 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001043 tprints(sprintsigmask(") (mask ", &sigm, 0));
Chris Metcalfc8c66982009-12-28 10:00:15 -05001044 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001045#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001046 /* TODO: Verify that this is correct... */
1047 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001048 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001049 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001050 sigset_t sigm;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001051 /* Read r1, the stack pointer. */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001052 if (upeek(tcp->pid, 1 * 4, &sp) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001053 return 0;
1054 if (umove(tcp, sp, &sc) < 0)
1055 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001056 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001057 tprints(sprintsigmask(") (mask ", &sigm, 0));
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001058 }
Chris Zankel8f636ed2013-03-25 10:22:07 -07001059#elif defined(XTENSA)
1060 /* Xtensa only has rt_sys_sigreturn */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001061#else
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001062# warning No sys_sigreturn() for this architecture
1063# warning (no problem, just a reminder :-)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001064#endif
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001065 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001066}
1067
1068int
Denys Vlasenko12014262011-05-30 14:00:14 +02001069sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001070{
1071 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001072 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001073 long_to_sigset(tcp->u_rval, &sigm);
1074 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001075 }
1076 return RVAL_HEX | RVAL_STR;
1077}
1078
1079int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001080sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001081{
1082 if (entering(tcp)) {
1083 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001084 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001085 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001086 }
1087 return 0;
1088}
1089
Denys Vlasenko84703742012-02-25 02:38:52 +01001090#if !defined SS_ONSTACK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001091#define SS_ONSTACK 1
1092#define SS_DISABLE 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001093#endif
1094
Roland McGrathd9f816f2004-09-04 03:39:20 +00001095static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001096 { SS_ONSTACK, "SS_ONSTACK" },
1097 { SS_DISABLE, "SS_DISABLE" },
1098 { 0, NULL },
1099};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001100
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001101static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001102print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001103{
1104 stack_t ss;
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001105
1106 if (!addr) {
1107 tprints("NULL");
1108 } else if (umove(tcp, addr, &ss) < 0) {
1109 tprintf("%#lx", addr);
1110 } else {
1111 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1112 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
1113 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1114 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001115}
1116
1117int
Denys Vlasenko12014262011-05-30 14:00:14 +02001118sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001119{
1120 if (entering(tcp)) {
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001121 print_stack_t(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001122 }
1123 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001124 tprints(", ");
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001125 print_stack_t(tcp, tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001126 }
1127 return 0;
1128}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001129
1130#ifdef HAVE_SIGACTION
1131
1132int
Denys Vlasenko12014262011-05-30 14:00:14 +02001133sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001134{
1135#ifdef ALPHA
Mike Frysingerdde045c2012-03-15 00:45:33 -04001136 sigset_t ss;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001137 if (entering(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001138 /*
1139 * Alpha/OSF is different: it doesn't pass in two pointers,
1140 * but rather passes in the new bitmask as an argument and
1141 * then returns the old bitmask. This "works" because we
1142 * only have 64 signals to worry about. If you want more,
1143 * use of the rt_sigprocmask syscall is required.
1144 * Alpha:
1145 * old = osf_sigprocmask(how, new);
1146 * Everyone else:
1147 * ret = sigprocmask(how, &new, &old, ...);
1148 */
1149 memcpy(&ss, &tcp->u_arg[1], sizeof(long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001150 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001151 tprints(", ");
Mike Frysingerdde045c2012-03-15 00:45:33 -04001152 printsigmask(&ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001153 }
1154 else if (!syserror(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001155 memcpy(&ss, &tcp->u_rval, sizeof(long));
1156 tcp->auxstr = sprintsigmask("old mask ", &ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001157 return RVAL_HEX | RVAL_STR;
1158 }
1159#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001160 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001161 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001162 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001163 print_sigset(tcp, tcp->u_arg[1], 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001164 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001165 }
1166 else {
1167 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001168 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001169 else if (syserror(tcp))
1170 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001171 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001172 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001173 }
1174#endif /* !ALPHA */
1175 return 0;
1176}
1177
1178#endif /* HAVE_SIGACTION */
1179
1180int
Denys Vlasenko12014262011-05-30 14:00:14 +02001181sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001182{
1183 if (entering(tcp)) {
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001184 tprintf("%ld, %s",
1185 widen_to_long(tcp->u_arg[0]),
1186 signame(tcp->u_arg[1])
1187 );
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001188 }
1189 return 0;
1190}
1191
Roland McGrath8ffc3522003-07-09 09:47:49 +00001192int
Denys Vlasenko12014262011-05-30 14:00:14 +02001193sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001194{
1195 if (entering(tcp)) {
1196 tprintf("%ld, %ld, %s",
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001197 widen_to_long(tcp->u_arg[0]),
1198 widen_to_long(tcp->u_arg[1]),
1199 signame(tcp->u_arg[2])
1200 );
Roland McGrath8ffc3522003-07-09 09:47:49 +00001201 }
1202 return 0;
1203}
Roland McGrath8ffc3522003-07-09 09:47:49 +00001204
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001205int
Denys Vlasenko12014262011-05-30 14:00:14 +02001206sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001207{
1208 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001209
1210 if (exiting(tcp)) {
1211 if (syserror(tcp))
1212 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001213 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001214 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001215 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001216 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001217 }
1218 return 0;
1219}
1220
Denys Vlasenko12014262011-05-30 14:00:14 +02001221int
1222sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001223{
1224 sigset_t sigset;
1225
Nate Sammons4a121431999-04-06 01:19:39 +00001226 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001227 if (entering(tcp)) {
1228 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001229 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001230 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001231 tprints("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001232 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001233 tprintf("%#lx, ", tcp->u_arg[1]);
1234 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001235 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001236 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001237 }
1238 }
1239 else {
1240 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001241 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001242 else if (syserror(tcp))
1243 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001244 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001245 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001246 else
Nate Sammons4a121431999-04-06 01:19:39 +00001247 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001248 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001249 }
1250 return 0;
1251}
1252
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001253/* Structure describing the action to be taken when a signal arrives. */
1254struct new_sigaction
1255{
Denys Vlasenko86d94842013-02-08 12:59:13 +01001256 /* sa_handler may be a libc #define, need to use other name: */
1257 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001258 unsigned long sa_flags;
Denys Vlasenko86d94842013-02-08 12:59:13 +01001259 void (*sa_restorer)(void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001260 /* Kernel treats sa_mask as an array of longs. */
1261 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1262};
1263/* Same for i386-on-x86_64 and similar cases */
1264struct new_sigaction32
1265{
1266 uint32_t __sa_handler;
1267 uint32_t sa_flags;
1268 uint32_t sa_restorer;
1269 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001270};
1271
Roland McGrath5f206812008-08-20 01:59:40 +00001272int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001273sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001274{
1275 struct new_sigaction sa;
1276 sigset_t sigset;
1277 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001278 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001279
1280 if (entering(tcp)) {
1281 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001282 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001283 addr = tcp->u_arg[1];
1284 } else
1285 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001286
1287 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001288 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001289 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001290 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001291 if (!verbose(tcp)) {
1292 tprintf("%#lx", addr);
1293 goto after_sa;
1294 }
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001295#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001296 if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001297 struct new_sigaction32 sa32;
1298 r = umove(tcp, addr, &sa32);
1299 if (r >= 0) {
1300 memset(&sa, 0, sizeof(sa));
1301 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1302 sa.sa_flags = sa32.sa_flags;
1303 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1304 /* Kernel treats sa_mask as an array of longs.
1305 * For 32-bit process, "long" is uint32_t, thus, for example,
1306 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1307 * But for (64-bit) kernel, 32th bit in sa_mask is
1308 * 32th bit in 0th (64-bit) long!
1309 * For little-endian, it's the same.
1310 * For big-endian, we swap 32-bit words.
1311 */
1312 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1313 }
1314 } else
1315#endif
1316 {
1317 r = umove(tcp, addr, &sa);
1318 }
1319 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001320 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001321 goto after_sa;
1322 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001323 /* Architectures using function pointers, like
1324 * hppa, may need to manipulate the function pointer
1325 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +01001326 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001327 * the address space of the traced process, and can't
1328 * be manipulated by strace. In order to prevent the
1329 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +01001330 * __sa_handler we cast the function pointers to long. */
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001331 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001332 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001333 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001334 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001335 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001336 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001337 else
1338 tprintf("{%#lx, ", (long) sa.__sa_handler);
1339 /* Questionable code below.
1340 * Kernel won't handle sys_rt_sigaction
1341 * with wrong sigset size (just returns EINVAL)
1342 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1343 * and we always use smaller memcpy. */
1344 sigemptyset(&sigset);
Denys Vlasenko9472a272013-02-12 11:43:46 +01001345#if defined(SPARC) || defined(SPARC64)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001346 if (tcp->u_arg[4] <= sizeof(sigset))
1347 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1348#else
1349 if (tcp->u_arg[3] <= sizeof(sigset))
1350 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1351#endif
1352 else
1353 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1354 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001355 tprints(", ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001356 printflags(sigact_flags, sa.sa_flags, "SA_???");
1357#ifdef SA_RESTORER
1358 if (sa.sa_flags & SA_RESTORER)
1359 tprintf(", %p", sa.sa_restorer);
1360#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001361 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001362
1363 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001364 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001365 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001366 else
Denys Vlasenko9472a272013-02-12 11:43:46 +01001367#if defined(SPARC) || defined(SPARC64)
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001368 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1369#elif defined(ALPHA)
1370 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1371#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001372 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001373#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001374 return 0;
1375}
1376
Denys Vlasenko1d632462009-04-14 12:51:00 +00001377int
1378sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001379{
1380 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001381
1382 if (exiting(tcp)) {
1383 if (syserror(tcp))
1384 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001385 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1386 &sigset, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001387 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001388 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001389 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001390 }
1391 return 0;
1392}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001393
1394int
1395sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001396{
1397 if (entering(tcp)) {
1398 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001399 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001400 tprints("[?]");
Nate Sammons4a121431999-04-06 01:19:39 +00001401 else
1402 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001403 }
1404 return 0;
1405}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001406
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001407static void
1408print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1409{
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001410 printsignal(sig);
1411 tprints(", ");
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001412 printsiginfo_at(tcp, uinfo);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001413}
1414
Denys Vlasenko1d632462009-04-14 12:51:00 +00001415int
1416sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001417{
1418 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001419 tprintf("%lu, ", tcp->u_arg[0]);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001420 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1421 }
1422 return 0;
1423}
1424
1425int
1426sys_rt_tgsigqueueinfo(struct tcb *tcp)
1427{
1428 if (entering(tcp)) {
1429 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1430 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001431 }
1432 return 0;
1433}
1434
Denys Vlasenko1d632462009-04-14 12:51:00 +00001435int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001436{
1437 if (entering(tcp)) {
1438 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001439
Roland McGratha39c5a12002-12-17 05:10:37 +00001440 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00001441 &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001442 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001443 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001444 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001445 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001446 /* This is the only "return" parameter, */
1447 if (tcp->u_arg[1] != 0)
1448 return 0;
1449 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001450 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001451 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001452 else if (tcp->u_arg[1] != 0) {
1453 /* syscall exit, and u_arg[1] wasn't NULL */
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001454 printsiginfo_at(tcp, tcp->u_arg[1]);
1455 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001456 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001457 else {
1458 /* syscall exit, and u_arg[1] was NULL */
1459 return 0;
1460 }
1461 print_timespec(tcp, tcp->u_arg[2]);
1462 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001463 return 0;
1464};
1465
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001466int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001467sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001468{
1469 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001470 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001471 return 0;
1472}
1473
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001474static int
1475do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001476{
1477 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001478 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001479 tprints(", ");
Roland McGrathf46ccd32007-08-02 01:15:59 +00001480 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001481 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001482 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001483 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001484 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1485 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001486 }
1487 return 0;
1488}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001489
1490int
1491sys_signalfd(struct tcb *tcp)
1492{
1493 return do_signalfd(tcp, -1);
1494}
1495
1496int
1497sys_signalfd4(struct tcb *tcp)
1498{
1499 return do_signalfd(tcp, 3);
1500}