blob: 999d14925e0d03cd71b5e58bb8b7398dfc1930c5 [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 <signal.h>
40#include <sys/user.h>
41#include <fcntl.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000042
43#ifdef SVR4
44#include <sys/ucontext.h>
45#endif /* SVR4 */
46
Wichert Akkerman36915a11999-07-13 15:45:02 +000047#ifdef HAVE_SYS_REG_H
48# include <sys/reg.h>
Wichert Akkerman15dea971999-10-06 13:06:34 +000049#ifndef PTRACE_PEEKUSR
Wichert Akkerman36915a11999-07-13 15:45:02 +000050# define PTRACE_PEEKUSR PTRACE_PEEKUSER
Wichert Akkerman15dea971999-10-06 13:06:34 +000051#endif
52#ifndef PTRACE_POKEUSR
Wichert Akkerman36915a11999-07-13 15:45:02 +000053# define PTRACE_POKEUSR PTRACE_POKEUSER
Wichert Akkerman2e2553a1999-05-09 00:29:58 +000054#endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000055#elif defined(HAVE_LINUX_PTRACE_H)
56#undef PTRACE_SYSCALL
Roland McGrathb0acdfd2004-03-01 21:31:02 +000057# ifdef HAVE_STRUCT_IA64_FPREG
58# define ia64_fpreg XXX_ia64_fpreg
59# endif
60# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
61# define pt_all_user_regs XXX_pt_all_user_regs
62# endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000063#include <linux/ptrace.h>
Roland McGrathb0acdfd2004-03-01 21:31:02 +000064# undef ia64_fpreg
65# undef pt_all_user_regs
Wichert Akkerman15dea971999-10-06 13:06:34 +000066#endif
Wichert Akkerman36915a11999-07-13 15:45:02 +000067
Wichert Akkermanfaf72222000-02-19 23:59:03 +000068
Wichert Akkerman36915a11999-07-13 15:45:02 +000069#ifdef LINUX
70
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000071#ifdef IA64
72# include <asm/ptrace_offsets.h>
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020073#endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000074
Roland McGrath6d1a65c2004-07-12 07:44:08 +000075#if defined (LINUX) && defined (SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000076# undef PTRACE_GETREGS
77# define PTRACE_GETREGS PTRACE_GETREGS64
78# undef PTRACE_SETREGS
79# define PTRACE_SETREGS PTRACE_SETREGS64
80#endif /* LINUX && SPARC64 */
Roland McGrath30ff45e2003-01-30 20:15:23 +000081
Mike Frysinger8566c502009-10-12 11:05:14 -040082#if defined (SPARC) || defined (SPARC64) || defined (MIPS)
Roland McGrath576b7842007-11-04 00:00:00 +000083typedef struct {
84 struct pt_regs si_regs;
85 int si_mask;
86} m_siginfo_t;
Roland McGrath30ff45e2003-01-30 20:15:23 +000087#elif defined HAVE_ASM_SIGCONTEXT_H
88#if !defined(IA64) && !defined(X86_64)
Wichert Akkerman00a82ee2001-03-28 20:29:17 +000089#include <asm/sigcontext.h>
Roland McGrath30ff45e2003-01-30 20:15:23 +000090#endif /* !IA64 && !X86_64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091#else /* !HAVE_ASM_SIGCONTEXT_H */
Roland McGrath0cbb4e42008-05-20 01:26:21 +000092#if defined I386 && !defined HAVE_STRUCT_SIGCONTEXT_STRUCT
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000093struct sigcontext_struct {
94 unsigned short gs, __gsh;
95 unsigned short fs, __fsh;
96 unsigned short es, __esh;
97 unsigned short ds, __dsh;
98 unsigned long edi;
99 unsigned long esi;
100 unsigned long ebp;
101 unsigned long esp;
102 unsigned long ebx;
103 unsigned long edx;
104 unsigned long ecx;
105 unsigned long eax;
106 unsigned long trapno;
107 unsigned long err;
108 unsigned long eip;
109 unsigned short cs, __csh;
110 unsigned long eflags;
111 unsigned long esp_at_signal;
112 unsigned short ss, __ssh;
113 unsigned long i387;
114 unsigned long oldmask;
115 unsigned long cr2;
116};
117#else /* !I386 */
Roland McGrath587c7b52009-02-11 03:03:28 +0000118#if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000119struct sigcontext
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000120{
121 unsigned long sc_mask;
122 unsigned long sc_usp;
123 unsigned long sc_d0;
124 unsigned long sc_d1;
125 unsigned long sc_a0;
126 unsigned long sc_a1;
127 unsigned short sc_sr;
128 unsigned long sc_pc;
129 unsigned short sc_formatvec;
130};
131#endif /* M68K */
132#endif /* !I386 */
133#endif /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200134
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000135#ifndef NSIG
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200136#warning: NSIG is not defined, using 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000137#define NSIG 32
138#endif
139#ifdef ARM
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200140/* Ugh. Is this really correct? ARM has no RT signals?! */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000141#undef NSIG
142#define NSIG 32
143#endif
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200144
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000145#endif /* LINUX */
146
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000147#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000148
Roland McGrathd9f816f2004-09-04 03:39:20 +0000149static const struct xlat sigvec_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000150 { SV_ONSTACK, "SV_ONSTACK" },
151 { SV_INTERRUPT, "SV_INTERRUPT" },
152 { SV_RESETHAND, "SV_RESETHAND" },
153 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
154 { 0, NULL },
155};
156
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000157#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000158
159#ifdef HAVE_SIGACTION
160
Roland McGrath063ae2d2005-02-02 04:16:54 +0000161#if defined LINUX && (defined I386 || defined X86_64)
Roland McGrath2638cb42002-12-15 23:58:41 +0000162/* The libc headers do not define this constant since it should only be
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200163 used by the implementation. So we define it here. */
Roland McGrath2638cb42002-12-15 23:58:41 +0000164# ifndef SA_RESTORER
165# define SA_RESTORER 0x04000000
166# endif
167#endif
168
Roland McGrathd9f816f2004-09-04 03:39:20 +0000169static const struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000170#ifdef SA_RESTORER
171 { SA_RESTORER, "SA_RESTORER" },
172#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000173#ifdef SA_STACK
174 { SA_STACK, "SA_STACK" },
175#endif
176#ifdef SA_RESTART
177 { SA_RESTART, "SA_RESTART" },
178#endif
179#ifdef SA_INTERRUPT
180 { SA_INTERRUPT, "SA_INTERRUPT" },
181#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000182#ifdef SA_NODEFER
183 { SA_NODEFER, "SA_NODEFER" },
184#endif
185#if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000186 { SA_NOMASK, "SA_NOMASK" },
187#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000188#ifdef SA_RESETHAND
189 { SA_RESETHAND, "SA_RESETHAND" },
190#endif
191#if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000192 { SA_ONESHOT, "SA_ONESHOT" },
193#endif
194#ifdef SA_SIGINFO
195 { SA_SIGINFO, "SA_SIGINFO" },
196#endif
197#ifdef SA_RESETHAND
198 { SA_RESETHAND, "SA_RESETHAND" },
199#endif
200#ifdef SA_ONSTACK
201 { SA_ONSTACK, "SA_ONSTACK" },
202#endif
203#ifdef SA_NODEFER
204 { SA_NODEFER, "SA_NODEFER" },
205#endif
206#ifdef SA_NOCLDSTOP
207 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
208#endif
209#ifdef SA_NOCLDWAIT
210 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
211#endif
212#ifdef _SA_BSDCALL
213 { _SA_BSDCALL, "_SA_BSDCALL" },
214#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500215#ifdef SA_NOPTRACE
216 { SA_NOPTRACE, "SA_NOPTRACE" },
217#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000218 { 0, NULL },
219};
220
Roland McGrathd9f816f2004-09-04 03:39:20 +0000221static const struct xlat sigprocmaskcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000222 { SIG_BLOCK, "SIG_BLOCK" },
223 { SIG_UNBLOCK, "SIG_UNBLOCK" },
224 { SIG_SETMASK, "SIG_SETMASK" },
225#ifdef SIG_SETMASK32
226 { SIG_SETMASK32,"SIG_SETMASK32" },
227#endif
228 { 0, NULL },
229};
230
231#endif /* HAVE_SIGACTION */
232
Nate Sammonsce780fc1999-03-29 23:23:13 +0000233/* Anonymous realtime signals. */
234/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
235 constant. This is what we want. Otherwise, just use SIGRTMIN. */
236#ifdef SIGRTMIN
237#ifndef __SIGRTMIN
238#define __SIGRTMIN SIGRTMIN
239#define __SIGRTMAX SIGRTMAX /* likewise */
240#endif
241#endif
242
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200243/* Note on the size of sigset_t:
244 *
245 * In glibc, sigset_t is an array with space for 1024 bits (!),
246 * even though all arches supported by Linux have only 64 signals
247 * except MIPS, which has 128. IOW, it is 128 bytes long.
248 *
249 * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
250 * However, some old syscall return only 32 lower bits (one word).
251 * Example: sys_sigpending vs sys_rt_sigpending.
252 *
253 * Be aware of this fact when you try to
254 * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
255 * - sizeof(sigset_t) is much bigger than you think,
256 * it may overflow tcp->u_arg[] array, and it may try to copy more data
257 * than is really available in <something>.
258 * Similarly,
259 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
260 * may be a bad idea: it'll try to read much more data than needed
261 * to fetch a sigset_t.
262 * Use (NSIG / 8) as a size instead.
263 */
264
Roland McGrathee36ce12004-09-04 03:53:10 +0000265const char *
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200266signame(int sig)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000267{
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200268 static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
269
270 if (sig >= 0 && sig < nsignals)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000271 return signalent[sig];
272#ifdef SIGRTMIN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200273 if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
274 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000275 return buf;
276 }
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200277#endif
278 sprintf(buf, "%d", sig);
279 return buf;
Nate Sammonsce780fc1999-03-29 23:23:13 +0000280}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000281
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000282#ifndef UNIXWARE
Nate Sammons4a121431999-04-06 01:19:39 +0000283static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200284long_to_sigset(long l, sigset_t *s)
Nate Sammons4a121431999-04-06 01:19:39 +0000285{
286 sigemptyset(s);
287 *(long *)s = l;
288}
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000289#endif
Nate Sammons4a121431999-04-06 01:19:39 +0000290
291static int
Denys Vlasenko12014262011-05-30 14:00:14 +0200292copy_sigset_len(struct tcb *tcp, long addr, sigset_t *s, int len)
Nate Sammons4a121431999-04-06 01:19:39 +0000293{
294 if (len > sizeof(*s))
295 len = sizeof(*s);
296 sigemptyset(s);
297 if (umoven(tcp, addr, len, (char *)s) < 0)
298 return -1;
299 return 0;
300}
301
302#ifdef LINUX
303/* Original sigset is unsigned long */
304#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
305#else
306#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(sigset_t))
307#endif
308
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000309static const char *
310sprintsigmask(const char *str, sigset_t *mask, int rt)
311/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000312{
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200313 /* Was [8 * sizeof(sigset_t) * 8], but
314 * glibc sigset_t is huge (1024 bits = 128 *bytes*),
315 * and we were ending up with 8k (!) buffer here.
316 *
317 * No Unix system can have sig > 255
318 * (waitpid API won't be able to indicate death from one)
319 * and sig 0 doesn't exist either.
320 * Therefore max possible no of sigs is 255: 1..255
321 */
322 static char outstr[8 * 255];
323
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000324 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000325 int maxsigs;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000326 const char *format;
327 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000328
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000329 strcpy(outstr, str);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000330 s = outstr + strlen(outstr);
331 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000332 maxsigs = nsignals;
333#ifdef __SIGRTMAX
334 if (rt)
335 maxsigs = __SIGRTMAX; /* instead */
336#endif
337 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000338 if (sigismember(mask, i) == 1)
339 nsigs++;
340 }
341 if (nsigs >= nsignals * 2 / 3) {
342 *s++ = '~';
Nate Sammons4a121431999-04-06 01:19:39 +0000343 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000344 switch (sigismember(mask, i)) {
345 case 1:
346 sigdelset(mask, i);
347 break;
348 case 0:
349 sigaddset(mask, i);
350 break;
351 }
352 }
353 }
354 format = "%s";
355 *s++ = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000356 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000357 if (sigismember(mask, i) == 1) {
John Hughesbdf48f52001-03-06 15:08:09 +0000358 /* real-time signals on solaris don't have
359 * signalent entries
360 */
361 if (i < nsignals) {
362 sprintf(s, format, signalent[i] + 3);
363 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000364#ifdef SIGRTMIN
365 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
366 char tsig[40];
367 sprintf(tsig, "RT_%u", i - __SIGRTMIN);
368 sprintf(s, format, tsig);
369 }
370#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000371 else {
372 char tsig[32];
373 sprintf(tsig, "%u", i);
374 sprintf(s, format, tsig);
375 }
376 s += strlen(s);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000377 format = " %s";
378 }
379 }
380 *s++ = ']';
381 *s = '\0';
382 return outstr;
383}
384
385static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200386printsigmask(sigset_t *mask, int rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000387{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200388 tprints(sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000389}
390
391void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200392printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000393{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200394 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000395}
396
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000397void
398print_sigset(struct tcb *tcp, long addr, int rt)
399{
400 sigset_t ss;
401
402 if (!addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200403 tprints("NULL");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000404 else if (copy_sigset(tcp, addr, &ss) < 0)
405 tprintf("%#lx", addr);
406 else
407 printsigmask(&ss, rt);
408}
409
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000410#ifdef LINUX
411
John Hughes58265892001-10-18 15:13:53 +0000412#ifndef ILL_ILLOPC
413#define ILL_ILLOPC 1 /* illegal opcode */
414#define ILL_ILLOPN 2 /* illegal operand */
415#define ILL_ILLADR 3 /* illegal addressing mode */
416#define ILL_ILLTRP 4 /* illegal trap */
417#define ILL_PRVOPC 5 /* privileged opcode */
418#define ILL_PRVREG 6 /* privileged register */
419#define ILL_COPROC 7 /* coprocessor error */
420#define ILL_BADSTK 8 /* internal stack error */
421#define FPE_INTDIV 1 /* integer divide by zero */
422#define FPE_INTOVF 2 /* integer overflow */
423#define FPE_FLTDIV 3 /* floating point divide by zero */
424#define FPE_FLTOVF 4 /* floating point overflow */
425#define FPE_FLTUND 5 /* floating point underflow */
426#define FPE_FLTRES 6 /* floating point inexact result */
427#define FPE_FLTINV 7 /* floating point invalid operation */
428#define FPE_FLTSUB 8 /* subscript out of range */
429#define SEGV_MAPERR 1 /* address not mapped to object */
430#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
431#define BUS_ADRALN 1 /* invalid address alignment */
432#define BUS_ADRERR 2 /* non-existant physical address */
433#define BUS_OBJERR 3 /* object specific hardware error */
434#define TRAP_BRKPT 1 /* process breakpoint */
435#define TRAP_TRACE 2 /* process trace trap */
436#define CLD_EXITED 1 /* child has exited */
437#define CLD_KILLED 2 /* child was killed */
438#define CLD_DUMPED 3 /* child terminated abnormally */
439#define CLD_TRAPPED 4 /* traced child has trapped */
440#define CLD_STOPPED 5 /* child has stopped */
441#define CLD_CONTINUED 6 /* stopped child has continued */
442#define POLL_IN 1 /* data input available */
443#define POLL_OUT 2 /* output buffers available */
444#define POLL_MSG 3 /* input message available */
445#define POLL_ERR 4 /* i/o error */
446#define POLL_PRI 5 /* high priority input available */
447#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000448#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000449#define SI_USER 0 /* sent by kill, sigsend, raise */
450#define SI_QUEUE -1 /* sent by sigqueue */
451#define SI_TIMER -2 /* sent by timer expiration */
452#define SI_MESGQ -3 /* sent by real time mesq state change */
453#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000454#define SI_SIGIO -5 /* sent by SIGIO */
455#define SI_TKILL -6 /* sent by tkill */
456#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
457
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000458#define SI_FROMUSER(sip) ((sip)->si_code <= 0)
459
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000460#endif /* LINUX */
John Hughes58265892001-10-18 15:13:53 +0000461
462#if __GLIBC_MINOR__ < 1
463/* Type for data associated with a signal. */
464typedef union sigval
465{
466 int sival_int;
467 void *sival_ptr;
468} sigval_t;
469
470# define __SI_MAX_SIZE 128
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200471# define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof(int)) - 3)
John Hughes58265892001-10-18 15:13:53 +0000472
473typedef struct siginfo
474{
475 int si_signo; /* Signal number. */
476 int si_errno; /* If non-zero, an errno value associated with
477 this signal, as defined in <errno.h>. */
478 int si_code; /* Signal code. */
479
480 union
481 {
482 int _pad[__SI_PAD_SIZE];
483
484 /* kill(). */
485 struct
486 {
487 __pid_t si_pid; /* Sending process ID. */
488 __uid_t si_uid; /* Real user ID of sending process. */
489 } _kill;
490
491 /* POSIX.1b timers. */
492 struct
493 {
494 unsigned int _timer1;
495 unsigned int _timer2;
496 } _timer;
497
498 /* POSIX.1b signals. */
499 struct
500 {
501 __pid_t si_pid; /* Sending process ID. */
502 __uid_t si_uid; /* Real user ID of sending process. */
503 sigval_t si_sigval; /* Signal value. */
504 } _rt;
505
506 /* SIGCHLD. */
507 struct
508 {
509 __pid_t si_pid; /* Which child. */
510 int si_status; /* Exit value or signal. */
511 __clock_t si_utime;
512 __clock_t si_stime;
513 } _sigchld;
514
515 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
516 struct
517 {
518 void *si_addr; /* Faulting insn/memory ref. */
519 } _sigfault;
520
521 /* SIGPOLL. */
522 struct
523 {
524 int si_band; /* Band event for SIGPOLL. */
525 int si_fd;
526 } _sigpoll;
527 } _sifields;
528} siginfo_t;
529
530#define si_pid _sifields._kill.si_pid
531#define si_uid _sifields._kill.si_uid
532#define si_status _sifields._sigchld.si_status
533#define si_utime _sifields._sigchld.si_utime
534#define si_stime _sifields._sigchld.si_stime
535#define si_value _sifields._rt.si_sigval
536#define si_int _sifields._rt.si_sigval.sival_int
537#define si_ptr _sifields._rt.si_sigval.sival_ptr
538#define si_addr _sifields._sigfault.si_addr
539#define si_band _sifields._sigpoll.si_band
540#define si_fd _sifields._sigpoll.si_fd
541
542#endif
543
544#endif
545
546#if defined (SVR4) || defined (LINUX)
547
Roland McGrathd9f816f2004-09-04 03:39:20 +0000548static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000549#ifdef SI_KERNEL
550 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000551#endif
552#ifdef SI_USER
553 { SI_USER, "SI_USER" },
554#endif
John Hughes58265892001-10-18 15:13:53 +0000555#ifdef SI_QUEUE
556 { SI_QUEUE, "SI_QUEUE" },
557#endif
558#ifdef SI_TIMER
559 { SI_TIMER, "SI_TIMER" },
560#endif
John Hughes58265892001-10-18 15:13:53 +0000561#ifdef SI_MESGQ
562 { SI_MESGQ, "SI_MESGQ" },
563#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000564#ifdef SI_ASYNCIO
565 { SI_ASYNCIO, "SI_ASYNCIO" },
566#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000567#ifdef SI_SIGIO
568 { SI_SIGIO, "SI_SIGIO" },
569#endif
570#ifdef SI_TKILL
571 { SI_TKILL, "SI_TKILL" },
572#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000573#ifdef SI_ASYNCNL
574 { SI_ASYNCNL, "SI_ASYNCNL" },
575#endif
576#ifdef SI_NOINFO
577 { SI_NOINFO, "SI_NOINFO" },
578#endif
579#ifdef SI_LWP
580 { SI_LWP, "SI_LWP" },
581#endif
John Hughes58265892001-10-18 15:13:53 +0000582 { 0, NULL },
583};
584
Roland McGrathd9f816f2004-09-04 03:39:20 +0000585static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000586 { ILL_ILLOPC, "ILL_ILLOPC" },
587 { ILL_ILLOPN, "ILL_ILLOPN" },
588 { ILL_ILLADR, "ILL_ILLADR" },
589 { ILL_ILLTRP, "ILL_ILLTRP" },
590 { ILL_PRVOPC, "ILL_PRVOPC" },
591 { ILL_PRVREG, "ILL_PRVREG" },
592 { ILL_COPROC, "ILL_COPROC" },
593 { ILL_BADSTK, "ILL_BADSTK" },
594 { 0, NULL },
595};
596
Roland McGrathd9f816f2004-09-04 03:39:20 +0000597static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000598 { FPE_INTDIV, "FPE_INTDIV" },
599 { FPE_INTOVF, "FPE_INTOVF" },
600 { FPE_FLTDIV, "FPE_FLTDIV" },
601 { FPE_FLTOVF, "FPE_FLTOVF" },
602 { FPE_FLTUND, "FPE_FLTUND" },
603 { FPE_FLTRES, "FPE_FLTRES" },
604 { FPE_FLTINV, "FPE_FLTINV" },
605 { FPE_FLTSUB, "FPE_FLTSUB" },
606 { 0, NULL },
607};
608
Roland McGrathd9f816f2004-09-04 03:39:20 +0000609static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000610 { TRAP_BRKPT, "TRAP_BRKPT" },
611 { TRAP_TRACE, "TRAP_TRACE" },
612 { 0, NULL },
613};
614
Roland McGrathd9f816f2004-09-04 03:39:20 +0000615static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000616 { CLD_EXITED, "CLD_EXITED" },
617 { CLD_KILLED, "CLD_KILLED" },
618 { CLD_DUMPED, "CLD_DUMPED" },
619 { CLD_TRAPPED, "CLD_TRAPPED" },
620 { CLD_STOPPED, "CLD_STOPPED" },
621 { CLD_CONTINUED,"CLD_CONTINUED" },
622 { 0, NULL },
623};
624
Roland McGrathd9f816f2004-09-04 03:39:20 +0000625static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000626 { POLL_IN, "POLL_IN" },
627 { POLL_OUT, "POLL_OUT" },
628 { POLL_MSG, "POLL_MSG" },
629 { POLL_ERR, "POLL_ERR" },
630 { POLL_PRI, "POLL_PRI" },
631 { POLL_HUP, "POLL_HUP" },
632 { 0, NULL },
633};
634
Roland McGrathd9f816f2004-09-04 03:39:20 +0000635static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000636#ifdef PROF_SIG
637 { PROF_SIG, "PROF_SIG" },
638#endif
639 { 0, NULL },
640};
641
642#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000643static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000644#ifdef EMT_TAGOVF
645 { EMT_TAGOVF, "EMT_TAGOVF" },
646#endif
647 { 0, NULL },
648};
649#endif
650
Roland McGrathd9f816f2004-09-04 03:39:20 +0000651static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000652 { SEGV_MAPERR, "SEGV_MAPERR" },
653 { SEGV_ACCERR, "SEGV_ACCERR" },
654 { 0, NULL },
655};
656
Roland McGrathd9f816f2004-09-04 03:39:20 +0000657static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000658 { BUS_ADRALN, "BUS_ADRALN" },
659 { BUS_ADRERR, "BUS_ADRERR" },
660 { BUS_OBJERR, "BUS_OBJERR" },
661 { 0, NULL },
662};
663
664void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000665printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000666{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000667 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000668
669 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200670 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000671 return;
672 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200673 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000674 printsignal(sip->si_signo);
675 code = xlookup(siginfo_codes, sip->si_code);
676 if (!code) {
677 switch (sip->si_signo) {
678 case SIGTRAP:
679 code = xlookup(sigtrap_codes, sip->si_code);
680 break;
681 case SIGCHLD:
682 code = xlookup(sigchld_codes, sip->si_code);
683 break;
684 case SIGPOLL:
685 code = xlookup(sigpoll_codes, sip->si_code);
686 break;
687 case SIGPROF:
688 code = xlookup(sigprof_codes, sip->si_code);
689 break;
690 case SIGILL:
691 code = xlookup(sigill_codes, sip->si_code);
692 break;
693#ifdef SIGEMT
694 case SIGEMT:
695 code = xlookup(sigemt_codes, sip->si_code);
696 break;
697#endif
698 case SIGFPE:
699 code = xlookup(sigfpe_codes, sip->si_code);
700 break;
701 case SIGSEGV:
702 code = xlookup(sigsegv_codes, sip->si_code);
703 break;
704 case SIGBUS:
705 code = xlookup(sigbus_codes, sip->si_code);
706 break;
707 }
708 }
709 if (code)
710 tprintf(", si_code=%s", code);
711 else
712 tprintf(", si_code=%#x", sip->si_code);
713#ifdef SI_NOINFO
714 if (sip->si_code != SI_NOINFO)
715#endif
716 {
717 if (sip->si_errno) {
718 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
719 tprintf(", si_errno=%d", sip->si_errno);
720 else
721 tprintf(", si_errno=%s",
722 errnoent[sip->si_errno]);
723 }
724#ifdef SI_FROMUSER
725 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000726 tprintf(", si_pid=%lu, si_uid=%lu",
727 (unsigned long) sip->si_pid,
728 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000729 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000730#ifdef SI_USER
731 case SI_USER:
732 break;
733#endif
734#ifdef SI_TKILL
735 case SI_TKILL:
736 break;
737#endif
John Hughes58265892001-10-18 15:13:53 +0000738#ifdef SI_TIMER
739 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000740 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000741 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000742#endif
743#ifdef LINUX
744 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000745 if (!sip->si_ptr)
746 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000747 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200748 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000749 else
750 tprintf(", si_value={int=%u, ptr=%#lx}",
751 sip->si_int,
752 (unsigned long) sip->si_ptr);
753 break;
754#endif
John Hughes58265892001-10-18 15:13:53 +0000755 }
John Hughes58265892001-10-18 15:13:53 +0000756 }
757 else
758#endif /* SI_FROMUSER */
759 {
760 switch (sip->si_signo) {
761 case SIGCHLD:
762 tprintf(", si_pid=%ld, si_status=",
763 (long) sip->si_pid);
764 if (sip->si_code == CLD_EXITED)
765 tprintf("%d", sip->si_status);
766 else
767 printsignal(sip->si_status);
768#if LINUX
769 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200770 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000771 else
772 tprintf(", si_utime=%lu, si_stime=%lu",
773 sip->si_utime,
774 sip->si_stime);
775#endif
776 break;
777 case SIGILL: case SIGFPE:
778 case SIGSEGV: case SIGBUS:
779 tprintf(", si_addr=%#lx",
780 (unsigned long) sip->si_addr);
781 break;
782 case SIGPOLL:
783 switch (sip->si_code) {
784 case POLL_IN: case POLL_OUT: case POLL_MSG:
785 tprintf(", si_band=%ld",
786 (long) sip->si_band);
787 break;
788 }
789 break;
790#ifdef LINUX
791 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000792 if (sip->si_pid || sip->si_uid)
793 tprintf(", si_pid=%lu, si_uid=%lu",
794 (unsigned long) sip->si_pid,
795 (unsigned long) sip->si_uid);
796 if (!sip->si_ptr)
797 break;
John Hughes58265892001-10-18 15:13:53 +0000798 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200799 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000800 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000801 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000802 sip->si_int,
803 (unsigned long) sip->si_ptr);
804 }
805#endif
Roland McGratha39c5a12002-12-17 05:10:37 +0000806
John Hughes58265892001-10-18 15:13:53 +0000807 }
808 }
809 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200810 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000811}
812
813#endif /* SVR4 || LINUX */
814
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000815#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000816
817int
Denys Vlasenko12014262011-05-30 14:00:14 +0200818sys_sigvec(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000819{
820 struct sigvec sv;
821 long addr;
822
823 if (entering(tcp)) {
824 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200825 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000826 addr = tcp->u_arg[1];
827 } else {
828 addr = tcp->u_arg[2];
829 }
830 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200831 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000832 else if (!verbose(tcp))
833 tprintf("%#lx", addr);
834 else if (umove(tcp, addr, &sv) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200835 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000836 else {
837 switch ((int) sv.sv_handler) {
838 case (int) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200839 tprints("{SIG_ERR}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000840 break;
841 case (int) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200842 tprints("{SIG_DFL}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000843 break;
844 case (int) SIG_IGN:
845 if (tcp->u_arg[0] == SIGTRAP) {
846 tcp->flags |= TCB_SIGTRAPPED;
847 kill(tcp->pid, SIGSTOP);
848 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200849 tprints("{SIG_IGN}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000850 break;
851 case (int) SIG_HOLD:
852 if (tcp->u_arg[0] == SIGTRAP) {
853 tcp->flags |= TCB_SIGTRAPPED;
854 kill(tcp->pid, SIGSTOP);
855 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200856 tprints("SIG_HOLD");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000857 break;
858 default:
859 if (tcp->u_arg[0] == SIGTRAP) {
860 tcp->flags |= TCB_SIGTRAPPED;
861 kill(tcp->pid, SIGSTOP);
862 }
863 tprintf("{%#lx, ", (unsigned long) sv.sv_handler);
Nate Sammons4a121431999-04-06 01:19:39 +0000864 printsigmask(&sv.sv_mask, 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200865 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000866 printflags(sigvec_flags, sv.sv_flags, "SV_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200867 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000868 }
869 }
870 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200871 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000872 return 0;
873}
874
875int
Denys Vlasenko12014262011-05-30 14:00:14 +0200876sys_sigpause(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000877{
878 if (entering(tcp)) { /* WTA: UD had a bug here: he forgot the braces */
Nate Sammons4a121431999-04-06 01:19:39 +0000879 sigset_t sigm;
880 long_to_sigset(tcp->u_arg[0], &sigm);
881 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000882 }
883 return 0;
884}
885
886int
Denys Vlasenko12014262011-05-30 14:00:14 +0200887sys_sigstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000888{
889 struct sigstack ss;
890 long addr;
891
892 if (entering(tcp))
893 addr = tcp->u_arg[0];
894 else
895 addr = tcp->u_arg[1];
896 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200897 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000898 else if (umove(tcp, addr, &ss) < 0)
899 tprintf("%#lx", addr);
900 else {
901 tprintf("{ss_sp %#lx ", (unsigned long) ss.ss_sp);
902 tprintf("ss_onstack %s}", ss.ss_onstack ? "YES" : "NO");
903 }
904 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200905 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000906 return 0;
907}
908
909int
Denys Vlasenko12014262011-05-30 14:00:14 +0200910sys_sigcleanup(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000911{
912 return 0;
913}
914
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000915#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000916
917#ifndef SVR4
918
919int
Denys Vlasenko12014262011-05-30 14:00:14 +0200920sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000921{
922 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000923 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000924 long_to_sigset(tcp->u_arg[0], &sigm);
925 printsigmask(&sigm, 0);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000926#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000927 if ((tcp->u_arg[0] & sigmask(SIGTRAP))) {
928 /* Mark attempt to block SIGTRAP */
929 tcp->flags |= TCB_SIGTRAPPED;
930 /* Send unblockable signal */
931 kill(tcp->pid, SIGSTOP);
932 }
Roland McGratha39c5a12002-12-17 05:10:37 +0000933#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000934 }
935 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000936 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000937 long_to_sigset(tcp->u_rval, &sigm);
938 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000939
940 return RVAL_HEX | RVAL_STR;
941 }
942 return 0;
943}
944
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000945#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000946int
Denys Vlasenko12014262011-05-30 14:00:14 +0200947sys_sigblock(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000948{
949 return sys_sigsetmask(tcp);
950}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000951#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000952
953#endif /* !SVR4 */
954
955#ifdef HAVE_SIGACTION
956
957#ifdef LINUX
958struct old_sigaction {
959 __sighandler_t __sa_handler;
960 unsigned long sa_mask;
961 unsigned long sa_flags;
962 void (*sa_restorer)(void);
963};
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000964#define SA_HANDLER __sa_handler
965#endif /* LINUX */
966
Roland McGratha39c5a12002-12-17 05:10:37 +0000967#ifndef SA_HANDLER
968#define SA_HANDLER sa_handler
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000969#endif
970
971int
Denys Vlasenko12014262011-05-30 14:00:14 +0200972sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000973{
974 long addr;
Nate Sammons4a121431999-04-06 01:19:39 +0000975#ifdef LINUX
John Hughes1e4cb342001-03-06 09:25:46 +0000976 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000977 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000978#else
979 struct sigaction sa;
980#endif
981
982
983 if (entering(tcp)) {
984 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200985 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000986 addr = tcp->u_arg[1];
987 } else
988 addr = tcp->u_arg[2];
989 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200990 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000991 else if (!verbose(tcp))
992 tprintf("%#lx", addr);
993 else if (umove(tcp, addr, &sa) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200994 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000995 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000996 /* Architectures using function pointers, like
997 * hppa, may need to manipulate the function pointer
998 * to compute the result of a comparison. However,
999 * the SA_HANDLER function pointer exists only in
1000 * the address space of the traced process, and can't
1001 * be manipulated by strace. In order to prevent the
1002 * compiler from generating code to manipulate
1003 * SA_HANDLER we cast the function pointers to long. */
1004 if ((long)sa.SA_HANDLER == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001005 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001006 else if ((long)sa.SA_HANDLER == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001007 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001008 else if ((long)sa.SA_HANDLER == (long)SIG_IGN) {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001009#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001010 if (tcp->u_arg[0] == SIGTRAP) {
1011 tcp->flags |= TCB_SIGTRAPPED;
1012 kill(tcp->pid, SIGSTOP);
1013 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001014#endif /* !USE_PROCFS */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001015 tprints("{SIG_IGN, ");
Roland McGrath5f206812008-08-20 01:59:40 +00001016 }
1017 else {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001018#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001019 if (tcp->u_arg[0] == SIGTRAP) {
1020 tcp->flags |= TCB_SIGTRAPPED;
1021 kill(tcp->pid, SIGSTOP);
1022 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001023#endif /* !USE_PROCFS */
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001024 tprintf("{%#lx, ", (long) sa.SA_HANDLER);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001025 }
Denys Vlasenkobbe29b32012-01-18 15:30:56 +01001026#ifndef LINUX
1027 printsigmask(&sa.sa_mask, 0);
1028#else
1029 long_to_sigset(sa.sa_mask, &sigset);
1030 printsigmask(&sigset, 0);
1031#endif
1032 tprints(", ");
1033 printflags(sigact_flags, sa.sa_flags, "SA_???");
1034#ifdef SA_RESTORER
1035 if (sa.sa_flags & SA_RESTORER)
1036 tprintf(", %p", sa.sa_restorer);
1037#endif
1038 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001039 }
1040 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001041 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001042#ifdef LINUX
1043 else
1044 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
1045#endif
1046 return 0;
1047}
1048
1049int
Denys Vlasenko12014262011-05-30 14:00:14 +02001050sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001051{
1052 if (entering(tcp)) {
1053 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001054 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001055 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +00001056 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001057 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001058 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001059 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001060 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001061 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001062 case (long) SIG_IGN:
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001063#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001064 if (tcp->u_arg[0] == SIGTRAP) {
1065 tcp->flags |= TCB_SIGTRAPPED;
1066 kill(tcp->pid, SIGSTOP);
1067 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001068#endif /* !USE_PROCFS */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001069 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001070 break;
1071 default:
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001072#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001073 if (tcp->u_arg[0] == SIGTRAP) {
1074 tcp->flags |= TCB_SIGTRAPPED;
1075 kill(tcp->pid, SIGSTOP);
1076 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001077#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001078 tprintf("%#lx", tcp->u_arg[1]);
1079 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001080 return 0;
1081 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +00001082 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001083 switch (tcp->u_rval) {
Jan Kratochvil1f942712008-08-06 21:38:52 +00001084 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001085 tcp->auxstr = "SIG_ERR"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001086 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001087 tcp->auxstr = "SIG_DFL"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001088 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001089 tcp->auxstr = "SIG_IGN"; break;
1090 default:
1091 tcp->auxstr = NULL;
1092 }
1093 return RVAL_HEX | RVAL_STR;
1094 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +00001095 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001096}
1097
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001098#ifdef SVR4
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001099int
Denys Vlasenko12014262011-05-30 14:00:14 +02001100sys_sighold(struct tcb *tcp)
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001101{
1102 if (entering(tcp)) {
1103 printsignal(tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001104 }
1105 return 0;
1106}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001107#endif /* SVR4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001108
1109#endif /* HAVE_SIGACTION */
1110
1111#ifdef LINUX
1112
1113int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001114sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001115{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001116#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +00001117 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001118 struct pt_regs regs;
1119 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001120 sigset_t sigm;
Roland McGrath0f87c492003-06-03 23:29:04 +00001121 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)&regs) == -1)
1122 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001123 if (umove(tcp, regs.ARM_sp, &sc) < 0)
1124 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001125 long_to_sigset(sc.oldmask, &sigm);
1126 tprints(sprintsigmask(") (mask ", &sigm, 0);
Roland McGrath0f87c492003-06-03 23:29:04 +00001127 }
1128 return 0;
1129#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +00001130 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001131 long usp;
1132 struct sigcontext_struct sc;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001133 if (upeek(tcp, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001134 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001135 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001136 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001137 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0);
Roland McGrath0f87c492003-06-03 23:29:04 +00001138 }
1139 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001140#elif defined(I386)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001141 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001142 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001143 /* Note: on i386, sc is followed on stack by struct fpstate
1144 * and after it an additional u32 extramask[1] which holds
1145 * upper half of the mask. We can fetch it there
1146 * if/when we'd want to display the full mask...
1147 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001148 sigset_t sigm;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001149 if (umove(tcp, i386_regs.esp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001150 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001151 long_to_sigset(sc.oldmask, &sigm);
1152 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001153 }
1154 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001155#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001156 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001157 struct sigcontext sc;
1158 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001159 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001160 /* offset of sigcontext in the kernel's sigframe structure: */
1161# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001162 if (upeek(tcp, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001163 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001164 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001165 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001166 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001167 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
1168 tprints(sprintsigmask(") (mask ", &sigm, 0);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001169 }
1170 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001171#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +00001172 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001173 long esp;
1174 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001175 sigset_t sigm;
1176 if (upeek(tcp, sizeof(unsigned long) * PT_R1, &esp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001177 return 0;
Andreas Schwabedb39342010-02-23 00:18:51 +01001178 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +02001179#ifdef POWERPC64
1180 if (current_personality == 0)
1181 esp += 128;
1182 else
1183 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +01001184#else
1185 esp += 64;
1186#endif
Roland McGrath0f87c492003-06-03 23:29:04 +00001187 if (umove(tcp, esp, &sc) < 0)
1188 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001189 long_to_sigset(sc.oldmask, &sigm);
1190 tprints(sprintsigmask(") (mask ", &sigm, 0);
Roland McGrath0f87c492003-06-03 23:29:04 +00001191 }
1192 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001193#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001194 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001195 long usp;
1196 struct sigcontext sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001197 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001198 if (upeek(tcp, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001199 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001200 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001201 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001202 long_to_sigset(sc.sc_mask, &sigm);
1203 tprints(sprintsigmask(") (mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001204 }
1205 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001206#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001207 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001208 long fp;
1209 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001210 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001211 if (upeek(tcp, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001212 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001213 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001214 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001215 long_to_sigset(sc.sc_mask, &sigm);
1216 tprints(sprintsigmask(") (mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001217 }
1218 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001219#elif defined (SPARC) || defined (SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001220 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001221 long i1;
1222 struct pt_regs regs;
1223 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001224 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001225 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1226 perror("sigreturn: PTRACE_GETREGS");
1227 return 0;
1228 }
Mike Frysinger8566c502009-10-12 11:05:14 -04001229 i1 = regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001230 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001231 perror("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001232 return 0;
1233 }
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001234 long_to_sigset(si.si_mask, &sigm);
1235 tprints(sprintsigmask(") (mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001236 }
1237 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001238#elif defined (LINUX_MIPSN32) || defined (LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +00001239 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
1240 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001241 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001242 long sp;
1243 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001244 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001245 if (upeek(tcp, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001246 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001247 /* There are six words followed by a 128-byte siginfo. */
1248 sp = sp + 6 * 4 + 128;
1249 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001250 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001251 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
1252 tprints(sprintsigmask(") (mask ", &sigm, 0);
Roland McGrath542c2c62008-05-20 01:11:56 +00001253 }
1254 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001255#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001256 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001257 long sp;
1258 struct pt_regs regs;
1259 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001260 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001261 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1262 perror("sigreturn: PTRACE_GETREGS");
1263 return 0;
1264 }
Roland McGrath576b7842007-11-04 00:00:00 +00001265 sp = regs.regs[29];
1266 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +02001267 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001268 long_to_sigset(si.si_mask, &sigm);
1269 tprints(sprintsigmask(") (mask ", &sigm, 0);
Wichert Akkermanf90da011999-10-31 21:15:38 +00001270 }
1271 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001272#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001273 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001274 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001275 long regs[PT_MAX+1];
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001276 sigset_t sigm;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001277 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
1278 perror("sigreturn: PTRACE_GETREGS");
1279 return 0;
1280 }
1281 if (umove(tcp, regs[PT_USP], &sc) < 0)
1282 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001283 long_to_sigset(sc.oldmask, &sigm);
1284 tprints(sprintsigmask(") (mask ", &sigm, 0);
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001285 }
1286 return 0;
Chris Metcalfc8c66982009-12-28 10:00:15 -05001287#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001288 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001289 struct ucontext uc;
1290 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001291 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001292
1293 /* offset of ucontext in the kernel's sigframe structure */
1294# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001295 if (upeek(tcp, PTREGS_OFFSET_SP, &sp) < 0)
1296 return 0;
1297 if (umove(tcp, sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1298 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001299 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001300 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
1301 tprints(sprintsigmask(") (mask ", &sigm, 0);
Chris Metcalfc8c66982009-12-28 10:00:15 -05001302 }
1303 return 0;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001304#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001305 /* TODO: Verify that this is correct... */
1306 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001307 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001308 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001309 sigset_t sigm;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001310 /* Read r1, the stack pointer. */
1311 if (upeek(tcp, 1 * 4, &sp) < 0)
1312 return 0;
1313 if (umove(tcp, sp, &sc) < 0)
1314 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001315 long_to_sigset(sc.oldmask, &sigm);
1316 tprints(sprintsigmask(") (mask ", &sigm, 0);
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001317 }
1318 return 0;
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001319#else
Michal Ludvig0e035502002-09-23 15:41:01 +00001320#warning No sys_sigreturn() for this architecture
1321#warning (no problem, just a reminder :-)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001322 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001323#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001324}
1325
1326int
Denys Vlasenko12014262011-05-30 14:00:14 +02001327sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001328{
1329 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001330 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001331 long_to_sigset(tcp->u_rval, &sigm);
1332 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001333 }
1334 return RVAL_HEX | RVAL_STR;
1335}
1336
1337int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001338sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001339{
1340 if (entering(tcp)) {
1341 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001342 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001343 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001344 }
1345 return 0;
1346}
1347
1348#endif /* LINUX */
1349
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001350#if defined(SVR4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001351
1352int
Denys Vlasenko12014262011-05-30 14:00:14 +02001353sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001354{
1355 sigset_t sigset;
1356
1357 if (entering(tcp)) {
1358 if (umove(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001359 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001360 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001361 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001362 }
1363 return 0;
1364}
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001365#ifndef FREEBSD
Roland McGrathd9f816f2004-09-04 03:39:20 +00001366static const struct xlat ucontext_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001367 { UC_SIGMASK, "UC_SIGMASK" },
1368 { UC_STACK, "UC_STACK" },
1369 { UC_CPU, "UC_CPU" },
1370#ifdef UC_FPU
1371 { UC_FPU, "UC_FPU" },
1372#endif
1373#ifdef UC_INTR
1374 { UC_INTR, "UC_INTR" },
1375#endif
1376 { 0, NULL },
1377};
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001378#endif /* !FREEBSD */
1379#endif /* SVR4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001380
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001381#if defined SVR4 || defined LINUX || defined FREEBSD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001382#if defined LINUX && !defined SS_ONSTACK
1383#define SS_ONSTACK 1
1384#define SS_DISABLE 2
1385#if __GLIBC_MINOR__ == 0
1386typedef struct
1387{
1388 __ptr_t ss_sp;
1389 int ss_flags;
1390 size_t ss_size;
1391} stack_t;
1392#endif
1393#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001394#ifdef FREEBSD
1395#define stack_t struct sigaltstack
1396#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001397
Roland McGrathd9f816f2004-09-04 03:39:20 +00001398static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001399 { SS_ONSTACK, "SS_ONSTACK" },
1400 { SS_DISABLE, "SS_DISABLE" },
1401 { 0, NULL },
1402};
1403#endif
1404
1405#ifdef SVR4
1406static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001407printcontext(struct tcb *tcp, ucontext_t *ucp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001408{
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001409 tprints("{");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001410 if (!abbrev(tcp)) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001411 tprints("uc_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001412 printflags(ucontext_flags, ucp->uc_flags, "UC_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001413 tprintf(", uc_link=%#lx, ", (unsigned long) ucp->uc_link);
1414 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001415 tprints("uc_sigmask=");
John Hughes70c5e7a2001-05-15 15:09:14 +00001416 printsigmask(&ucp->uc_sigmask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001417 if (!abbrev(tcp)) {
1418 tprintf(", uc_stack={ss_sp=%#lx, ss_size=%d, ss_flags=",
1419 (unsigned long) ucp->uc_stack.ss_sp,
1420 ucp->uc_stack.ss_size);
Roland McGrathb2dee132005-06-01 19:02:36 +00001421 printflags(sigaltstack_flags, ucp->uc_stack.ss_flags, "SS_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001422 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001423 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001424 tprints(", ...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001425}
1426
1427int
Denys Vlasenko12014262011-05-30 14:00:14 +02001428sys_getcontext(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001429{
1430 ucontext_t uc;
1431
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001432 if (exiting(tcp)) {
1433 if (tcp->u_error)
1434 tprintf("%#lx", tcp->u_arg[0]);
1435 else if (!tcp->u_arg[0])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001436 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001437 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001438 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001439 else
1440 printcontext(tcp, &uc);
1441 }
1442 return 0;
1443}
1444
1445int
Denys Vlasenko12014262011-05-30 14:00:14 +02001446sys_setcontext(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001447{
1448 ucontext_t uc;
1449
1450 if (entering(tcp)) {
1451 if (!tcp->u_arg[0])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001452 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001453 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001454 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001455 else
1456 printcontext(tcp, &uc);
1457 }
1458 else {
1459 tcp->u_rval = tcp->u_error = 0;
1460 if (tcp->u_arg[0] == 0)
1461 return 0;
1462 return RVAL_NONE;
1463 }
1464 return 0;
1465}
1466
1467#endif /* SVR4 */
1468
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001469#if defined(LINUX) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001470
1471static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001472print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001473{
1474 stack_t ss;
1475 if (umove(tcp, addr, &ss) < 0)
1476 return -1;
1477 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
Roland McGrathb2dee132005-06-01 19:02:36 +00001478 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001479 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1480 return 0;
1481}
1482
1483int
Denys Vlasenko12014262011-05-30 14:00:14 +02001484sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001485{
1486 if (entering(tcp)) {
1487 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001488 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001489 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1490 return -1;
1491 }
1492 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001493 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001494 if (tcp->u_arg[1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001495 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001496 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1497 return -1;
1498 }
1499 return 0;
1500}
1501#endif
1502
1503#ifdef HAVE_SIGACTION
1504
1505int
Denys Vlasenko12014262011-05-30 14:00:14 +02001506sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001507{
1508#ifdef ALPHA
1509 if (entering(tcp)) {
1510 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001511 tprints(", ");
Nate Sammons4a121431999-04-06 01:19:39 +00001512 printsigmask(tcp->u_arg[1], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001513 }
1514 else if (!syserror(tcp)) {
Nate Sammons4a121431999-04-06 01:19:39 +00001515 tcp->auxstr = sprintsigmask("old mask ", tcp->u_rval, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001516 return RVAL_HEX | RVAL_STR;
1517 }
1518#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001519 if (entering(tcp)) {
1520#ifdef SVR4
1521 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001522 tprints("0");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001523 else
1524#endif /* SVR4 */
1525 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001526 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001527 print_sigset(tcp, tcp->u_arg[1], 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001528 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001529 }
1530 else {
1531 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001532 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001533 else if (syserror(tcp))
1534 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001535 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001536 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001537 }
1538#endif /* !ALPHA */
1539 return 0;
1540}
1541
1542#endif /* HAVE_SIGACTION */
1543
1544int
Denys Vlasenko12014262011-05-30 14:00:14 +02001545sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001546{
1547 if (entering(tcp)) {
Roland McGrath4d7ed022008-05-20 01:43:09 +00001548 long pid = tcp->u_arg[0];
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001549#if SUPPORTED_PERSONALITIES > 1
1550 /* Sign-extend a 32-bit value when that's what it is. */
Roland McGrath4d7ed022008-05-20 01:43:09 +00001551 if (personality_wordsize[current_personality] < sizeof pid)
1552 pid = (long) (int) pid;
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001553#endif
Roland McGrath4d7ed022008-05-20 01:43:09 +00001554 tprintf("%ld, %s", pid, signame(tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001555 }
1556 return 0;
1557}
1558
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001559#if defined(FREEBSD) || defined(SUNOS4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001560int
Denys Vlasenko12014262011-05-30 14:00:14 +02001561sys_killpg(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001562{
1563 return sys_kill(tcp);
1564}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001565#endif /* FREEBSD || SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001566
Roland McGrath8ffc3522003-07-09 09:47:49 +00001567#ifdef LINUX
1568int
Denys Vlasenko12014262011-05-30 14:00:14 +02001569sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001570{
1571 if (entering(tcp)) {
1572 tprintf("%ld, %ld, %s",
1573 tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2]));
1574 }
1575 return 0;
1576}
1577#endif
1578
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001579int
Denys Vlasenko12014262011-05-30 14:00:14 +02001580sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001581{
1582 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001583
1584 if (exiting(tcp)) {
1585 if (syserror(tcp))
1586 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001587 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001588 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001589 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001590 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001591 }
1592 return 0;
1593}
1594
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001595#ifdef SVR4
Denys Vlasenko12014262011-05-30 14:00:14 +02001596int sys_sigwait(struct tcb *tcp)
John Hughes42162082001-10-18 14:48:26 +00001597{
1598 sigset_t sigset;
1599
1600 if (entering(tcp)) {
1601 if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001602 tprints("[?]");
John Hughes42162082001-10-18 14:48:26 +00001603 else
1604 printsigmask(&sigset, 0);
1605 }
1606 else {
1607 if (!syserror(tcp)) {
1608 tcp->auxstr = signalent[tcp->u_rval];
1609 return RVAL_DECIMAL | RVAL_STR;
1610 }
1611 }
1612 return 0;
1613}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001614#endif /* SVR4 */
John Hughes42162082001-10-18 14:48:26 +00001615
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001616#ifdef LINUX
1617
Denys Vlasenko12014262011-05-30 14:00:14 +02001618int
1619sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001620{
1621 sigset_t sigset;
1622
Nate Sammons4a121431999-04-06 01:19:39 +00001623 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001624 if (entering(tcp)) {
1625 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001626 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001627 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001628 tprints("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001629 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001630 tprintf("%#lx, ", tcp->u_arg[1]);
1631 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001632 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001633 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001634 }
1635 }
1636 else {
1637 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001638 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001639 else if (syserror(tcp))
1640 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001641 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001642 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001643 else
Nate Sammons4a121431999-04-06 01:19:39 +00001644 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001645 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001646 }
1647 return 0;
1648}
1649
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001650
1651/* Structure describing the action to be taken when a signal arrives. */
1652struct new_sigaction
1653{
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001654 __sighandler_t __sa_handler;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001655 unsigned long sa_flags;
1656 void (*sa_restorer) (void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001657 /* Kernel treats sa_mask as an array of longs. */
1658 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1659};
1660/* Same for i386-on-x86_64 and similar cases */
1661struct new_sigaction32
1662{
1663 uint32_t __sa_handler;
1664 uint32_t sa_flags;
1665 uint32_t sa_restorer;
1666 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001667};
1668
1669
Roland McGrath5f206812008-08-20 01:59:40 +00001670int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001671sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001672{
1673 struct new_sigaction sa;
1674 sigset_t sigset;
1675 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001676 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001677
1678 if (entering(tcp)) {
1679 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001680 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001681 addr = tcp->u_arg[1];
1682 } else
1683 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001684
1685 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001686 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001687 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001688 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001689 if (!verbose(tcp)) {
1690 tprintf("%#lx", addr);
1691 goto after_sa;
1692 }
1693#if SUPPORTED_PERSONALITIES > 1
1694 if (personality_wordsize[current_personality] != sizeof(sa.sa_flags)
1695 && personality_wordsize[current_personality] == 4
1696 ) {
1697 struct new_sigaction32 sa32;
1698 r = umove(tcp, addr, &sa32);
1699 if (r >= 0) {
1700 memset(&sa, 0, sizeof(sa));
1701 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1702 sa.sa_flags = sa32.sa_flags;
1703 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1704 /* Kernel treats sa_mask as an array of longs.
1705 * For 32-bit process, "long" is uint32_t, thus, for example,
1706 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1707 * But for (64-bit) kernel, 32th bit in sa_mask is
1708 * 32th bit in 0th (64-bit) long!
1709 * For little-endian, it's the same.
1710 * For big-endian, we swap 32-bit words.
1711 */
1712 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1713 }
1714 } else
1715#endif
1716 {
1717 r = umove(tcp, addr, &sa);
1718 }
1719 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001720 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001721 goto after_sa;
1722 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001723 /* Architectures using function pointers, like
1724 * hppa, may need to manipulate the function pointer
1725 * to compute the result of a comparison. However,
1726 * the SA_HANDLER function pointer exists only in
1727 * the address space of the traced process, and can't
1728 * be manipulated by strace. In order to prevent the
1729 * compiler from generating code to manipulate
1730 * SA_HANDLER we cast the function pointers to long. */
1731 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001732 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001733 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001734 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001735 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001736 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001737 else
1738 tprintf("{%#lx, ", (long) sa.__sa_handler);
1739 /* Questionable code below.
1740 * Kernel won't handle sys_rt_sigaction
1741 * with wrong sigset size (just returns EINVAL)
1742 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1743 * and we always use smaller memcpy. */
1744 sigemptyset(&sigset);
1745#ifdef LINUXSPARC
1746 if (tcp->u_arg[4] <= sizeof(sigset))
1747 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1748#else
1749 if (tcp->u_arg[3] <= sizeof(sigset))
1750 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1751#endif
1752 else
1753 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1754 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001755 tprints(", ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001756 printflags(sigact_flags, sa.sa_flags, "SA_???");
1757#ifdef SA_RESTORER
1758 if (sa.sa_flags & SA_RESTORER)
1759 tprintf(", %p", sa.sa_restorer);
1760#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001761 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001762
1763 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001764 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001765 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001766 else
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001767#ifdef LINUXSPARC
1768 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1769#elif defined(ALPHA)
1770 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1771#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001772 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001773#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001774 return 0;
1775}
1776
Denys Vlasenko1d632462009-04-14 12:51:00 +00001777int
1778sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001779{
1780 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001781
1782 if (exiting(tcp)) {
1783 if (syserror(tcp))
1784 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001785 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1786 &sigset, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001787 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001788 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001789 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001790 }
1791 return 0;
1792}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001793
1794int
1795sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001796{
1797 if (entering(tcp)) {
1798 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001799 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001800 tprints("[?]");
Nate Sammons4a121431999-04-06 01:19:39 +00001801 else
1802 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001803 }
1804 return 0;
1805}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001806
1807int
1808sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001809{
1810 if (entering(tcp)) {
1811 siginfo_t si;
1812 tprintf("%lu, ", tcp->u_arg[0]);
1813 printsignal(tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001814 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001815 if (umove(tcp, tcp->u_arg[2], &si) < 0)
1816 tprintf("%#lx", tcp->u_arg[2]);
1817 else
Denys Vlasenkof535b542009-01-13 18:30:55 +00001818 printsiginfo(&si, verbose(tcp));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001819 }
1820 return 0;
1821}
1822
Denys Vlasenko1d632462009-04-14 12:51:00 +00001823int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001824{
1825 if (entering(tcp)) {
1826 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001827
Roland McGratha39c5a12002-12-17 05:10:37 +00001828 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00001829 &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001830 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001831 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001832 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001833 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001834 /* This is the only "return" parameter, */
1835 if (tcp->u_arg[1] != 0)
1836 return 0;
1837 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001838 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001839 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001840 else if (tcp->u_arg[1] != 0) {
1841 /* syscall exit, and u_arg[1] wasn't NULL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001842 if (syserror(tcp))
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001843 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001844 else {
1845 siginfo_t si;
1846 if (umove(tcp, tcp->u_arg[1], &si) < 0)
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001847 tprintf("%#lx, ", tcp->u_arg[1]);
1848 else {
Denys Vlasenkof535b542009-01-13 18:30:55 +00001849 printsiginfo(&si, verbose(tcp));
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001850 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001851 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001852 }
1853 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001854 else {
1855 /* syscall exit, and u_arg[1] was NULL */
1856 return 0;
1857 }
1858 print_timespec(tcp, tcp->u_arg[2]);
1859 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001860 return 0;
1861};
1862
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001863int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001864sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001865{
1866 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001867 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001868 return 0;
1869}
1870
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001871static int
1872do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001873{
1874 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001875 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001876 tprints(", ");
Roland McGrathf46ccd32007-08-02 01:15:59 +00001877 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001878 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001879 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001880 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001881 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1882 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001883 }
1884 return 0;
1885}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001886
1887int
1888sys_signalfd(struct tcb *tcp)
1889{
1890 return do_signalfd(tcp, -1);
1891}
1892
1893int
1894sys_signalfd4(struct tcb *tcp)
1895{
1896 return do_signalfd(tcp, 3);
1897}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001898#endif /* LINUX */