blob: 878a33d05b6253663ddac1274bd7f75b7e0ded6b [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 Vlasenko84703742012-02-25 02:38:52 +010073# if defined I386 && !defined HAVE_STRUCT_SIGCONTEXT_STRUCT
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000074struct sigcontext_struct {
75 unsigned short gs, __gsh;
76 unsigned short fs, __fsh;
77 unsigned short es, __esh;
78 unsigned short ds, __dsh;
79 unsigned long edi;
80 unsigned long esi;
81 unsigned long ebp;
82 unsigned long esp;
83 unsigned long ebx;
84 unsigned long edx;
85 unsigned long ecx;
86 unsigned long eax;
87 unsigned long trapno;
88 unsigned long err;
89 unsigned long eip;
90 unsigned short cs, __csh;
91 unsigned long eflags;
92 unsigned long esp_at_signal;
93 unsigned short ss, __ssh;
94 unsigned long i387;
95 unsigned long oldmask;
96 unsigned long cr2;
97};
Denys Vlasenko84703742012-02-25 02:38:52 +010098# else /* !I386 */
99# if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000100struct sigcontext
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000101{
102 unsigned long sc_mask;
103 unsigned long sc_usp;
104 unsigned long sc_d0;
105 unsigned long sc_d1;
106 unsigned long sc_a0;
107 unsigned long sc_a1;
108 unsigned short sc_sr;
109 unsigned long sc_pc;
110 unsigned short sc_formatvec;
111};
Denys Vlasenko84703742012-02-25 02:38:52 +0100112# endif /* M68K */
113# endif /* !I386 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000114#endif /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200115
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000116#ifndef NSIG
Denys Vlasenko84703742012-02-25 02:38:52 +0100117# warning: NSIG is not defined, using 32
118# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000119#endif
120#ifdef ARM
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200121/* Ugh. Is this really correct? ARM has no RT signals?! */
Denys Vlasenko84703742012-02-25 02:38:52 +0100122# undef NSIG
123# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000124#endif
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200125
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126#ifdef HAVE_SIGACTION
127
H.J. Lu35be5812012-04-16 13:00:01 +0200128#if defined I386 || defined X86_64 || defined X32
Roland McGrath2638cb42002-12-15 23:58:41 +0000129/* The libc headers do not define this constant since it should only be
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200130 used by the implementation. So we define it here. */
Roland McGrath2638cb42002-12-15 23:58:41 +0000131# ifndef SA_RESTORER
132# define SA_RESTORER 0x04000000
133# endif
134#endif
135
Roland McGrathd9f816f2004-09-04 03:39:20 +0000136static const struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000137#ifdef SA_RESTORER
138 { SA_RESTORER, "SA_RESTORER" },
139#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000140#ifdef SA_STACK
141 { SA_STACK, "SA_STACK" },
142#endif
143#ifdef SA_RESTART
144 { SA_RESTART, "SA_RESTART" },
145#endif
146#ifdef SA_INTERRUPT
147 { SA_INTERRUPT, "SA_INTERRUPT" },
148#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000149#ifdef SA_NODEFER
150 { SA_NODEFER, "SA_NODEFER" },
151#endif
152#if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000153 { SA_NOMASK, "SA_NOMASK" },
154#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000155#ifdef SA_RESETHAND
156 { SA_RESETHAND, "SA_RESETHAND" },
157#endif
158#if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000159 { SA_ONESHOT, "SA_ONESHOT" },
160#endif
161#ifdef SA_SIGINFO
162 { SA_SIGINFO, "SA_SIGINFO" },
163#endif
164#ifdef SA_RESETHAND
165 { SA_RESETHAND, "SA_RESETHAND" },
166#endif
167#ifdef SA_ONSTACK
168 { SA_ONSTACK, "SA_ONSTACK" },
169#endif
170#ifdef SA_NODEFER
171 { SA_NODEFER, "SA_NODEFER" },
172#endif
173#ifdef SA_NOCLDSTOP
174 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
175#endif
176#ifdef SA_NOCLDWAIT
177 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
178#endif
179#ifdef _SA_BSDCALL
180 { _SA_BSDCALL, "_SA_BSDCALL" },
181#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500182#ifdef SA_NOPTRACE
183 { SA_NOPTRACE, "SA_NOPTRACE" },
184#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000185 { 0, NULL },
186};
187
Roland McGrathd9f816f2004-09-04 03:39:20 +0000188static const struct xlat sigprocmaskcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000189 { SIG_BLOCK, "SIG_BLOCK" },
190 { SIG_UNBLOCK, "SIG_UNBLOCK" },
191 { SIG_SETMASK, "SIG_SETMASK" },
192#ifdef SIG_SETMASK32
193 { SIG_SETMASK32,"SIG_SETMASK32" },
194#endif
195 { 0, NULL },
196};
197
198#endif /* HAVE_SIGACTION */
199
Nate Sammonsce780fc1999-03-29 23:23:13 +0000200/* Anonymous realtime signals. */
201/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
202 constant. This is what we want. Otherwise, just use SIGRTMIN. */
203#ifdef SIGRTMIN
204#ifndef __SIGRTMIN
205#define __SIGRTMIN SIGRTMIN
206#define __SIGRTMAX SIGRTMAX /* likewise */
207#endif
208#endif
209
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200210/* Note on the size of sigset_t:
211 *
212 * In glibc, sigset_t is an array with space for 1024 bits (!),
213 * even though all arches supported by Linux have only 64 signals
214 * except MIPS, which has 128. IOW, it is 128 bytes long.
215 *
216 * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
217 * However, some old syscall return only 32 lower bits (one word).
218 * Example: sys_sigpending vs sys_rt_sigpending.
219 *
220 * Be aware of this fact when you try to
221 * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
222 * - sizeof(sigset_t) is much bigger than you think,
223 * it may overflow tcp->u_arg[] array, and it may try to copy more data
224 * than is really available in <something>.
225 * Similarly,
226 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
227 * may be a bad idea: it'll try to read much more data than needed
228 * to fetch a sigset_t.
229 * Use (NSIG / 8) as a size instead.
230 */
231
Roland McGrathee36ce12004-09-04 03:53:10 +0000232const char *
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200233signame(int sig)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000234{
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200235 static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
236
237 if (sig >= 0 && sig < nsignals)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000238 return signalent[sig];
239#ifdef SIGRTMIN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200240 if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
241 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000242 return buf;
243 }
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200244#endif
245 sprintf(buf, "%d", sig);
246 return buf;
Nate Sammonsce780fc1999-03-29 23:23:13 +0000247}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000248
Nate Sammons4a121431999-04-06 01:19:39 +0000249static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200250long_to_sigset(long l, sigset_t *s)
Nate Sammons4a121431999-04-06 01:19:39 +0000251{
252 sigemptyset(s);
253 *(long *)s = l;
254}
255
256static int
Denys Vlasenko12014262011-05-30 14:00:14 +0200257copy_sigset_len(struct tcb *tcp, long addr, sigset_t *s, int len)
Nate Sammons4a121431999-04-06 01:19:39 +0000258{
259 if (len > sizeof(*s))
260 len = sizeof(*s);
261 sigemptyset(s);
262 if (umoven(tcp, addr, len, (char *)s) < 0)
263 return -1;
264 return 0;
265}
266
Nate Sammons4a121431999-04-06 01:19:39 +0000267/* Original sigset is unsigned long */
268#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
Nate Sammons4a121431999-04-06 01:19:39 +0000269
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000270static const char *
271sprintsigmask(const char *str, sigset_t *mask, int rt)
272/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000273{
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200274 /* Was [8 * sizeof(sigset_t) * 8], but
275 * glibc sigset_t is huge (1024 bits = 128 *bytes*),
276 * and we were ending up with 8k (!) buffer here.
277 *
278 * No Unix system can have sig > 255
279 * (waitpid API won't be able to indicate death from one)
280 * and sig 0 doesn't exist either.
281 * Therefore max possible no of sigs is 255: 1..255
282 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100283 static char outstr[8 * (255 * 2 / 3)];
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200284
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000285 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000286 int maxsigs;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100287 int show_members;
288 char sep;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000289 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000290
Nate Sammons4a121431999-04-06 01:19:39 +0000291 maxsigs = nsignals;
292#ifdef __SIGRTMAX
293 if (rt)
294 maxsigs = __SIGRTMAX; /* instead */
295#endif
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100296 s = stpcpy(outstr, str);
297 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000298 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299 if (sigismember(mask, i) == 1)
300 nsigs++;
301 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100302
303 /* 1: show mask members, 0: show those which are NOT in mask */
304 show_members = (nsigs < nsignals * 2 / 3);
305 if (!show_members)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000306 *s++ = '~';
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100307
308 sep = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000309 for (i = 1; i < maxsigs; i++) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100310 if (sigismember(mask, i) == show_members) {
John Hughesbdf48f52001-03-06 15:08:09 +0000311 /* real-time signals on solaris don't have
312 * signalent entries
313 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100314 char tsig[40];
315 *s++ = sep;
John Hughesbdf48f52001-03-06 15:08:09 +0000316 if (i < nsignals) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100317 s = stpcpy(s, signalent[i] + 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000318 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000319#ifdef SIGRTMIN
320 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
Roland McGrath90b4cb52003-09-23 22:19:32 +0000321 sprintf(tsig, "RT_%u", i - __SIGRTMIN);
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100322 s = stpcpy(s, tsig);
Roland McGrath90b4cb52003-09-23 22:19:32 +0000323 }
324#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000325 else {
John Hughesbdf48f52001-03-06 15:08:09 +0000326 sprintf(tsig, "%u", i);
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100327 s = stpcpy(s, tsig);
John Hughesbdf48f52001-03-06 15:08:09 +0000328 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100329 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000330 }
331 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100332 if (sep == '[')
333 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000334 *s++ = ']';
335 *s = '\0';
336 return outstr;
337}
338
339static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200340printsigmask(sigset_t *mask, int rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000341{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200342 tprints(sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000343}
344
345void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200346printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000347{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200348 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000349}
350
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000351void
352print_sigset(struct tcb *tcp, long addr, int rt)
353{
354 sigset_t ss;
355
356 if (!addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200357 tprints("NULL");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000358 else if (copy_sigset(tcp, addr, &ss) < 0)
359 tprintf("%#lx", addr);
360 else
361 printsigmask(&ss, rt);
362}
363
John Hughes58265892001-10-18 15:13:53 +0000364#ifndef ILL_ILLOPC
365#define ILL_ILLOPC 1 /* illegal opcode */
366#define ILL_ILLOPN 2 /* illegal operand */
367#define ILL_ILLADR 3 /* illegal addressing mode */
368#define ILL_ILLTRP 4 /* illegal trap */
369#define ILL_PRVOPC 5 /* privileged opcode */
370#define ILL_PRVREG 6 /* privileged register */
371#define ILL_COPROC 7 /* coprocessor error */
372#define ILL_BADSTK 8 /* internal stack error */
373#define FPE_INTDIV 1 /* integer divide by zero */
374#define FPE_INTOVF 2 /* integer overflow */
375#define FPE_FLTDIV 3 /* floating point divide by zero */
376#define FPE_FLTOVF 4 /* floating point overflow */
377#define FPE_FLTUND 5 /* floating point underflow */
378#define FPE_FLTRES 6 /* floating point inexact result */
379#define FPE_FLTINV 7 /* floating point invalid operation */
380#define FPE_FLTSUB 8 /* subscript out of range */
381#define SEGV_MAPERR 1 /* address not mapped to object */
382#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
383#define BUS_ADRALN 1 /* invalid address alignment */
384#define BUS_ADRERR 2 /* non-existant physical address */
385#define BUS_OBJERR 3 /* object specific hardware error */
386#define TRAP_BRKPT 1 /* process breakpoint */
387#define TRAP_TRACE 2 /* process trace trap */
388#define CLD_EXITED 1 /* child has exited */
389#define CLD_KILLED 2 /* child was killed */
390#define CLD_DUMPED 3 /* child terminated abnormally */
391#define CLD_TRAPPED 4 /* traced child has trapped */
392#define CLD_STOPPED 5 /* child has stopped */
393#define CLD_CONTINUED 6 /* stopped child has continued */
394#define POLL_IN 1 /* data input available */
395#define POLL_OUT 2 /* output buffers available */
396#define POLL_MSG 3 /* input message available */
397#define POLL_ERR 4 /* i/o error */
398#define POLL_PRI 5 /* high priority input available */
399#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000400#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000401#define SI_USER 0 /* sent by kill, sigsend, raise */
402#define SI_QUEUE -1 /* sent by sigqueue */
403#define SI_TIMER -2 /* sent by timer expiration */
404#define SI_MESGQ -3 /* sent by real time mesq state change */
405#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000406#define SI_SIGIO -5 /* sent by SIGIO */
407#define SI_TKILL -6 /* sent by tkill */
408#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100409#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000410
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100411#ifndef SI_FROMUSER
412# define SI_FROMUSER(sip) ((sip)->si_code <= 0)
Denys Vlasenko84703742012-02-25 02:38:52 +0100413#endif
John Hughes58265892001-10-18 15:13:53 +0000414
John Spencereb54c472012-12-03 00:27:22 +0100415#if defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 1))
John Hughes58265892001-10-18 15:13:53 +0000416/* Type for data associated with a signal. */
417typedef union sigval
418{
419 int sival_int;
420 void *sival_ptr;
421} sigval_t;
422
423# define __SI_MAX_SIZE 128
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200424# define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof(int)) - 3)
John Hughes58265892001-10-18 15:13:53 +0000425
426typedef struct siginfo
427{
428 int si_signo; /* Signal number. */
429 int si_errno; /* If non-zero, an errno value associated with
430 this signal, as defined in <errno.h>. */
431 int si_code; /* Signal code. */
432
433 union
434 {
435 int _pad[__SI_PAD_SIZE];
436
437 /* kill(). */
438 struct
439 {
440 __pid_t si_pid; /* Sending process ID. */
441 __uid_t si_uid; /* Real user ID of sending process. */
442 } _kill;
443
444 /* POSIX.1b timers. */
445 struct
446 {
447 unsigned int _timer1;
448 unsigned int _timer2;
449 } _timer;
450
451 /* POSIX.1b signals. */
452 struct
453 {
454 __pid_t si_pid; /* Sending process ID. */
455 __uid_t si_uid; /* Real user ID of sending process. */
456 sigval_t si_sigval; /* Signal value. */
457 } _rt;
458
459 /* SIGCHLD. */
460 struct
461 {
462 __pid_t si_pid; /* Which child. */
463 int si_status; /* Exit value or signal. */
464 __clock_t si_utime;
465 __clock_t si_stime;
466 } _sigchld;
467
468 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
469 struct
470 {
471 void *si_addr; /* Faulting insn/memory ref. */
472 } _sigfault;
473
474 /* SIGPOLL. */
475 struct
476 {
477 int si_band; /* Band event for SIGPOLL. */
478 int si_fd;
479 } _sigpoll;
480 } _sifields;
481} siginfo_t;
482
483#define si_pid _sifields._kill.si_pid
484#define si_uid _sifields._kill.si_uid
485#define si_status _sifields._sigchld.si_status
486#define si_utime _sifields._sigchld.si_utime
487#define si_stime _sifields._sigchld.si_stime
488#define si_value _sifields._rt.si_sigval
489#define si_int _sifields._rt.si_sigval.sival_int
490#define si_ptr _sifields._rt.si_sigval.sival_ptr
491#define si_addr _sifields._sigfault.si_addr
492#define si_band _sifields._sigpoll.si_band
493#define si_fd _sifields._sigpoll.si_fd
494
495#endif
496
Roland McGrathd9f816f2004-09-04 03:39:20 +0000497static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000498#ifdef SI_KERNEL
499 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000500#endif
501#ifdef SI_USER
502 { SI_USER, "SI_USER" },
503#endif
John Hughes58265892001-10-18 15:13:53 +0000504#ifdef SI_QUEUE
505 { SI_QUEUE, "SI_QUEUE" },
506#endif
507#ifdef SI_TIMER
508 { SI_TIMER, "SI_TIMER" },
509#endif
John Hughes58265892001-10-18 15:13:53 +0000510#ifdef SI_MESGQ
511 { SI_MESGQ, "SI_MESGQ" },
512#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000513#ifdef SI_ASYNCIO
514 { SI_ASYNCIO, "SI_ASYNCIO" },
515#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000516#ifdef SI_SIGIO
517 { SI_SIGIO, "SI_SIGIO" },
518#endif
519#ifdef SI_TKILL
520 { SI_TKILL, "SI_TKILL" },
521#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000522#ifdef SI_ASYNCNL
523 { SI_ASYNCNL, "SI_ASYNCNL" },
524#endif
525#ifdef SI_NOINFO
526 { SI_NOINFO, "SI_NOINFO" },
527#endif
528#ifdef SI_LWP
529 { SI_LWP, "SI_LWP" },
530#endif
John Hughes58265892001-10-18 15:13:53 +0000531 { 0, NULL },
532};
533
Roland McGrathd9f816f2004-09-04 03:39:20 +0000534static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000535 { ILL_ILLOPC, "ILL_ILLOPC" },
536 { ILL_ILLOPN, "ILL_ILLOPN" },
537 { ILL_ILLADR, "ILL_ILLADR" },
538 { ILL_ILLTRP, "ILL_ILLTRP" },
539 { ILL_PRVOPC, "ILL_PRVOPC" },
540 { ILL_PRVREG, "ILL_PRVREG" },
541 { ILL_COPROC, "ILL_COPROC" },
542 { ILL_BADSTK, "ILL_BADSTK" },
543 { 0, NULL },
544};
545
Roland McGrathd9f816f2004-09-04 03:39:20 +0000546static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000547 { FPE_INTDIV, "FPE_INTDIV" },
548 { FPE_INTOVF, "FPE_INTOVF" },
549 { FPE_FLTDIV, "FPE_FLTDIV" },
550 { FPE_FLTOVF, "FPE_FLTOVF" },
551 { FPE_FLTUND, "FPE_FLTUND" },
552 { FPE_FLTRES, "FPE_FLTRES" },
553 { FPE_FLTINV, "FPE_FLTINV" },
554 { FPE_FLTSUB, "FPE_FLTSUB" },
555 { 0, NULL },
556};
557
Roland McGrathd9f816f2004-09-04 03:39:20 +0000558static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000559 { TRAP_BRKPT, "TRAP_BRKPT" },
560 { TRAP_TRACE, "TRAP_TRACE" },
561 { 0, NULL },
562};
563
Roland McGrathd9f816f2004-09-04 03:39:20 +0000564static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000565 { CLD_EXITED, "CLD_EXITED" },
566 { CLD_KILLED, "CLD_KILLED" },
567 { CLD_DUMPED, "CLD_DUMPED" },
568 { CLD_TRAPPED, "CLD_TRAPPED" },
569 { CLD_STOPPED, "CLD_STOPPED" },
570 { CLD_CONTINUED,"CLD_CONTINUED" },
571 { 0, NULL },
572};
573
Roland McGrathd9f816f2004-09-04 03:39:20 +0000574static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000575 { POLL_IN, "POLL_IN" },
576 { POLL_OUT, "POLL_OUT" },
577 { POLL_MSG, "POLL_MSG" },
578 { POLL_ERR, "POLL_ERR" },
579 { POLL_PRI, "POLL_PRI" },
580 { POLL_HUP, "POLL_HUP" },
581 { 0, NULL },
582};
583
Roland McGrathd9f816f2004-09-04 03:39:20 +0000584static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000585#ifdef PROF_SIG
586 { PROF_SIG, "PROF_SIG" },
587#endif
588 { 0, NULL },
589};
590
591#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000592static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000593#ifdef EMT_TAGOVF
594 { EMT_TAGOVF, "EMT_TAGOVF" },
595#endif
596 { 0, NULL },
597};
598#endif
599
Roland McGrathd9f816f2004-09-04 03:39:20 +0000600static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000601 { SEGV_MAPERR, "SEGV_MAPERR" },
602 { SEGV_ACCERR, "SEGV_ACCERR" },
603 { 0, NULL },
604};
605
Roland McGrathd9f816f2004-09-04 03:39:20 +0000606static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000607 { BUS_ADRALN, "BUS_ADRALN" },
608 { BUS_ADRERR, "BUS_ADRERR" },
609 { BUS_OBJERR, "BUS_OBJERR" },
610 { 0, NULL },
611};
612
613void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000614printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000615{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000616 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000617
618 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200619 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000620 return;
621 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200622 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000623 printsignal(sip->si_signo);
624 code = xlookup(siginfo_codes, sip->si_code);
625 if (!code) {
626 switch (sip->si_signo) {
627 case SIGTRAP:
628 code = xlookup(sigtrap_codes, sip->si_code);
629 break;
630 case SIGCHLD:
631 code = xlookup(sigchld_codes, sip->si_code);
632 break;
633 case SIGPOLL:
634 code = xlookup(sigpoll_codes, sip->si_code);
635 break;
636 case SIGPROF:
637 code = xlookup(sigprof_codes, sip->si_code);
638 break;
639 case SIGILL:
640 code = xlookup(sigill_codes, sip->si_code);
641 break;
642#ifdef SIGEMT
643 case SIGEMT:
644 code = xlookup(sigemt_codes, sip->si_code);
645 break;
646#endif
647 case SIGFPE:
648 code = xlookup(sigfpe_codes, sip->si_code);
649 break;
650 case SIGSEGV:
651 code = xlookup(sigsegv_codes, sip->si_code);
652 break;
653 case SIGBUS:
654 code = xlookup(sigbus_codes, sip->si_code);
655 break;
656 }
657 }
658 if (code)
659 tprintf(", si_code=%s", code);
660 else
661 tprintf(", si_code=%#x", sip->si_code);
662#ifdef SI_NOINFO
663 if (sip->si_code != SI_NOINFO)
664#endif
665 {
666 if (sip->si_errno) {
667 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
668 tprintf(", si_errno=%d", sip->si_errno);
669 else
670 tprintf(", si_errno=%s",
671 errnoent[sip->si_errno]);
672 }
673#ifdef SI_FROMUSER
674 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000675 tprintf(", si_pid=%lu, si_uid=%lu",
676 (unsigned long) sip->si_pid,
677 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000678 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000679#ifdef SI_USER
680 case SI_USER:
681 break;
682#endif
683#ifdef SI_TKILL
684 case SI_TKILL:
685 break;
686#endif
John Hughes58265892001-10-18 15:13:53 +0000687#ifdef SI_TIMER
688 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000689 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000690 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000691#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000692 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000693 if (!sip->si_ptr)
694 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000695 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200696 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000697 else
698 tprintf(", si_value={int=%u, ptr=%#lx}",
699 sip->si_int,
700 (unsigned long) sip->si_ptr);
701 break;
John Hughes58265892001-10-18 15:13:53 +0000702 }
John Hughes58265892001-10-18 15:13:53 +0000703 }
704 else
705#endif /* SI_FROMUSER */
706 {
707 switch (sip->si_signo) {
708 case SIGCHLD:
709 tprintf(", si_pid=%ld, si_status=",
710 (long) sip->si_pid);
711 if (sip->si_code == CLD_EXITED)
712 tprintf("%d", sip->si_status);
713 else
714 printsignal(sip->si_status);
John Hughes58265892001-10-18 15:13:53 +0000715 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200716 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000717 else
H.J. Lu2bb45812012-04-15 11:17:13 -0700718 tprintf(", si_utime=%llu, si_stime=%llu",
719 (unsigned long long) sip->si_utime,
720 (unsigned long long) sip->si_stime);
John Hughes58265892001-10-18 15:13:53 +0000721 break;
722 case SIGILL: case SIGFPE:
723 case SIGSEGV: case SIGBUS:
724 tprintf(", si_addr=%#lx",
725 (unsigned long) sip->si_addr);
726 break;
727 case SIGPOLL:
728 switch (sip->si_code) {
729 case POLL_IN: case POLL_OUT: case POLL_MSG:
730 tprintf(", si_band=%ld",
731 (long) sip->si_band);
732 break;
733 }
734 break;
John Hughes58265892001-10-18 15:13:53 +0000735 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000736 if (sip->si_pid || sip->si_uid)
737 tprintf(", si_pid=%lu, si_uid=%lu",
738 (unsigned long) sip->si_pid,
739 (unsigned long) sip->si_uid);
740 if (!sip->si_ptr)
741 break;
John Hughes58265892001-10-18 15:13:53 +0000742 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200743 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000744 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000745 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000746 sip->si_int,
747 (unsigned long) sip->si_ptr);
748 }
Roland McGratha39c5a12002-12-17 05:10:37 +0000749
John Hughes58265892001-10-18 15:13:53 +0000750 }
751 }
752 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200753 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000754}
755
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000756int
Denys Vlasenko12014262011-05-30 14:00:14 +0200757sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000758{
759 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000760 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000761 long_to_sigset(tcp->u_arg[0], &sigm);
762 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000763 }
764 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000765 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000766 long_to_sigset(tcp->u_rval, &sigm);
767 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000768
769 return RVAL_HEX | RVAL_STR;
770 }
771 return 0;
772}
773
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000774#ifdef HAVE_SIGACTION
775
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000776struct old_sigaction {
777 __sighandler_t __sa_handler;
778 unsigned long sa_mask;
779 unsigned long sa_flags;
780 void (*sa_restorer)(void);
781};
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000782#define SA_HANDLER __sa_handler
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000783
Roland McGratha39c5a12002-12-17 05:10:37 +0000784#ifndef SA_HANDLER
785#define SA_HANDLER sa_handler
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000786#endif
787
788int
Denys Vlasenko12014262011-05-30 14:00:14 +0200789sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000790{
791 long addr;
John Hughes1e4cb342001-03-06 09:25:46 +0000792 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000793 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000794
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000795 if (entering(tcp)) {
796 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200797 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000798 addr = tcp->u_arg[1];
799 } else
800 addr = tcp->u_arg[2];
801 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200802 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000803 else if (!verbose(tcp))
804 tprintf("%#lx", addr);
805 else if (umove(tcp, addr, &sa) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200806 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000807 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000808 /* Architectures using function pointers, like
809 * hppa, may need to manipulate the function pointer
810 * to compute the result of a comparison. However,
811 * the SA_HANDLER function pointer exists only in
812 * the address space of the traced process, and can't
813 * be manipulated by strace. In order to prevent the
814 * compiler from generating code to manipulate
815 * SA_HANDLER we cast the function pointers to long. */
816 if ((long)sa.SA_HANDLER == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200817 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000818 else if ((long)sa.SA_HANDLER == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200819 tprints("{SIG_DFL, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100820 else if ((long)sa.SA_HANDLER == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200821 tprints("{SIG_IGN, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100822 else
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000823 tprintf("{%#lx, ", (long) sa.SA_HANDLER);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100824 long_to_sigset(sa.sa_mask, &sigset);
825 printsigmask(&sigset, 0);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100826 tprints(", ");
827 printflags(sigact_flags, sa.sa_flags, "SA_???");
828#ifdef SA_RESTORER
829 if (sa.sa_flags & SA_RESTORER)
830 tprintf(", %p", sa.sa_restorer);
831#endif
832 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000833 }
834 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200835 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000836 else
837 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000838 return 0;
839}
840
841int
Denys Vlasenko12014262011-05-30 14:00:14 +0200842sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000843{
844 if (entering(tcp)) {
845 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200846 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000847 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000848 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200849 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000850 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000851 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200852 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000853 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000854 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200855 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000856 break;
857 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000858 tprintf("%#lx", tcp->u_arg[1]);
859 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000860 return 0;
861 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000862 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000863 switch (tcp->u_rval) {
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100864 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000865 tcp->auxstr = "SIG_ERR"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100866 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000867 tcp->auxstr = "SIG_DFL"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100868 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000869 tcp->auxstr = "SIG_IGN"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100870 default:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000871 tcp->auxstr = NULL;
872 }
873 return RVAL_HEX | RVAL_STR;
874 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000875 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000876}
877
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000878#endif /* HAVE_SIGACTION */
879
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000880int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000881sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000882{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000883#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000884 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200885 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100886 sigset_t sigm;
Roland McGrath0f87c492003-06-03 23:29:04 +0000887 if (umove(tcp, regs.ARM_sp, &sc) < 0)
888 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100889 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100890 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000891 }
Roland McGrath0f87c492003-06-03 23:29:04 +0000892#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +0000893 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200894 long usp;
895 struct sigcontext_struct sc;
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200896 if (upeek(tcp, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000897 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100898 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000899 return 0;
Andreas Schwaba7920a82012-01-17 17:56:44 +0100900 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000901 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000902#elif defined(I386)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000903 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200904 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100905 /* Note: on i386, sc is followed on stack by struct fpstate
906 * and after it an additional u32 extramask[1] which holds
907 * upper half of the mask. We can fetch it there
908 * if/when we'd want to display the full mask...
909 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000910 sigset_t sigm;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100911 if (umove(tcp, i386_regs.esp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000912 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100913 long_to_sigset(sc.oldmask, &sigm);
914 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000915 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000916#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000917 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200918 struct sigcontext sc;
919 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100920 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000921 /* offset of sigcontext in the kernel's sigframe structure: */
922# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000923 if (upeek(tcp, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000924 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000925 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000926 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200927 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100928 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100929 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000930 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000931#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +0000932 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200933 long esp;
934 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100935 sigset_t sigm;
936 if (upeek(tcp, sizeof(unsigned long) * PT_R1, &esp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000937 return 0;
Andreas Schwabedb39342010-02-23 00:18:51 +0100938 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200939#ifdef POWERPC64
940 if (current_personality == 0)
941 esp += 128;
942 else
943 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +0100944#else
945 esp += 64;
946#endif
Roland McGrath0f87c492003-06-03 23:29:04 +0000947 if (umove(tcp, esp, &sc) < 0)
948 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100949 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100950 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000951 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000952#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000953 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200954 long usp;
955 struct sigcontext sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100956 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000957 if (upeek(tcp, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000958 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000959 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000960 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100961 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100962 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000963 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000964#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000965 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200966 long fp;
967 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100968 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000969 if (upeek(tcp, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000970 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000971 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000972 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100973 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100974 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000975 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100976#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200977 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200978 long i1;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200979 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100980 sigset_t sigm;
Mike Frysinger8566c502009-10-12 11:05:14 -0400981 i1 = regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200982 if (umove(tcp, i1, &si) < 0) {
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +0000983 perror_msg("%s", "sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000984 return 0;
985 }
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100986 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100987 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000988 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100989#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +0000990 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
991 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200992 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200993 long sp;
994 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100995 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000996 if (upeek(tcp, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000997 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +0000998 /* There are six words followed by a 128-byte siginfo. */
999 sp = sp + 6 * 4 + 128;
1000 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001001 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001002 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001003 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath542c2c62008-05-20 01:11:56 +00001004 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001005#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001006 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001007 long sp;
1008 struct pt_regs regs;
1009 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001010 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001011 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +00001012 perror_msg("%s", "sigreturn: PTRACE_GETREGS");
Denys Vlasenko56a52982011-06-09 01:36:29 +02001013 return 0;
1014 }
Roland McGrath576b7842007-11-04 00:00:00 +00001015 sp = regs.regs[29];
1016 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +02001017 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001018 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001019 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkermanf90da011999-10-31 21:15:38 +00001020 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001021#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001022 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001023 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001024 long regs[PT_MAX+1];
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001025 sigset_t sigm;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001026 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
Dmitry V. Levin9a71bcd2012-09-17 23:20:54 +00001027 perror_msg("%s", "sigreturn: PTRACE_GETREGS");
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001028 return 0;
1029 }
1030 if (umove(tcp, regs[PT_USP], &sc) < 0)
1031 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001032 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001033 tprints(sprintsigmask(") (mask ", &sigm, 0));
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001034 }
Chris Metcalfc8c66982009-12-28 10:00:15 -05001035#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001036 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001037 struct ucontext uc;
1038 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001039 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001040
1041 /* offset of ucontext in the kernel's sigframe structure */
1042# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001043 if (upeek(tcp, PTREGS_OFFSET_SP, &sp) < 0)
1044 return 0;
1045 if (umove(tcp, sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1046 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001047 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001048 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001049 tprints(sprintsigmask(") (mask ", &sigm, 0));
Chris Metcalfc8c66982009-12-28 10:00:15 -05001050 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001051#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001052 /* TODO: Verify that this is correct... */
1053 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001054 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001055 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001056 sigset_t sigm;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001057 /* Read r1, the stack pointer. */
1058 if (upeek(tcp, 1 * 4, &sp) < 0)
1059 return 0;
1060 if (umove(tcp, sp, &sc) < 0)
1061 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001062 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001063 tprints(sprintsigmask(") (mask ", &sigm, 0));
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001064 }
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001065#elif defined(X86_64)
1066 /* no need to remind */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001067#else
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001068# warning No sys_sigreturn() for this architecture
1069# warning (no problem, just a reminder :-)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001070#endif
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001071 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001072}
1073
1074int
Denys Vlasenko12014262011-05-30 14:00:14 +02001075sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001076{
1077 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001078 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001079 long_to_sigset(tcp->u_rval, &sigm);
1080 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001081 }
1082 return RVAL_HEX | RVAL_STR;
1083}
1084
1085int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001086sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001087{
1088 if (entering(tcp)) {
1089 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001090 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001091 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001092 }
1093 return 0;
1094}
1095
Denys Vlasenko84703742012-02-25 02:38:52 +01001096#if !defined SS_ONSTACK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001097#define SS_ONSTACK 1
1098#define SS_DISABLE 2
John Spencereb54c472012-12-03 00:27:22 +01001099#if defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 1))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001100typedef struct
1101{
1102 __ptr_t ss_sp;
1103 int ss_flags;
1104 size_t ss_size;
1105} stack_t;
1106#endif
1107#endif
1108
Roland McGrathd9f816f2004-09-04 03:39:20 +00001109static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001110 { SS_ONSTACK, "SS_ONSTACK" },
1111 { SS_DISABLE, "SS_DISABLE" },
1112 { 0, NULL },
1113};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001114
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001115static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001116print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001117{
1118 stack_t ss;
1119 if (umove(tcp, addr, &ss) < 0)
1120 return -1;
1121 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
Roland McGrathb2dee132005-06-01 19:02:36 +00001122 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001123 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1124 return 0;
1125}
1126
1127int
Denys Vlasenko12014262011-05-30 14:00:14 +02001128sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001129{
1130 if (entering(tcp)) {
1131 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001132 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001133 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1134 return -1;
1135 }
1136 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001137 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001138 if (tcp->u_arg[1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001139 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001140 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1141 return -1;
1142 }
1143 return 0;
1144}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001145
1146#ifdef HAVE_SIGACTION
1147
1148int
Denys Vlasenko12014262011-05-30 14:00:14 +02001149sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001150{
1151#ifdef ALPHA
Mike Frysingerdde045c2012-03-15 00:45:33 -04001152 sigset_t ss;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001153 if (entering(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001154 /*
1155 * Alpha/OSF is different: it doesn't pass in two pointers,
1156 * but rather passes in the new bitmask as an argument and
1157 * then returns the old bitmask. This "works" because we
1158 * only have 64 signals to worry about. If you want more,
1159 * use of the rt_sigprocmask syscall is required.
1160 * Alpha:
1161 * old = osf_sigprocmask(how, new);
1162 * Everyone else:
1163 * ret = sigprocmask(how, &new, &old, ...);
1164 */
1165 memcpy(&ss, &tcp->u_arg[1], sizeof(long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001166 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001167 tprints(", ");
Mike Frysingerdde045c2012-03-15 00:45:33 -04001168 printsigmask(&ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001169 }
1170 else if (!syserror(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001171 memcpy(&ss, &tcp->u_rval, sizeof(long));
1172 tcp->auxstr = sprintsigmask("old mask ", &ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001173 return RVAL_HEX | RVAL_STR;
1174 }
1175#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001176 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001177 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001178 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001179 print_sigset(tcp, tcp->u_arg[1], 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001180 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001181 }
1182 else {
1183 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001184 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001185 else if (syserror(tcp))
1186 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001187 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001188 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001189 }
1190#endif /* !ALPHA */
1191 return 0;
1192}
1193
1194#endif /* HAVE_SIGACTION */
1195
1196int
Denys Vlasenko12014262011-05-30 14:00:14 +02001197sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001198{
1199 if (entering(tcp)) {
Roland McGrath4d7ed022008-05-20 01:43:09 +00001200 long pid = tcp->u_arg[0];
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001201#if SUPPORTED_PERSONALITIES > 1
1202 /* Sign-extend a 32-bit value when that's what it is. */
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001203 if (current_wordsize < sizeof pid)
Roland McGrath4d7ed022008-05-20 01:43:09 +00001204 pid = (long) (int) pid;
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001205#endif
Roland McGrath4d7ed022008-05-20 01:43:09 +00001206 tprintf("%ld, %s", pid, signame(tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001207 }
1208 return 0;
1209}
1210
Roland McGrath8ffc3522003-07-09 09:47:49 +00001211int
Denys Vlasenko12014262011-05-30 14:00:14 +02001212sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001213{
1214 if (entering(tcp)) {
1215 tprintf("%ld, %ld, %s",
1216 tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2]));
1217 }
1218 return 0;
1219}
Roland McGrath8ffc3522003-07-09 09:47:49 +00001220
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001221int
Denys Vlasenko12014262011-05-30 14:00:14 +02001222sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001223{
1224 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001225
1226 if (exiting(tcp)) {
1227 if (syserror(tcp))
1228 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001229 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001230 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001231 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001232 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001233 }
1234 return 0;
1235}
1236
Denys Vlasenko12014262011-05-30 14:00:14 +02001237int
1238sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001239{
1240 sigset_t sigset;
1241
Nate Sammons4a121431999-04-06 01:19:39 +00001242 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001243 if (entering(tcp)) {
1244 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001245 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001246 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001247 tprints("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001248 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001249 tprintf("%#lx, ", tcp->u_arg[1]);
1250 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001251 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001252 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001253 }
1254 }
1255 else {
1256 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001257 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001258 else if (syserror(tcp))
1259 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001260 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001261 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001262 else
Nate Sammons4a121431999-04-06 01:19:39 +00001263 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001264 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001265 }
1266 return 0;
1267}
1268
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001269/* Structure describing the action to be taken when a signal arrives. */
1270struct new_sigaction
1271{
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001272 __sighandler_t __sa_handler;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001273 unsigned long sa_flags;
1274 void (*sa_restorer) (void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001275 /* Kernel treats sa_mask as an array of longs. */
1276 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1277};
1278/* Same for i386-on-x86_64 and similar cases */
1279struct new_sigaction32
1280{
1281 uint32_t __sa_handler;
1282 uint32_t sa_flags;
1283 uint32_t sa_restorer;
1284 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001285};
1286
Roland McGrath5f206812008-08-20 01:59:40 +00001287int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001288sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001289{
1290 struct new_sigaction sa;
1291 sigset_t sigset;
1292 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001293 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001294
1295 if (entering(tcp)) {
1296 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001297 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001298 addr = tcp->u_arg[1];
1299 } else
1300 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001301
1302 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001303 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001304 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001305 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001306 if (!verbose(tcp)) {
1307 tprintf("%#lx", addr);
1308 goto after_sa;
1309 }
1310#if SUPPORTED_PERSONALITIES > 1
Dmitry V. Levin63e4f862012-03-15 20:42:46 +00001311#if SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001312 if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001313 struct new_sigaction32 sa32;
1314 r = umove(tcp, addr, &sa32);
1315 if (r >= 0) {
1316 memset(&sa, 0, sizeof(sa));
1317 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1318 sa.sa_flags = sa32.sa_flags;
1319 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1320 /* Kernel treats sa_mask as an array of longs.
1321 * For 32-bit process, "long" is uint32_t, thus, for example,
1322 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1323 * But for (64-bit) kernel, 32th bit in sa_mask is
1324 * 32th bit in 0th (64-bit) long!
1325 * For little-endian, it's the same.
1326 * For big-endian, we swap 32-bit words.
1327 */
1328 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1329 }
1330 } else
1331#endif
Dmitry V. Levin63e4f862012-03-15 20:42:46 +00001332#endif
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001333 {
1334 r = umove(tcp, addr, &sa);
1335 }
1336 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001337 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001338 goto after_sa;
1339 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001340 /* Architectures using function pointers, like
1341 * hppa, may need to manipulate the function pointer
1342 * to compute the result of a comparison. However,
1343 * the SA_HANDLER function pointer exists only in
1344 * the address space of the traced process, and can't
1345 * be manipulated by strace. In order to prevent the
1346 * compiler from generating code to manipulate
1347 * SA_HANDLER we cast the function pointers to long. */
1348 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001349 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001350 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001351 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001352 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001353 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001354 else
1355 tprintf("{%#lx, ", (long) sa.__sa_handler);
1356 /* Questionable code below.
1357 * Kernel won't handle sys_rt_sigaction
1358 * with wrong sigset size (just returns EINVAL)
1359 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1360 * and we always use smaller memcpy. */
1361 sigemptyset(&sigset);
1362#ifdef LINUXSPARC
1363 if (tcp->u_arg[4] <= sizeof(sigset))
1364 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1365#else
1366 if (tcp->u_arg[3] <= sizeof(sigset))
1367 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1368#endif
1369 else
1370 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1371 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001372 tprints(", ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001373 printflags(sigact_flags, sa.sa_flags, "SA_???");
1374#ifdef SA_RESTORER
1375 if (sa.sa_flags & SA_RESTORER)
1376 tprintf(", %p", sa.sa_restorer);
1377#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001378 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001379
1380 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001381 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001382 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001383 else
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001384#ifdef LINUXSPARC
1385 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1386#elif defined(ALPHA)
1387 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1388#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001389 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001390#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001391 return 0;
1392}
1393
Denys Vlasenko1d632462009-04-14 12:51:00 +00001394int
1395sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001396{
1397 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001398
1399 if (exiting(tcp)) {
1400 if (syserror(tcp))
1401 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001402 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1403 &sigset, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001404 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001405 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001406 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001407 }
1408 return 0;
1409}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001410
1411int
1412sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001413{
1414 if (entering(tcp)) {
1415 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001416 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001417 tprints("[?]");
Nate Sammons4a121431999-04-06 01:19:39 +00001418 else
1419 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001420 }
1421 return 0;
1422}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001423
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001424static void
1425print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1426{
1427 siginfo_t si;
1428
1429 printsignal(sig);
1430 tprints(", ");
1431 if (umove(tcp, uinfo, &si) < 0)
1432 tprintf("%#lx", uinfo);
1433 else
1434 printsiginfo(&si, verbose(tcp));
1435}
1436
Denys Vlasenko1d632462009-04-14 12:51:00 +00001437int
1438sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001439{
1440 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001441 tprintf("%lu, ", tcp->u_arg[0]);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001442 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1443 }
1444 return 0;
1445}
1446
1447int
1448sys_rt_tgsigqueueinfo(struct tcb *tcp)
1449{
1450 if (entering(tcp)) {
1451 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1452 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001453 }
1454 return 0;
1455}
1456
Denys Vlasenko1d632462009-04-14 12:51:00 +00001457int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001458{
1459 if (entering(tcp)) {
1460 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001461
Roland McGratha39c5a12002-12-17 05:10:37 +00001462 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00001463 &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001464 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001465 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001466 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001467 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001468 /* This is the only "return" parameter, */
1469 if (tcp->u_arg[1] != 0)
1470 return 0;
1471 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001472 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001473 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001474 else if (tcp->u_arg[1] != 0) {
1475 /* syscall exit, and u_arg[1] wasn't NULL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001476 if (syserror(tcp))
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001477 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001478 else {
1479 siginfo_t si;
1480 if (umove(tcp, tcp->u_arg[1], &si) < 0)
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001481 tprintf("%#lx, ", tcp->u_arg[1]);
1482 else {
Denys Vlasenkof535b542009-01-13 18:30:55 +00001483 printsiginfo(&si, verbose(tcp));
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001484 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001485 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001486 }
1487 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001488 else {
1489 /* syscall exit, and u_arg[1] was NULL */
1490 return 0;
1491 }
1492 print_timespec(tcp, tcp->u_arg[2]);
1493 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001494 return 0;
1495};
1496
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001497int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001498sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001499{
1500 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001501 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001502 return 0;
1503}
1504
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001505static int
1506do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001507{
1508 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001509 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001510 tprints(", ");
Roland McGrathf46ccd32007-08-02 01:15:59 +00001511 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001512 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001513 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001514 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001515 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1516 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001517 }
1518 return 0;
1519}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001520
1521int
1522sys_signalfd(struct tcb *tcp)
1523{
1524 return do_signalfd(tcp, -1);
1525}
1526
1527int
1528sys_signalfd4(struct tcb *tcp)
1529{
1530 return do_signalfd(tcp, 3);
1531}