blob: 7f8ed52d5487bc7e067e19a0ce911889b9333cbc [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
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020092
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000093#ifdef HAVE_SIGACTION
94
H.J. Lu35be5812012-04-16 13:00:01 +020095#if defined I386 || defined X86_64 || defined X32
Roland McGrath2638cb42002-12-15 23:58:41 +000096/* The libc headers do not define this constant since it should only be
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020097 used by the implementation. So we define it here. */
Roland McGrath2638cb42002-12-15 23:58:41 +000098# ifndef SA_RESTORER
99# define SA_RESTORER 0x04000000
100# endif
101#endif
102
Roland McGrathd9f816f2004-09-04 03:39:20 +0000103static const struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000104#ifdef SA_RESTORER
105 { SA_RESTORER, "SA_RESTORER" },
106#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000107#ifdef SA_STACK
108 { SA_STACK, "SA_STACK" },
109#endif
110#ifdef SA_RESTART
111 { SA_RESTART, "SA_RESTART" },
112#endif
113#ifdef SA_INTERRUPT
114 { SA_INTERRUPT, "SA_INTERRUPT" },
115#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000116#ifdef SA_NODEFER
117 { SA_NODEFER, "SA_NODEFER" },
118#endif
119#if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000120 { SA_NOMASK, "SA_NOMASK" },
121#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000122#ifdef SA_RESETHAND
123 { SA_RESETHAND, "SA_RESETHAND" },
124#endif
125#if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126 { SA_ONESHOT, "SA_ONESHOT" },
127#endif
128#ifdef SA_SIGINFO
129 { SA_SIGINFO, "SA_SIGINFO" },
130#endif
131#ifdef SA_RESETHAND
132 { SA_RESETHAND, "SA_RESETHAND" },
133#endif
134#ifdef SA_ONSTACK
135 { SA_ONSTACK, "SA_ONSTACK" },
136#endif
137#ifdef SA_NODEFER
138 { SA_NODEFER, "SA_NODEFER" },
139#endif
140#ifdef SA_NOCLDSTOP
141 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
142#endif
143#ifdef SA_NOCLDWAIT
144 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
145#endif
146#ifdef _SA_BSDCALL
147 { _SA_BSDCALL, "_SA_BSDCALL" },
148#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500149#ifdef SA_NOPTRACE
150 { SA_NOPTRACE, "SA_NOPTRACE" },
151#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000152 { 0, NULL },
153};
154
Roland McGrathd9f816f2004-09-04 03:39:20 +0000155static const struct xlat sigprocmaskcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000156 { SIG_BLOCK, "SIG_BLOCK" },
157 { SIG_UNBLOCK, "SIG_UNBLOCK" },
158 { SIG_SETMASK, "SIG_SETMASK" },
159#ifdef SIG_SETMASK32
160 { SIG_SETMASK32,"SIG_SETMASK32" },
161#endif
162 { 0, NULL },
163};
164
165#endif /* HAVE_SIGACTION */
166
Nate Sammonsce780fc1999-03-29 23:23:13 +0000167/* Anonymous realtime signals. */
168/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
169 constant. This is what we want. Otherwise, just use SIGRTMIN. */
170#ifdef SIGRTMIN
171#ifndef __SIGRTMIN
172#define __SIGRTMIN SIGRTMIN
173#define __SIGRTMAX SIGRTMAX /* likewise */
174#endif
175#endif
176
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200177/* Note on the size of sigset_t:
178 *
179 * In glibc, sigset_t is an array with space for 1024 bits (!),
180 * even though all arches supported by Linux have only 64 signals
181 * except MIPS, which has 128. IOW, it is 128 bytes long.
182 *
183 * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
184 * However, some old syscall return only 32 lower bits (one word).
185 * Example: sys_sigpending vs sys_rt_sigpending.
186 *
187 * Be aware of this fact when you try to
188 * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
189 * - sizeof(sigset_t) is much bigger than you think,
190 * it may overflow tcp->u_arg[] array, and it may try to copy more data
191 * than is really available in <something>.
192 * Similarly,
193 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
194 * may be a bad idea: it'll try to read much more data than needed
195 * to fetch a sigset_t.
196 * Use (NSIG / 8) as a size instead.
197 */
198
Roland McGrathee36ce12004-09-04 03:53:10 +0000199const char *
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200200signame(int sig)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000201{
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200202 static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
203
204 if (sig >= 0 && sig < nsignals)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000205 return signalent[sig];
206#ifdef SIGRTMIN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200207 if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
208 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000209 return buf;
210 }
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200211#endif
212 sprintf(buf, "%d", sig);
213 return buf;
Nate Sammonsce780fc1999-03-29 23:23:13 +0000214}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000215
Nate Sammons4a121431999-04-06 01:19:39 +0000216static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200217long_to_sigset(long l, sigset_t *s)
Nate Sammons4a121431999-04-06 01:19:39 +0000218{
219 sigemptyset(s);
220 *(long *)s = l;
221}
222
223static int
Denys Vlasenko12014262011-05-30 14:00:14 +0200224copy_sigset_len(struct tcb *tcp, long addr, sigset_t *s, int len)
Nate Sammons4a121431999-04-06 01:19:39 +0000225{
226 if (len > sizeof(*s))
227 len = sizeof(*s);
228 sigemptyset(s);
229 if (umoven(tcp, addr, len, (char *)s) < 0)
230 return -1;
231 return 0;
232}
233
Nate Sammons4a121431999-04-06 01:19:39 +0000234/* Original sigset is unsigned long */
235#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
Nate Sammons4a121431999-04-06 01:19:39 +0000236
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000237static const char *
238sprintsigmask(const char *str, sigset_t *mask, int rt)
239/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000240{
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200241 /* Was [8 * sizeof(sigset_t) * 8], but
242 * glibc sigset_t is huge (1024 bits = 128 *bytes*),
243 * and we were ending up with 8k (!) buffer here.
244 *
245 * No Unix system can have sig > 255
246 * (waitpid API won't be able to indicate death from one)
247 * and sig 0 doesn't exist either.
248 * Therefore max possible no of sigs is 255: 1..255
249 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100250 static char outstr[8 * (255 * 2 / 3)];
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200251
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000252 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000253 int maxsigs;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100254 int show_members;
255 char sep;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000256 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000257
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200258 /* Note: nsignals = ARRAY_SIZE(signalent[]),
259 * and that array may not have SIGRTnn.
260 */
Nate Sammons4a121431999-04-06 01:19:39 +0000261 maxsigs = nsignals;
262#ifdef __SIGRTMAX
263 if (rt)
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200264 maxsigs = __SIGRTMAX + 1; /* instead */
Nate Sammons4a121431999-04-06 01:19:39 +0000265#endif
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100266 s = stpcpy(outstr, str);
267 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000268 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000269 if (sigismember(mask, i) == 1)
270 nsigs++;
271 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100272
273 /* 1: show mask members, 0: show those which are NOT in mask */
274 show_members = (nsigs < nsignals * 2 / 3);
275 if (!show_members)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000276 *s++ = '~';
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100277
278 sep = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000279 for (i = 1; i < maxsigs; i++) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100280 if (sigismember(mask, i) == show_members) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100281 *s++ = sep;
John Hughesbdf48f52001-03-06 15:08:09 +0000282 if (i < nsignals) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100283 s = stpcpy(s, signalent[i] + 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000284 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000285#ifdef SIGRTMIN
286 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200287 s += sprintf(s, "RT_%u", i - __SIGRTMIN);
Roland McGrath90b4cb52003-09-23 22:19:32 +0000288 }
289#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000290 else {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200291 s += sprintf(s, "%u", i);
John Hughesbdf48f52001-03-06 15:08:09 +0000292 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100293 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000294 }
295 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100296 if (sep == '[')
297 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000298 *s++ = ']';
299 *s = '\0';
300 return outstr;
301}
302
303static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200304printsigmask(sigset_t *mask, int rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000305{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200306 tprints(sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000307}
308
309void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200310printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000311{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200312 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000313}
314
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000315void
316print_sigset(struct tcb *tcp, long addr, int rt)
317{
318 sigset_t ss;
319
320 if (!addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200321 tprints("NULL");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000322 else if (copy_sigset(tcp, addr, &ss) < 0)
323 tprintf("%#lx", addr);
324 else
325 printsigmask(&ss, rt);
326}
327
John Hughes58265892001-10-18 15:13:53 +0000328#ifndef ILL_ILLOPC
329#define ILL_ILLOPC 1 /* illegal opcode */
330#define ILL_ILLOPN 2 /* illegal operand */
331#define ILL_ILLADR 3 /* illegal addressing mode */
332#define ILL_ILLTRP 4 /* illegal trap */
333#define ILL_PRVOPC 5 /* privileged opcode */
334#define ILL_PRVREG 6 /* privileged register */
335#define ILL_COPROC 7 /* coprocessor error */
336#define ILL_BADSTK 8 /* internal stack error */
337#define FPE_INTDIV 1 /* integer divide by zero */
338#define FPE_INTOVF 2 /* integer overflow */
339#define FPE_FLTDIV 3 /* floating point divide by zero */
340#define FPE_FLTOVF 4 /* floating point overflow */
341#define FPE_FLTUND 5 /* floating point underflow */
342#define FPE_FLTRES 6 /* floating point inexact result */
343#define FPE_FLTINV 7 /* floating point invalid operation */
344#define FPE_FLTSUB 8 /* subscript out of range */
345#define SEGV_MAPERR 1 /* address not mapped to object */
346#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
347#define BUS_ADRALN 1 /* invalid address alignment */
348#define BUS_ADRERR 2 /* non-existant physical address */
349#define BUS_OBJERR 3 /* object specific hardware error */
350#define TRAP_BRKPT 1 /* process breakpoint */
351#define TRAP_TRACE 2 /* process trace trap */
352#define CLD_EXITED 1 /* child has exited */
353#define CLD_KILLED 2 /* child was killed */
354#define CLD_DUMPED 3 /* child terminated abnormally */
355#define CLD_TRAPPED 4 /* traced child has trapped */
356#define CLD_STOPPED 5 /* child has stopped */
357#define CLD_CONTINUED 6 /* stopped child has continued */
358#define POLL_IN 1 /* data input available */
359#define POLL_OUT 2 /* output buffers available */
360#define POLL_MSG 3 /* input message available */
361#define POLL_ERR 4 /* i/o error */
362#define POLL_PRI 5 /* high priority input available */
363#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000364#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000365#define SI_USER 0 /* sent by kill, sigsend, raise */
366#define SI_QUEUE -1 /* sent by sigqueue */
367#define SI_TIMER -2 /* sent by timer expiration */
368#define SI_MESGQ -3 /* sent by real time mesq state change */
369#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000370#define SI_SIGIO -5 /* sent by SIGIO */
371#define SI_TKILL -6 /* sent by tkill */
372#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100373#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000374
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100375#ifndef SI_FROMUSER
376# define SI_FROMUSER(sip) ((sip)->si_code <= 0)
Denys Vlasenko84703742012-02-25 02:38:52 +0100377#endif
John Hughes58265892001-10-18 15:13:53 +0000378
Roland McGrathd9f816f2004-09-04 03:39:20 +0000379static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000380#ifdef SI_KERNEL
381 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000382#endif
383#ifdef SI_USER
384 { SI_USER, "SI_USER" },
385#endif
John Hughes58265892001-10-18 15:13:53 +0000386#ifdef SI_QUEUE
387 { SI_QUEUE, "SI_QUEUE" },
388#endif
389#ifdef SI_TIMER
390 { SI_TIMER, "SI_TIMER" },
391#endif
John Hughes58265892001-10-18 15:13:53 +0000392#ifdef SI_MESGQ
393 { SI_MESGQ, "SI_MESGQ" },
394#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000395#ifdef SI_ASYNCIO
396 { SI_ASYNCIO, "SI_ASYNCIO" },
397#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000398#ifdef SI_SIGIO
399 { SI_SIGIO, "SI_SIGIO" },
400#endif
401#ifdef SI_TKILL
402 { SI_TKILL, "SI_TKILL" },
403#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000404#ifdef SI_ASYNCNL
405 { SI_ASYNCNL, "SI_ASYNCNL" },
406#endif
407#ifdef SI_NOINFO
408 { SI_NOINFO, "SI_NOINFO" },
409#endif
410#ifdef SI_LWP
411 { SI_LWP, "SI_LWP" },
412#endif
John Hughes58265892001-10-18 15:13:53 +0000413 { 0, NULL },
414};
415
Roland McGrathd9f816f2004-09-04 03:39:20 +0000416static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000417 { ILL_ILLOPC, "ILL_ILLOPC" },
418 { ILL_ILLOPN, "ILL_ILLOPN" },
419 { ILL_ILLADR, "ILL_ILLADR" },
420 { ILL_ILLTRP, "ILL_ILLTRP" },
421 { ILL_PRVOPC, "ILL_PRVOPC" },
422 { ILL_PRVREG, "ILL_PRVREG" },
423 { ILL_COPROC, "ILL_COPROC" },
424 { ILL_BADSTK, "ILL_BADSTK" },
425 { 0, NULL },
426};
427
Roland McGrathd9f816f2004-09-04 03:39:20 +0000428static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000429 { FPE_INTDIV, "FPE_INTDIV" },
430 { FPE_INTOVF, "FPE_INTOVF" },
431 { FPE_FLTDIV, "FPE_FLTDIV" },
432 { FPE_FLTOVF, "FPE_FLTOVF" },
433 { FPE_FLTUND, "FPE_FLTUND" },
434 { FPE_FLTRES, "FPE_FLTRES" },
435 { FPE_FLTINV, "FPE_FLTINV" },
436 { FPE_FLTSUB, "FPE_FLTSUB" },
437 { 0, NULL },
438};
439
Roland McGrathd9f816f2004-09-04 03:39:20 +0000440static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000441 { TRAP_BRKPT, "TRAP_BRKPT" },
442 { TRAP_TRACE, "TRAP_TRACE" },
443 { 0, NULL },
444};
445
Roland McGrathd9f816f2004-09-04 03:39:20 +0000446static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000447 { CLD_EXITED, "CLD_EXITED" },
448 { CLD_KILLED, "CLD_KILLED" },
449 { CLD_DUMPED, "CLD_DUMPED" },
450 { CLD_TRAPPED, "CLD_TRAPPED" },
451 { CLD_STOPPED, "CLD_STOPPED" },
452 { CLD_CONTINUED,"CLD_CONTINUED" },
453 { 0, NULL },
454};
455
Roland McGrathd9f816f2004-09-04 03:39:20 +0000456static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000457 { POLL_IN, "POLL_IN" },
458 { POLL_OUT, "POLL_OUT" },
459 { POLL_MSG, "POLL_MSG" },
460 { POLL_ERR, "POLL_ERR" },
461 { POLL_PRI, "POLL_PRI" },
462 { POLL_HUP, "POLL_HUP" },
463 { 0, NULL },
464};
465
Roland McGrathd9f816f2004-09-04 03:39:20 +0000466static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000467#ifdef PROF_SIG
468 { PROF_SIG, "PROF_SIG" },
469#endif
470 { 0, NULL },
471};
472
473#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000474static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000475#ifdef EMT_TAGOVF
476 { EMT_TAGOVF, "EMT_TAGOVF" },
477#endif
478 { 0, NULL },
479};
480#endif
481
Roland McGrathd9f816f2004-09-04 03:39:20 +0000482static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000483 { SEGV_MAPERR, "SEGV_MAPERR" },
484 { SEGV_ACCERR, "SEGV_ACCERR" },
485 { 0, NULL },
486};
487
Roland McGrathd9f816f2004-09-04 03:39:20 +0000488static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000489 { BUS_ADRALN, "BUS_ADRALN" },
490 { BUS_ADRERR, "BUS_ADRERR" },
491 { BUS_OBJERR, "BUS_OBJERR" },
492 { 0, NULL },
493};
494
495void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000496printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000497{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000498 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000499
500 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200501 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000502 return;
503 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200504 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000505 printsignal(sip->si_signo);
506 code = xlookup(siginfo_codes, sip->si_code);
507 if (!code) {
508 switch (sip->si_signo) {
509 case SIGTRAP:
510 code = xlookup(sigtrap_codes, sip->si_code);
511 break;
512 case SIGCHLD:
513 code = xlookup(sigchld_codes, sip->si_code);
514 break;
515 case SIGPOLL:
516 code = xlookup(sigpoll_codes, sip->si_code);
517 break;
518 case SIGPROF:
519 code = xlookup(sigprof_codes, sip->si_code);
520 break;
521 case SIGILL:
522 code = xlookup(sigill_codes, sip->si_code);
523 break;
524#ifdef SIGEMT
525 case SIGEMT:
526 code = xlookup(sigemt_codes, sip->si_code);
527 break;
528#endif
529 case SIGFPE:
530 code = xlookup(sigfpe_codes, sip->si_code);
531 break;
532 case SIGSEGV:
533 code = xlookup(sigsegv_codes, sip->si_code);
534 break;
535 case SIGBUS:
536 code = xlookup(sigbus_codes, sip->si_code);
537 break;
538 }
539 }
540 if (code)
541 tprintf(", si_code=%s", code);
542 else
543 tprintf(", si_code=%#x", sip->si_code);
544#ifdef SI_NOINFO
545 if (sip->si_code != SI_NOINFO)
546#endif
547 {
548 if (sip->si_errno) {
549 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
550 tprintf(", si_errno=%d", sip->si_errno);
551 else
552 tprintf(", si_errno=%s",
553 errnoent[sip->si_errno]);
554 }
555#ifdef SI_FROMUSER
556 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000557 tprintf(", si_pid=%lu, si_uid=%lu",
558 (unsigned long) sip->si_pid,
559 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000560 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000561#ifdef SI_USER
562 case SI_USER:
563 break;
564#endif
565#ifdef SI_TKILL
566 case SI_TKILL:
567 break;
568#endif
John Hughes58265892001-10-18 15:13:53 +0000569#ifdef SI_TIMER
570 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000571 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000572 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000573#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000574 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000575 if (!sip->si_ptr)
576 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000577 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200578 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000579 else
580 tprintf(", si_value={int=%u, ptr=%#lx}",
581 sip->si_int,
582 (unsigned long) sip->si_ptr);
583 break;
John Hughes58265892001-10-18 15:13:53 +0000584 }
John Hughes58265892001-10-18 15:13:53 +0000585 }
586 else
587#endif /* SI_FROMUSER */
588 {
589 switch (sip->si_signo) {
590 case SIGCHLD:
591 tprintf(", si_pid=%ld, si_status=",
592 (long) sip->si_pid);
593 if (sip->si_code == CLD_EXITED)
594 tprintf("%d", sip->si_status);
595 else
596 printsignal(sip->si_status);
John Hughes58265892001-10-18 15:13:53 +0000597 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200598 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000599 else
H.J. Lu2bb45812012-04-15 11:17:13 -0700600 tprintf(", si_utime=%llu, si_stime=%llu",
601 (unsigned long long) sip->si_utime,
602 (unsigned long long) sip->si_stime);
John Hughes58265892001-10-18 15:13:53 +0000603 break;
604 case SIGILL: case SIGFPE:
605 case SIGSEGV: case SIGBUS:
606 tprintf(", si_addr=%#lx",
607 (unsigned long) sip->si_addr);
608 break;
609 case SIGPOLL:
610 switch (sip->si_code) {
611 case POLL_IN: case POLL_OUT: case POLL_MSG:
612 tprintf(", si_band=%ld",
613 (long) sip->si_band);
614 break;
615 }
616 break;
John Hughes58265892001-10-18 15:13:53 +0000617 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000618 if (sip->si_pid || sip->si_uid)
619 tprintf(", si_pid=%lu, si_uid=%lu",
620 (unsigned long) sip->si_pid,
621 (unsigned long) sip->si_uid);
622 if (!sip->si_ptr)
623 break;
John Hughes58265892001-10-18 15:13:53 +0000624 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200625 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000626 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000627 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000628 sip->si_int,
629 (unsigned long) sip->si_ptr);
630 }
Roland McGratha39c5a12002-12-17 05:10:37 +0000631
John Hughes58265892001-10-18 15:13:53 +0000632 }
633 }
634 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200635 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000636}
637
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +0100638void
639printsiginfo_at(struct tcb *tcp, long addr)
640{
641 siginfo_t si;
642 if (!addr) {
643 tprints("NULL");
644 return;
645 }
646 if (syserror(tcp)) {
647 tprintf("%#lx", addr);
648 return;
649 }
650 if (umove(tcp, addr, &si) < 0) {
651 tprints("{???}");
652 return;
653 }
654 printsiginfo(&si, verbose(tcp));
655}
656
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000657int
Denys Vlasenko12014262011-05-30 14:00:14 +0200658sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000659{
660 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000661 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000662 long_to_sigset(tcp->u_arg[0], &sigm);
663 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000664 }
665 else if (!syserror(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_rval, &sigm);
668 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000669
670 return RVAL_HEX | RVAL_STR;
671 }
672 return 0;
673}
674
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000675#ifdef HAVE_SIGACTION
676
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000677struct old_sigaction {
Denys Vlasenko86d94842013-02-08 12:59:13 +0100678 /* sa_handler may be a libc #define, need to use other name: */
679 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000680 unsigned long sa_mask;
681 unsigned long sa_flags;
682 void (*sa_restorer)(void);
683};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000684
685int
Denys Vlasenko12014262011-05-30 14:00:14 +0200686sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000687{
688 long addr;
John Hughes1e4cb342001-03-06 09:25:46 +0000689 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000690 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000691
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000692 if (entering(tcp)) {
693 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200694 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000695 addr = tcp->u_arg[1];
696 } else
697 addr = tcp->u_arg[2];
698 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200699 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000700 else if (!verbose(tcp))
701 tprintf("%#lx", addr);
702 else if (umove(tcp, addr, &sa) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200703 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000704 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000705 /* Architectures using function pointers, like
706 * hppa, may need to manipulate the function pointer
707 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +0100708 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000709 * the address space of the traced process, and can't
710 * be manipulated by strace. In order to prevent the
711 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +0100712 * __sa_handler we cast the function pointers to long. */
713 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200714 tprints("{SIG_ERR, ");
Denys Vlasenko86d94842013-02-08 12:59:13 +0100715 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200716 tprints("{SIG_DFL, ");
Denys Vlasenko86d94842013-02-08 12:59:13 +0100717 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200718 tprints("{SIG_IGN, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100719 else
Denys Vlasenko86d94842013-02-08 12:59:13 +0100720 tprintf("{%#lx, ", (long) sa.__sa_handler);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100721 long_to_sigset(sa.sa_mask, &sigset);
722 printsigmask(&sigset, 0);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100723 tprints(", ");
724 printflags(sigact_flags, sa.sa_flags, "SA_???");
725#ifdef SA_RESTORER
726 if (sa.sa_flags & SA_RESTORER)
727 tprintf(", %p", sa.sa_restorer);
728#endif
729 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000730 }
731 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200732 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000733 else
734 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000735 return 0;
736}
737
738int
Denys Vlasenko12014262011-05-30 14:00:14 +0200739sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000740{
741 if (entering(tcp)) {
742 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200743 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000744 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000745 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200746 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000747 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000748 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200749 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000750 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000751 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200752 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000753 break;
754 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000755 tprintf("%#lx", tcp->u_arg[1]);
756 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000757 return 0;
758 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000759 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000760 switch (tcp->u_rval) {
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100761 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000762 tcp->auxstr = "SIG_ERR"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100763 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000764 tcp->auxstr = "SIG_DFL"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100765 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000766 tcp->auxstr = "SIG_IGN"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100767 default:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000768 tcp->auxstr = NULL;
769 }
770 return RVAL_HEX | RVAL_STR;
771 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000772 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000773}
774
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000775#endif /* HAVE_SIGACTION */
776
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000777int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000778sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000779{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000780#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000781 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200782 struct arm_sigcontext {
783 unsigned long trap_no;
784 unsigned long error_code;
785 unsigned long oldmask;
786 unsigned long arm_r0;
787 unsigned long arm_r1;
788 unsigned long arm_r2;
789 unsigned long arm_r3;
790 unsigned long arm_r4;
791 unsigned long arm_r5;
792 unsigned long arm_r6;
793 unsigned long arm_r7;
794 unsigned long arm_r8;
795 unsigned long arm_r9;
796 unsigned long arm_r10;
797 unsigned long arm_fp;
798 unsigned long arm_ip;
799 unsigned long arm_sp;
800 unsigned long arm_lr;
801 unsigned long arm_pc;
802 unsigned long arm_cpsr;
803 unsigned long fault_address;
804 };
805 struct arm_ucontext {
806 unsigned long uc_flags;
807 unsigned long uc_link; /* struct ucontext* */
808 /* The next three members comprise stack_t struct: */
809 unsigned long ss_sp; /* void* */
810 unsigned long ss_flags; /* int */
811 unsigned long ss_size; /* size_t */
812 struct arm_sigcontext sc;
813 /* These two members are sigset_t: */
814 unsigned long uc_sigmask[2];
815 /* more fields follow, which we aren't interested in */
816 };
817 struct arm_ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100818 sigset_t sigm;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200819 if (umove(tcp, arm_regs.ARM_sp, &uc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000820 return 0;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200821 /* Kernel fills out uc.sc.oldmask too when it sets up signal stack,
822 * but for sigmask restore, sigreturn syscall uses uc.uc_sigmask instead.
823 * long_to_sigset(uc.sc.oldmask, &sigm);
824 * tprints(sprintsigmask(") (mask ", &sigm, 0));
825 */
826 sigemptyset(&sigm);
827 ((uint32_t*)&sigm)[0] = uc.uc_sigmask[0];
828 ((uint32_t*)&sigm)[1] = uc.uc_sigmask[1];
829 tprints(sprintsigmask(") (mask ", &sigm, /*rt:*/ 1));
Roland McGrath0f87c492003-06-03 23:29:04 +0000830 }
Roland McGrath0f87c492003-06-03 23:29:04 +0000831#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +0000832 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200833 long usp;
834 struct sigcontext_struct sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200835 if (upeek(tcp->pid, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000836 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100837 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000838 return 0;
Andreas Schwaba7920a82012-01-17 17:56:44 +0100839 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000840 }
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200841#elif defined(I386) || defined(X86_64)
842# if defined(X86_64)
843 if (current_personality == 0) /* 64-bit */
844 return 0;
845# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000846 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200847 struct i386_sigcontext_struct {
848 uint16_t gs, __gsh;
849 uint16_t fs, __fsh;
850 uint16_t es, __esh;
851 uint16_t ds, __dsh;
852 uint32_t edi;
853 uint32_t esi;
854 uint32_t ebp;
855 uint32_t esp;
856 uint32_t ebx;
857 uint32_t edx;
858 uint32_t ecx;
859 uint32_t eax;
860 uint32_t trapno;
861 uint32_t err;
862 uint32_t eip;
863 uint16_t cs, __csh;
864 uint32_t eflags;
865 uint32_t esp_at_signal;
866 uint16_t ss, __ssh;
867 uint32_t i387;
868 uint32_t oldmask;
869 uint32_t cr2;
870 };
871 struct i386_fpstate {
872 uint32_t cw;
873 uint32_t sw;
874 uint32_t tag;
875 uint32_t ipoff;
876 uint32_t cssel;
877 uint32_t dataoff;
878 uint32_t datasel;
879 uint8_t st[8][10]; /* 8*10 bytes: FP regs */
880 uint16_t status;
881 uint16_t magic;
882 uint32_t fxsr_env[6];
883 uint32_t mxcsr;
884 uint32_t reserved;
885 uint8_t stx[8][16]; /* 8*16 bytes: FP regs, each padded to 16 bytes */
886 uint8_t xmm[8][16]; /* 8 XMM regs */
887 uint32_t padding1[44];
888 uint32_t padding2[12]; /* union with struct _fpx_sw_bytes */
889 };
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200890 struct {
891 struct i386_sigcontext_struct sc;
892 struct i386_fpstate fp;
893 uint32_t extramask[1];
894 } signal_stack;
895 /* On i386, sc is followed on stack by struct fpstate
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100896 * and after it an additional u32 extramask[1] which holds
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200897 * upper half of the mask.
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100898 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000899 sigset_t sigm;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200900 if (umove(tcp, *i386_esp_ptr, &signal_stack) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000901 return 0;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200902 sigemptyset(&sigm);
903 ((uint32_t*)&sigm)[0] = signal_stack.sc.oldmask;
904 ((uint32_t*)&sigm)[1] = signal_stack.extramask[0];
905 tprints(sprintsigmask(") (mask ", &sigm, /*RT sigs too?:*/ 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000906 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000907#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000908 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200909 struct sigcontext sc;
910 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100911 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000912 /* offset of sigcontext in the kernel's sigframe structure: */
913# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200914 if (upeek(tcp->pid, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000915 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000916 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000917 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200918 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100919 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100920 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000921 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000922#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +0000923 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200924 long esp;
925 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100926 sigset_t sigm;
Anton Blanchardce6e33b2013-06-26 15:53:33 +0200927
928 esp = ppc_regs.gpr[1];
929
Andreas Schwabedb39342010-02-23 00:18:51 +0100930 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200931#ifdef POWERPC64
932 if (current_personality == 0)
933 esp += 128;
934 else
935 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +0100936#else
937 esp += 64;
938#endif
Roland McGrath0f87c492003-06-03 23:29:04 +0000939 if (umove(tcp, esp, &sc) < 0)
940 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100941 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100942 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000943 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000944#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000945 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200946 long usp;
947 struct sigcontext sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100948 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200949 if (upeek(tcp->pid, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000950 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000951 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000952 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100953 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100954 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000955 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000956#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000957 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200958 long fp;
959 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100960 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200961 if (upeek(tcp->pid, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000962 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000963 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000964 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100965 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100966 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000967 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100968#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200969 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200970 long i1;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200971 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100972 sigset_t sigm;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100973 i1 = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200974 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100975 perror_msg("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000976 return 0;
977 }
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100978 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100979 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000980 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100981#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +0000982 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
983 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200984 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200985 long sp;
986 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100987 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200988 if (upeek(tcp->pid, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000989 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +0000990 /* There are six words followed by a 128-byte siginfo. */
991 sp = sp + 6 * 4 + 128;
992 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000993 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100994 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100995 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath542c2c62008-05-20 01:11:56 +0000996 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000997#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200998 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200999 long sp;
1000 struct pt_regs regs;
1001 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001002 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001003 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001004 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenko56a52982011-06-09 01:36:29 +02001005 return 0;
1006 }
Roland McGrath576b7842007-11-04 00:00:00 +00001007 sp = regs.regs[29];
1008 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +02001009 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001010 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001011 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkermanf90da011999-10-31 21:15:38 +00001012 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001013#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001014 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001015 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001016 long regs[PT_MAX+1];
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001017 sigset_t sigm;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001018 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001019 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001020 return 0;
1021 }
1022 if (umove(tcp, regs[PT_USP], &sc) < 0)
1023 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001024 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001025 tprints(sprintsigmask(") (mask ", &sigm, 0));
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001026 }
Chris Metcalfc8c66982009-12-28 10:00:15 -05001027#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001028 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001029 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001030 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001031
1032 /* offset of ucontext in the kernel's sigframe structure */
Chris Metcalf5c0796f2013-05-21 20:25:22 -04001033# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(siginfo_t)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001034 if (umove(tcp, tile_regs.sp + SIGFRAME_UC_OFFSET, &uc) < 0)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001035 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001036 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001037 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001038 tprints(sprintsigmask(") (mask ", &sigm, 0));
Chris Metcalfc8c66982009-12-28 10:00:15 -05001039 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001040#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001041 /* TODO: Verify that this is correct... */
1042 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001043 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001044 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001045 sigset_t sigm;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001046 /* Read r1, the stack pointer. */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001047 if (upeek(tcp->pid, 1 * 4, &sp) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001048 return 0;
1049 if (umove(tcp, sp, &sc) < 0)
1050 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001051 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001052 tprints(sprintsigmask(") (mask ", &sigm, 0));
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001053 }
Chris Zankel8f636ed2013-03-25 10:22:07 -07001054#elif defined(XTENSA)
1055 /* Xtensa only has rt_sys_sigreturn */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001056#else
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001057# warning No sys_sigreturn() for this architecture
1058# warning (no problem, just a reminder :-)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001059#endif
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001060 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001061}
1062
1063int
Denys Vlasenko12014262011-05-30 14:00:14 +02001064sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001065{
1066 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001067 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001068 long_to_sigset(tcp->u_rval, &sigm);
1069 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001070 }
1071 return RVAL_HEX | RVAL_STR;
1072}
1073
1074int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001075sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001076{
1077 if (entering(tcp)) {
1078 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001079 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001080 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001081 }
1082 return 0;
1083}
1084
Denys Vlasenko84703742012-02-25 02:38:52 +01001085#if !defined SS_ONSTACK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001086#define SS_ONSTACK 1
1087#define SS_DISABLE 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001088#endif
1089
Roland McGrathd9f816f2004-09-04 03:39:20 +00001090static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001091 { SS_ONSTACK, "SS_ONSTACK" },
1092 { SS_DISABLE, "SS_DISABLE" },
1093 { 0, NULL },
1094};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001095
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001096static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001097print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001098{
1099 stack_t ss;
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001100
1101 if (!addr) {
1102 tprints("NULL");
1103 } else if (umove(tcp, addr, &ss) < 0) {
1104 tprintf("%#lx", addr);
1105 } else {
1106 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1107 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
1108 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1109 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001110}
1111
1112int
Denys Vlasenko12014262011-05-30 14:00:14 +02001113sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001114{
1115 if (entering(tcp)) {
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001116 print_stack_t(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001117 }
1118 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001119 tprints(", ");
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001120 print_stack_t(tcp, tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001121 }
1122 return 0;
1123}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001124
1125#ifdef HAVE_SIGACTION
1126
1127int
Denys Vlasenko12014262011-05-30 14:00:14 +02001128sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001129{
1130#ifdef ALPHA
Mike Frysingerdde045c2012-03-15 00:45:33 -04001131 sigset_t ss;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001132 if (entering(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001133 /*
1134 * Alpha/OSF is different: it doesn't pass in two pointers,
1135 * but rather passes in the new bitmask as an argument and
1136 * then returns the old bitmask. This "works" because we
1137 * only have 64 signals to worry about. If you want more,
1138 * use of the rt_sigprocmask syscall is required.
1139 * Alpha:
1140 * old = osf_sigprocmask(how, new);
1141 * Everyone else:
1142 * ret = sigprocmask(how, &new, &old, ...);
1143 */
1144 memcpy(&ss, &tcp->u_arg[1], sizeof(long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001145 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001146 tprints(", ");
Mike Frysingerdde045c2012-03-15 00:45:33 -04001147 printsigmask(&ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001148 }
1149 else if (!syserror(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001150 memcpy(&ss, &tcp->u_rval, sizeof(long));
1151 tcp->auxstr = sprintsigmask("old mask ", &ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001152 return RVAL_HEX | RVAL_STR;
1153 }
1154#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001155 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001156 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001157 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001158 print_sigset(tcp, tcp->u_arg[1], 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001159 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001160 }
1161 else {
1162 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001163 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001164 else if (syserror(tcp))
1165 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001166 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001167 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001168 }
1169#endif /* !ALPHA */
1170 return 0;
1171}
1172
1173#endif /* HAVE_SIGACTION */
1174
1175int
Denys Vlasenko12014262011-05-30 14:00:14 +02001176sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001177{
1178 if (entering(tcp)) {
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001179 tprintf("%ld, %s",
1180 widen_to_long(tcp->u_arg[0]),
1181 signame(tcp->u_arg[1])
1182 );
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001183 }
1184 return 0;
1185}
1186
Roland McGrath8ffc3522003-07-09 09:47:49 +00001187int
Denys Vlasenko12014262011-05-30 14:00:14 +02001188sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001189{
1190 if (entering(tcp)) {
1191 tprintf("%ld, %ld, %s",
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001192 widen_to_long(tcp->u_arg[0]),
1193 widen_to_long(tcp->u_arg[1]),
1194 signame(tcp->u_arg[2])
1195 );
Roland McGrath8ffc3522003-07-09 09:47:49 +00001196 }
1197 return 0;
1198}
Roland McGrath8ffc3522003-07-09 09:47:49 +00001199
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001200int
Denys Vlasenko12014262011-05-30 14:00:14 +02001201sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001202{
1203 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001204
1205 if (exiting(tcp)) {
1206 if (syserror(tcp))
1207 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001208 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001209 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001210 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001211 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001212 }
1213 return 0;
1214}
1215
Denys Vlasenko12014262011-05-30 14:00:14 +02001216int
1217sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001218{
1219 sigset_t sigset;
1220
Nate Sammons4a121431999-04-06 01:19:39 +00001221 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001222 if (entering(tcp)) {
1223 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001224 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001225 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001226 tprints("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001227 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001228 tprintf("%#lx, ", tcp->u_arg[1]);
1229 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001230 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001231 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001232 }
1233 }
1234 else {
1235 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001236 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001237 else if (syserror(tcp))
1238 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001239 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001240 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001241 else
Nate Sammons4a121431999-04-06 01:19:39 +00001242 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001243 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001244 }
1245 return 0;
1246}
1247
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001248/* Structure describing the action to be taken when a signal arrives. */
1249struct new_sigaction
1250{
Denys Vlasenko86d94842013-02-08 12:59:13 +01001251 /* sa_handler may be a libc #define, need to use other name: */
1252 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001253 unsigned long sa_flags;
Denys Vlasenko86d94842013-02-08 12:59:13 +01001254 void (*sa_restorer)(void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001255 /* Kernel treats sa_mask as an array of longs. */
1256 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1257};
1258/* Same for i386-on-x86_64 and similar cases */
1259struct new_sigaction32
1260{
1261 uint32_t __sa_handler;
1262 uint32_t sa_flags;
1263 uint32_t sa_restorer;
1264 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001265};
1266
Roland McGrath5f206812008-08-20 01:59:40 +00001267int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001268sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001269{
1270 struct new_sigaction sa;
1271 sigset_t sigset;
1272 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001273 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001274
1275 if (entering(tcp)) {
1276 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001277 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001278 addr = tcp->u_arg[1];
1279 } else
1280 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001281
1282 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001283 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001284 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001285 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001286 if (!verbose(tcp)) {
1287 tprintf("%#lx", addr);
1288 goto after_sa;
1289 }
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001290#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001291 if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001292 struct new_sigaction32 sa32;
1293 r = umove(tcp, addr, &sa32);
1294 if (r >= 0) {
1295 memset(&sa, 0, sizeof(sa));
1296 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1297 sa.sa_flags = sa32.sa_flags;
1298 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1299 /* Kernel treats sa_mask as an array of longs.
1300 * For 32-bit process, "long" is uint32_t, thus, for example,
1301 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1302 * But for (64-bit) kernel, 32th bit in sa_mask is
1303 * 32th bit in 0th (64-bit) long!
1304 * For little-endian, it's the same.
1305 * For big-endian, we swap 32-bit words.
1306 */
1307 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1308 }
1309 } else
1310#endif
1311 {
1312 r = umove(tcp, addr, &sa);
1313 }
1314 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001315 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001316 goto after_sa;
1317 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001318 /* Architectures using function pointers, like
1319 * hppa, may need to manipulate the function pointer
1320 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +01001321 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001322 * the address space of the traced process, and can't
1323 * be manipulated by strace. In order to prevent the
1324 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +01001325 * __sa_handler we cast the function pointers to long. */
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001326 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001327 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001328 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001329 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001330 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001331 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001332 else
1333 tprintf("{%#lx, ", (long) sa.__sa_handler);
1334 /* Questionable code below.
1335 * Kernel won't handle sys_rt_sigaction
1336 * with wrong sigset size (just returns EINVAL)
1337 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1338 * and we always use smaller memcpy. */
1339 sigemptyset(&sigset);
Denys Vlasenko9472a272013-02-12 11:43:46 +01001340#if defined(SPARC) || defined(SPARC64)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001341 if (tcp->u_arg[4] <= sizeof(sigset))
1342 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1343#else
1344 if (tcp->u_arg[3] <= sizeof(sigset))
1345 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1346#endif
1347 else
1348 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1349 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001350 tprints(", ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001351 printflags(sigact_flags, sa.sa_flags, "SA_???");
1352#ifdef SA_RESTORER
1353 if (sa.sa_flags & SA_RESTORER)
1354 tprintf(", %p", sa.sa_restorer);
1355#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001356 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001357
1358 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001359 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001360 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001361 else
Denys Vlasenko9472a272013-02-12 11:43:46 +01001362#if defined(SPARC) || defined(SPARC64)
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001363 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1364#elif defined(ALPHA)
1365 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1366#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001367 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001368#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001369 return 0;
1370}
1371
Denys Vlasenko1d632462009-04-14 12:51:00 +00001372int
1373sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001374{
1375 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001376
1377 if (exiting(tcp)) {
1378 if (syserror(tcp))
1379 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001380 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1381 &sigset, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001382 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001383 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001384 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001385 }
1386 return 0;
1387}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001388
1389int
1390sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001391{
1392 if (entering(tcp)) {
1393 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001394 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001395 tprints("[?]");
Nate Sammons4a121431999-04-06 01:19:39 +00001396 else
1397 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001398 }
1399 return 0;
1400}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001401
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001402static void
1403print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1404{
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001405 printsignal(sig);
1406 tprints(", ");
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001407 printsiginfo_at(tcp, uinfo);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001408}
1409
Denys Vlasenko1d632462009-04-14 12:51:00 +00001410int
1411sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001412{
1413 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001414 tprintf("%lu, ", tcp->u_arg[0]);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001415 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1416 }
1417 return 0;
1418}
1419
1420int
1421sys_rt_tgsigqueueinfo(struct tcb *tcp)
1422{
1423 if (entering(tcp)) {
1424 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1425 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001426 }
1427 return 0;
1428}
1429
Denys Vlasenko1d632462009-04-14 12:51:00 +00001430int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001431{
1432 if (entering(tcp)) {
1433 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001434
Roland McGratha39c5a12002-12-17 05:10:37 +00001435 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00001436 &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001437 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001438 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001439 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001440 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001441 /* This is the only "return" parameter, */
1442 if (tcp->u_arg[1] != 0)
1443 return 0;
1444 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001445 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001446 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001447 else if (tcp->u_arg[1] != 0) {
1448 /* syscall exit, and u_arg[1] wasn't NULL */
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001449 printsiginfo_at(tcp, tcp->u_arg[1]);
1450 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001451 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001452 else {
1453 /* syscall exit, and u_arg[1] was NULL */
1454 return 0;
1455 }
1456 print_timespec(tcp, tcp->u_arg[2]);
1457 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001458 return 0;
1459};
1460
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001461int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001462sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001463{
1464 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001465 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001466 return 0;
1467}
1468
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001469static int
1470do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001471{
1472 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001473 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001474 tprints(", ");
Roland McGrathf46ccd32007-08-02 01:15:59 +00001475 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001476 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001477 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001478 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001479 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1480 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001481 }
1482 return 0;
1483}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001484
1485int
1486sys_signalfd(struct tcb *tcp)
1487{
1488 return do_signalfd(tcp, -1);
1489}
1490
1491int
1492sys_signalfd4(struct tcb *tcp)
1493{
1494 return do_signalfd(tcp, 3);
1495}