blob: 97c8d1d14111f93720c9d8a3589a07a3dc1cc145 [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.
32 *
33 * $Id$
34 */
35
36#include "defs.h"
37
Denys Vlasenko7a862d72009-04-15 13:22:59 +000038#include <stdint.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000039#include <sys/user.h>
40#include <fcntl.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000041
Wichert Akkerman36915a11999-07-13 15:45:02 +000042#ifdef HAVE_SYS_REG_H
43# include <sys/reg.h>
Denys Vlasenko84703742012-02-25 02:38:52 +010044# ifndef PTRACE_PEEKUSR
45# define PTRACE_PEEKUSR PTRACE_PEEKUSER
46# endif
47# ifndef PTRACE_POKEUSR
48# define PTRACE_POKEUSR PTRACE_POKEUSER
49# endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000050#elif defined(HAVE_LINUX_PTRACE_H)
Denys Vlasenko84703742012-02-25 02:38:52 +010051# undef PTRACE_SYSCALL
Roland McGrathb0acdfd2004-03-01 21:31:02 +000052# ifdef HAVE_STRUCT_IA64_FPREG
53# define ia64_fpreg XXX_ia64_fpreg
54# endif
55# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
56# define pt_all_user_regs XXX_pt_all_user_regs
57# endif
Denys Vlasenko84703742012-02-25 02:38:52 +010058# include <linux/ptrace.h>
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(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000068# undef PTRACE_GETREGS
69# define PTRACE_GETREGS PTRACE_GETREGS64
70# undef PTRACE_SETREGS
71# define PTRACE_SETREGS PTRACE_SETREGS64
Denys Vlasenko84703742012-02-25 02:38:52 +010072#endif
Roland McGrath30ff45e2003-01-30 20:15:23 +000073
Denys Vlasenko84703742012-02-25 02:38:52 +010074#if defined(SPARC) || defined(SPARC64) || defined(MIPS)
Roland McGrath576b7842007-11-04 00:00:00 +000075typedef struct {
76 struct pt_regs si_regs;
77 int si_mask;
78} m_siginfo_t;
Roland McGrath30ff45e2003-01-30 20:15:23 +000079#elif defined HAVE_ASM_SIGCONTEXT_H
Denys Vlasenko84703742012-02-25 02:38:52 +010080# if !defined(IA64) && !defined(X86_64)
81# include <asm/sigcontext.h>
82# endif /* !IA64 && !X86_64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000083#else /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenko84703742012-02-25 02:38:52 +010084# if defined I386 && !defined HAVE_STRUCT_SIGCONTEXT_STRUCT
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000085struct sigcontext_struct {
86 unsigned short gs, __gsh;
87 unsigned short fs, __fsh;
88 unsigned short es, __esh;
89 unsigned short ds, __dsh;
90 unsigned long edi;
91 unsigned long esi;
92 unsigned long ebp;
93 unsigned long esp;
94 unsigned long ebx;
95 unsigned long edx;
96 unsigned long ecx;
97 unsigned long eax;
98 unsigned long trapno;
99 unsigned long err;
100 unsigned long eip;
101 unsigned short cs, __csh;
102 unsigned long eflags;
103 unsigned long esp_at_signal;
104 unsigned short ss, __ssh;
105 unsigned long i387;
106 unsigned long oldmask;
107 unsigned long cr2;
108};
Denys Vlasenko84703742012-02-25 02:38:52 +0100109# else /* !I386 */
110# if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000111struct sigcontext
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000112{
113 unsigned long sc_mask;
114 unsigned long sc_usp;
115 unsigned long sc_d0;
116 unsigned long sc_d1;
117 unsigned long sc_a0;
118 unsigned long sc_a1;
119 unsigned short sc_sr;
120 unsigned long sc_pc;
121 unsigned short sc_formatvec;
122};
Denys Vlasenko84703742012-02-25 02:38:52 +0100123# endif /* M68K */
124# endif /* !I386 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000125#endif /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200126
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000127#ifndef NSIG
Denys Vlasenko84703742012-02-25 02:38:52 +0100128# warning: NSIG is not defined, using 32
129# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000130#endif
131#ifdef ARM
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200132/* Ugh. Is this really correct? ARM has no RT signals?! */
Denys Vlasenko84703742012-02-25 02:38:52 +0100133# undef NSIG
134# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000135#endif
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200136
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000137#ifdef HAVE_SIGACTION
138
Denys Vlasenkoaa925db2012-02-25 15:19:02 +0100139#if defined(I386) || defined(X86_64)
Roland McGrath2638cb42002-12-15 23:58:41 +0000140/* The libc headers do not define this constant since it should only be
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200141 used by the implementation. So we define it here. */
Roland McGrath2638cb42002-12-15 23:58:41 +0000142# ifndef SA_RESTORER
143# define SA_RESTORER 0x04000000
144# endif
145#endif
146
Roland McGrathd9f816f2004-09-04 03:39:20 +0000147static const struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000148#ifdef SA_RESTORER
149 { SA_RESTORER, "SA_RESTORER" },
150#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000151#ifdef SA_STACK
152 { SA_STACK, "SA_STACK" },
153#endif
154#ifdef SA_RESTART
155 { SA_RESTART, "SA_RESTART" },
156#endif
157#ifdef SA_INTERRUPT
158 { SA_INTERRUPT, "SA_INTERRUPT" },
159#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000160#ifdef SA_NODEFER
161 { SA_NODEFER, "SA_NODEFER" },
162#endif
163#if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000164 { SA_NOMASK, "SA_NOMASK" },
165#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000166#ifdef SA_RESETHAND
167 { SA_RESETHAND, "SA_RESETHAND" },
168#endif
169#if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000170 { SA_ONESHOT, "SA_ONESHOT" },
171#endif
172#ifdef SA_SIGINFO
173 { SA_SIGINFO, "SA_SIGINFO" },
174#endif
175#ifdef SA_RESETHAND
176 { SA_RESETHAND, "SA_RESETHAND" },
177#endif
178#ifdef SA_ONSTACK
179 { SA_ONSTACK, "SA_ONSTACK" },
180#endif
181#ifdef SA_NODEFER
182 { SA_NODEFER, "SA_NODEFER" },
183#endif
184#ifdef SA_NOCLDSTOP
185 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
186#endif
187#ifdef SA_NOCLDWAIT
188 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
189#endif
190#ifdef _SA_BSDCALL
191 { _SA_BSDCALL, "_SA_BSDCALL" },
192#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500193#ifdef SA_NOPTRACE
194 { SA_NOPTRACE, "SA_NOPTRACE" },
195#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000196 { 0, NULL },
197};
198
Roland McGrathd9f816f2004-09-04 03:39:20 +0000199static const struct xlat sigprocmaskcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000200 { SIG_BLOCK, "SIG_BLOCK" },
201 { SIG_UNBLOCK, "SIG_UNBLOCK" },
202 { SIG_SETMASK, "SIG_SETMASK" },
203#ifdef SIG_SETMASK32
204 { SIG_SETMASK32,"SIG_SETMASK32" },
205#endif
206 { 0, NULL },
207};
208
209#endif /* HAVE_SIGACTION */
210
Nate Sammonsce780fc1999-03-29 23:23:13 +0000211/* Anonymous realtime signals. */
212/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
213 constant. This is what we want. Otherwise, just use SIGRTMIN. */
214#ifdef SIGRTMIN
215#ifndef __SIGRTMIN
216#define __SIGRTMIN SIGRTMIN
217#define __SIGRTMAX SIGRTMAX /* likewise */
218#endif
219#endif
220
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200221/* Note on the size of sigset_t:
222 *
223 * In glibc, sigset_t is an array with space for 1024 bits (!),
224 * even though all arches supported by Linux have only 64 signals
225 * except MIPS, which has 128. IOW, it is 128 bytes long.
226 *
227 * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
228 * However, some old syscall return only 32 lower bits (one word).
229 * Example: sys_sigpending vs sys_rt_sigpending.
230 *
231 * Be aware of this fact when you try to
232 * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
233 * - sizeof(sigset_t) is much bigger than you think,
234 * it may overflow tcp->u_arg[] array, and it may try to copy more data
235 * than is really available in <something>.
236 * Similarly,
237 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
238 * may be a bad idea: it'll try to read much more data than needed
239 * to fetch a sigset_t.
240 * Use (NSIG / 8) as a size instead.
241 */
242
Roland McGrathee36ce12004-09-04 03:53:10 +0000243const char *
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200244signame(int sig)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000245{
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200246 static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
247
248 if (sig >= 0 && sig < nsignals)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000249 return signalent[sig];
250#ifdef SIGRTMIN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200251 if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
252 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000253 return buf;
254 }
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200255#endif
256 sprintf(buf, "%d", sig);
257 return buf;
Nate Sammonsce780fc1999-03-29 23:23:13 +0000258}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000259
Nate Sammons4a121431999-04-06 01:19:39 +0000260static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200261long_to_sigset(long l, sigset_t *s)
Nate Sammons4a121431999-04-06 01:19:39 +0000262{
263 sigemptyset(s);
264 *(long *)s = l;
265}
266
267static int
Denys Vlasenko12014262011-05-30 14:00:14 +0200268copy_sigset_len(struct tcb *tcp, long addr, sigset_t *s, int len)
Nate Sammons4a121431999-04-06 01:19:39 +0000269{
270 if (len > sizeof(*s))
271 len = sizeof(*s);
272 sigemptyset(s);
273 if (umoven(tcp, addr, len, (char *)s) < 0)
274 return -1;
275 return 0;
276}
277
Nate Sammons4a121431999-04-06 01:19:39 +0000278/* Original sigset is unsigned long */
279#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
Nate Sammons4a121431999-04-06 01:19:39 +0000280
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000281static const char *
282sprintsigmask(const char *str, sigset_t *mask, int rt)
283/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000284{
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200285 /* Was [8 * sizeof(sigset_t) * 8], but
286 * glibc sigset_t is huge (1024 bits = 128 *bytes*),
287 * and we were ending up with 8k (!) buffer here.
288 *
289 * No Unix system can have sig > 255
290 * (waitpid API won't be able to indicate death from one)
291 * and sig 0 doesn't exist either.
292 * Therefore max possible no of sigs is 255: 1..255
293 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100294 static char outstr[8 * (255 * 2 / 3)];
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200295
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000296 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000297 int maxsigs;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100298 int show_members;
299 char sep;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000300 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000301
Nate Sammons4a121431999-04-06 01:19:39 +0000302 maxsigs = nsignals;
303#ifdef __SIGRTMAX
304 if (rt)
305 maxsigs = __SIGRTMAX; /* instead */
306#endif
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100307 s = stpcpy(outstr, str);
308 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000309 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000310 if (sigismember(mask, i) == 1)
311 nsigs++;
312 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100313
314 /* 1: show mask members, 0: show those which are NOT in mask */
315 show_members = (nsigs < nsignals * 2 / 3);
316 if (!show_members)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000317 *s++ = '~';
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100318
319 sep = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000320 for (i = 1; i < maxsigs; i++) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100321 if (sigismember(mask, i) == show_members) {
John Hughesbdf48f52001-03-06 15:08:09 +0000322 /* real-time signals on solaris don't have
323 * signalent entries
324 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100325 char tsig[40];
326 *s++ = sep;
John Hughesbdf48f52001-03-06 15:08:09 +0000327 if (i < nsignals) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100328 s = stpcpy(s, signalent[i] + 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000329 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000330#ifdef SIGRTMIN
331 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
Roland McGrath90b4cb52003-09-23 22:19:32 +0000332 sprintf(tsig, "RT_%u", i - __SIGRTMIN);
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100333 s = stpcpy(s, tsig);
Roland McGrath90b4cb52003-09-23 22:19:32 +0000334 }
335#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000336 else {
John Hughesbdf48f52001-03-06 15:08:09 +0000337 sprintf(tsig, "%u", i);
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100338 s = stpcpy(s, tsig);
John Hughesbdf48f52001-03-06 15:08:09 +0000339 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100340 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000341 }
342 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100343 if (sep == '[')
344 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000345 *s++ = ']';
346 *s = '\0';
347 return outstr;
348}
349
350static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200351printsigmask(sigset_t *mask, int rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000352{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200353 tprints(sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000354}
355
356void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200357printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000358{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200359 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000360}
361
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000362void
363print_sigset(struct tcb *tcp, long addr, int rt)
364{
365 sigset_t ss;
366
367 if (!addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200368 tprints("NULL");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000369 else if (copy_sigset(tcp, addr, &ss) < 0)
370 tprintf("%#lx", addr);
371 else
372 printsigmask(&ss, rt);
373}
374
John Hughes58265892001-10-18 15:13:53 +0000375#ifndef ILL_ILLOPC
376#define ILL_ILLOPC 1 /* illegal opcode */
377#define ILL_ILLOPN 2 /* illegal operand */
378#define ILL_ILLADR 3 /* illegal addressing mode */
379#define ILL_ILLTRP 4 /* illegal trap */
380#define ILL_PRVOPC 5 /* privileged opcode */
381#define ILL_PRVREG 6 /* privileged register */
382#define ILL_COPROC 7 /* coprocessor error */
383#define ILL_BADSTK 8 /* internal stack error */
384#define FPE_INTDIV 1 /* integer divide by zero */
385#define FPE_INTOVF 2 /* integer overflow */
386#define FPE_FLTDIV 3 /* floating point divide by zero */
387#define FPE_FLTOVF 4 /* floating point overflow */
388#define FPE_FLTUND 5 /* floating point underflow */
389#define FPE_FLTRES 6 /* floating point inexact result */
390#define FPE_FLTINV 7 /* floating point invalid operation */
391#define FPE_FLTSUB 8 /* subscript out of range */
392#define SEGV_MAPERR 1 /* address not mapped to object */
393#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
394#define BUS_ADRALN 1 /* invalid address alignment */
395#define BUS_ADRERR 2 /* non-existant physical address */
396#define BUS_OBJERR 3 /* object specific hardware error */
397#define TRAP_BRKPT 1 /* process breakpoint */
398#define TRAP_TRACE 2 /* process trace trap */
399#define CLD_EXITED 1 /* child has exited */
400#define CLD_KILLED 2 /* child was killed */
401#define CLD_DUMPED 3 /* child terminated abnormally */
402#define CLD_TRAPPED 4 /* traced child has trapped */
403#define CLD_STOPPED 5 /* child has stopped */
404#define CLD_CONTINUED 6 /* stopped child has continued */
405#define POLL_IN 1 /* data input available */
406#define POLL_OUT 2 /* output buffers available */
407#define POLL_MSG 3 /* input message available */
408#define POLL_ERR 4 /* i/o error */
409#define POLL_PRI 5 /* high priority input available */
410#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000411#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000412#define SI_USER 0 /* sent by kill, sigsend, raise */
413#define SI_QUEUE -1 /* sent by sigqueue */
414#define SI_TIMER -2 /* sent by timer expiration */
415#define SI_MESGQ -3 /* sent by real time mesq state change */
416#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000417#define SI_SIGIO -5 /* sent by SIGIO */
418#define SI_TKILL -6 /* sent by tkill */
419#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
420
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000421#define SI_FROMUSER(sip) ((sip)->si_code <= 0)
422
Denys Vlasenko84703742012-02-25 02:38:52 +0100423#endif
John Hughes58265892001-10-18 15:13:53 +0000424
425#if __GLIBC_MINOR__ < 1
426/* Type for data associated with a signal. */
427typedef union sigval
428{
429 int sival_int;
430 void *sival_ptr;
431} sigval_t;
432
433# define __SI_MAX_SIZE 128
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200434# define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof(int)) - 3)
John Hughes58265892001-10-18 15:13:53 +0000435
436typedef struct siginfo
437{
438 int si_signo; /* Signal number. */
439 int si_errno; /* If non-zero, an errno value associated with
440 this signal, as defined in <errno.h>. */
441 int si_code; /* Signal code. */
442
443 union
444 {
445 int _pad[__SI_PAD_SIZE];
446
447 /* kill(). */
448 struct
449 {
450 __pid_t si_pid; /* Sending process ID. */
451 __uid_t si_uid; /* Real user ID of sending process. */
452 } _kill;
453
454 /* POSIX.1b timers. */
455 struct
456 {
457 unsigned int _timer1;
458 unsigned int _timer2;
459 } _timer;
460
461 /* POSIX.1b signals. */
462 struct
463 {
464 __pid_t si_pid; /* Sending process ID. */
465 __uid_t si_uid; /* Real user ID of sending process. */
466 sigval_t si_sigval; /* Signal value. */
467 } _rt;
468
469 /* SIGCHLD. */
470 struct
471 {
472 __pid_t si_pid; /* Which child. */
473 int si_status; /* Exit value or signal. */
474 __clock_t si_utime;
475 __clock_t si_stime;
476 } _sigchld;
477
478 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
479 struct
480 {
481 void *si_addr; /* Faulting insn/memory ref. */
482 } _sigfault;
483
484 /* SIGPOLL. */
485 struct
486 {
487 int si_band; /* Band event for SIGPOLL. */
488 int si_fd;
489 } _sigpoll;
490 } _sifields;
491} siginfo_t;
492
493#define si_pid _sifields._kill.si_pid
494#define si_uid _sifields._kill.si_uid
495#define si_status _sifields._sigchld.si_status
496#define si_utime _sifields._sigchld.si_utime
497#define si_stime _sifields._sigchld.si_stime
498#define si_value _sifields._rt.si_sigval
499#define si_int _sifields._rt.si_sigval.sival_int
500#define si_ptr _sifields._rt.si_sigval.sival_ptr
501#define si_addr _sifields._sigfault.si_addr
502#define si_band _sifields._sigpoll.si_band
503#define si_fd _sifields._sigpoll.si_fd
504
505#endif
506
Roland McGrathd9f816f2004-09-04 03:39:20 +0000507static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000508#ifdef SI_KERNEL
509 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000510#endif
511#ifdef SI_USER
512 { SI_USER, "SI_USER" },
513#endif
John Hughes58265892001-10-18 15:13:53 +0000514#ifdef SI_QUEUE
515 { SI_QUEUE, "SI_QUEUE" },
516#endif
517#ifdef SI_TIMER
518 { SI_TIMER, "SI_TIMER" },
519#endif
John Hughes58265892001-10-18 15:13:53 +0000520#ifdef SI_MESGQ
521 { SI_MESGQ, "SI_MESGQ" },
522#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000523#ifdef SI_ASYNCIO
524 { SI_ASYNCIO, "SI_ASYNCIO" },
525#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000526#ifdef SI_SIGIO
527 { SI_SIGIO, "SI_SIGIO" },
528#endif
529#ifdef SI_TKILL
530 { SI_TKILL, "SI_TKILL" },
531#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000532#ifdef SI_ASYNCNL
533 { SI_ASYNCNL, "SI_ASYNCNL" },
534#endif
535#ifdef SI_NOINFO
536 { SI_NOINFO, "SI_NOINFO" },
537#endif
538#ifdef SI_LWP
539 { SI_LWP, "SI_LWP" },
540#endif
John Hughes58265892001-10-18 15:13:53 +0000541 { 0, NULL },
542};
543
Roland McGrathd9f816f2004-09-04 03:39:20 +0000544static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000545 { ILL_ILLOPC, "ILL_ILLOPC" },
546 { ILL_ILLOPN, "ILL_ILLOPN" },
547 { ILL_ILLADR, "ILL_ILLADR" },
548 { ILL_ILLTRP, "ILL_ILLTRP" },
549 { ILL_PRVOPC, "ILL_PRVOPC" },
550 { ILL_PRVREG, "ILL_PRVREG" },
551 { ILL_COPROC, "ILL_COPROC" },
552 { ILL_BADSTK, "ILL_BADSTK" },
553 { 0, NULL },
554};
555
Roland McGrathd9f816f2004-09-04 03:39:20 +0000556static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000557 { FPE_INTDIV, "FPE_INTDIV" },
558 { FPE_INTOVF, "FPE_INTOVF" },
559 { FPE_FLTDIV, "FPE_FLTDIV" },
560 { FPE_FLTOVF, "FPE_FLTOVF" },
561 { FPE_FLTUND, "FPE_FLTUND" },
562 { FPE_FLTRES, "FPE_FLTRES" },
563 { FPE_FLTINV, "FPE_FLTINV" },
564 { FPE_FLTSUB, "FPE_FLTSUB" },
565 { 0, NULL },
566};
567
Roland McGrathd9f816f2004-09-04 03:39:20 +0000568static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000569 { TRAP_BRKPT, "TRAP_BRKPT" },
570 { TRAP_TRACE, "TRAP_TRACE" },
571 { 0, NULL },
572};
573
Roland McGrathd9f816f2004-09-04 03:39:20 +0000574static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000575 { CLD_EXITED, "CLD_EXITED" },
576 { CLD_KILLED, "CLD_KILLED" },
577 { CLD_DUMPED, "CLD_DUMPED" },
578 { CLD_TRAPPED, "CLD_TRAPPED" },
579 { CLD_STOPPED, "CLD_STOPPED" },
580 { CLD_CONTINUED,"CLD_CONTINUED" },
581 { 0, NULL },
582};
583
Roland McGrathd9f816f2004-09-04 03:39:20 +0000584static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000585 { POLL_IN, "POLL_IN" },
586 { POLL_OUT, "POLL_OUT" },
587 { POLL_MSG, "POLL_MSG" },
588 { POLL_ERR, "POLL_ERR" },
589 { POLL_PRI, "POLL_PRI" },
590 { POLL_HUP, "POLL_HUP" },
591 { 0, NULL },
592};
593
Roland McGrathd9f816f2004-09-04 03:39:20 +0000594static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000595#ifdef PROF_SIG
596 { PROF_SIG, "PROF_SIG" },
597#endif
598 { 0, NULL },
599};
600
601#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000602static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000603#ifdef EMT_TAGOVF
604 { EMT_TAGOVF, "EMT_TAGOVF" },
605#endif
606 { 0, NULL },
607};
608#endif
609
Roland McGrathd9f816f2004-09-04 03:39:20 +0000610static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000611 { SEGV_MAPERR, "SEGV_MAPERR" },
612 { SEGV_ACCERR, "SEGV_ACCERR" },
613 { 0, NULL },
614};
615
Roland McGrathd9f816f2004-09-04 03:39:20 +0000616static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000617 { BUS_ADRALN, "BUS_ADRALN" },
618 { BUS_ADRERR, "BUS_ADRERR" },
619 { BUS_OBJERR, "BUS_OBJERR" },
620 { 0, NULL },
621};
622
623void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000624printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000625{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000626 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000627
628 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200629 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000630 return;
631 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200632 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000633 printsignal(sip->si_signo);
634 code = xlookup(siginfo_codes, sip->si_code);
635 if (!code) {
636 switch (sip->si_signo) {
637 case SIGTRAP:
638 code = xlookup(sigtrap_codes, sip->si_code);
639 break;
640 case SIGCHLD:
641 code = xlookup(sigchld_codes, sip->si_code);
642 break;
643 case SIGPOLL:
644 code = xlookup(sigpoll_codes, sip->si_code);
645 break;
646 case SIGPROF:
647 code = xlookup(sigprof_codes, sip->si_code);
648 break;
649 case SIGILL:
650 code = xlookup(sigill_codes, sip->si_code);
651 break;
652#ifdef SIGEMT
653 case SIGEMT:
654 code = xlookup(sigemt_codes, sip->si_code);
655 break;
656#endif
657 case SIGFPE:
658 code = xlookup(sigfpe_codes, sip->si_code);
659 break;
660 case SIGSEGV:
661 code = xlookup(sigsegv_codes, sip->si_code);
662 break;
663 case SIGBUS:
664 code = xlookup(sigbus_codes, sip->si_code);
665 break;
666 }
667 }
668 if (code)
669 tprintf(", si_code=%s", code);
670 else
671 tprintf(", si_code=%#x", sip->si_code);
672#ifdef SI_NOINFO
673 if (sip->si_code != SI_NOINFO)
674#endif
675 {
676 if (sip->si_errno) {
677 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
678 tprintf(", si_errno=%d", sip->si_errno);
679 else
680 tprintf(", si_errno=%s",
681 errnoent[sip->si_errno]);
682 }
683#ifdef SI_FROMUSER
684 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000685 tprintf(", si_pid=%lu, si_uid=%lu",
686 (unsigned long) sip->si_pid,
687 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000688 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000689#ifdef SI_USER
690 case SI_USER:
691 break;
692#endif
693#ifdef SI_TKILL
694 case SI_TKILL:
695 break;
696#endif
John Hughes58265892001-10-18 15:13:53 +0000697#ifdef SI_TIMER
698 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000699 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000700 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000701#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000702 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000703 if (!sip->si_ptr)
704 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000705 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200706 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000707 else
708 tprintf(", si_value={int=%u, ptr=%#lx}",
709 sip->si_int,
710 (unsigned long) sip->si_ptr);
711 break;
John Hughes58265892001-10-18 15:13:53 +0000712 }
John Hughes58265892001-10-18 15:13:53 +0000713 }
714 else
715#endif /* SI_FROMUSER */
716 {
717 switch (sip->si_signo) {
718 case SIGCHLD:
719 tprintf(", si_pid=%ld, si_status=",
720 (long) sip->si_pid);
721 if (sip->si_code == CLD_EXITED)
722 tprintf("%d", sip->si_status);
723 else
724 printsignal(sip->si_status);
John Hughes58265892001-10-18 15:13:53 +0000725 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200726 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000727 else
728 tprintf(", si_utime=%lu, si_stime=%lu",
729 sip->si_utime,
730 sip->si_stime);
John Hughes58265892001-10-18 15:13:53 +0000731 break;
732 case SIGILL: case SIGFPE:
733 case SIGSEGV: case SIGBUS:
734 tprintf(", si_addr=%#lx",
735 (unsigned long) sip->si_addr);
736 break;
737 case SIGPOLL:
738 switch (sip->si_code) {
739 case POLL_IN: case POLL_OUT: case POLL_MSG:
740 tprintf(", si_band=%ld",
741 (long) sip->si_band);
742 break;
743 }
744 break;
John Hughes58265892001-10-18 15:13:53 +0000745 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000746 if (sip->si_pid || sip->si_uid)
747 tprintf(", si_pid=%lu, si_uid=%lu",
748 (unsigned long) sip->si_pid,
749 (unsigned long) sip->si_uid);
750 if (!sip->si_ptr)
751 break;
John Hughes58265892001-10-18 15:13:53 +0000752 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200753 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000754 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000755 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000756 sip->si_int,
757 (unsigned long) sip->si_ptr);
758 }
Roland McGratha39c5a12002-12-17 05:10:37 +0000759
John Hughes58265892001-10-18 15:13:53 +0000760 }
761 }
762 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200763 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000764}
765
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000766int
Denys Vlasenko12014262011-05-30 14:00:14 +0200767sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000768{
769 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000770 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000771 long_to_sigset(tcp->u_arg[0], &sigm);
772 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000773 }
774 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000775 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000776 long_to_sigset(tcp->u_rval, &sigm);
777 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000778
779 return RVAL_HEX | RVAL_STR;
780 }
781 return 0;
782}
783
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000784#ifdef HAVE_SIGACTION
785
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000786struct old_sigaction {
787 __sighandler_t __sa_handler;
788 unsigned long sa_mask;
789 unsigned long sa_flags;
790 void (*sa_restorer)(void);
791};
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000792#define SA_HANDLER __sa_handler
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000793
Roland McGratha39c5a12002-12-17 05:10:37 +0000794#ifndef SA_HANDLER
795#define SA_HANDLER sa_handler
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000796#endif
797
798int
Denys Vlasenko12014262011-05-30 14:00:14 +0200799sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000800{
801 long addr;
John Hughes1e4cb342001-03-06 09:25:46 +0000802 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000803 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000804
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000805 if (entering(tcp)) {
806 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200807 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000808 addr = tcp->u_arg[1];
809 } else
810 addr = tcp->u_arg[2];
811 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200812 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000813 else if (!verbose(tcp))
814 tprintf("%#lx", addr);
815 else if (umove(tcp, addr, &sa) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200816 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000817 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000818 /* Architectures using function pointers, like
819 * hppa, may need to manipulate the function pointer
820 * to compute the result of a comparison. However,
821 * the SA_HANDLER function pointer exists only in
822 * the address space of the traced process, and can't
823 * be manipulated by strace. In order to prevent the
824 * compiler from generating code to manipulate
825 * SA_HANDLER we cast the function pointers to long. */
826 if ((long)sa.SA_HANDLER == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200827 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000828 else if ((long)sa.SA_HANDLER == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200829 tprints("{SIG_DFL, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100830 else if ((long)sa.SA_HANDLER == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200831 tprints("{SIG_IGN, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100832 else
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000833 tprintf("{%#lx, ", (long) sa.SA_HANDLER);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100834 long_to_sigset(sa.sa_mask, &sigset);
835 printsigmask(&sigset, 0);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100836 tprints(", ");
837 printflags(sigact_flags, sa.sa_flags, "SA_???");
838#ifdef SA_RESTORER
839 if (sa.sa_flags & SA_RESTORER)
840 tprintf(", %p", sa.sa_restorer);
841#endif
842 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000843 }
844 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200845 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000846 else
847 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000848 return 0;
849}
850
851int
Denys Vlasenko12014262011-05-30 14:00:14 +0200852sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000853{
854 if (entering(tcp)) {
855 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200856 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000857 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000858 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200859 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000860 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000861 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200862 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000863 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000864 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200865 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000866 break;
867 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000868 tprintf("%#lx", tcp->u_arg[1]);
869 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000870 return 0;
871 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000872 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000873 switch (tcp->u_rval) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000874 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000875 tcp->auxstr = "SIG_ERR"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000876 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000877 tcp->auxstr = "SIG_DFL"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000878 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000879 tcp->auxstr = "SIG_IGN"; break;
880 default:
881 tcp->auxstr = NULL;
882 }
883 return RVAL_HEX | RVAL_STR;
884 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000885 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000886}
887
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000888#endif /* HAVE_SIGACTION */
889
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000890int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000891sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000892{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000893#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000894 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200895 struct pt_regs regs;
896 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100897 sigset_t sigm;
Roland McGrath0f87c492003-06-03 23:29:04 +0000898 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)&regs) == -1)
899 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000900 if (umove(tcp, regs.ARM_sp, &sc) < 0)
901 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100902 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100903 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000904 }
905 return 0;
906#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +0000907 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200908 long usp;
909 struct sigcontext_struct sc;
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200910 if (upeek(tcp, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000911 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100912 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000913 return 0;
Andreas Schwaba7920a82012-01-17 17:56:44 +0100914 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000915 }
916 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000917#elif defined(I386)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000918 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200919 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100920 /* Note: on i386, sc is followed on stack by struct fpstate
921 * and after it an additional u32 extramask[1] which holds
922 * upper half of the mask. We can fetch it there
923 * if/when we'd want to display the full mask...
924 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000925 sigset_t sigm;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100926 if (umove(tcp, i386_regs.esp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000927 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100928 long_to_sigset(sc.oldmask, &sigm);
929 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000930 }
931 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000932#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000933 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200934 struct sigcontext sc;
935 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100936 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000937 /* offset of sigcontext in the kernel's sigframe structure: */
938# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000939 if (upeek(tcp, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000940 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000941 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000942 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200943 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100944 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100945 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000946 }
947 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000948#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +0000949 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200950 long esp;
951 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100952 sigset_t sigm;
953 if (upeek(tcp, sizeof(unsigned long) * PT_R1, &esp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000954 return 0;
Andreas Schwabedb39342010-02-23 00:18:51 +0100955 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200956#ifdef POWERPC64
957 if (current_personality == 0)
958 esp += 128;
959 else
960 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +0100961#else
962 esp += 64;
963#endif
Roland McGrath0f87c492003-06-03 23:29:04 +0000964 if (umove(tcp, esp, &sc) < 0)
965 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100966 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100967 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000968 }
969 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000970#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000971 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200972 long usp;
973 struct sigcontext sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100974 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000975 if (upeek(tcp, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000976 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000977 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000978 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100979 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100980 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000981 }
982 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000983#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000984 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200985 long fp;
986 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100987 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000988 if (upeek(tcp, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000989 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000990 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000991 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100992 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100993 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000994 }
995 return 0;
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100996#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200997 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200998 long i1;
999 struct pt_regs regs;
1000 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001001 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001002 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1003 perror("sigreturn: PTRACE_GETREGS");
1004 return 0;
1005 }
Mike Frysinger8566c502009-10-12 11:05:14 -04001006 i1 = regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001007 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001008 perror("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001009 return 0;
1010 }
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001011 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001012 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001013 }
1014 return 0;
Denys Vlasenkoc36c3522012-02-25 02:47:15 +01001015#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +00001016 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
1017 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001018 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001019 long sp;
1020 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001021 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001022 if (upeek(tcp, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001023 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001024 /* There are six words followed by a 128-byte siginfo. */
1025 sp = sp + 6 * 4 + 128;
1026 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001027 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001028 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001029 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath542c2c62008-05-20 01:11:56 +00001030 }
1031 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001032#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001033 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001034 long sp;
1035 struct pt_regs regs;
1036 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001037 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001038 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1039 perror("sigreturn: PTRACE_GETREGS");
1040 return 0;
1041 }
Roland McGrath576b7842007-11-04 00:00:00 +00001042 sp = regs.regs[29];
1043 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +02001044 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001045 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001046 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkermanf90da011999-10-31 21:15:38 +00001047 }
1048 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001049#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001050 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001051 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001052 long regs[PT_MAX+1];
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001053 sigset_t sigm;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001054 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
1055 perror("sigreturn: PTRACE_GETREGS");
1056 return 0;
1057 }
1058 if (umove(tcp, regs[PT_USP], &sc) < 0)
1059 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001060 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001061 tprints(sprintsigmask(") (mask ", &sigm, 0));
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001062 }
1063 return 0;
Chris Metcalfc8c66982009-12-28 10:00:15 -05001064#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001065 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001066 struct ucontext uc;
1067 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001068 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001069
1070 /* offset of ucontext in the kernel's sigframe structure */
1071# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001072 if (upeek(tcp, PTREGS_OFFSET_SP, &sp) < 0)
1073 return 0;
1074 if (umove(tcp, sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1075 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001076 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001077 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001078 tprints(sprintsigmask(") (mask ", &sigm, 0));
Chris Metcalfc8c66982009-12-28 10:00:15 -05001079 }
1080 return 0;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001081#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001082 /* TODO: Verify that this is correct... */
1083 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001084 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001085 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001086 sigset_t sigm;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001087 /* Read r1, the stack pointer. */
1088 if (upeek(tcp, 1 * 4, &sp) < 0)
1089 return 0;
1090 if (umove(tcp, sp, &sc) < 0)
1091 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001092 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001093 tprints(sprintsigmask(") (mask ", &sigm, 0));
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001094 }
1095 return 0;
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001096#else
Michal Ludvig0e035502002-09-23 15:41:01 +00001097#warning No sys_sigreturn() for this architecture
1098#warning (no problem, just a reminder :-)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001099 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001100#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001101}
1102
1103int
Denys Vlasenko12014262011-05-30 14:00:14 +02001104sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001105{
1106 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001107 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001108 long_to_sigset(tcp->u_rval, &sigm);
1109 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001110 }
1111 return RVAL_HEX | RVAL_STR;
1112}
1113
1114int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001115sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001116{
1117 if (entering(tcp)) {
1118 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001119 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001120 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001121 }
1122 return 0;
1123}
1124
Denys Vlasenko84703742012-02-25 02:38:52 +01001125#if !defined SS_ONSTACK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001126#define SS_ONSTACK 1
1127#define SS_DISABLE 2
1128#if __GLIBC_MINOR__ == 0
1129typedef struct
1130{
1131 __ptr_t ss_sp;
1132 int ss_flags;
1133 size_t ss_size;
1134} stack_t;
1135#endif
1136#endif
1137
Roland McGrathd9f816f2004-09-04 03:39:20 +00001138static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001139 { SS_ONSTACK, "SS_ONSTACK" },
1140 { SS_DISABLE, "SS_DISABLE" },
1141 { 0, NULL },
1142};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001143
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001144static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001145print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001146{
1147 stack_t ss;
1148 if (umove(tcp, addr, &ss) < 0)
1149 return -1;
1150 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
Roland McGrathb2dee132005-06-01 19:02:36 +00001151 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001152 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1153 return 0;
1154}
1155
1156int
Denys Vlasenko12014262011-05-30 14:00:14 +02001157sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001158{
1159 if (entering(tcp)) {
1160 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001161 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001162 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1163 return -1;
1164 }
1165 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001166 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001167 if (tcp->u_arg[1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001168 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001169 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1170 return -1;
1171 }
1172 return 0;
1173}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001174
1175#ifdef HAVE_SIGACTION
1176
1177int
Denys Vlasenko12014262011-05-30 14:00:14 +02001178sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001179{
1180#ifdef ALPHA
1181 if (entering(tcp)) {
1182 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001183 tprints(", ");
Nate Sammons4a121431999-04-06 01:19:39 +00001184 printsigmask(tcp->u_arg[1], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001185 }
1186 else if (!syserror(tcp)) {
Nate Sammons4a121431999-04-06 01:19:39 +00001187 tcp->auxstr = sprintsigmask("old mask ", tcp->u_rval, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001188 return RVAL_HEX | RVAL_STR;
1189 }
1190#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001191 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001192 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001193 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001194 print_sigset(tcp, tcp->u_arg[1], 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001195 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001196 }
1197 else {
1198 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001199 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001200 else if (syserror(tcp))
1201 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001202 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001203 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001204 }
1205#endif /* !ALPHA */
1206 return 0;
1207}
1208
1209#endif /* HAVE_SIGACTION */
1210
1211int
Denys Vlasenko12014262011-05-30 14:00:14 +02001212sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001213{
1214 if (entering(tcp)) {
Roland McGrath4d7ed022008-05-20 01:43:09 +00001215 long pid = tcp->u_arg[0];
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001216#if SUPPORTED_PERSONALITIES > 1
1217 /* Sign-extend a 32-bit value when that's what it is. */
Roland McGrath4d7ed022008-05-20 01:43:09 +00001218 if (personality_wordsize[current_personality] < sizeof pid)
1219 pid = (long) (int) pid;
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001220#endif
Roland McGrath4d7ed022008-05-20 01:43:09 +00001221 tprintf("%ld, %s", pid, signame(tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001222 }
1223 return 0;
1224}
1225
Roland McGrath8ffc3522003-07-09 09:47:49 +00001226int
Denys Vlasenko12014262011-05-30 14:00:14 +02001227sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001228{
1229 if (entering(tcp)) {
1230 tprintf("%ld, %ld, %s",
1231 tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2]));
1232 }
1233 return 0;
1234}
Roland McGrath8ffc3522003-07-09 09:47:49 +00001235
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001236int
Denys Vlasenko12014262011-05-30 14:00:14 +02001237sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001238{
1239 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001240
1241 if (exiting(tcp)) {
1242 if (syserror(tcp))
1243 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001244 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001245 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001246 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001247 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001248 }
1249 return 0;
1250}
1251
Denys Vlasenko12014262011-05-30 14:00:14 +02001252int
1253sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001254{
1255 sigset_t sigset;
1256
Nate Sammons4a121431999-04-06 01:19:39 +00001257 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001258 if (entering(tcp)) {
1259 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001260 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001261 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001262 tprints("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001263 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001264 tprintf("%#lx, ", tcp->u_arg[1]);
1265 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001266 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001267 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001268 }
1269 }
1270 else {
1271 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001272 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001273 else if (syserror(tcp))
1274 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001275 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001276 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001277 else
Nate Sammons4a121431999-04-06 01:19:39 +00001278 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001279 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001280 }
1281 return 0;
1282}
1283
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001284/* Structure describing the action to be taken when a signal arrives. */
1285struct new_sigaction
1286{
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001287 __sighandler_t __sa_handler;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001288 unsigned long sa_flags;
1289 void (*sa_restorer) (void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001290 /* Kernel treats sa_mask as an array of longs. */
1291 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1292};
1293/* Same for i386-on-x86_64 and similar cases */
1294struct new_sigaction32
1295{
1296 uint32_t __sa_handler;
1297 uint32_t sa_flags;
1298 uint32_t sa_restorer;
1299 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001300};
1301
Roland McGrath5f206812008-08-20 01:59:40 +00001302int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001303sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001304{
1305 struct new_sigaction sa;
1306 sigset_t sigset;
1307 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001308 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001309
1310 if (entering(tcp)) {
1311 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001312 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001313 addr = tcp->u_arg[1];
1314 } else
1315 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001316
1317 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001318 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001319 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001320 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001321 if (!verbose(tcp)) {
1322 tprintf("%#lx", addr);
1323 goto after_sa;
1324 }
1325#if SUPPORTED_PERSONALITIES > 1
1326 if (personality_wordsize[current_personality] != sizeof(sa.sa_flags)
1327 && personality_wordsize[current_personality] == 4
1328 ) {
1329 struct new_sigaction32 sa32;
1330 r = umove(tcp, addr, &sa32);
1331 if (r >= 0) {
1332 memset(&sa, 0, sizeof(sa));
1333 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1334 sa.sa_flags = sa32.sa_flags;
1335 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1336 /* Kernel treats sa_mask as an array of longs.
1337 * For 32-bit process, "long" is uint32_t, thus, for example,
1338 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1339 * But for (64-bit) kernel, 32th bit in sa_mask is
1340 * 32th bit in 0th (64-bit) long!
1341 * For little-endian, it's the same.
1342 * For big-endian, we swap 32-bit words.
1343 */
1344 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1345 }
1346 } else
1347#endif
1348 {
1349 r = umove(tcp, addr, &sa);
1350 }
1351 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001352 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001353 goto after_sa;
1354 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001355 /* Architectures using function pointers, like
1356 * hppa, may need to manipulate the function pointer
1357 * to compute the result of a comparison. However,
1358 * the SA_HANDLER function pointer exists only in
1359 * the address space of the traced process, and can't
1360 * be manipulated by strace. In order to prevent the
1361 * compiler from generating code to manipulate
1362 * SA_HANDLER we cast the function pointers to long. */
1363 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001364 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001365 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001366 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001367 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001368 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001369 else
1370 tprintf("{%#lx, ", (long) sa.__sa_handler);
1371 /* Questionable code below.
1372 * Kernel won't handle sys_rt_sigaction
1373 * with wrong sigset size (just returns EINVAL)
1374 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1375 * and we always use smaller memcpy. */
1376 sigemptyset(&sigset);
1377#ifdef LINUXSPARC
1378 if (tcp->u_arg[4] <= sizeof(sigset))
1379 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1380#else
1381 if (tcp->u_arg[3] <= sizeof(sigset))
1382 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1383#endif
1384 else
1385 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1386 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001387 tprints(", ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001388 printflags(sigact_flags, sa.sa_flags, "SA_???");
1389#ifdef SA_RESTORER
1390 if (sa.sa_flags & SA_RESTORER)
1391 tprintf(", %p", sa.sa_restorer);
1392#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001393 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001394
1395 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001396 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001397 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001398 else
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001399#ifdef LINUXSPARC
1400 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1401#elif defined(ALPHA)
1402 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1403#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001404 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001405#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001406 return 0;
1407}
1408
Denys Vlasenko1d632462009-04-14 12:51:00 +00001409int
1410sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001411{
1412 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001413
1414 if (exiting(tcp)) {
1415 if (syserror(tcp))
1416 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001417 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1418 &sigset, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001419 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001420 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001421 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001422 }
1423 return 0;
1424}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001425
1426int
1427sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001428{
1429 if (entering(tcp)) {
1430 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001431 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001432 tprints("[?]");
Nate Sammons4a121431999-04-06 01:19:39 +00001433 else
1434 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001435 }
1436 return 0;
1437}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001438
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001439static void
1440print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1441{
1442 siginfo_t si;
1443
1444 printsignal(sig);
1445 tprints(", ");
1446 if (umove(tcp, uinfo, &si) < 0)
1447 tprintf("%#lx", uinfo);
1448 else
1449 printsiginfo(&si, verbose(tcp));
1450}
1451
Denys Vlasenko1d632462009-04-14 12:51:00 +00001452int
1453sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001454{
1455 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001456 tprintf("%lu, ", tcp->u_arg[0]);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001457 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1458 }
1459 return 0;
1460}
1461
1462int
1463sys_rt_tgsigqueueinfo(struct tcb *tcp)
1464{
1465 if (entering(tcp)) {
1466 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1467 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001468 }
1469 return 0;
1470}
1471
Denys Vlasenko1d632462009-04-14 12:51:00 +00001472int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001473{
1474 if (entering(tcp)) {
1475 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001476
Roland McGratha39c5a12002-12-17 05:10:37 +00001477 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00001478 &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001479 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001480 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001481 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001482 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001483 /* This is the only "return" parameter, */
1484 if (tcp->u_arg[1] != 0)
1485 return 0;
1486 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001487 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001488 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001489 else if (tcp->u_arg[1] != 0) {
1490 /* syscall exit, and u_arg[1] wasn't NULL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001491 if (syserror(tcp))
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001492 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001493 else {
1494 siginfo_t si;
1495 if (umove(tcp, tcp->u_arg[1], &si) < 0)
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001496 tprintf("%#lx, ", tcp->u_arg[1]);
1497 else {
Denys Vlasenkof535b542009-01-13 18:30:55 +00001498 printsiginfo(&si, verbose(tcp));
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001499 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001500 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001501 }
1502 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001503 else {
1504 /* syscall exit, and u_arg[1] was NULL */
1505 return 0;
1506 }
1507 print_timespec(tcp, tcp->u_arg[2]);
1508 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001509 return 0;
1510};
1511
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001512int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001513sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001514{
1515 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001516 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001517 return 0;
1518}
1519
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001520static int
1521do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001522{
1523 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001524 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001525 tprints(", ");
Roland McGrathf46ccd32007-08-02 01:15:59 +00001526 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001527 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001528 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001529 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001530 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1531 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001532 }
1533 return 0;
1534}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001535
1536int
1537sys_signalfd(struct tcb *tcp)
1538{
1539 return do_signalfd(tcp, -1);
1540}
1541
1542int
1543sys_signalfd4(struct tcb *tcp)
1544{
1545 return do_signalfd(tcp, 3);
1546}