blob: d863e502cbbe1cf4117aace7a9d19b0f9679d894 [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
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000223static const char *
224sprintsigmask(const char *str, sigset_t *mask, int rt)
225/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000226{
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200227 /* Was [8 * sizeof(sigset_t) * 8], but
228 * glibc sigset_t is huge (1024 bits = 128 *bytes*),
229 * and we were ending up with 8k (!) buffer here.
230 *
231 * No Unix system can have sig > 255
232 * (waitpid API won't be able to indicate death from one)
233 * and sig 0 doesn't exist either.
234 * Therefore max possible no of sigs is 255: 1..255
235 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100236 static char outstr[8 * (255 * 2 / 3)];
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200237
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000238 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000239 int maxsigs;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100240 int show_members;
241 char sep;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000242 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000243
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200244 /* Note: nsignals = ARRAY_SIZE(signalent[]),
245 * and that array may not have SIGRTnn.
246 */
Nate Sammons4a121431999-04-06 01:19:39 +0000247 maxsigs = nsignals;
248#ifdef __SIGRTMAX
249 if (rt)
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200250 maxsigs = __SIGRTMAX + 1; /* instead */
Nate Sammons4a121431999-04-06 01:19:39 +0000251#endif
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100252 s = stpcpy(outstr, str);
253 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000254 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000255 if (sigismember(mask, i) == 1)
256 nsigs++;
257 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100258
259 /* 1: show mask members, 0: show those which are NOT in mask */
260 show_members = (nsigs < nsignals * 2 / 3);
261 if (!show_members)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000262 *s++ = '~';
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100263
264 sep = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000265 for (i = 1; i < maxsigs; i++) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100266 if (sigismember(mask, i) == show_members) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100267 *s++ = sep;
John Hughesbdf48f52001-03-06 15:08:09 +0000268 if (i < nsignals) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100269 s = stpcpy(s, signalent[i] + 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000270 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000271#ifdef SIGRTMIN
272 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200273 s += sprintf(s, "RT_%u", i - __SIGRTMIN);
Roland McGrath90b4cb52003-09-23 22:19:32 +0000274 }
275#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000276 else {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200277 s += sprintf(s, "%u", i);
John Hughesbdf48f52001-03-06 15:08:09 +0000278 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100279 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000280 }
281 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100282 if (sep == '[')
283 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000284 *s++ = ']';
285 *s = '\0';
286 return outstr;
287}
288
289static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200290printsigmask(sigset_t *mask, int rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000291{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200292 tprints(sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000293}
294
295void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200296printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000297{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200298 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299}
300
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000301void
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200302print_sigset_addr_len(struct tcb *tcp, long addr, long len)
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000303{
304 sigset_t ss;
305
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200306 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200307 tprints("NULL");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200308 return;
309 }
310 /* Here len is usually equals NSIG / 8 or current_wordsize.
311 * But we code this defensively:
312 */
313 if (len < 0) {
314 bad:
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000315 tprintf("%#lx", addr);
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200316 return;
317 }
318 if (len > NSIG / 8)
319 len = NSIG / 8;
320 sigemptyset(&ss);
321 if (umoven(tcp, addr, len, (char *)&ss) < 0)
322 goto bad;
323 printsigmask(&ss, /*rt:*/ 1);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000324}
325
John Hughes58265892001-10-18 15:13:53 +0000326#ifndef ILL_ILLOPC
327#define ILL_ILLOPC 1 /* illegal opcode */
328#define ILL_ILLOPN 2 /* illegal operand */
329#define ILL_ILLADR 3 /* illegal addressing mode */
330#define ILL_ILLTRP 4 /* illegal trap */
331#define ILL_PRVOPC 5 /* privileged opcode */
332#define ILL_PRVREG 6 /* privileged register */
333#define ILL_COPROC 7 /* coprocessor error */
334#define ILL_BADSTK 8 /* internal stack error */
335#define FPE_INTDIV 1 /* integer divide by zero */
336#define FPE_INTOVF 2 /* integer overflow */
337#define FPE_FLTDIV 3 /* floating point divide by zero */
338#define FPE_FLTOVF 4 /* floating point overflow */
339#define FPE_FLTUND 5 /* floating point underflow */
340#define FPE_FLTRES 6 /* floating point inexact result */
341#define FPE_FLTINV 7 /* floating point invalid operation */
342#define FPE_FLTSUB 8 /* subscript out of range */
343#define SEGV_MAPERR 1 /* address not mapped to object */
344#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
345#define BUS_ADRALN 1 /* invalid address alignment */
346#define BUS_ADRERR 2 /* non-existant physical address */
347#define BUS_OBJERR 3 /* object specific hardware error */
348#define TRAP_BRKPT 1 /* process breakpoint */
349#define TRAP_TRACE 2 /* process trace trap */
350#define CLD_EXITED 1 /* child has exited */
351#define CLD_KILLED 2 /* child was killed */
352#define CLD_DUMPED 3 /* child terminated abnormally */
353#define CLD_TRAPPED 4 /* traced child has trapped */
354#define CLD_STOPPED 5 /* child has stopped */
355#define CLD_CONTINUED 6 /* stopped child has continued */
356#define POLL_IN 1 /* data input available */
357#define POLL_OUT 2 /* output buffers available */
358#define POLL_MSG 3 /* input message available */
359#define POLL_ERR 4 /* i/o error */
360#define POLL_PRI 5 /* high priority input available */
361#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000362#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000363#define SI_USER 0 /* sent by kill, sigsend, raise */
364#define SI_QUEUE -1 /* sent by sigqueue */
365#define SI_TIMER -2 /* sent by timer expiration */
366#define SI_MESGQ -3 /* sent by real time mesq state change */
367#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000368#define SI_SIGIO -5 /* sent by SIGIO */
369#define SI_TKILL -6 /* sent by tkill */
370#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100371#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000372
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100373#ifndef SI_FROMUSER
374# define SI_FROMUSER(sip) ((sip)->si_code <= 0)
Denys Vlasenko84703742012-02-25 02:38:52 +0100375#endif
John Hughes58265892001-10-18 15:13:53 +0000376
Roland McGrathd9f816f2004-09-04 03:39:20 +0000377static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000378#ifdef SI_KERNEL
379 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000380#endif
381#ifdef SI_USER
382 { SI_USER, "SI_USER" },
383#endif
John Hughes58265892001-10-18 15:13:53 +0000384#ifdef SI_QUEUE
385 { SI_QUEUE, "SI_QUEUE" },
386#endif
387#ifdef SI_TIMER
388 { SI_TIMER, "SI_TIMER" },
389#endif
John Hughes58265892001-10-18 15:13:53 +0000390#ifdef SI_MESGQ
391 { SI_MESGQ, "SI_MESGQ" },
392#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000393#ifdef SI_ASYNCIO
394 { SI_ASYNCIO, "SI_ASYNCIO" },
395#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000396#ifdef SI_SIGIO
397 { SI_SIGIO, "SI_SIGIO" },
398#endif
399#ifdef SI_TKILL
400 { SI_TKILL, "SI_TKILL" },
401#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000402#ifdef SI_ASYNCNL
403 { SI_ASYNCNL, "SI_ASYNCNL" },
404#endif
405#ifdef SI_NOINFO
406 { SI_NOINFO, "SI_NOINFO" },
407#endif
408#ifdef SI_LWP
409 { SI_LWP, "SI_LWP" },
410#endif
John Hughes58265892001-10-18 15:13:53 +0000411 { 0, NULL },
412};
413
Roland McGrathd9f816f2004-09-04 03:39:20 +0000414static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000415 { ILL_ILLOPC, "ILL_ILLOPC" },
416 { ILL_ILLOPN, "ILL_ILLOPN" },
417 { ILL_ILLADR, "ILL_ILLADR" },
418 { ILL_ILLTRP, "ILL_ILLTRP" },
419 { ILL_PRVOPC, "ILL_PRVOPC" },
420 { ILL_PRVREG, "ILL_PRVREG" },
421 { ILL_COPROC, "ILL_COPROC" },
422 { ILL_BADSTK, "ILL_BADSTK" },
423 { 0, NULL },
424};
425
Roland McGrathd9f816f2004-09-04 03:39:20 +0000426static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000427 { FPE_INTDIV, "FPE_INTDIV" },
428 { FPE_INTOVF, "FPE_INTOVF" },
429 { FPE_FLTDIV, "FPE_FLTDIV" },
430 { FPE_FLTOVF, "FPE_FLTOVF" },
431 { FPE_FLTUND, "FPE_FLTUND" },
432 { FPE_FLTRES, "FPE_FLTRES" },
433 { FPE_FLTINV, "FPE_FLTINV" },
434 { FPE_FLTSUB, "FPE_FLTSUB" },
435 { 0, NULL },
436};
437
Roland McGrathd9f816f2004-09-04 03:39:20 +0000438static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000439 { TRAP_BRKPT, "TRAP_BRKPT" },
440 { TRAP_TRACE, "TRAP_TRACE" },
441 { 0, NULL },
442};
443
Roland McGrathd9f816f2004-09-04 03:39:20 +0000444static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000445 { CLD_EXITED, "CLD_EXITED" },
446 { CLD_KILLED, "CLD_KILLED" },
447 { CLD_DUMPED, "CLD_DUMPED" },
448 { CLD_TRAPPED, "CLD_TRAPPED" },
449 { CLD_STOPPED, "CLD_STOPPED" },
450 { CLD_CONTINUED,"CLD_CONTINUED" },
451 { 0, NULL },
452};
453
Roland McGrathd9f816f2004-09-04 03:39:20 +0000454static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000455 { POLL_IN, "POLL_IN" },
456 { POLL_OUT, "POLL_OUT" },
457 { POLL_MSG, "POLL_MSG" },
458 { POLL_ERR, "POLL_ERR" },
459 { POLL_PRI, "POLL_PRI" },
460 { POLL_HUP, "POLL_HUP" },
461 { 0, NULL },
462};
463
Roland McGrathd9f816f2004-09-04 03:39:20 +0000464static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000465#ifdef PROF_SIG
466 { PROF_SIG, "PROF_SIG" },
467#endif
468 { 0, NULL },
469};
470
471#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000472static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000473#ifdef EMT_TAGOVF
474 { EMT_TAGOVF, "EMT_TAGOVF" },
475#endif
476 { 0, NULL },
477};
478#endif
479
Roland McGrathd9f816f2004-09-04 03:39:20 +0000480static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000481 { SEGV_MAPERR, "SEGV_MAPERR" },
482 { SEGV_ACCERR, "SEGV_ACCERR" },
483 { 0, NULL },
484};
485
Roland McGrathd9f816f2004-09-04 03:39:20 +0000486static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000487 { BUS_ADRALN, "BUS_ADRALN" },
488 { BUS_ADRERR, "BUS_ADRERR" },
489 { BUS_OBJERR, "BUS_OBJERR" },
490 { 0, NULL },
491};
492
493void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000494printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000495{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000496 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000497
498 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200499 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000500 return;
501 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200502 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000503 printsignal(sip->si_signo);
504 code = xlookup(siginfo_codes, sip->si_code);
505 if (!code) {
506 switch (sip->si_signo) {
507 case SIGTRAP:
508 code = xlookup(sigtrap_codes, sip->si_code);
509 break;
510 case SIGCHLD:
511 code = xlookup(sigchld_codes, sip->si_code);
512 break;
513 case SIGPOLL:
514 code = xlookup(sigpoll_codes, sip->si_code);
515 break;
516 case SIGPROF:
517 code = xlookup(sigprof_codes, sip->si_code);
518 break;
519 case SIGILL:
520 code = xlookup(sigill_codes, sip->si_code);
521 break;
522#ifdef SIGEMT
523 case SIGEMT:
524 code = xlookup(sigemt_codes, sip->si_code);
525 break;
526#endif
527 case SIGFPE:
528 code = xlookup(sigfpe_codes, sip->si_code);
529 break;
530 case SIGSEGV:
531 code = xlookup(sigsegv_codes, sip->si_code);
532 break;
533 case SIGBUS:
534 code = xlookup(sigbus_codes, sip->si_code);
535 break;
536 }
537 }
538 if (code)
539 tprintf(", si_code=%s", code);
540 else
541 tprintf(", si_code=%#x", sip->si_code);
542#ifdef SI_NOINFO
543 if (sip->si_code != SI_NOINFO)
544#endif
545 {
546 if (sip->si_errno) {
547 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
548 tprintf(", si_errno=%d", sip->si_errno);
549 else
550 tprintf(", si_errno=%s",
551 errnoent[sip->si_errno]);
552 }
553#ifdef SI_FROMUSER
554 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000555 tprintf(", si_pid=%lu, si_uid=%lu",
556 (unsigned long) sip->si_pid,
557 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000558 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000559#ifdef SI_USER
560 case SI_USER:
561 break;
562#endif
563#ifdef SI_TKILL
564 case SI_TKILL:
565 break;
566#endif
John Hughes58265892001-10-18 15:13:53 +0000567#ifdef SI_TIMER
568 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000569 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000570 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000571#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000572 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000573 if (!sip->si_ptr)
574 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000575 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200576 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000577 else
578 tprintf(", si_value={int=%u, ptr=%#lx}",
579 sip->si_int,
580 (unsigned long) sip->si_ptr);
581 break;
John Hughes58265892001-10-18 15:13:53 +0000582 }
John Hughes58265892001-10-18 15:13:53 +0000583 }
584 else
585#endif /* SI_FROMUSER */
586 {
587 switch (sip->si_signo) {
588 case SIGCHLD:
589 tprintf(", si_pid=%ld, si_status=",
590 (long) sip->si_pid);
591 if (sip->si_code == CLD_EXITED)
592 tprintf("%d", sip->si_status);
593 else
594 printsignal(sip->si_status);
John Hughes58265892001-10-18 15:13:53 +0000595 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200596 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000597 else
H.J. Lu2bb45812012-04-15 11:17:13 -0700598 tprintf(", si_utime=%llu, si_stime=%llu",
599 (unsigned long long) sip->si_utime,
600 (unsigned long long) sip->si_stime);
John Hughes58265892001-10-18 15:13:53 +0000601 break;
602 case SIGILL: case SIGFPE:
603 case SIGSEGV: case SIGBUS:
604 tprintf(", si_addr=%#lx",
605 (unsigned long) sip->si_addr);
606 break;
607 case SIGPOLL:
608 switch (sip->si_code) {
609 case POLL_IN: case POLL_OUT: case POLL_MSG:
610 tprintf(", si_band=%ld",
611 (long) sip->si_band);
612 break;
613 }
614 break;
John Hughes58265892001-10-18 15:13:53 +0000615 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000616 if (sip->si_pid || sip->si_uid)
617 tprintf(", si_pid=%lu, si_uid=%lu",
618 (unsigned long) sip->si_pid,
619 (unsigned long) sip->si_uid);
620 if (!sip->si_ptr)
621 break;
John Hughes58265892001-10-18 15:13:53 +0000622 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200623 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000624 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000625 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000626 sip->si_int,
627 (unsigned long) sip->si_ptr);
628 }
Roland McGratha39c5a12002-12-17 05:10:37 +0000629
John Hughes58265892001-10-18 15:13:53 +0000630 }
631 }
632 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200633 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000634}
635
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +0100636void
637printsiginfo_at(struct tcb *tcp, long addr)
638{
639 siginfo_t si;
640 if (!addr) {
641 tprints("NULL");
642 return;
643 }
644 if (syserror(tcp)) {
645 tprintf("%#lx", addr);
646 return;
647 }
648 if (umove(tcp, addr, &si) < 0) {
649 tprints("{???}");
650 return;
651 }
652 printsiginfo(&si, verbose(tcp));
653}
654
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000655int
Denys Vlasenko12014262011-05-30 14:00:14 +0200656sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000657{
658 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000659 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000660 long_to_sigset(tcp->u_arg[0], &sigm);
661 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000662 }
663 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000664 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000665 long_to_sigset(tcp->u_rval, &sigm);
666 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000667
668 return RVAL_HEX | RVAL_STR;
669 }
670 return 0;
671}
672
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000673#ifdef HAVE_SIGACTION
674
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000675struct old_sigaction {
Denys Vlasenko86d94842013-02-08 12:59:13 +0100676 /* sa_handler may be a libc #define, need to use other name: */
677 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000678 unsigned long sa_mask;
679 unsigned long sa_flags;
680 void (*sa_restorer)(void);
681};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000682
683int
Denys Vlasenko12014262011-05-30 14:00:14 +0200684sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000685{
686 long addr;
John Hughes1e4cb342001-03-06 09:25:46 +0000687 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000688 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000689
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000690 if (entering(tcp)) {
691 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200692 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000693 addr = tcp->u_arg[1];
694 } else
695 addr = tcp->u_arg[2];
696 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200697 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000698 else if (!verbose(tcp))
699 tprintf("%#lx", addr);
700 else if (umove(tcp, addr, &sa) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200701 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000702 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000703 /* Architectures using function pointers, like
704 * hppa, may need to manipulate the function pointer
705 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +0100706 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000707 * the address space of the traced process, and can't
708 * be manipulated by strace. In order to prevent the
709 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +0100710 * __sa_handler we cast the function pointers to long. */
711 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200712 tprints("{SIG_ERR, ");
Denys Vlasenko86d94842013-02-08 12:59:13 +0100713 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200714 tprints("{SIG_DFL, ");
Denys Vlasenko86d94842013-02-08 12:59:13 +0100715 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200716 tprints("{SIG_IGN, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100717 else
Denys Vlasenko86d94842013-02-08 12:59:13 +0100718 tprintf("{%#lx, ", (long) sa.__sa_handler);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100719 long_to_sigset(sa.sa_mask, &sigset);
720 printsigmask(&sigset, 0);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100721 tprints(", ");
722 printflags(sigact_flags, sa.sa_flags, "SA_???");
723#ifdef SA_RESTORER
724 if (sa.sa_flags & SA_RESTORER)
725 tprintf(", %p", sa.sa_restorer);
726#endif
727 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000728 }
729 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200730 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000731 else
732 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000733 return 0;
734}
735
736int
Denys Vlasenko12014262011-05-30 14:00:14 +0200737sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000738{
739 if (entering(tcp)) {
740 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200741 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000742 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000743 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200744 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000745 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000746 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200747 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000748 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000749 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200750 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000751 break;
752 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000753 tprintf("%#lx", tcp->u_arg[1]);
754 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000755 return 0;
756 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000757 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000758 switch (tcp->u_rval) {
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100759 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000760 tcp->auxstr = "SIG_ERR"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100761 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000762 tcp->auxstr = "SIG_DFL"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100763 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000764 tcp->auxstr = "SIG_IGN"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100765 default:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000766 tcp->auxstr = NULL;
767 }
768 return RVAL_HEX | RVAL_STR;
769 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000770 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000771}
772
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000773#endif /* HAVE_SIGACTION */
774
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000775int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000776sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000777{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000778#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000779 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200780 struct arm_sigcontext {
781 unsigned long trap_no;
782 unsigned long error_code;
783 unsigned long oldmask;
784 unsigned long arm_r0;
785 unsigned long arm_r1;
786 unsigned long arm_r2;
787 unsigned long arm_r3;
788 unsigned long arm_r4;
789 unsigned long arm_r5;
790 unsigned long arm_r6;
791 unsigned long arm_r7;
792 unsigned long arm_r8;
793 unsigned long arm_r9;
794 unsigned long arm_r10;
795 unsigned long arm_fp;
796 unsigned long arm_ip;
797 unsigned long arm_sp;
798 unsigned long arm_lr;
799 unsigned long arm_pc;
800 unsigned long arm_cpsr;
801 unsigned long fault_address;
802 };
803 struct arm_ucontext {
804 unsigned long uc_flags;
805 unsigned long uc_link; /* struct ucontext* */
806 /* The next three members comprise stack_t struct: */
807 unsigned long ss_sp; /* void* */
808 unsigned long ss_flags; /* int */
809 unsigned long ss_size; /* size_t */
810 struct arm_sigcontext sc;
811 /* These two members are sigset_t: */
812 unsigned long uc_sigmask[2];
813 /* more fields follow, which we aren't interested in */
814 };
815 struct arm_ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100816 sigset_t sigm;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200817 if (umove(tcp, arm_regs.ARM_sp, &uc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000818 return 0;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200819 /* Kernel fills out uc.sc.oldmask too when it sets up signal stack,
820 * but for sigmask restore, sigreturn syscall uses uc.uc_sigmask instead.
821 * long_to_sigset(uc.sc.oldmask, &sigm);
822 * tprints(sprintsigmask(") (mask ", &sigm, 0));
823 */
824 sigemptyset(&sigm);
825 ((uint32_t*)&sigm)[0] = uc.uc_sigmask[0];
826 ((uint32_t*)&sigm)[1] = uc.uc_sigmask[1];
827 tprints(sprintsigmask(") (mask ", &sigm, /*rt:*/ 1));
Roland McGrath0f87c492003-06-03 23:29:04 +0000828 }
Roland McGrath0f87c492003-06-03 23:29:04 +0000829#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +0000830 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200831 long usp;
832 struct sigcontext_struct sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200833 if (upeek(tcp->pid, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000834 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100835 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000836 return 0;
Andreas Schwaba7920a82012-01-17 17:56:44 +0100837 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000838 }
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200839#elif defined(I386) || defined(X86_64)
840# if defined(X86_64)
841 if (current_personality == 0) /* 64-bit */
842 return 0;
843# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000844 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200845 struct i386_sigcontext_struct {
846 uint16_t gs, __gsh;
847 uint16_t fs, __fsh;
848 uint16_t es, __esh;
849 uint16_t ds, __dsh;
850 uint32_t edi;
851 uint32_t esi;
852 uint32_t ebp;
853 uint32_t esp;
854 uint32_t ebx;
855 uint32_t edx;
856 uint32_t ecx;
857 uint32_t eax;
858 uint32_t trapno;
859 uint32_t err;
860 uint32_t eip;
861 uint16_t cs, __csh;
862 uint32_t eflags;
863 uint32_t esp_at_signal;
864 uint16_t ss, __ssh;
865 uint32_t i387;
866 uint32_t oldmask;
867 uint32_t cr2;
868 };
869 struct i386_fpstate {
870 uint32_t cw;
871 uint32_t sw;
872 uint32_t tag;
873 uint32_t ipoff;
874 uint32_t cssel;
875 uint32_t dataoff;
876 uint32_t datasel;
877 uint8_t st[8][10]; /* 8*10 bytes: FP regs */
878 uint16_t status;
879 uint16_t magic;
880 uint32_t fxsr_env[6];
881 uint32_t mxcsr;
882 uint32_t reserved;
883 uint8_t stx[8][16]; /* 8*16 bytes: FP regs, each padded to 16 bytes */
884 uint8_t xmm[8][16]; /* 8 XMM regs */
885 uint32_t padding1[44];
886 uint32_t padding2[12]; /* union with struct _fpx_sw_bytes */
887 };
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200888 struct {
889 struct i386_sigcontext_struct sc;
890 struct i386_fpstate fp;
891 uint32_t extramask[1];
892 } signal_stack;
893 /* On i386, sc is followed on stack by struct fpstate
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100894 * and after it an additional u32 extramask[1] which holds
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200895 * upper half of the mask.
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100896 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000897 sigset_t sigm;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200898 if (umove(tcp, *i386_esp_ptr, &signal_stack) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000899 return 0;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200900 sigemptyset(&sigm);
901 ((uint32_t*)&sigm)[0] = signal_stack.sc.oldmask;
902 ((uint32_t*)&sigm)[1] = signal_stack.extramask[0];
903 tprints(sprintsigmask(") (mask ", &sigm, /*RT sigs too?:*/ 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000904 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000905#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000906 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200907 struct sigcontext sc;
908 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100909 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000910 /* offset of sigcontext in the kernel's sigframe structure: */
911# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200912 if (upeek(tcp->pid, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000913 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000914 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000915 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200916 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100917 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100918 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000919 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000920#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +0000921 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200922 long esp;
923 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100924 sigset_t sigm;
Anton Blanchardce6e33b2013-06-26 15:53:33 +0200925
926 esp = ppc_regs.gpr[1];
927
Andreas Schwabedb39342010-02-23 00:18:51 +0100928 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200929#ifdef POWERPC64
930 if (current_personality == 0)
931 esp += 128;
932 else
933 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +0100934#else
935 esp += 64;
936#endif
Roland McGrath0f87c492003-06-03 23:29:04 +0000937 if (umove(tcp, esp, &sc) < 0)
938 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100939 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100940 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000941 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000942#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000943 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200944 long usp;
945 struct sigcontext sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100946 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200947 if (upeek(tcp->pid, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000948 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000949 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000950 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100951 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100952 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000953 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000954#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000955 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200956 long fp;
957 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100958 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200959 if (upeek(tcp->pid, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000960 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000961 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000962 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100963 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100964 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000965 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100966#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200967 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200968 long i1;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200969 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100970 sigset_t sigm;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100971 i1 = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200972 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100973 perror_msg("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000974 return 0;
975 }
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100976 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100977 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000978 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100979#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +0000980 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
981 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200982 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200983 long sp;
984 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100985 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200986 if (upeek(tcp->pid, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000987 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +0000988 /* There are six words followed by a 128-byte siginfo. */
989 sp = sp + 6 * 4 + 128;
990 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000991 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100992 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100993 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath542c2c62008-05-20 01:11:56 +0000994 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000995#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200996 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200997 long sp;
998 struct pt_regs regs;
999 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001000 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001001 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001002 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenko56a52982011-06-09 01:36:29 +02001003 return 0;
1004 }
Roland McGrath576b7842007-11-04 00:00:00 +00001005 sp = regs.regs[29];
1006 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +02001007 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001008 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001009 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkermanf90da011999-10-31 21:15:38 +00001010 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001011#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001012 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001013 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001014 long regs[PT_MAX+1];
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001015 sigset_t sigm;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001016 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001017 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001018 return 0;
1019 }
1020 if (umove(tcp, regs[PT_USP], &sc) < 0)
1021 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001022 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001023 tprints(sprintsigmask(") (mask ", &sigm, 0));
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001024 }
Chris Metcalfc8c66982009-12-28 10:00:15 -05001025#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001026 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001027 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001028 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001029
1030 /* offset of ucontext in the kernel's sigframe structure */
Chris Metcalf5c0796f2013-05-21 20:25:22 -04001031# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(siginfo_t)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001032 if (umove(tcp, tile_regs.sp + SIGFRAME_UC_OFFSET, &uc) < 0)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001033 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001034 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001035 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001036 tprints(sprintsigmask(") (mask ", &sigm, 0));
Chris Metcalfc8c66982009-12-28 10:00:15 -05001037 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001038#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001039 /* TODO: Verify that this is correct... */
1040 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001041 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001042 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001043 sigset_t sigm;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001044 /* Read r1, the stack pointer. */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001045 if (upeek(tcp->pid, 1 * 4, &sp) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001046 return 0;
1047 if (umove(tcp, sp, &sc) < 0)
1048 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001049 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001050 tprints(sprintsigmask(") (mask ", &sigm, 0));
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001051 }
Chris Zankel8f636ed2013-03-25 10:22:07 -07001052#elif defined(XTENSA)
1053 /* Xtensa only has rt_sys_sigreturn */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001054#else
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001055# warning No sys_sigreturn() for this architecture
1056# warning (no problem, just a reminder :-)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001057#endif
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001058 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001059}
1060
1061int
Denys Vlasenko12014262011-05-30 14:00:14 +02001062sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001063{
1064 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001065 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001066 long_to_sigset(tcp->u_rval, &sigm);
1067 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001068 }
1069 return RVAL_HEX | RVAL_STR;
1070}
1071
1072int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001073sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001074{
1075 if (entering(tcp)) {
1076 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001077 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001078 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001079 }
1080 return 0;
1081}
1082
Denys Vlasenko84703742012-02-25 02:38:52 +01001083#if !defined SS_ONSTACK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001084#define SS_ONSTACK 1
1085#define SS_DISABLE 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001086#endif
1087
Roland McGrathd9f816f2004-09-04 03:39:20 +00001088static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001089 { SS_ONSTACK, "SS_ONSTACK" },
1090 { SS_DISABLE, "SS_DISABLE" },
1091 { 0, NULL },
1092};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001093
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001094static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001095print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001096{
1097 stack_t ss;
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001098
1099 if (!addr) {
1100 tprints("NULL");
1101 } else if (umove(tcp, addr, &ss) < 0) {
1102 tprintf("%#lx", addr);
1103 } else {
1104 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1105 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
1106 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1107 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001108}
1109
1110int
Denys Vlasenko12014262011-05-30 14:00:14 +02001111sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001112{
1113 if (entering(tcp)) {
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001114 print_stack_t(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001115 }
1116 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001117 tprints(", ");
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001118 print_stack_t(tcp, tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001119 }
1120 return 0;
1121}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001122
1123#ifdef HAVE_SIGACTION
1124
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001125/* "Old" sigprocmask, which operates with word-sized signal masks */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001126int
Denys Vlasenko12014262011-05-30 14:00:14 +02001127sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001128{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001129# ifdef ALPHA
Mike Frysingerdde045c2012-03-15 00:45:33 -04001130 sigset_t ss;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001131 if (entering(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001132 /*
1133 * Alpha/OSF is different: it doesn't pass in two pointers,
1134 * but rather passes in the new bitmask as an argument and
1135 * then returns the old bitmask. This "works" because we
1136 * only have 64 signals to worry about. If you want more,
1137 * use of the rt_sigprocmask syscall is required.
1138 * Alpha:
1139 * old = osf_sigprocmask(how, new);
1140 * Everyone else:
1141 * ret = sigprocmask(how, &new, &old, ...);
1142 */
1143 memcpy(&ss, &tcp->u_arg[1], sizeof(long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001144 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001145 tprints(", ");
Mike Frysingerdde045c2012-03-15 00:45:33 -04001146 printsigmask(&ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001147 }
1148 else if (!syserror(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001149 memcpy(&ss, &tcp->u_rval, sizeof(long));
1150 tcp->auxstr = sprintsigmask("old mask ", &ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001151 return RVAL_HEX | RVAL_STR;
1152 }
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001153# else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001154 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001155 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001156 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001157 print_sigset_addr_len(tcp, tcp->u_arg[1], current_wordsize);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001158 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001159 }
1160 else {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001161 if (syserror(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001162 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001163 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001164 print_sigset_addr_len(tcp, tcp->u_arg[2], current_wordsize);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001165 }
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001166# endif /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001167 return 0;
1168}
1169
1170#endif /* HAVE_SIGACTION */
1171
1172int
Denys Vlasenko12014262011-05-30 14:00:14 +02001173sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001174{
1175 if (entering(tcp)) {
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001176 tprintf("%ld, %s",
1177 widen_to_long(tcp->u_arg[0]),
1178 signame(tcp->u_arg[1])
1179 );
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001180 }
1181 return 0;
1182}
1183
Roland McGrath8ffc3522003-07-09 09:47:49 +00001184int
Denys Vlasenko12014262011-05-30 14:00:14 +02001185sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001186{
1187 if (entering(tcp)) {
1188 tprintf("%ld, %ld, %s",
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001189 widen_to_long(tcp->u_arg[0]),
1190 widen_to_long(tcp->u_arg[1]),
1191 signame(tcp->u_arg[2])
1192 );
Roland McGrath8ffc3522003-07-09 09:47:49 +00001193 }
1194 return 0;
1195}
Roland McGrath8ffc3522003-07-09 09:47:49 +00001196
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001197int
Denys Vlasenko12014262011-05-30 14:00:14 +02001198sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001199{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001200 if (exiting(tcp)) {
1201 if (syserror(tcp))
1202 tprintf("%#lx", tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001203 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001204 print_sigset_addr_len(tcp, tcp->u_arg[0], current_wordsize);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001205 }
1206 return 0;
1207}
1208
Denys Vlasenko12014262011-05-30 14:00:14 +02001209int
1210sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001211{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001212 /* Note: arg[3] is the length of the sigset. Kernel requires NSIG / 8 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001213 if (entering(tcp)) {
1214 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001215 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001216 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[3]);
1217 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001218 }
1219 else {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001220 if (syserror(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001221 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001222 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001223 print_sigset_addr_len(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001224 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001225 }
1226 return 0;
1227}
1228
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001229/* Structure describing the action to be taken when a signal arrives. */
1230struct new_sigaction
1231{
Denys Vlasenko86d94842013-02-08 12:59:13 +01001232 /* sa_handler may be a libc #define, need to use other name: */
1233 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001234 unsigned long sa_flags;
Denys Vlasenko86d94842013-02-08 12:59:13 +01001235 void (*sa_restorer)(void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001236 /* Kernel treats sa_mask as an array of longs. */
1237 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1238};
1239/* Same for i386-on-x86_64 and similar cases */
1240struct new_sigaction32
1241{
1242 uint32_t __sa_handler;
1243 uint32_t sa_flags;
1244 uint32_t sa_restorer;
1245 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001246};
1247
Roland McGrath5f206812008-08-20 01:59:40 +00001248int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001249sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001250{
1251 struct new_sigaction sa;
1252 sigset_t sigset;
1253 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001254 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001255
1256 if (entering(tcp)) {
1257 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001258 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001259 addr = tcp->u_arg[1];
1260 } else
1261 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001262
1263 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001264 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001265 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001266 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001267 if (!verbose(tcp)) {
1268 tprintf("%#lx", addr);
1269 goto after_sa;
1270 }
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001271#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001272 if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001273 struct new_sigaction32 sa32;
1274 r = umove(tcp, addr, &sa32);
1275 if (r >= 0) {
1276 memset(&sa, 0, sizeof(sa));
1277 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1278 sa.sa_flags = sa32.sa_flags;
1279 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1280 /* Kernel treats sa_mask as an array of longs.
1281 * For 32-bit process, "long" is uint32_t, thus, for example,
1282 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1283 * But for (64-bit) kernel, 32th bit in sa_mask is
1284 * 32th bit in 0th (64-bit) long!
1285 * For little-endian, it's the same.
1286 * For big-endian, we swap 32-bit words.
1287 */
1288 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1289 }
1290 } else
1291#endif
1292 {
1293 r = umove(tcp, addr, &sa);
1294 }
1295 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001296 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001297 goto after_sa;
1298 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001299 /* Architectures using function pointers, like
1300 * hppa, may need to manipulate the function pointer
1301 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +01001302 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001303 * the address space of the traced process, and can't
1304 * be manipulated by strace. In order to prevent the
1305 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +01001306 * __sa_handler we cast the function pointers to long. */
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001307 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001308 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001309 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001310 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001311 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001312 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001313 else
1314 tprintf("{%#lx, ", (long) sa.__sa_handler);
Denys Vlasenko80b73a22013-07-18 10:10:46 +02001315 /*
1316 * Sigset size is in tcp->u_arg[4] (SPARC)
1317 * or in tcp->u_arg[3] (all other),
1318 * but kernel won't handle sys_rt_sigaction
1319 * with wrong sigset size (just returns EINVAL instead).
1320 * We just fetch the right size, which is NSIG / 8.
1321 */
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001322 sigemptyset(&sigset);
Denys Vlasenko80b73a22013-07-18 10:10:46 +02001323 memcpy(&sigset, &sa.sa_mask, NSIG / 8);
1324 printsigmask(&sigset, /*rt:*/ 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001325 tprints(", ");
Denys Vlasenko80b73a22013-07-18 10:10:46 +02001326
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001327 printflags(sigact_flags, sa.sa_flags, "SA_???");
1328#ifdef SA_RESTORER
1329 if (sa.sa_flags & SA_RESTORER)
1330 tprintf(", %p", sa.sa_restorer);
1331#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001332 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001333
1334 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001335 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001336 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001337 else
Denys Vlasenko9472a272013-02-12 11:43:46 +01001338#if defined(SPARC) || defined(SPARC64)
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001339 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1340#elif defined(ALPHA)
1341 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1342#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001343 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001344#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001345 return 0;
1346}
1347
Denys Vlasenko1d632462009-04-14 12:51:00 +00001348int
1349sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001350{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001351 if (exiting(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001352 /*
1353 * One of the few syscalls where sigset size (arg[1])
1354 * is allowed to be <= NSIG / 8, not strictly ==.
1355 * This allows non-rt sigpending() syscall
1356 * to reuse rt_sigpending() code in kernel.
1357 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001358 if (syserror(tcp))
1359 tprintf("%#lx", tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001360 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001361 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
1362 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001363 }
1364 return 0;
1365}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001366
1367int
1368sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001369{
1370 if (entering(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001371 /* NB: kernel requires arg[1] == NSIG / 8 */
1372 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
1373 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001374 }
1375 return 0;
1376}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001377
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001378static void
1379print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1380{
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001381 printsignal(sig);
1382 tprints(", ");
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001383 printsiginfo_at(tcp, uinfo);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001384}
1385
Denys Vlasenko1d632462009-04-14 12:51:00 +00001386int
1387sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001388{
1389 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001390 tprintf("%lu, ", tcp->u_arg[0]);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001391 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1392 }
1393 return 0;
1394}
1395
1396int
1397sys_rt_tgsigqueueinfo(struct tcb *tcp)
1398{
1399 if (entering(tcp)) {
1400 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1401 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001402 }
1403 return 0;
1404}
1405
Denys Vlasenko1d632462009-04-14 12:51:00 +00001406int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001407{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001408 /* NB: kernel requires arg[3] == NSIG / 8 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001409 if (entering(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001410 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001411 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001412 /* This is the only "return" parameter, */
1413 if (tcp->u_arg[1] != 0)
1414 return 0;
1415 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001416 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001417 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001418 else if (tcp->u_arg[1] != 0) {
1419 /* syscall exit, and u_arg[1] wasn't NULL */
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001420 printsiginfo_at(tcp, tcp->u_arg[1]);
1421 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001422 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001423 else {
1424 /* syscall exit, and u_arg[1] was NULL */
1425 return 0;
1426 }
1427 print_timespec(tcp, tcp->u_arg[2]);
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001428 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001429 return 0;
1430};
1431
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001432int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001433sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001434{
1435 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001436 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001437 return 0;
1438}
1439
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001440static int
1441do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001442{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001443 /* NB: kernel requires arg[2] == NSIG / 8 */
Roland McGrathf46ccd32007-08-02 01:15:59 +00001444 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001445 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001446 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001447 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001448 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001449 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001450 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001451 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1452 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001453 }
1454 return 0;
1455}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001456
1457int
1458sys_signalfd(struct tcb *tcp)
1459{
1460 return do_signalfd(tcp, -1);
1461}
1462
1463int
1464sys_signalfd4(struct tcb *tcp)
1465{
1466 return do_signalfd(tcp, 3);
1467}