blob: 4556a5fecc57aaea5cabbc8baf4408a62b0b2fa9 [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 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100322 static char outstr[8 * (255 * 2 / 3)];
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200323
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000324 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000325 int maxsigs;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100326 int show_members;
327 char sep;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000328 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000329
Nate Sammons4a121431999-04-06 01:19:39 +0000330 maxsigs = nsignals;
331#ifdef __SIGRTMAX
332 if (rt)
333 maxsigs = __SIGRTMAX; /* instead */
334#endif
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100335 s = stpcpy(outstr, str);
336 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000337 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000338 if (sigismember(mask, i) == 1)
339 nsigs++;
340 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100341
342 /* 1: show mask members, 0: show those which are NOT in mask */
343 show_members = (nsigs < nsignals * 2 / 3);
344 if (!show_members)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000345 *s++ = '~';
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100346
347 sep = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000348 for (i = 1; i < maxsigs; i++) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100349 if (sigismember(mask, i) == show_members) {
John Hughesbdf48f52001-03-06 15:08:09 +0000350 /* real-time signals on solaris don't have
351 * signalent entries
352 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100353 char tsig[40];
354 *s++ = sep;
John Hughesbdf48f52001-03-06 15:08:09 +0000355 if (i < nsignals) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100356 s = stpcpy(s, signalent[i] + 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000357 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000358#ifdef SIGRTMIN
359 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
Roland McGrath90b4cb52003-09-23 22:19:32 +0000360 sprintf(tsig, "RT_%u", i - __SIGRTMIN);
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100361 s = stpcpy(s, tsig);
Roland McGrath90b4cb52003-09-23 22:19:32 +0000362 }
363#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000364 else {
John Hughesbdf48f52001-03-06 15:08:09 +0000365 sprintf(tsig, "%u", i);
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100366 s = stpcpy(s, tsig);
John Hughesbdf48f52001-03-06 15:08:09 +0000367 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100368 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000369 }
370 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100371 if (sep == '[')
372 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000373 *s++ = ']';
374 *s = '\0';
375 return outstr;
376}
377
378static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200379printsigmask(sigset_t *mask, int rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000380{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200381 tprints(sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000382}
383
384void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200385printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000386{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200387 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000388}
389
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000390void
391print_sigset(struct tcb *tcp, long addr, int rt)
392{
393 sigset_t ss;
394
395 if (!addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200396 tprints("NULL");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000397 else if (copy_sigset(tcp, addr, &ss) < 0)
398 tprintf("%#lx", addr);
399 else
400 printsigmask(&ss, rt);
401}
402
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000403#ifdef LINUX
404
John Hughes58265892001-10-18 15:13:53 +0000405#ifndef ILL_ILLOPC
406#define ILL_ILLOPC 1 /* illegal opcode */
407#define ILL_ILLOPN 2 /* illegal operand */
408#define ILL_ILLADR 3 /* illegal addressing mode */
409#define ILL_ILLTRP 4 /* illegal trap */
410#define ILL_PRVOPC 5 /* privileged opcode */
411#define ILL_PRVREG 6 /* privileged register */
412#define ILL_COPROC 7 /* coprocessor error */
413#define ILL_BADSTK 8 /* internal stack error */
414#define FPE_INTDIV 1 /* integer divide by zero */
415#define FPE_INTOVF 2 /* integer overflow */
416#define FPE_FLTDIV 3 /* floating point divide by zero */
417#define FPE_FLTOVF 4 /* floating point overflow */
418#define FPE_FLTUND 5 /* floating point underflow */
419#define FPE_FLTRES 6 /* floating point inexact result */
420#define FPE_FLTINV 7 /* floating point invalid operation */
421#define FPE_FLTSUB 8 /* subscript out of range */
422#define SEGV_MAPERR 1 /* address not mapped to object */
423#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
424#define BUS_ADRALN 1 /* invalid address alignment */
425#define BUS_ADRERR 2 /* non-existant physical address */
426#define BUS_OBJERR 3 /* object specific hardware error */
427#define TRAP_BRKPT 1 /* process breakpoint */
428#define TRAP_TRACE 2 /* process trace trap */
429#define CLD_EXITED 1 /* child has exited */
430#define CLD_KILLED 2 /* child was killed */
431#define CLD_DUMPED 3 /* child terminated abnormally */
432#define CLD_TRAPPED 4 /* traced child has trapped */
433#define CLD_STOPPED 5 /* child has stopped */
434#define CLD_CONTINUED 6 /* stopped child has continued */
435#define POLL_IN 1 /* data input available */
436#define POLL_OUT 2 /* output buffers available */
437#define POLL_MSG 3 /* input message available */
438#define POLL_ERR 4 /* i/o error */
439#define POLL_PRI 5 /* high priority input available */
440#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000441#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000442#define SI_USER 0 /* sent by kill, sigsend, raise */
443#define SI_QUEUE -1 /* sent by sigqueue */
444#define SI_TIMER -2 /* sent by timer expiration */
445#define SI_MESGQ -3 /* sent by real time mesq state change */
446#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000447#define SI_SIGIO -5 /* sent by SIGIO */
448#define SI_TKILL -6 /* sent by tkill */
449#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
450
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000451#define SI_FROMUSER(sip) ((sip)->si_code <= 0)
452
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000453#endif /* LINUX */
John Hughes58265892001-10-18 15:13:53 +0000454
455#if __GLIBC_MINOR__ < 1
456/* Type for data associated with a signal. */
457typedef union sigval
458{
459 int sival_int;
460 void *sival_ptr;
461} sigval_t;
462
463# define __SI_MAX_SIZE 128
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200464# define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof(int)) - 3)
John Hughes58265892001-10-18 15:13:53 +0000465
466typedef struct siginfo
467{
468 int si_signo; /* Signal number. */
469 int si_errno; /* If non-zero, an errno value associated with
470 this signal, as defined in <errno.h>. */
471 int si_code; /* Signal code. */
472
473 union
474 {
475 int _pad[__SI_PAD_SIZE];
476
477 /* kill(). */
478 struct
479 {
480 __pid_t si_pid; /* Sending process ID. */
481 __uid_t si_uid; /* Real user ID of sending process. */
482 } _kill;
483
484 /* POSIX.1b timers. */
485 struct
486 {
487 unsigned int _timer1;
488 unsigned int _timer2;
489 } _timer;
490
491 /* POSIX.1b signals. */
492 struct
493 {
494 __pid_t si_pid; /* Sending process ID. */
495 __uid_t si_uid; /* Real user ID of sending process. */
496 sigval_t si_sigval; /* Signal value. */
497 } _rt;
498
499 /* SIGCHLD. */
500 struct
501 {
502 __pid_t si_pid; /* Which child. */
503 int si_status; /* Exit value or signal. */
504 __clock_t si_utime;
505 __clock_t si_stime;
506 } _sigchld;
507
508 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
509 struct
510 {
511 void *si_addr; /* Faulting insn/memory ref. */
512 } _sigfault;
513
514 /* SIGPOLL. */
515 struct
516 {
517 int si_band; /* Band event for SIGPOLL. */
518 int si_fd;
519 } _sigpoll;
520 } _sifields;
521} siginfo_t;
522
523#define si_pid _sifields._kill.si_pid
524#define si_uid _sifields._kill.si_uid
525#define si_status _sifields._sigchld.si_status
526#define si_utime _sifields._sigchld.si_utime
527#define si_stime _sifields._sigchld.si_stime
528#define si_value _sifields._rt.si_sigval
529#define si_int _sifields._rt.si_sigval.sival_int
530#define si_ptr _sifields._rt.si_sigval.sival_ptr
531#define si_addr _sifields._sigfault.si_addr
532#define si_band _sifields._sigpoll.si_band
533#define si_fd _sifields._sigpoll.si_fd
534
535#endif
536
537#endif
538
539#if defined (SVR4) || defined (LINUX)
540
Roland McGrathd9f816f2004-09-04 03:39:20 +0000541static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000542#ifdef SI_KERNEL
543 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000544#endif
545#ifdef SI_USER
546 { SI_USER, "SI_USER" },
547#endif
John Hughes58265892001-10-18 15:13:53 +0000548#ifdef SI_QUEUE
549 { SI_QUEUE, "SI_QUEUE" },
550#endif
551#ifdef SI_TIMER
552 { SI_TIMER, "SI_TIMER" },
553#endif
John Hughes58265892001-10-18 15:13:53 +0000554#ifdef SI_MESGQ
555 { SI_MESGQ, "SI_MESGQ" },
556#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000557#ifdef SI_ASYNCIO
558 { SI_ASYNCIO, "SI_ASYNCIO" },
559#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000560#ifdef SI_SIGIO
561 { SI_SIGIO, "SI_SIGIO" },
562#endif
563#ifdef SI_TKILL
564 { SI_TKILL, "SI_TKILL" },
565#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000566#ifdef SI_ASYNCNL
567 { SI_ASYNCNL, "SI_ASYNCNL" },
568#endif
569#ifdef SI_NOINFO
570 { SI_NOINFO, "SI_NOINFO" },
571#endif
572#ifdef SI_LWP
573 { SI_LWP, "SI_LWP" },
574#endif
John Hughes58265892001-10-18 15:13:53 +0000575 { 0, NULL },
576};
577
Roland McGrathd9f816f2004-09-04 03:39:20 +0000578static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000579 { ILL_ILLOPC, "ILL_ILLOPC" },
580 { ILL_ILLOPN, "ILL_ILLOPN" },
581 { ILL_ILLADR, "ILL_ILLADR" },
582 { ILL_ILLTRP, "ILL_ILLTRP" },
583 { ILL_PRVOPC, "ILL_PRVOPC" },
584 { ILL_PRVREG, "ILL_PRVREG" },
585 { ILL_COPROC, "ILL_COPROC" },
586 { ILL_BADSTK, "ILL_BADSTK" },
587 { 0, NULL },
588};
589
Roland McGrathd9f816f2004-09-04 03:39:20 +0000590static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000591 { FPE_INTDIV, "FPE_INTDIV" },
592 { FPE_INTOVF, "FPE_INTOVF" },
593 { FPE_FLTDIV, "FPE_FLTDIV" },
594 { FPE_FLTOVF, "FPE_FLTOVF" },
595 { FPE_FLTUND, "FPE_FLTUND" },
596 { FPE_FLTRES, "FPE_FLTRES" },
597 { FPE_FLTINV, "FPE_FLTINV" },
598 { FPE_FLTSUB, "FPE_FLTSUB" },
599 { 0, NULL },
600};
601
Roland McGrathd9f816f2004-09-04 03:39:20 +0000602static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000603 { TRAP_BRKPT, "TRAP_BRKPT" },
604 { TRAP_TRACE, "TRAP_TRACE" },
605 { 0, NULL },
606};
607
Roland McGrathd9f816f2004-09-04 03:39:20 +0000608static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000609 { CLD_EXITED, "CLD_EXITED" },
610 { CLD_KILLED, "CLD_KILLED" },
611 { CLD_DUMPED, "CLD_DUMPED" },
612 { CLD_TRAPPED, "CLD_TRAPPED" },
613 { CLD_STOPPED, "CLD_STOPPED" },
614 { CLD_CONTINUED,"CLD_CONTINUED" },
615 { 0, NULL },
616};
617
Roland McGrathd9f816f2004-09-04 03:39:20 +0000618static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000619 { POLL_IN, "POLL_IN" },
620 { POLL_OUT, "POLL_OUT" },
621 { POLL_MSG, "POLL_MSG" },
622 { POLL_ERR, "POLL_ERR" },
623 { POLL_PRI, "POLL_PRI" },
624 { POLL_HUP, "POLL_HUP" },
625 { 0, NULL },
626};
627
Roland McGrathd9f816f2004-09-04 03:39:20 +0000628static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000629#ifdef PROF_SIG
630 { PROF_SIG, "PROF_SIG" },
631#endif
632 { 0, NULL },
633};
634
635#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000636static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000637#ifdef EMT_TAGOVF
638 { EMT_TAGOVF, "EMT_TAGOVF" },
639#endif
640 { 0, NULL },
641};
642#endif
643
Roland McGrathd9f816f2004-09-04 03:39:20 +0000644static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000645 { SEGV_MAPERR, "SEGV_MAPERR" },
646 { SEGV_ACCERR, "SEGV_ACCERR" },
647 { 0, NULL },
648};
649
Roland McGrathd9f816f2004-09-04 03:39:20 +0000650static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000651 { BUS_ADRALN, "BUS_ADRALN" },
652 { BUS_ADRERR, "BUS_ADRERR" },
653 { BUS_OBJERR, "BUS_OBJERR" },
654 { 0, NULL },
655};
656
657void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000658printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000659{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000660 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000661
662 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200663 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000664 return;
665 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200666 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000667 printsignal(sip->si_signo);
668 code = xlookup(siginfo_codes, sip->si_code);
669 if (!code) {
670 switch (sip->si_signo) {
671 case SIGTRAP:
672 code = xlookup(sigtrap_codes, sip->si_code);
673 break;
674 case SIGCHLD:
675 code = xlookup(sigchld_codes, sip->si_code);
676 break;
677 case SIGPOLL:
678 code = xlookup(sigpoll_codes, sip->si_code);
679 break;
680 case SIGPROF:
681 code = xlookup(sigprof_codes, sip->si_code);
682 break;
683 case SIGILL:
684 code = xlookup(sigill_codes, sip->si_code);
685 break;
686#ifdef SIGEMT
687 case SIGEMT:
688 code = xlookup(sigemt_codes, sip->si_code);
689 break;
690#endif
691 case SIGFPE:
692 code = xlookup(sigfpe_codes, sip->si_code);
693 break;
694 case SIGSEGV:
695 code = xlookup(sigsegv_codes, sip->si_code);
696 break;
697 case SIGBUS:
698 code = xlookup(sigbus_codes, sip->si_code);
699 break;
700 }
701 }
702 if (code)
703 tprintf(", si_code=%s", code);
704 else
705 tprintf(", si_code=%#x", sip->si_code);
706#ifdef SI_NOINFO
707 if (sip->si_code != SI_NOINFO)
708#endif
709 {
710 if (sip->si_errno) {
711 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
712 tprintf(", si_errno=%d", sip->si_errno);
713 else
714 tprintf(", si_errno=%s",
715 errnoent[sip->si_errno]);
716 }
717#ifdef SI_FROMUSER
718 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000719 tprintf(", si_pid=%lu, si_uid=%lu",
720 (unsigned long) sip->si_pid,
721 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000722 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000723#ifdef SI_USER
724 case SI_USER:
725 break;
726#endif
727#ifdef SI_TKILL
728 case SI_TKILL:
729 break;
730#endif
John Hughes58265892001-10-18 15:13:53 +0000731#ifdef SI_TIMER
732 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000733 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000734 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000735#endif
736#ifdef LINUX
737 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000738 if (!sip->si_ptr)
739 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000740 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200741 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000742 else
743 tprintf(", si_value={int=%u, ptr=%#lx}",
744 sip->si_int,
745 (unsigned long) sip->si_ptr);
746 break;
747#endif
John Hughes58265892001-10-18 15:13:53 +0000748 }
John Hughes58265892001-10-18 15:13:53 +0000749 }
750 else
751#endif /* SI_FROMUSER */
752 {
753 switch (sip->si_signo) {
754 case SIGCHLD:
755 tprintf(", si_pid=%ld, si_status=",
756 (long) sip->si_pid);
757 if (sip->si_code == CLD_EXITED)
758 tprintf("%d", sip->si_status);
759 else
760 printsignal(sip->si_status);
761#if LINUX
762 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200763 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000764 else
765 tprintf(", si_utime=%lu, si_stime=%lu",
766 sip->si_utime,
767 sip->si_stime);
768#endif
769 break;
770 case SIGILL: case SIGFPE:
771 case SIGSEGV: case SIGBUS:
772 tprintf(", si_addr=%#lx",
773 (unsigned long) sip->si_addr);
774 break;
775 case SIGPOLL:
776 switch (sip->si_code) {
777 case POLL_IN: case POLL_OUT: case POLL_MSG:
778 tprintf(", si_band=%ld",
779 (long) sip->si_band);
780 break;
781 }
782 break;
783#ifdef LINUX
784 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000785 if (sip->si_pid || sip->si_uid)
786 tprintf(", si_pid=%lu, si_uid=%lu",
787 (unsigned long) sip->si_pid,
788 (unsigned long) sip->si_uid);
789 if (!sip->si_ptr)
790 break;
John Hughes58265892001-10-18 15:13:53 +0000791 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200792 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000793 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000794 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000795 sip->si_int,
796 (unsigned long) sip->si_ptr);
797 }
798#endif
Roland McGratha39c5a12002-12-17 05:10:37 +0000799
John Hughes58265892001-10-18 15:13:53 +0000800 }
801 }
802 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200803 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000804}
805
806#endif /* SVR4 || LINUX */
807
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000808#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000809
810int
Denys Vlasenko12014262011-05-30 14:00:14 +0200811sys_sigvec(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000812{
813 struct sigvec sv;
814 long addr;
815
816 if (entering(tcp)) {
817 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200818 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000819 addr = tcp->u_arg[1];
820 } else {
821 addr = tcp->u_arg[2];
822 }
823 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200824 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000825 else if (!verbose(tcp))
826 tprintf("%#lx", addr);
827 else if (umove(tcp, addr, &sv) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200828 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000829 else {
830 switch ((int) sv.sv_handler) {
831 case (int) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200832 tprints("{SIG_ERR}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000833 break;
834 case (int) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200835 tprints("{SIG_DFL}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000836 break;
837 case (int) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200838 tprints("{SIG_IGN}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000839 break;
840 case (int) SIG_HOLD:
Denys Vlasenko023b7702012-01-18 16:30:47 +0100841 tprints("{SIG_HOLD}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000842 break;
843 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000844 tprintf("{%#lx, ", (unsigned long) sv.sv_handler);
Nate Sammons4a121431999-04-06 01:19:39 +0000845 printsigmask(&sv.sv_mask, 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200846 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000847 printflags(sigvec_flags, sv.sv_flags, "SV_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200848 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000849 }
850 }
851 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200852 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000853 return 0;
854}
855
856int
Denys Vlasenko12014262011-05-30 14:00:14 +0200857sys_sigpause(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000858{
859 if (entering(tcp)) { /* WTA: UD had a bug here: he forgot the braces */
Nate Sammons4a121431999-04-06 01:19:39 +0000860 sigset_t sigm;
861 long_to_sigset(tcp->u_arg[0], &sigm);
862 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000863 }
864 return 0;
865}
866
867int
Denys Vlasenko12014262011-05-30 14:00:14 +0200868sys_sigstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000869{
870 struct sigstack ss;
871 long addr;
872
873 if (entering(tcp))
874 addr = tcp->u_arg[0];
875 else
876 addr = tcp->u_arg[1];
877 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200878 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000879 else if (umove(tcp, addr, &ss) < 0)
880 tprintf("%#lx", addr);
881 else {
882 tprintf("{ss_sp %#lx ", (unsigned long) ss.ss_sp);
883 tprintf("ss_onstack %s}", ss.ss_onstack ? "YES" : "NO");
884 }
885 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200886 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000887 return 0;
888}
889
890int
Denys Vlasenko12014262011-05-30 14:00:14 +0200891sys_sigcleanup(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000892{
893 return 0;
894}
895
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000896#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000897
898#ifndef SVR4
899
900int
Denys Vlasenko12014262011-05-30 14:00:14 +0200901sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000902{
903 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000904 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000905 long_to_sigset(tcp->u_arg[0], &sigm);
906 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000907 }
908 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000909 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000910 long_to_sigset(tcp->u_rval, &sigm);
911 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000912
913 return RVAL_HEX | RVAL_STR;
914 }
915 return 0;
916}
917
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000918#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000919int
Denys Vlasenko12014262011-05-30 14:00:14 +0200920sys_sigblock(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000921{
922 return sys_sigsetmask(tcp);
923}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +0000924#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000925
926#endif /* !SVR4 */
927
928#ifdef HAVE_SIGACTION
929
930#ifdef LINUX
931struct old_sigaction {
932 __sighandler_t __sa_handler;
933 unsigned long sa_mask;
934 unsigned long sa_flags;
935 void (*sa_restorer)(void);
936};
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000937#define SA_HANDLER __sa_handler
938#endif /* LINUX */
939
Roland McGratha39c5a12002-12-17 05:10:37 +0000940#ifndef SA_HANDLER
941#define SA_HANDLER sa_handler
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000942#endif
943
944int
Denys Vlasenko12014262011-05-30 14:00:14 +0200945sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000946{
947 long addr;
Nate Sammons4a121431999-04-06 01:19:39 +0000948#ifdef LINUX
John Hughes1e4cb342001-03-06 09:25:46 +0000949 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000950 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000951#else
952 struct sigaction sa;
953#endif
954
955
956 if (entering(tcp)) {
957 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200958 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000959 addr = tcp->u_arg[1];
960 } else
961 addr = tcp->u_arg[2];
962 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200963 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000964 else if (!verbose(tcp))
965 tprintf("%#lx", addr);
966 else if (umove(tcp, addr, &sa) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200967 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000968 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000969 /* Architectures using function pointers, like
970 * hppa, may need to manipulate the function pointer
971 * to compute the result of a comparison. However,
972 * the SA_HANDLER function pointer exists only in
973 * the address space of the traced process, and can't
974 * be manipulated by strace. In order to prevent the
975 * compiler from generating code to manipulate
976 * SA_HANDLER we cast the function pointers to long. */
977 if ((long)sa.SA_HANDLER == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200978 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000979 else if ((long)sa.SA_HANDLER == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200980 tprints("{SIG_DFL, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100981 else if ((long)sa.SA_HANDLER == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200982 tprints("{SIG_IGN, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100983 else
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000984 tprintf("{%#lx, ", (long) sa.SA_HANDLER);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100985#ifndef LINUX
986 printsigmask(&sa.sa_mask, 0);
987#else
988 long_to_sigset(sa.sa_mask, &sigset);
989 printsigmask(&sigset, 0);
990#endif
991 tprints(", ");
992 printflags(sigact_flags, sa.sa_flags, "SA_???");
993#ifdef SA_RESTORER
994 if (sa.sa_flags & SA_RESTORER)
995 tprintf(", %p", sa.sa_restorer);
996#endif
997 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000998 }
999 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001000 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001001#ifdef LINUX
1002 else
1003 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
1004#endif
1005 return 0;
1006}
1007
1008int
Denys Vlasenko12014262011-05-30 14:00:14 +02001009sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001010{
1011 if (entering(tcp)) {
1012 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001013 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001014 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +00001015 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001016 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001017 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001018 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001019 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001020 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001021 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001022 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001023 break;
1024 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001025 tprintf("%#lx", tcp->u_arg[1]);
1026 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001027 return 0;
1028 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +00001029 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001030 switch (tcp->u_rval) {
Jan Kratochvil1f942712008-08-06 21:38:52 +00001031 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001032 tcp->auxstr = "SIG_ERR"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001033 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001034 tcp->auxstr = "SIG_DFL"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001035 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001036 tcp->auxstr = "SIG_IGN"; break;
1037 default:
1038 tcp->auxstr = NULL;
1039 }
1040 return RVAL_HEX | RVAL_STR;
1041 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +00001042 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001043}
1044
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001045#ifdef SVR4
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001046int
Denys Vlasenko12014262011-05-30 14:00:14 +02001047sys_sighold(struct tcb *tcp)
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001048{
1049 if (entering(tcp)) {
1050 printsignal(tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001051 }
1052 return 0;
1053}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001054#endif /* SVR4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001055
1056#endif /* HAVE_SIGACTION */
1057
1058#ifdef LINUX
1059
1060int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001061sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001062{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001063#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +00001064 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001065 struct pt_regs regs;
1066 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001067 sigset_t sigm;
Roland McGrath0f87c492003-06-03 23:29:04 +00001068 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)&regs) == -1)
1069 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001070 if (umove(tcp, regs.ARM_sp, &sc) < 0)
1071 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001072 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001073 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +00001074 }
1075 return 0;
1076#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +00001077 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001078 long usp;
1079 struct sigcontext_struct sc;
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001080 if (upeek(tcp, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001081 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001082 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001083 return 0;
Andreas Schwaba7920a82012-01-17 17:56:44 +01001084 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0));
Roland McGrath0f87c492003-06-03 23:29:04 +00001085 }
1086 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001087#elif defined(I386)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001088 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001089 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001090 /* Note: on i386, sc is followed on stack by struct fpstate
1091 * and after it an additional u32 extramask[1] which holds
1092 * upper half of the mask. We can fetch it there
1093 * if/when we'd want to display the full mask...
1094 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001095 sigset_t sigm;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001096 if (umove(tcp, i386_regs.esp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001097 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001098 long_to_sigset(sc.oldmask, &sigm);
1099 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001100 }
1101 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001102#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001103 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001104 struct sigcontext sc;
1105 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001106 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001107 /* offset of sigcontext in the kernel's sigframe structure: */
1108# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001109 if (upeek(tcp, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001110 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001111 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001112 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001113 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001114 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001115 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001116 }
1117 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001118#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +00001119 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001120 long esp;
1121 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001122 sigset_t sigm;
1123 if (upeek(tcp, sizeof(unsigned long) * PT_R1, &esp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001124 return 0;
Andreas Schwabedb39342010-02-23 00:18:51 +01001125 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +02001126#ifdef POWERPC64
1127 if (current_personality == 0)
1128 esp += 128;
1129 else
1130 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +01001131#else
1132 esp += 64;
1133#endif
Roland McGrath0f87c492003-06-03 23:29:04 +00001134 if (umove(tcp, esp, &sc) < 0)
1135 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001136 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001137 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +00001138 }
1139 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001140#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001141 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001142 long usp;
1143 struct sigcontext sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001144 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001145 if (upeek(tcp, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001146 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001147 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001148 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001149 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001150 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001151 }
1152 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001153#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001154 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001155 long fp;
1156 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001157 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001158 if (upeek(tcp, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001159 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001160 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001161 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001162 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001163 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001164 }
1165 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001166#elif defined (SPARC) || defined (SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001167 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001168 long i1;
1169 struct pt_regs regs;
1170 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001171 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001172 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1173 perror("sigreturn: PTRACE_GETREGS");
1174 return 0;
1175 }
Mike Frysinger8566c502009-10-12 11:05:14 -04001176 i1 = regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001177 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001178 perror("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001179 return 0;
1180 }
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001181 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001182 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001183 }
1184 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001185#elif defined (LINUX_MIPSN32) || defined (LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +00001186 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
1187 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001188 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001189 long sp;
1190 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001191 sigset_t sigm;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001192 if (upeek(tcp, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001193 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001194 /* There are six words followed by a 128-byte siginfo. */
1195 sp = sp + 6 * 4 + 128;
1196 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001197 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001198 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001199 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath542c2c62008-05-20 01:11:56 +00001200 }
1201 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001202#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +02001203 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001204 long sp;
1205 struct pt_regs regs;
1206 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001207 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001208 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1209 perror("sigreturn: PTRACE_GETREGS");
1210 return 0;
1211 }
Roland McGrath576b7842007-11-04 00:00:00 +00001212 sp = regs.regs[29];
1213 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +02001214 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001215 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001216 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkermanf90da011999-10-31 21:15:38 +00001217 }
1218 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001219#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001220 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001221 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001222 long regs[PT_MAX+1];
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001223 sigset_t sigm;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001224 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
1225 perror("sigreturn: PTRACE_GETREGS");
1226 return 0;
1227 }
1228 if (umove(tcp, regs[PT_USP], &sc) < 0)
1229 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001230 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001231 tprints(sprintsigmask(") (mask ", &sigm, 0));
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001232 }
1233 return 0;
Chris Metcalfc8c66982009-12-28 10:00:15 -05001234#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001235 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001236 struct ucontext uc;
1237 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001238 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +02001239
1240 /* offset of ucontext in the kernel's sigframe structure */
1241# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001242 if (upeek(tcp, PTREGS_OFFSET_SP, &sp) < 0)
1243 return 0;
1244 if (umove(tcp, sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1245 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001246 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001247 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001248 tprints(sprintsigmask(") (mask ", &sigm, 0));
Chris Metcalfc8c66982009-12-28 10:00:15 -05001249 }
1250 return 0;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001251#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001252 /* TODO: Verify that this is correct... */
1253 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001254 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001255 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001256 sigset_t sigm;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001257 /* Read r1, the stack pointer. */
1258 if (upeek(tcp, 1 * 4, &sp) < 0)
1259 return 0;
1260 if (umove(tcp, sp, &sc) < 0)
1261 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001262 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001263 tprints(sprintsigmask(") (mask ", &sigm, 0));
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001264 }
1265 return 0;
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001266#else
Michal Ludvig0e035502002-09-23 15:41:01 +00001267#warning No sys_sigreturn() for this architecture
1268#warning (no problem, just a reminder :-)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001269 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001270#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001271}
1272
1273int
Denys Vlasenko12014262011-05-30 14:00:14 +02001274sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001275{
1276 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001277 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001278 long_to_sigset(tcp->u_rval, &sigm);
1279 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001280 }
1281 return RVAL_HEX | RVAL_STR;
1282}
1283
1284int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001285sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001286{
1287 if (entering(tcp)) {
1288 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001289 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001290 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001291 }
1292 return 0;
1293}
1294
1295#endif /* LINUX */
1296
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001297#if defined(SVR4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001298
1299int
Denys Vlasenko12014262011-05-30 14:00:14 +02001300sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001301{
1302 sigset_t sigset;
1303
1304 if (entering(tcp)) {
1305 if (umove(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001306 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001307 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001308 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001309 }
1310 return 0;
1311}
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001312#ifndef FREEBSD
Roland McGrathd9f816f2004-09-04 03:39:20 +00001313static const struct xlat ucontext_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001314 { UC_SIGMASK, "UC_SIGMASK" },
1315 { UC_STACK, "UC_STACK" },
1316 { UC_CPU, "UC_CPU" },
1317#ifdef UC_FPU
1318 { UC_FPU, "UC_FPU" },
1319#endif
1320#ifdef UC_INTR
1321 { UC_INTR, "UC_INTR" },
1322#endif
1323 { 0, NULL },
1324};
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001325#endif /* !FREEBSD */
1326#endif /* SVR4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001327
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001328#if defined SVR4 || defined LINUX || defined FREEBSD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001329#if defined LINUX && !defined SS_ONSTACK
1330#define SS_ONSTACK 1
1331#define SS_DISABLE 2
1332#if __GLIBC_MINOR__ == 0
1333typedef struct
1334{
1335 __ptr_t ss_sp;
1336 int ss_flags;
1337 size_t ss_size;
1338} stack_t;
1339#endif
1340#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001341#ifdef FREEBSD
1342#define stack_t struct sigaltstack
1343#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001344
Roland McGrathd9f816f2004-09-04 03:39:20 +00001345static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001346 { SS_ONSTACK, "SS_ONSTACK" },
1347 { SS_DISABLE, "SS_DISABLE" },
1348 { 0, NULL },
1349};
1350#endif
1351
1352#ifdef SVR4
1353static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001354printcontext(struct tcb *tcp, ucontext_t *ucp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001355{
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001356 tprints("{");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001357 if (!abbrev(tcp)) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001358 tprints("uc_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001359 printflags(ucontext_flags, ucp->uc_flags, "UC_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001360 tprintf(", uc_link=%#lx, ", (unsigned long) ucp->uc_link);
1361 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001362 tprints("uc_sigmask=");
John Hughes70c5e7a2001-05-15 15:09:14 +00001363 printsigmask(&ucp->uc_sigmask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001364 if (!abbrev(tcp)) {
1365 tprintf(", uc_stack={ss_sp=%#lx, ss_size=%d, ss_flags=",
1366 (unsigned long) ucp->uc_stack.ss_sp,
1367 ucp->uc_stack.ss_size);
Roland McGrathb2dee132005-06-01 19:02:36 +00001368 printflags(sigaltstack_flags, ucp->uc_stack.ss_flags, "SS_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001369 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001370 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001371 tprints(", ...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001372}
1373
1374int
Denys Vlasenko12014262011-05-30 14:00:14 +02001375sys_getcontext(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001376{
1377 ucontext_t uc;
1378
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001379 if (exiting(tcp)) {
1380 if (tcp->u_error)
1381 tprintf("%#lx", tcp->u_arg[0]);
1382 else if (!tcp->u_arg[0])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001383 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001384 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001385 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001386 else
1387 printcontext(tcp, &uc);
1388 }
1389 return 0;
1390}
1391
1392int
Denys Vlasenko12014262011-05-30 14:00:14 +02001393sys_setcontext(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001394{
1395 ucontext_t uc;
1396
1397 if (entering(tcp)) {
1398 if (!tcp->u_arg[0])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001399 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001400 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001401 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001402 else
1403 printcontext(tcp, &uc);
1404 }
1405 else {
1406 tcp->u_rval = tcp->u_error = 0;
1407 if (tcp->u_arg[0] == 0)
1408 return 0;
1409 return RVAL_NONE;
1410 }
1411 return 0;
1412}
1413
1414#endif /* SVR4 */
1415
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001416#if defined(LINUX) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001417
1418static int
Denys Vlasenko12014262011-05-30 14:00:14 +02001419print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001420{
1421 stack_t ss;
1422 if (umove(tcp, addr, &ss) < 0)
1423 return -1;
1424 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
Roland McGrathb2dee132005-06-01 19:02:36 +00001425 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001426 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1427 return 0;
1428}
1429
1430int
Denys Vlasenko12014262011-05-30 14:00:14 +02001431sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001432{
1433 if (entering(tcp)) {
1434 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001435 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001436 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1437 return -1;
1438 }
1439 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001440 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001441 if (tcp->u_arg[1] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001442 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001443 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1444 return -1;
1445 }
1446 return 0;
1447}
1448#endif
1449
1450#ifdef HAVE_SIGACTION
1451
1452int
Denys Vlasenko12014262011-05-30 14:00:14 +02001453sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001454{
1455#ifdef ALPHA
1456 if (entering(tcp)) {
1457 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001458 tprints(", ");
Nate Sammons4a121431999-04-06 01:19:39 +00001459 printsigmask(tcp->u_arg[1], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001460 }
1461 else if (!syserror(tcp)) {
Nate Sammons4a121431999-04-06 01:19:39 +00001462 tcp->auxstr = sprintsigmask("old mask ", tcp->u_rval, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001463 return RVAL_HEX | RVAL_STR;
1464 }
1465#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001466 if (entering(tcp)) {
1467#ifdef SVR4
1468 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001469 tprints("0");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001470 else
1471#endif /* SVR4 */
1472 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001473 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001474 print_sigset(tcp, tcp->u_arg[1], 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001475 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001476 }
1477 else {
1478 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001479 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001480 else if (syserror(tcp))
1481 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001482 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001483 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001484 }
1485#endif /* !ALPHA */
1486 return 0;
1487}
1488
1489#endif /* HAVE_SIGACTION */
1490
1491int
Denys Vlasenko12014262011-05-30 14:00:14 +02001492sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001493{
1494 if (entering(tcp)) {
Roland McGrath4d7ed022008-05-20 01:43:09 +00001495 long pid = tcp->u_arg[0];
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001496#if SUPPORTED_PERSONALITIES > 1
1497 /* Sign-extend a 32-bit value when that's what it is. */
Roland McGrath4d7ed022008-05-20 01:43:09 +00001498 if (personality_wordsize[current_personality] < sizeof pid)
1499 pid = (long) (int) pid;
Denys Vlasenkoa7949742011-08-21 17:26:55 +02001500#endif
Roland McGrath4d7ed022008-05-20 01:43:09 +00001501 tprintf("%ld, %s", pid, signame(tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001502 }
1503 return 0;
1504}
1505
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001506#if defined(FREEBSD) || defined(SUNOS4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001507int
Denys Vlasenko12014262011-05-30 14:00:14 +02001508sys_killpg(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001509{
1510 return sys_kill(tcp);
1511}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001512#endif /* FREEBSD || SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001513
Roland McGrath8ffc3522003-07-09 09:47:49 +00001514#ifdef LINUX
1515int
Denys Vlasenko12014262011-05-30 14:00:14 +02001516sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001517{
1518 if (entering(tcp)) {
1519 tprintf("%ld, %ld, %s",
1520 tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2]));
1521 }
1522 return 0;
1523}
1524#endif
1525
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001526int
Denys Vlasenko12014262011-05-30 14:00:14 +02001527sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001528{
1529 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001530
1531 if (exiting(tcp)) {
1532 if (syserror(tcp))
1533 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001534 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001535 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001536 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001537 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001538 }
1539 return 0;
1540}
1541
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001542#ifdef SVR4
Denys Vlasenko12014262011-05-30 14:00:14 +02001543int sys_sigwait(struct tcb *tcp)
John Hughes42162082001-10-18 14:48:26 +00001544{
1545 sigset_t sigset;
1546
1547 if (entering(tcp)) {
1548 if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001549 tprints("[?]");
John Hughes42162082001-10-18 14:48:26 +00001550 else
1551 printsigmask(&sigset, 0);
1552 }
1553 else {
1554 if (!syserror(tcp)) {
1555 tcp->auxstr = signalent[tcp->u_rval];
1556 return RVAL_DECIMAL | RVAL_STR;
1557 }
1558 }
1559 return 0;
1560}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001561#endif /* SVR4 */
John Hughes42162082001-10-18 14:48:26 +00001562
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001563#ifdef LINUX
1564
Denys Vlasenko12014262011-05-30 14:00:14 +02001565int
1566sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001567{
1568 sigset_t sigset;
1569
Nate Sammons4a121431999-04-06 01:19:39 +00001570 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001571 if (entering(tcp)) {
1572 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001573 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001574 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001575 tprints("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001576 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001577 tprintf("%#lx, ", tcp->u_arg[1]);
1578 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001579 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001580 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001581 }
1582 }
1583 else {
1584 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001585 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001586 else if (syserror(tcp))
1587 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001588 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001589 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001590 else
Nate Sammons4a121431999-04-06 01:19:39 +00001591 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001592 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001593 }
1594 return 0;
1595}
1596
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001597
1598/* Structure describing the action to be taken when a signal arrives. */
1599struct new_sigaction
1600{
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001601 __sighandler_t __sa_handler;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001602 unsigned long sa_flags;
1603 void (*sa_restorer) (void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001604 /* Kernel treats sa_mask as an array of longs. */
1605 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1606};
1607/* Same for i386-on-x86_64 and similar cases */
1608struct new_sigaction32
1609{
1610 uint32_t __sa_handler;
1611 uint32_t sa_flags;
1612 uint32_t sa_restorer;
1613 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001614};
1615
1616
Roland McGrath5f206812008-08-20 01:59:40 +00001617int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001618sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001619{
1620 struct new_sigaction sa;
1621 sigset_t sigset;
1622 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001623 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001624
1625 if (entering(tcp)) {
1626 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001627 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001628 addr = tcp->u_arg[1];
1629 } else
1630 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001631
1632 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001633 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001634 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001635 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001636 if (!verbose(tcp)) {
1637 tprintf("%#lx", addr);
1638 goto after_sa;
1639 }
1640#if SUPPORTED_PERSONALITIES > 1
1641 if (personality_wordsize[current_personality] != sizeof(sa.sa_flags)
1642 && personality_wordsize[current_personality] == 4
1643 ) {
1644 struct new_sigaction32 sa32;
1645 r = umove(tcp, addr, &sa32);
1646 if (r >= 0) {
1647 memset(&sa, 0, sizeof(sa));
1648 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1649 sa.sa_flags = sa32.sa_flags;
1650 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1651 /* Kernel treats sa_mask as an array of longs.
1652 * For 32-bit process, "long" is uint32_t, thus, for example,
1653 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1654 * But for (64-bit) kernel, 32th bit in sa_mask is
1655 * 32th bit in 0th (64-bit) long!
1656 * For little-endian, it's the same.
1657 * For big-endian, we swap 32-bit words.
1658 */
1659 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1660 }
1661 } else
1662#endif
1663 {
1664 r = umove(tcp, addr, &sa);
1665 }
1666 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001667 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001668 goto after_sa;
1669 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001670 /* Architectures using function pointers, like
1671 * hppa, may need to manipulate the function pointer
1672 * to compute the result of a comparison. However,
1673 * the SA_HANDLER function pointer exists only in
1674 * the address space of the traced process, and can't
1675 * be manipulated by strace. In order to prevent the
1676 * compiler from generating code to manipulate
1677 * SA_HANDLER we cast the function pointers to long. */
1678 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001679 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001680 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001681 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001682 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001683 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001684 else
1685 tprintf("{%#lx, ", (long) sa.__sa_handler);
1686 /* Questionable code below.
1687 * Kernel won't handle sys_rt_sigaction
1688 * with wrong sigset size (just returns EINVAL)
1689 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1690 * and we always use smaller memcpy. */
1691 sigemptyset(&sigset);
1692#ifdef LINUXSPARC
1693 if (tcp->u_arg[4] <= sizeof(sigset))
1694 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1695#else
1696 if (tcp->u_arg[3] <= sizeof(sigset))
1697 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1698#endif
1699 else
1700 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1701 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001702 tprints(", ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001703 printflags(sigact_flags, sa.sa_flags, "SA_???");
1704#ifdef SA_RESTORER
1705 if (sa.sa_flags & SA_RESTORER)
1706 tprintf(", %p", sa.sa_restorer);
1707#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001708 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001709
1710 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001711 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001712 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001713 else
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001714#ifdef LINUXSPARC
1715 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1716#elif defined(ALPHA)
1717 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1718#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001719 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001720#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001721 return 0;
1722}
1723
Denys Vlasenko1d632462009-04-14 12:51:00 +00001724int
1725sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001726{
1727 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001728
1729 if (exiting(tcp)) {
1730 if (syserror(tcp))
1731 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001732 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1733 &sigset, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001734 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001735 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001736 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001737 }
1738 return 0;
1739}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001740
1741int
1742sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001743{
1744 if (entering(tcp)) {
1745 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001746 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001747 tprints("[?]");
Nate Sammons4a121431999-04-06 01:19:39 +00001748 else
1749 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001750 }
1751 return 0;
1752}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001753
1754int
1755sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001756{
1757 if (entering(tcp)) {
1758 siginfo_t si;
1759 tprintf("%lu, ", tcp->u_arg[0]);
1760 printsignal(tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001761 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001762 if (umove(tcp, tcp->u_arg[2], &si) < 0)
1763 tprintf("%#lx", tcp->u_arg[2]);
1764 else
Denys Vlasenkof535b542009-01-13 18:30:55 +00001765 printsiginfo(&si, verbose(tcp));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001766 }
1767 return 0;
1768}
1769
Denys Vlasenko1d632462009-04-14 12:51:00 +00001770int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001771{
1772 if (entering(tcp)) {
1773 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001774
Roland McGratha39c5a12002-12-17 05:10:37 +00001775 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00001776 &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001777 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001778 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001779 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001780 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001781 /* This is the only "return" parameter, */
1782 if (tcp->u_arg[1] != 0)
1783 return 0;
1784 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001785 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001786 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001787 else if (tcp->u_arg[1] != 0) {
1788 /* syscall exit, and u_arg[1] wasn't NULL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001789 if (syserror(tcp))
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001790 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001791 else {
1792 siginfo_t si;
1793 if (umove(tcp, tcp->u_arg[1], &si) < 0)
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001794 tprintf("%#lx, ", tcp->u_arg[1]);
1795 else {
Denys Vlasenkof535b542009-01-13 18:30:55 +00001796 printsiginfo(&si, verbose(tcp));
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001797 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001798 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001799 }
1800 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001801 else {
1802 /* syscall exit, and u_arg[1] was NULL */
1803 return 0;
1804 }
1805 print_timespec(tcp, tcp->u_arg[2]);
1806 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001807 return 0;
1808};
1809
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001810int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001811sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001812{
1813 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001814 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001815 return 0;
1816}
1817
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001818static int
1819do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001820{
1821 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001822 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001823 tprints(", ");
Roland McGrathf46ccd32007-08-02 01:15:59 +00001824 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001825 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001826 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001827 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001828 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1829 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001830 }
1831 return 0;
1832}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001833
1834int
1835sys_signalfd(struct tcb *tcp)
1836{
1837 return do_signalfd(tcp, -1);
1838}
1839
1840int
1841sys_signalfd4(struct tcb *tcp)
1842{
1843 return do_signalfd(tcp, 3);
1844}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001845#endif /* LINUX */