blob: 3a11b8aa1f6bc9120e14a51f7afabd3976893ee3 [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
Ali Polatel0b4060f2013-09-24 20:04:32 +030054# ifdef HAVE_STRUCT_PTRACE_PEEKSIGINFO_ARGS
55# define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args
56# endif
Denys Vlasenko84703742012-02-25 02:38:52 +010057# include <linux/ptrace.h>
Ali Polatel0b4060f2013-09-24 20:04:32 +030058# undef ptrace_peeksiginfo_args
Roland McGrathb0acdfd2004-03-01 21:31:02 +000059# undef ia64_fpreg
60# undef pt_all_user_regs
Wichert Akkerman15dea971999-10-06 13:06:34 +000061#endif
Wichert Akkerman36915a11999-07-13 15:45:02 +000062
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000063#ifdef IA64
64# include <asm/ptrace_offsets.h>
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020065#endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000066
Denys Vlasenko84703742012-02-25 02:38:52 +010067#if defined(SPARC) || defined(SPARC64) || defined(MIPS)
Roland McGrath576b7842007-11-04 00:00:00 +000068typedef struct {
69 struct pt_regs si_regs;
70 int si_mask;
71} m_siginfo_t;
Roland McGrath30ff45e2003-01-30 20:15:23 +000072#elif defined HAVE_ASM_SIGCONTEXT_H
H.J. Lu35be5812012-04-16 13:00:01 +020073# if !defined(IA64) && !defined(X86_64) && !defined(X32)
Denys Vlasenko84703742012-02-25 02:38:52 +010074# include <asm/sigcontext.h>
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010075# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000076#else /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenkob51f3642013-07-16 12:06:25 +020077# if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT
78struct sigcontext {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000079 unsigned long sc_mask;
80 unsigned long sc_usp;
81 unsigned long sc_d0;
82 unsigned long sc_d1;
83 unsigned long sc_a0;
84 unsigned long sc_a1;
85 unsigned short sc_sr;
86 unsigned long sc_pc;
87 unsigned short sc_formatvec;
88};
Denys Vlasenkob51f3642013-07-16 12:06:25 +020089# endif /* M68K */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000090#endif /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020091
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000092#ifndef NSIG
Denys Vlasenko84703742012-02-25 02:38:52 +010093# warning: NSIG is not defined, using 32
94# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000095#endif
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020096
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000097#ifdef HAVE_SIGACTION
98
H.J. Lu35be5812012-04-16 13:00:01 +020099#if defined I386 || defined X86_64 || defined X32
Roland McGrath2638cb42002-12-15 23:58:41 +0000100/* The libc headers do not define this constant since it should only be
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200101 used by the implementation. So we define it here. */
Roland McGrath2638cb42002-12-15 23:58:41 +0000102# ifndef SA_RESTORER
103# define SA_RESTORER 0x04000000
104# endif
105#endif
106
Roland McGrathd9f816f2004-09-04 03:39:20 +0000107static const struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000108#ifdef SA_RESTORER
109 { SA_RESTORER, "SA_RESTORER" },
110#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000111#ifdef SA_STACK
112 { SA_STACK, "SA_STACK" },
113#endif
114#ifdef SA_RESTART
115 { SA_RESTART, "SA_RESTART" },
116#endif
117#ifdef SA_INTERRUPT
118 { SA_INTERRUPT, "SA_INTERRUPT" },
119#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000120#ifdef SA_NODEFER
121 { SA_NODEFER, "SA_NODEFER" },
122#endif
123#if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000124 { SA_NOMASK, "SA_NOMASK" },
125#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000126#ifdef SA_RESETHAND
127 { SA_RESETHAND, "SA_RESETHAND" },
128#endif
129#if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000130 { SA_ONESHOT, "SA_ONESHOT" },
131#endif
132#ifdef SA_SIGINFO
133 { SA_SIGINFO, "SA_SIGINFO" },
134#endif
135#ifdef SA_RESETHAND
136 { SA_RESETHAND, "SA_RESETHAND" },
137#endif
138#ifdef SA_ONSTACK
139 { SA_ONSTACK, "SA_ONSTACK" },
140#endif
141#ifdef SA_NODEFER
142 { SA_NODEFER, "SA_NODEFER" },
143#endif
144#ifdef SA_NOCLDSTOP
145 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
146#endif
147#ifdef SA_NOCLDWAIT
148 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
149#endif
150#ifdef _SA_BSDCALL
151 { _SA_BSDCALL, "_SA_BSDCALL" },
152#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500153#ifdef SA_NOPTRACE
154 { SA_NOPTRACE, "SA_NOPTRACE" },
155#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000156 { 0, NULL },
157};
158
Roland McGrathd9f816f2004-09-04 03:39:20 +0000159static const struct xlat sigprocmaskcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160 { SIG_BLOCK, "SIG_BLOCK" },
161 { SIG_UNBLOCK, "SIG_UNBLOCK" },
162 { SIG_SETMASK, "SIG_SETMASK" },
163#ifdef SIG_SETMASK32
164 { SIG_SETMASK32,"SIG_SETMASK32" },
165#endif
166 { 0, NULL },
167};
168
169#endif /* HAVE_SIGACTION */
170
Nate Sammonsce780fc1999-03-29 23:23:13 +0000171/* Anonymous realtime signals. */
172/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
173 constant. This is what we want. Otherwise, just use SIGRTMIN. */
174#ifdef SIGRTMIN
175#ifndef __SIGRTMIN
176#define __SIGRTMIN SIGRTMIN
177#define __SIGRTMAX SIGRTMAX /* likewise */
178#endif
179#endif
180
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200181/* Note on the size of sigset_t:
182 *
183 * In glibc, sigset_t is an array with space for 1024 bits (!),
184 * even though all arches supported by Linux have only 64 signals
185 * except MIPS, which has 128. IOW, it is 128 bytes long.
186 *
187 * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
188 * However, some old syscall return only 32 lower bits (one word).
189 * Example: sys_sigpending vs sys_rt_sigpending.
190 *
191 * Be aware of this fact when you try to
192 * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
193 * - sizeof(sigset_t) is much bigger than you think,
194 * it may overflow tcp->u_arg[] array, and it may try to copy more data
195 * than is really available in <something>.
196 * Similarly,
197 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
198 * may be a bad idea: it'll try to read much more data than needed
199 * to fetch a sigset_t.
200 * Use (NSIG / 8) as a size instead.
201 */
202
Roland McGrathee36ce12004-09-04 03:53:10 +0000203const char *
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200204signame(int sig)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000205{
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200206 static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
207
208 if (sig >= 0 && sig < nsignals)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000209 return signalent[sig];
210#ifdef SIGRTMIN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200211 if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
212 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000213 return buf;
214 }
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200215#endif
216 sprintf(buf, "%d", sig);
217 return buf;
Nate Sammonsce780fc1999-03-29 23:23:13 +0000218}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000219
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000220static const char *
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200221sprintsigmask(const char *str, sigset_t *mask)
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000222/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000223{
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200224 /* Was [8 * sizeof(sigset_t) * 8], but
225 * glibc sigset_t is huge (1024 bits = 128 *bytes*),
226 * and we were ending up with 8k (!) buffer here.
227 *
228 * No Unix system can have sig > 255
229 * (waitpid API won't be able to indicate death from one)
230 * and sig 0 doesn't exist either.
231 * Therefore max possible no of sigs is 255: 1..255
232 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100233 static char outstr[8 * (255 * 2 / 3)];
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200234
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000235 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000236 int maxsigs;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100237 int show_members;
238 char sep;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000239 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000240
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200241 /* Note: nsignals = ARRAY_SIZE(signalent[]),
242 * and that array may not have SIGRTnn.
243 */
Nate Sammons4a121431999-04-06 01:19:39 +0000244#ifdef __SIGRTMAX
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200245 maxsigs = __SIGRTMAX + 1; /* instead */
246#else
247 maxsigs = nsignals;
Nate Sammons4a121431999-04-06 01:19:39 +0000248#endif
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100249 s = stpcpy(outstr, str);
250 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000251 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000252 if (sigismember(mask, i) == 1)
253 nsigs++;
254 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100255
256 /* 1: show mask members, 0: show those which are NOT in mask */
257 show_members = (nsigs < nsignals * 2 / 3);
258 if (!show_members)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000259 *s++ = '~';
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100260
261 sep = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000262 for (i = 1; i < maxsigs; i++) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100263 if (sigismember(mask, i) == show_members) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100264 *s++ = sep;
John Hughesbdf48f52001-03-06 15:08:09 +0000265 if (i < nsignals) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100266 s = stpcpy(s, signalent[i] + 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000267 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000268#ifdef SIGRTMIN
269 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200270 s += sprintf(s, "RT_%u", i - __SIGRTMIN);
Roland McGrath90b4cb52003-09-23 22:19:32 +0000271 }
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200272#endif
John Hughesbdf48f52001-03-06 15:08:09 +0000273 else {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200274 s += sprintf(s, "%u", i);
John Hughesbdf48f52001-03-06 15:08:09 +0000275 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100276 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000277 }
278 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100279 if (sep == '[')
280 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000281 *s++ = ']';
282 *s = '\0';
283 return outstr;
284}
285
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200286static const char *
287sprintsigmask_long(const char *str, long mask)
288{
289 sigset_t s;
290 sigemptyset(&s);
291 *(long *)&s = mask;
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200292 return sprintsigmask(str, &s);
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200293}
294
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000295static void
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200296printsigmask(sigset_t *mask)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000297{
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200298 tprints(sprintsigmask("", mask));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299}
300
301void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200302printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000303{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200304 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000305}
306
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000307void
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200308print_sigset_addr_len(struct tcb *tcp, long addr, long len)
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000309{
310 sigset_t ss;
311
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200312 if (!addr) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200313 tprints("NULL");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200314 return;
315 }
316 /* Here len is usually equals NSIG / 8 or current_wordsize.
317 * But we code this defensively:
318 */
319 if (len < 0) {
320 bad:
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000321 tprintf("%#lx", addr);
Denys Vlasenko5e133aa2013-07-18 17:02:21 +0200322 return;
323 }
324 if (len > NSIG / 8)
325 len = NSIG / 8;
326 sigemptyset(&ss);
327 if (umoven(tcp, addr, len, (char *)&ss) < 0)
328 goto bad;
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200329 printsigmask(&ss);
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000330}
331
John Hughes58265892001-10-18 15:13:53 +0000332#ifndef ILL_ILLOPC
333#define ILL_ILLOPC 1 /* illegal opcode */
334#define ILL_ILLOPN 2 /* illegal operand */
335#define ILL_ILLADR 3 /* illegal addressing mode */
336#define ILL_ILLTRP 4 /* illegal trap */
337#define ILL_PRVOPC 5 /* privileged opcode */
338#define ILL_PRVREG 6 /* privileged register */
339#define ILL_COPROC 7 /* coprocessor error */
340#define ILL_BADSTK 8 /* internal stack error */
341#define FPE_INTDIV 1 /* integer divide by zero */
342#define FPE_INTOVF 2 /* integer overflow */
343#define FPE_FLTDIV 3 /* floating point divide by zero */
344#define FPE_FLTOVF 4 /* floating point overflow */
345#define FPE_FLTUND 5 /* floating point underflow */
346#define FPE_FLTRES 6 /* floating point inexact result */
347#define FPE_FLTINV 7 /* floating point invalid operation */
348#define FPE_FLTSUB 8 /* subscript out of range */
349#define SEGV_MAPERR 1 /* address not mapped to object */
350#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
351#define BUS_ADRALN 1 /* invalid address alignment */
352#define BUS_ADRERR 2 /* non-existant physical address */
353#define BUS_OBJERR 3 /* object specific hardware error */
354#define TRAP_BRKPT 1 /* process breakpoint */
355#define TRAP_TRACE 2 /* process trace trap */
356#define CLD_EXITED 1 /* child has exited */
357#define CLD_KILLED 2 /* child was killed */
358#define CLD_DUMPED 3 /* child terminated abnormally */
359#define CLD_TRAPPED 4 /* traced child has trapped */
360#define CLD_STOPPED 5 /* child has stopped */
361#define CLD_CONTINUED 6 /* stopped child has continued */
362#define POLL_IN 1 /* data input available */
363#define POLL_OUT 2 /* output buffers available */
364#define POLL_MSG 3 /* input message available */
365#define POLL_ERR 4 /* i/o error */
366#define POLL_PRI 5 /* high priority input available */
367#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000368#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000369#define SI_USER 0 /* sent by kill, sigsend, raise */
370#define SI_QUEUE -1 /* sent by sigqueue */
371#define SI_TIMER -2 /* sent by timer expiration */
372#define SI_MESGQ -3 /* sent by real time mesq state change */
373#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000374#define SI_SIGIO -5 /* sent by SIGIO */
375#define SI_TKILL -6 /* sent by tkill */
376#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100377#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000378
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100379#ifndef SI_FROMUSER
380# define SI_FROMUSER(sip) ((sip)->si_code <= 0)
Denys Vlasenko84703742012-02-25 02:38:52 +0100381#endif
John Hughes58265892001-10-18 15:13:53 +0000382
Roland McGrathd9f816f2004-09-04 03:39:20 +0000383static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000384#ifdef SI_KERNEL
385 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000386#endif
387#ifdef SI_USER
388 { SI_USER, "SI_USER" },
389#endif
John Hughes58265892001-10-18 15:13:53 +0000390#ifdef SI_QUEUE
391 { SI_QUEUE, "SI_QUEUE" },
392#endif
393#ifdef SI_TIMER
394 { SI_TIMER, "SI_TIMER" },
395#endif
John Hughes58265892001-10-18 15:13:53 +0000396#ifdef SI_MESGQ
397 { SI_MESGQ, "SI_MESGQ" },
398#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000399#ifdef SI_ASYNCIO
400 { SI_ASYNCIO, "SI_ASYNCIO" },
401#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000402#ifdef SI_SIGIO
403 { SI_SIGIO, "SI_SIGIO" },
404#endif
405#ifdef SI_TKILL
406 { SI_TKILL, "SI_TKILL" },
407#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000408#ifdef SI_ASYNCNL
409 { SI_ASYNCNL, "SI_ASYNCNL" },
410#endif
411#ifdef SI_NOINFO
412 { SI_NOINFO, "SI_NOINFO" },
413#endif
414#ifdef SI_LWP
415 { SI_LWP, "SI_LWP" },
416#endif
John Hughes58265892001-10-18 15:13:53 +0000417 { 0, NULL },
418};
419
Roland McGrathd9f816f2004-09-04 03:39:20 +0000420static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000421 { ILL_ILLOPC, "ILL_ILLOPC" },
422 { ILL_ILLOPN, "ILL_ILLOPN" },
423 { ILL_ILLADR, "ILL_ILLADR" },
424 { ILL_ILLTRP, "ILL_ILLTRP" },
425 { ILL_PRVOPC, "ILL_PRVOPC" },
426 { ILL_PRVREG, "ILL_PRVREG" },
427 { ILL_COPROC, "ILL_COPROC" },
428 { ILL_BADSTK, "ILL_BADSTK" },
429 { 0, NULL },
430};
431
Roland McGrathd9f816f2004-09-04 03:39:20 +0000432static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000433 { FPE_INTDIV, "FPE_INTDIV" },
434 { FPE_INTOVF, "FPE_INTOVF" },
435 { FPE_FLTDIV, "FPE_FLTDIV" },
436 { FPE_FLTOVF, "FPE_FLTOVF" },
437 { FPE_FLTUND, "FPE_FLTUND" },
438 { FPE_FLTRES, "FPE_FLTRES" },
439 { FPE_FLTINV, "FPE_FLTINV" },
440 { FPE_FLTSUB, "FPE_FLTSUB" },
441 { 0, NULL },
442};
443
Roland McGrathd9f816f2004-09-04 03:39:20 +0000444static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000445 { TRAP_BRKPT, "TRAP_BRKPT" },
446 { TRAP_TRACE, "TRAP_TRACE" },
447 { 0, NULL },
448};
449
Roland McGrathd9f816f2004-09-04 03:39:20 +0000450static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000451 { CLD_EXITED, "CLD_EXITED" },
452 { CLD_KILLED, "CLD_KILLED" },
453 { CLD_DUMPED, "CLD_DUMPED" },
454 { CLD_TRAPPED, "CLD_TRAPPED" },
455 { CLD_STOPPED, "CLD_STOPPED" },
456 { CLD_CONTINUED,"CLD_CONTINUED" },
457 { 0, NULL },
458};
459
Roland McGrathd9f816f2004-09-04 03:39:20 +0000460static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000461 { POLL_IN, "POLL_IN" },
462 { POLL_OUT, "POLL_OUT" },
463 { POLL_MSG, "POLL_MSG" },
464 { POLL_ERR, "POLL_ERR" },
465 { POLL_PRI, "POLL_PRI" },
466 { POLL_HUP, "POLL_HUP" },
467 { 0, NULL },
468};
469
Roland McGrathd9f816f2004-09-04 03:39:20 +0000470static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000471#ifdef PROF_SIG
472 { PROF_SIG, "PROF_SIG" },
473#endif
474 { 0, NULL },
475};
476
477#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000478static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000479#ifdef EMT_TAGOVF
480 { EMT_TAGOVF, "EMT_TAGOVF" },
481#endif
482 { 0, NULL },
483};
484#endif
485
Roland McGrathd9f816f2004-09-04 03:39:20 +0000486static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000487 { SEGV_MAPERR, "SEGV_MAPERR" },
488 { SEGV_ACCERR, "SEGV_ACCERR" },
489 { 0, NULL },
490};
491
Roland McGrathd9f816f2004-09-04 03:39:20 +0000492static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000493 { BUS_ADRALN, "BUS_ADRALN" },
494 { BUS_ADRERR, "BUS_ADRERR" },
495 { BUS_OBJERR, "BUS_OBJERR" },
496 { 0, NULL },
497};
498
499void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000500printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000501{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000502 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000503
504 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200505 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000506 return;
507 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200508 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000509 printsignal(sip->si_signo);
510 code = xlookup(siginfo_codes, sip->si_code);
511 if (!code) {
512 switch (sip->si_signo) {
513 case SIGTRAP:
514 code = xlookup(sigtrap_codes, sip->si_code);
515 break;
516 case SIGCHLD:
517 code = xlookup(sigchld_codes, sip->si_code);
518 break;
519 case SIGPOLL:
520 code = xlookup(sigpoll_codes, sip->si_code);
521 break;
522 case SIGPROF:
523 code = xlookup(sigprof_codes, sip->si_code);
524 break;
525 case SIGILL:
526 code = xlookup(sigill_codes, sip->si_code);
527 break;
528#ifdef SIGEMT
529 case SIGEMT:
530 code = xlookup(sigemt_codes, sip->si_code);
531 break;
532#endif
533 case SIGFPE:
534 code = xlookup(sigfpe_codes, sip->si_code);
535 break;
536 case SIGSEGV:
537 code = xlookup(sigsegv_codes, sip->si_code);
538 break;
539 case SIGBUS:
540 code = xlookup(sigbus_codes, sip->si_code);
541 break;
542 }
543 }
544 if (code)
545 tprintf(", si_code=%s", code);
546 else
547 tprintf(", si_code=%#x", sip->si_code);
548#ifdef SI_NOINFO
549 if (sip->si_code != SI_NOINFO)
550#endif
551 {
552 if (sip->si_errno) {
553 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
554 tprintf(", si_errno=%d", sip->si_errno);
555 else
556 tprintf(", si_errno=%s",
557 errnoent[sip->si_errno]);
558 }
559#ifdef SI_FROMUSER
560 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000561 tprintf(", si_pid=%lu, si_uid=%lu",
562 (unsigned long) sip->si_pid,
563 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000564 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000565#ifdef SI_USER
566 case SI_USER:
567 break;
568#endif
569#ifdef SI_TKILL
570 case SI_TKILL:
571 break;
572#endif
John Hughes58265892001-10-18 15:13:53 +0000573#ifdef SI_TIMER
574 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000575 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000576 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000577#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000578 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000579 if (!sip->si_ptr)
580 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000581 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200582 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000583 else
584 tprintf(", si_value={int=%u, ptr=%#lx}",
585 sip->si_int,
586 (unsigned long) sip->si_ptr);
587 break;
John Hughes58265892001-10-18 15:13:53 +0000588 }
John Hughes58265892001-10-18 15:13:53 +0000589 }
590 else
591#endif /* SI_FROMUSER */
592 {
593 switch (sip->si_signo) {
594 case SIGCHLD:
595 tprintf(", si_pid=%ld, si_status=",
596 (long) sip->si_pid);
597 if (sip->si_code == CLD_EXITED)
598 tprintf("%d", sip->si_status);
599 else
600 printsignal(sip->si_status);
John Hughes58265892001-10-18 15:13:53 +0000601 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200602 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000603 else
H.J. Lu2bb45812012-04-15 11:17:13 -0700604 tprintf(", si_utime=%llu, si_stime=%llu",
605 (unsigned long long) sip->si_utime,
606 (unsigned long long) sip->si_stime);
John Hughes58265892001-10-18 15:13:53 +0000607 break;
608 case SIGILL: case SIGFPE:
609 case SIGSEGV: case SIGBUS:
610 tprintf(", si_addr=%#lx",
611 (unsigned long) sip->si_addr);
612 break;
613 case SIGPOLL:
614 switch (sip->si_code) {
615 case POLL_IN: case POLL_OUT: case POLL_MSG:
616 tprintf(", si_band=%ld",
617 (long) sip->si_band);
618 break;
619 }
620 break;
John Hughes58265892001-10-18 15:13:53 +0000621 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000622 if (sip->si_pid || sip->si_uid)
623 tprintf(", si_pid=%lu, si_uid=%lu",
624 (unsigned long) sip->si_pid,
625 (unsigned long) sip->si_uid);
626 if (!sip->si_ptr)
627 break;
John Hughes58265892001-10-18 15:13:53 +0000628 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200629 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000630 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000631 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000632 sip->si_int,
633 (unsigned long) sip->si_ptr);
634 }
Roland McGratha39c5a12002-12-17 05:10:37 +0000635
John Hughes58265892001-10-18 15:13:53 +0000636 }
637 }
638 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200639 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000640}
641
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +0100642void
643printsiginfo_at(struct tcb *tcp, long addr)
644{
645 siginfo_t si;
646 if (!addr) {
647 tprints("NULL");
648 return;
649 }
650 if (syserror(tcp)) {
651 tprintf("%#lx", addr);
652 return;
653 }
654 if (umove(tcp, addr, &si) < 0) {
655 tprints("{???}");
656 return;
657 }
658 printsiginfo(&si, verbose(tcp));
659}
660
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000661int
Denys Vlasenko12014262011-05-30 14:00:14 +0200662sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000663{
664 if (entering(tcp)) {
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200665 tprints(sprintsigmask_long("", tcp->u_arg[0]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000666 }
667 else if (!syserror(tcp)) {
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200668 tcp->auxstr = sprintsigmask_long("old mask ", tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000669 return RVAL_HEX | RVAL_STR;
670 }
671 return 0;
672}
673
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000674#ifdef HAVE_SIGACTION
675
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000676struct old_sigaction {
Denys Vlasenko86d94842013-02-08 12:59:13 +0100677 /* sa_handler may be a libc #define, need to use other name: */
678 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000679 unsigned long sa_mask;
680 unsigned long sa_flags;
681 void (*sa_restorer)(void);
682};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000683
684int
Denys Vlasenko12014262011-05-30 14:00:14 +0200685sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000686{
687 long addr;
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 Vlasenko75f4e1f2013-07-18 20:37:06 +0200719 tprints(sprintsigmask_long("", sa.sa_mask));
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100720 tprints(", ");
721 printflags(sigact_flags, sa.sa_flags, "SA_???");
722#ifdef SA_RESTORER
723 if (sa.sa_flags & SA_RESTORER)
724 tprintf(", %p", sa.sa_restorer);
725#endif
726 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000727 }
728 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200729 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000730 else
731 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000732 return 0;
733}
734
735int
Denys Vlasenko12014262011-05-30 14:00:14 +0200736sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000737{
738 if (entering(tcp)) {
739 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200740 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000741 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000742 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200743 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000744 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000745 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200746 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000747 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000748 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200749 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000750 break;
751 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000752 tprintf("%#lx", tcp->u_arg[1]);
753 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000754 return 0;
755 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000756 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000757 switch (tcp->u_rval) {
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100758 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000759 tcp->auxstr = "SIG_ERR"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100760 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000761 tcp->auxstr = "SIG_DFL"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100762 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000763 tcp->auxstr = "SIG_IGN"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100764 default:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000765 tcp->auxstr = NULL;
766 }
767 return RVAL_HEX | RVAL_STR;
768 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000769 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000770}
771
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000772#endif /* HAVE_SIGACTION */
773
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000774int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000775sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000776{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000777#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000778 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200779 struct arm_sigcontext {
780 unsigned long trap_no;
781 unsigned long error_code;
782 unsigned long oldmask;
783 unsigned long arm_r0;
784 unsigned long arm_r1;
785 unsigned long arm_r2;
786 unsigned long arm_r3;
787 unsigned long arm_r4;
788 unsigned long arm_r5;
789 unsigned long arm_r6;
790 unsigned long arm_r7;
791 unsigned long arm_r8;
792 unsigned long arm_r9;
793 unsigned long arm_r10;
794 unsigned long arm_fp;
795 unsigned long arm_ip;
796 unsigned long arm_sp;
797 unsigned long arm_lr;
798 unsigned long arm_pc;
799 unsigned long arm_cpsr;
800 unsigned long fault_address;
801 };
802 struct arm_ucontext {
803 unsigned long uc_flags;
804 unsigned long uc_link; /* struct ucontext* */
805 /* The next three members comprise stack_t struct: */
806 unsigned long ss_sp; /* void* */
807 unsigned long ss_flags; /* int */
808 unsigned long ss_size; /* size_t */
809 struct arm_sigcontext sc;
810 /* These two members are sigset_t: */
811 unsigned long uc_sigmask[2];
812 /* more fields follow, which we aren't interested in */
813 };
814 struct arm_ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100815 sigset_t sigm;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200816 if (umove(tcp, arm_regs.ARM_sp, &uc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000817 return 0;
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200818 /* Kernel fills out uc.sc.oldmask too when it sets up signal stack,
819 * but for sigmask restore, sigreturn syscall uses uc.uc_sigmask instead.
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200820 * tprints(sprintsigmask_long(") (mask ", uc.sc.oldmask));
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200821 */
822 sigemptyset(&sigm);
823 ((uint32_t*)&sigm)[0] = uc.uc_sigmask[0];
824 ((uint32_t*)&sigm)[1] = uc.uc_sigmask[1];
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200825 tprints(sprintsigmask(") (mask ", &sigm));
Roland McGrath0f87c492003-06-03 23:29:04 +0000826 }
Roland McGrath0f87c492003-06-03 23:29:04 +0000827#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +0000828 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200829 long usp;
Dmitry V. Levine2de3bd2013-11-12 15:27:38 +0000830 struct sigcontext sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200831 if (upeek(tcp->pid, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000832 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100833 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000834 return 0;
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200835 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0]));
Roland McGrath0f87c492003-06-03 23:29:04 +0000836 }
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200837#elif defined(I386) || defined(X86_64)
838# if defined(X86_64)
839 if (current_personality == 0) /* 64-bit */
840 return 0;
841# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000842 if (entering(tcp)) {
Denys Vlasenko670b21b2013-07-17 17:26:56 +0200843 struct i386_sigcontext_struct {
844 uint16_t gs, __gsh;
845 uint16_t fs, __fsh;
846 uint16_t es, __esh;
847 uint16_t ds, __dsh;
848 uint32_t edi;
849 uint32_t esi;
850 uint32_t ebp;
851 uint32_t esp;
852 uint32_t ebx;
853 uint32_t edx;
854 uint32_t ecx;
855 uint32_t eax;
856 uint32_t trapno;
857 uint32_t err;
858 uint32_t eip;
859 uint16_t cs, __csh;
860 uint32_t eflags;
861 uint32_t esp_at_signal;
862 uint16_t ss, __ssh;
863 uint32_t i387;
864 uint32_t oldmask;
865 uint32_t cr2;
866 };
867 struct i386_fpstate {
868 uint32_t cw;
869 uint32_t sw;
870 uint32_t tag;
871 uint32_t ipoff;
872 uint32_t cssel;
873 uint32_t dataoff;
874 uint32_t datasel;
875 uint8_t st[8][10]; /* 8*10 bytes: FP regs */
876 uint16_t status;
877 uint16_t magic;
878 uint32_t fxsr_env[6];
879 uint32_t mxcsr;
880 uint32_t reserved;
881 uint8_t stx[8][16]; /* 8*16 bytes: FP regs, each padded to 16 bytes */
882 uint8_t xmm[8][16]; /* 8 XMM regs */
883 uint32_t padding1[44];
884 uint32_t padding2[12]; /* union with struct _fpx_sw_bytes */
885 };
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200886 struct {
887 struct i386_sigcontext_struct sc;
888 struct i386_fpstate fp;
889 uint32_t extramask[1];
890 } signal_stack;
891 /* On i386, sc is followed on stack by struct fpstate
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100892 * and after it an additional u32 extramask[1] which holds
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200893 * upper half of the mask.
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100894 */
Dmitry V. Levinaca4ff72013-09-11 13:26:17 +0000895 union {
896 sigset_t sig;
897 uint32_t mask[2];
898 } sigmask;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200899 if (umove(tcp, *i386_esp_ptr, &signal_stack) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000900 return 0;
Dmitry V. Levinaca4ff72013-09-11 13:26:17 +0000901 sigemptyset(&sigmask.sig);
902 sigmask.mask[0] = signal_stack.sc.oldmask;
903 sigmask.mask[1] = signal_stack.extramask[0];
904 tprints(sprintsigmask(") (mask ", &sigmask.sig));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000905 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000906#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000907 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200908 struct sigcontext sc;
909 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100910 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000911 /* offset of sigcontext in the kernel's sigframe structure: */
912# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200913 if (upeek(tcp->pid, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000914 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000915 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000916 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200917 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100918 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
Denys Vlasenkoa8773792013-07-18 20:42:41 +0200919 tprints(sprintsigmask(") (mask ", &sigm));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000920 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000921#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +0000922 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200923 long esp;
Dmitry V. Levine2de3bd2013-11-12 15:27:38 +0000924 struct sigcontext sc;
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 Vlasenko75f4e1f2013-07-18 20:37:06 +0200939 tprints(sprintsigmask_long(") (mask ", sc.oldmask));
Roland McGrath0f87c492003-06-03 23:29:04 +0000940 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000941#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000942 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200943 long usp;
944 struct sigcontext sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200945 if (upeek(tcp->pid, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000946 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000947 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000948 return 0;
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200949 tprints(sprintsigmask_long(") (mask ", sc.sc_mask));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000950 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000951#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000952 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200953 long fp;
Dmitry V. Levine2de3bd2013-11-12 15:27:38 +0000954 struct sigcontext sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200955 if (upeek(tcp->pid, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000956 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000957 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000958 return 0;
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200959 tprints(sprintsigmask_long(") (mask ", sc.sc_mask));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000960 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100961#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200962 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200963 long i1;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200964 m_siginfo_t si;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100965 i1 = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200966 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100967 perror_msg("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000968 return 0;
969 }
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200970 tprints(sprintsigmask_long(") (mask ", si.si_mask));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000971 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100972#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +0000973 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
974 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200975 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200976 long sp;
977 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100978 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200979 if (upeek(tcp->pid, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000980 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +0000981 /* There are six words followed by a 128-byte siginfo. */
982 sp = sp + 6 * 4 + 128;
983 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000984 return 0;
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200985 tprints(sprintsigmask_long(") (mask ", *(long *) &uc.uc_sigmask));
Roland McGrath542c2c62008-05-20 01:11:56 +0000986 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000987#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200988 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200989 long sp;
990 struct pt_regs regs;
991 m_siginfo_t si;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200992 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100993 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenko56a52982011-06-09 01:36:29 +0200994 return 0;
995 }
Roland McGrath576b7842007-11-04 00:00:00 +0000996 sp = regs.regs[29];
997 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +0200998 return 0;
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +0200999 tprints(sprintsigmask_long(") (mask ", si.si_mask));
Wichert Akkermanf90da011999-10-31 21:15:38 +00001000 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001001#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001002 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001003 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001004 long regs[PT_MAX+1];
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001005 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +01001006 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001007 return 0;
1008 }
1009 if (umove(tcp, regs[PT_USP], &sc) < 0)
1010 return 0;
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +02001011 tprints(sprintsigmask_long(") (mask ", sc.oldmask));
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001012 }
Chris Metcalfc8c66982009-12-28 10:00:15 -05001013#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001014 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001015 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001016 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001017
1018 /* offset of ucontext in the kernel's sigframe structure */
Chris Metcalf5c0796f2013-05-21 20:25:22 -04001019# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(siginfo_t)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +01001020 if (umove(tcp, tile_regs.sp + SIGFRAME_UC_OFFSET, &uc) < 0)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001021 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001022 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001023 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
Denys Vlasenkoa8773792013-07-18 20:42:41 +02001024 tprints(sprintsigmask(") (mask ", &sigm));
Chris Metcalfc8c66982009-12-28 10:00:15 -05001025 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001026#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001027 /* TODO: Verify that this is correct... */
1028 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001029 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001030 long sp;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001031 /* Read r1, the stack pointer. */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001032 if (upeek(tcp->pid, 1 * 4, &sp) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001033 return 0;
1034 if (umove(tcp, sp, &sc) < 0)
1035 return 0;
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +02001036 tprints(sprintsigmask_long(") (mask ", sc.oldmask));
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001037 }
Chris Zankel8f636ed2013-03-25 10:22:07 -07001038#elif defined(XTENSA)
1039 /* Xtensa only has rt_sys_sigreturn */
Vineet Gupta7daacbb2013-08-16 12:47:06 +05301040#elif defined(ARC)
1041 /* ARC syscall ABI only supports rt_sys_sigreturn */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001042#else
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001043# warning No sys_sigreturn() for this architecture
1044# warning (no problem, just a reminder :-)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001045#endif
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001046 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001047}
1048
1049int
Denys Vlasenko12014262011-05-30 14:00:14 +02001050sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001051{
1052 if (exiting(tcp)) {
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +02001053 tcp->auxstr = sprintsigmask_long("mask ", tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001054 }
1055 return RVAL_HEX | RVAL_STR;
1056}
1057
1058int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001059sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001060{
1061 if (entering(tcp)) {
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +02001062 tprints(sprintsigmask_long("", tcp->u_arg[2]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001063 }
1064 return 0;
1065}
1066
Denys Vlasenko84703742012-02-25 02:38:52 +01001067#if !defined SS_ONSTACK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001068#define SS_ONSTACK 1
1069#define SS_DISABLE 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001070#endif
1071
Roland McGrathd9f816f2004-09-04 03:39:20 +00001072static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001073 { SS_ONSTACK, "SS_ONSTACK" },
1074 { SS_DISABLE, "SS_DISABLE" },
1075 { 0, NULL },
1076};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001077
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001078static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001079print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001080{
1081 stack_t ss;
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001082
1083 if (!addr) {
1084 tprints("NULL");
1085 } else if (umove(tcp, addr, &ss) < 0) {
1086 tprintf("%#lx", addr);
1087 } else {
1088 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1089 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
1090 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1091 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001092}
1093
1094int
Denys Vlasenko12014262011-05-30 14:00:14 +02001095sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001096{
1097 if (entering(tcp)) {
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001098 print_stack_t(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001099 }
1100 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001101 tprints(", ");
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001102 print_stack_t(tcp, tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001103 }
1104 return 0;
1105}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001106
1107#ifdef HAVE_SIGACTION
1108
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001109/* "Old" sigprocmask, which operates with word-sized signal masks */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001110int
Denys Vlasenko12014262011-05-30 14:00:14 +02001111sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001112{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001113# ifdef ALPHA
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001114 if (entering(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001115 /*
1116 * Alpha/OSF is different: it doesn't pass in two pointers,
1117 * but rather passes in the new bitmask as an argument and
1118 * then returns the old bitmask. This "works" because we
1119 * only have 64 signals to worry about. If you want more,
1120 * use of the rt_sigprocmask syscall is required.
1121 * Alpha:
1122 * old = osf_sigprocmask(how, new);
1123 * Everyone else:
1124 * ret = sigprocmask(how, &new, &old, ...);
1125 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001126 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +02001127 tprints(sprintsigmask_long(", ", tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001128 }
1129 else if (!syserror(tcp)) {
Denys Vlasenko75f4e1f2013-07-18 20:37:06 +02001130 tcp->auxstr = sprintsigmask_long("old mask ", tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001131 return RVAL_HEX | RVAL_STR;
1132 }
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001133# else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001134 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001135 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001136 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001137 print_sigset_addr_len(tcp, tcp->u_arg[1], current_wordsize);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001138 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001139 }
1140 else {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001141 if (syserror(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001142 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001143 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001144 print_sigset_addr_len(tcp, tcp->u_arg[2], current_wordsize);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001145 }
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001146# endif /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001147 return 0;
1148}
1149
1150#endif /* HAVE_SIGACTION */
1151
1152int
Denys Vlasenko12014262011-05-30 14:00:14 +02001153sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001154{
1155 if (entering(tcp)) {
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001156 tprintf("%ld, %s",
1157 widen_to_long(tcp->u_arg[0]),
1158 signame(tcp->u_arg[1])
1159 );
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001160 }
1161 return 0;
1162}
1163
Roland McGrath8ffc3522003-07-09 09:47:49 +00001164int
Denys Vlasenko12014262011-05-30 14:00:14 +02001165sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001166{
1167 if (entering(tcp)) {
1168 tprintf("%ld, %ld, %s",
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001169 widen_to_long(tcp->u_arg[0]),
1170 widen_to_long(tcp->u_arg[1]),
1171 signame(tcp->u_arg[2])
1172 );
Roland McGrath8ffc3522003-07-09 09:47:49 +00001173 }
1174 return 0;
1175}
Roland McGrath8ffc3522003-07-09 09:47:49 +00001176
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001177int
Denys Vlasenko12014262011-05-30 14:00:14 +02001178sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001179{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001180 if (exiting(tcp)) {
1181 if (syserror(tcp))
1182 tprintf("%#lx", tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001183 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001184 print_sigset_addr_len(tcp, tcp->u_arg[0], current_wordsize);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001185 }
1186 return 0;
1187}
1188
Denys Vlasenko12014262011-05-30 14:00:14 +02001189int
1190sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001191{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001192 /* Note: arg[3] is the length of the sigset. Kernel requires NSIG / 8 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001193 if (entering(tcp)) {
1194 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001195 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001196 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[3]);
1197 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001198 }
1199 else {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001200 if (syserror(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001201 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001202 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001203 print_sigset_addr_len(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001204 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001205 }
1206 return 0;
1207}
1208
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001209/* Structure describing the action to be taken when a signal arrives. */
1210struct new_sigaction
1211{
Denys Vlasenko86d94842013-02-08 12:59:13 +01001212 /* sa_handler may be a libc #define, need to use other name: */
1213 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001214 unsigned long sa_flags;
Denys Vlasenko86d94842013-02-08 12:59:13 +01001215 void (*sa_restorer)(void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001216 /* Kernel treats sa_mask as an array of longs. */
1217 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1218};
1219/* Same for i386-on-x86_64 and similar cases */
1220struct new_sigaction32
1221{
1222 uint32_t __sa_handler;
1223 uint32_t sa_flags;
1224 uint32_t sa_restorer;
1225 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001226};
1227
Roland McGrath5f206812008-08-20 01:59:40 +00001228int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001229sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001230{
1231 struct new_sigaction sa;
1232 sigset_t sigset;
1233 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001234 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001235
1236 if (entering(tcp)) {
1237 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001238 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001239 addr = tcp->u_arg[1];
1240 } else
1241 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001242
1243 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001244 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001245 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001246 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001247 if (!verbose(tcp)) {
1248 tprintf("%#lx", addr);
1249 goto after_sa;
1250 }
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001251#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001252 if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001253 struct new_sigaction32 sa32;
1254 r = umove(tcp, addr, &sa32);
1255 if (r >= 0) {
1256 memset(&sa, 0, sizeof(sa));
1257 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1258 sa.sa_flags = sa32.sa_flags;
1259 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1260 /* Kernel treats sa_mask as an array of longs.
1261 * For 32-bit process, "long" is uint32_t, thus, for example,
1262 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1263 * But for (64-bit) kernel, 32th bit in sa_mask is
1264 * 32th bit in 0th (64-bit) long!
1265 * For little-endian, it's the same.
1266 * For big-endian, we swap 32-bit words.
1267 */
1268 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1269 }
1270 } else
1271#endif
1272 {
1273 r = umove(tcp, addr, &sa);
1274 }
1275 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001276 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001277 goto after_sa;
1278 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001279 /* Architectures using function pointers, like
1280 * hppa, may need to manipulate the function pointer
1281 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +01001282 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001283 * the address space of the traced process, and can't
1284 * be manipulated by strace. In order to prevent the
1285 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +01001286 * __sa_handler we cast the function pointers to long. */
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001287 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001288 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001289 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001290 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001291 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001292 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001293 else
1294 tprintf("{%#lx, ", (long) sa.__sa_handler);
Denys Vlasenko80b73a22013-07-18 10:10:46 +02001295 /*
1296 * Sigset size is in tcp->u_arg[4] (SPARC)
1297 * or in tcp->u_arg[3] (all other),
1298 * but kernel won't handle sys_rt_sigaction
1299 * with wrong sigset size (just returns EINVAL instead).
1300 * We just fetch the right size, which is NSIG / 8.
1301 */
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001302 sigemptyset(&sigset);
Denys Vlasenko80b73a22013-07-18 10:10:46 +02001303 memcpy(&sigset, &sa.sa_mask, NSIG / 8);
Denys Vlasenkoa8773792013-07-18 20:42:41 +02001304 printsigmask(&sigset);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001305 tprints(", ");
Denys Vlasenko80b73a22013-07-18 10:10:46 +02001306
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001307 printflags(sigact_flags, sa.sa_flags, "SA_???");
1308#ifdef SA_RESTORER
1309 if (sa.sa_flags & SA_RESTORER)
1310 tprintf(", %p", sa.sa_restorer);
1311#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001312 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001313
1314 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001315 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001316 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001317 else
Denys Vlasenko9472a272013-02-12 11:43:46 +01001318#if defined(SPARC) || defined(SPARC64)
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001319 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1320#elif defined(ALPHA)
1321 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1322#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001323 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001324#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001325 return 0;
1326}
1327
Denys Vlasenko1d632462009-04-14 12:51:00 +00001328int
1329sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001330{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001331 if (exiting(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001332 /*
1333 * One of the few syscalls where sigset size (arg[1])
1334 * is allowed to be <= NSIG / 8, not strictly ==.
1335 * This allows non-rt sigpending() syscall
1336 * to reuse rt_sigpending() code in kernel.
1337 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001338 if (syserror(tcp))
1339 tprintf("%#lx", tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001340 else
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001341 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
1342 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001343 }
1344 return 0;
1345}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001346
1347int
1348sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001349{
1350 if (entering(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001351 /* NB: kernel requires arg[1] == NSIG / 8 */
1352 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
1353 tprintf(", %lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001354 }
1355 return 0;
1356}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001357
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001358static void
1359print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1360{
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001361 printsignal(sig);
1362 tprints(", ");
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001363 printsiginfo_at(tcp, uinfo);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001364}
1365
Denys Vlasenko1d632462009-04-14 12:51:00 +00001366int
1367sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001368{
1369 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001370 tprintf("%lu, ", tcp->u_arg[0]);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001371 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1372 }
1373 return 0;
1374}
1375
1376int
1377sys_rt_tgsigqueueinfo(struct tcb *tcp)
1378{
1379 if (entering(tcp)) {
1380 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1381 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001382 }
1383 return 0;
1384}
1385
Denys Vlasenko1d632462009-04-14 12:51:00 +00001386int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001387{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001388 /* NB: kernel requires arg[3] == NSIG / 8 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001389 if (entering(tcp)) {
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001390 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[3]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001391 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001392 /* This is the only "return" parameter, */
1393 if (tcp->u_arg[1] != 0)
1394 return 0;
1395 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001396 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001397 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001398 else if (tcp->u_arg[1] != 0) {
1399 /* syscall exit, and u_arg[1] wasn't NULL */
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001400 printsiginfo_at(tcp, tcp->u_arg[1]);
1401 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001402 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001403 else {
1404 /* syscall exit, and u_arg[1] was NULL */
1405 return 0;
1406 }
1407 print_timespec(tcp, tcp->u_arg[2]);
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001408 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001409 return 0;
1410};
1411
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001412int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001413sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001414{
1415 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001416 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001417 return 0;
1418}
1419
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001420static int
1421do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001422{
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001423 /* NB: kernel requires arg[2] == NSIG / 8 */
Roland McGrathf46ccd32007-08-02 01:15:59 +00001424 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001425 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001426 tprints(", ");
Denys Vlasenko5e133aa2013-07-18 17:02:21 +02001427 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001428 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001429 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001430 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001431 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1432 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001433 }
1434 return 0;
1435}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001436
1437int
1438sys_signalfd(struct tcb *tcp)
1439{
1440 return do_signalfd(tcp, -1);
1441}
1442
1443int
1444sys_signalfd4(struct tcb *tcp)
1445{
1446 return do_signalfd(tcp, 3);
1447}