blob: c1d6eb07efa6cdb5dc93cbf0f062d52ca2aa242c [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>
73#endif /* !IA64 */
74
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 */
134#ifndef NSIG
135#define NSIG 32
136#endif
137#ifdef ARM
138#undef NSIG
139#define NSIG 32
140#endif
141#endif /* LINUX */
142
Roland McGrathee36ce12004-09-04 03:53:10 +0000143const char *const signalent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000144#include "signalent.h"
145};
Roland McGrathee36ce12004-09-04 03:53:10 +0000146const int nsignals0 = sizeof signalent0 / sizeof signalent0[0];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000147
148#if SUPPORTED_PERSONALITIES >= 2
Roland McGrathee36ce12004-09-04 03:53:10 +0000149const char *const signalent1[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000150#include "signalent1.h"
151};
Roland McGrathee36ce12004-09-04 03:53:10 +0000152const int nsignals1 = sizeof signalent1 / sizeof signalent1[0];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000153#endif /* SUPPORTED_PERSONALITIES >= 2 */
154
155#if SUPPORTED_PERSONALITIES >= 3
Roland McGrathee36ce12004-09-04 03:53:10 +0000156const char *const signalent2[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000157#include "signalent2.h"
158};
Roland McGrathee36ce12004-09-04 03:53:10 +0000159const int nsignals2 = sizeof signalent2 / sizeof signalent2[0];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160#endif /* SUPPORTED_PERSONALITIES >= 3 */
161
Roland McGrathee36ce12004-09-04 03:53:10 +0000162const char *const *signalent;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000163int nsignals;
164
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000165#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000166
Roland McGrathd9f816f2004-09-04 03:39:20 +0000167static const struct xlat sigvec_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000168 { SV_ONSTACK, "SV_ONSTACK" },
169 { SV_INTERRUPT, "SV_INTERRUPT" },
170 { SV_RESETHAND, "SV_RESETHAND" },
171 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
172 { 0, NULL },
173};
174
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000175#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000176
177#ifdef HAVE_SIGACTION
178
Roland McGrath063ae2d2005-02-02 04:16:54 +0000179#if defined LINUX && (defined I386 || defined X86_64)
Roland McGrath2638cb42002-12-15 23:58:41 +0000180/* The libc headers do not define this constant since it should only be
181 used by the implementation. So wwe define it here. */
182# ifndef SA_RESTORER
183# define SA_RESTORER 0x04000000
184# endif
185#endif
186
Roland McGrathd9f816f2004-09-04 03:39:20 +0000187static const struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000188#ifdef SA_RESTORER
189 { SA_RESTORER, "SA_RESTORER" },
190#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000191#ifdef SA_STACK
192 { SA_STACK, "SA_STACK" },
193#endif
194#ifdef SA_RESTART
195 { SA_RESTART, "SA_RESTART" },
196#endif
197#ifdef SA_INTERRUPT
198 { SA_INTERRUPT, "SA_INTERRUPT" },
199#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000200#ifdef SA_NODEFER
201 { SA_NODEFER, "SA_NODEFER" },
202#endif
203#if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000204 { SA_NOMASK, "SA_NOMASK" },
205#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000206#ifdef SA_RESETHAND
207 { SA_RESETHAND, "SA_RESETHAND" },
208#endif
209#if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000210 { SA_ONESHOT, "SA_ONESHOT" },
211#endif
212#ifdef SA_SIGINFO
213 { SA_SIGINFO, "SA_SIGINFO" },
214#endif
215#ifdef SA_RESETHAND
216 { SA_RESETHAND, "SA_RESETHAND" },
217#endif
218#ifdef SA_ONSTACK
219 { SA_ONSTACK, "SA_ONSTACK" },
220#endif
221#ifdef SA_NODEFER
222 { SA_NODEFER, "SA_NODEFER" },
223#endif
224#ifdef SA_NOCLDSTOP
225 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
226#endif
227#ifdef SA_NOCLDWAIT
228 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
229#endif
230#ifdef _SA_BSDCALL
231 { _SA_BSDCALL, "_SA_BSDCALL" },
232#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500233#ifdef SA_NOPTRACE
234 { SA_NOPTRACE, "SA_NOPTRACE" },
235#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000236 { 0, NULL },
237};
238
Roland McGrathd9f816f2004-09-04 03:39:20 +0000239static const struct xlat sigprocmaskcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000240 { SIG_BLOCK, "SIG_BLOCK" },
241 { SIG_UNBLOCK, "SIG_UNBLOCK" },
242 { SIG_SETMASK, "SIG_SETMASK" },
243#ifdef SIG_SETMASK32
244 { SIG_SETMASK32,"SIG_SETMASK32" },
245#endif
246 { 0, NULL },
247};
248
249#endif /* HAVE_SIGACTION */
250
Nate Sammonsce780fc1999-03-29 23:23:13 +0000251/* Anonymous realtime signals. */
252/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
253 constant. This is what we want. Otherwise, just use SIGRTMIN. */
254#ifdef SIGRTMIN
255#ifndef __SIGRTMIN
256#define __SIGRTMIN SIGRTMIN
257#define __SIGRTMAX SIGRTMAX /* likewise */
258#endif
259#endif
260
Roland McGrathee36ce12004-09-04 03:53:10 +0000261const char *
Nate Sammonsce780fc1999-03-29 23:23:13 +0000262signame(sig)
263int sig;
264{
265 static char buf[30];
Roland McGrathad81dce2005-05-09 07:40:30 +0000266 if (sig >= 0 && sig < nsignals) {
Nate Sammonsce780fc1999-03-29 23:23:13 +0000267 return signalent[sig];
268#ifdef SIGRTMIN
Nate Sammons3080aa41999-03-30 00:16:41 +0000269 } else if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000270 sprintf(buf, "SIGRT_%ld", (long)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000271 return buf;
272#endif /* SIGRTMIN */
273 } else {
274 sprintf(buf, "%d", sig);
275 return buf;
276 }
277}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000278
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000279#ifndef UNIXWARE
Nate Sammons4a121431999-04-06 01:19:39 +0000280static void
281long_to_sigset(l, s)
282long l;
283sigset_t *s;
284{
285 sigemptyset(s);
286 *(long *)s = l;
287}
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000288#endif
Nate Sammons4a121431999-04-06 01:19:39 +0000289
290static int
291copy_sigset_len(tcp, addr, s, len)
292struct tcb *tcp;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000293long addr;
Nate Sammons4a121431999-04-06 01:19:39 +0000294sigset_t *s;
295int len;
296{
297 if (len > sizeof(*s))
298 len = sizeof(*s);
299 sigemptyset(s);
300 if (umoven(tcp, addr, len, (char *)s) < 0)
301 return -1;
302 return 0;
303}
304
305#ifdef LINUX
306/* Original sigset is unsigned long */
307#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
308#else
309#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(sigset_t))
310#endif
311
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000312static const char *
313sprintsigmask(const char *str, sigset_t *mask, int rt)
314/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000315{
316 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000317 int maxsigs;
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000318 char *format, *s;
Roland McGratha39c5a12002-12-17 05:10:37 +0000319 static char outstr[8 * sizeof(sigset_t) * 8];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000320
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000321 strcpy(outstr, str);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000322 s = outstr + strlen(outstr);
323 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000324 maxsigs = nsignals;
325#ifdef __SIGRTMAX
326 if (rt)
327 maxsigs = __SIGRTMAX; /* instead */
328#endif
329 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000330 if (sigismember(mask, i) == 1)
331 nsigs++;
332 }
333 if (nsigs >= nsignals * 2 / 3) {
334 *s++ = '~';
Nate Sammons4a121431999-04-06 01:19:39 +0000335 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000336 switch (sigismember(mask, i)) {
337 case 1:
338 sigdelset(mask, i);
339 break;
340 case 0:
341 sigaddset(mask, i);
342 break;
343 }
344 }
345 }
346 format = "%s";
347 *s++ = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000348 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000349 if (sigismember(mask, i) == 1) {
John Hughesbdf48f52001-03-06 15:08:09 +0000350 /* real-time signals on solaris don't have
351 * signalent entries
352 */
353 if (i < nsignals) {
354 sprintf(s, format, signalent[i] + 3);
355 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000356#ifdef SIGRTMIN
357 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
358 char tsig[40];
359 sprintf(tsig, "RT_%u", i - __SIGRTMIN);
360 sprintf(s, format, tsig);
361 }
362#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000363 else {
364 char tsig[32];
365 sprintf(tsig, "%u", i);
366 sprintf(s, format, tsig);
367 }
368 s += strlen(s);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000369 format = " %s";
370 }
371 }
372 *s++ = ']';
373 *s = '\0';
374 return outstr;
375}
376
377static void
Nate Sammons4a121431999-04-06 01:19:39 +0000378printsigmask(mask, rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000379sigset_t *mask;
Nate Sammons4a121431999-04-06 01:19:39 +0000380int rt;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000381{
Nate Sammons4a121431999-04-06 01:19:39 +0000382 tprintf("%s", sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000383}
384
385void
386printsignal(nr)
387int nr;
388{
Dmitry V. Levin4bcd5ef2009-06-01 10:32:27 +0000389 tprintf("%s", signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000390}
391
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000392void
393print_sigset(struct tcb *tcp, long addr, int rt)
394{
395 sigset_t ss;
396
397 if (!addr)
398 tprintf("NULL");
399 else if (copy_sigset(tcp, addr, &ss) < 0)
400 tprintf("%#lx", addr);
401 else
402 printsigmask(&ss, rt);
403}
404
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000405#ifdef LINUX
406
John Hughes58265892001-10-18 15:13:53 +0000407#ifndef ILL_ILLOPC
408#define ILL_ILLOPC 1 /* illegal opcode */
409#define ILL_ILLOPN 2 /* illegal operand */
410#define ILL_ILLADR 3 /* illegal addressing mode */
411#define ILL_ILLTRP 4 /* illegal trap */
412#define ILL_PRVOPC 5 /* privileged opcode */
413#define ILL_PRVREG 6 /* privileged register */
414#define ILL_COPROC 7 /* coprocessor error */
415#define ILL_BADSTK 8 /* internal stack error */
416#define FPE_INTDIV 1 /* integer divide by zero */
417#define FPE_INTOVF 2 /* integer overflow */
418#define FPE_FLTDIV 3 /* floating point divide by zero */
419#define FPE_FLTOVF 4 /* floating point overflow */
420#define FPE_FLTUND 5 /* floating point underflow */
421#define FPE_FLTRES 6 /* floating point inexact result */
422#define FPE_FLTINV 7 /* floating point invalid operation */
423#define FPE_FLTSUB 8 /* subscript out of range */
424#define SEGV_MAPERR 1 /* address not mapped to object */
425#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
426#define BUS_ADRALN 1 /* invalid address alignment */
427#define BUS_ADRERR 2 /* non-existant physical address */
428#define BUS_OBJERR 3 /* object specific hardware error */
429#define TRAP_BRKPT 1 /* process breakpoint */
430#define TRAP_TRACE 2 /* process trace trap */
431#define CLD_EXITED 1 /* child has exited */
432#define CLD_KILLED 2 /* child was killed */
433#define CLD_DUMPED 3 /* child terminated abnormally */
434#define CLD_TRAPPED 4 /* traced child has trapped */
435#define CLD_STOPPED 5 /* child has stopped */
436#define CLD_CONTINUED 6 /* stopped child has continued */
437#define POLL_IN 1 /* data input available */
438#define POLL_OUT 2 /* output buffers available */
439#define POLL_MSG 3 /* input message available */
440#define POLL_ERR 4 /* i/o error */
441#define POLL_PRI 5 /* high priority input available */
442#define POLL_HUP 6 /* device disconnected */
443#define SI_USER 0 /* sent by kill, sigsend, raise */
444#define SI_QUEUE -1 /* sent by sigqueue */
445#define SI_TIMER -2 /* sent by timer expiration */
446#define SI_MESGQ -3 /* sent by real time mesq state change */
447#define SI_ASYNCIO -4 /* sent by AIO completion */
Roland McGrath941b7402003-05-23 00:29:02 +0000448#define SI_SIGIO -5 /* Sent by SIGIO */
449#define SI_TKILL -6 /* Sent by tkill */
John Hughes58265892001-10-18 15:13:53 +0000450#endif
451
452#if __GLIBC_MINOR__ < 1
453/* Type for data associated with a signal. */
454typedef union sigval
455{
456 int sival_int;
457 void *sival_ptr;
458} sigval_t;
459
460# define __SI_MAX_SIZE 128
461# define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 3)
462
463typedef struct siginfo
464{
465 int si_signo; /* Signal number. */
466 int si_errno; /* If non-zero, an errno value associated with
467 this signal, as defined in <errno.h>. */
468 int si_code; /* Signal code. */
469
470 union
471 {
472 int _pad[__SI_PAD_SIZE];
473
474 /* kill(). */
475 struct
476 {
477 __pid_t si_pid; /* Sending process ID. */
478 __uid_t si_uid; /* Real user ID of sending process. */
479 } _kill;
480
481 /* POSIX.1b timers. */
482 struct
483 {
484 unsigned int _timer1;
485 unsigned int _timer2;
486 } _timer;
487
488 /* POSIX.1b signals. */
489 struct
490 {
491 __pid_t si_pid; /* Sending process ID. */
492 __uid_t si_uid; /* Real user ID of sending process. */
493 sigval_t si_sigval; /* Signal value. */
494 } _rt;
495
496 /* SIGCHLD. */
497 struct
498 {
499 __pid_t si_pid; /* Which child. */
500 int si_status; /* Exit value or signal. */
501 __clock_t si_utime;
502 __clock_t si_stime;
503 } _sigchld;
504
505 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
506 struct
507 {
508 void *si_addr; /* Faulting insn/memory ref. */
509 } _sigfault;
510
511 /* SIGPOLL. */
512 struct
513 {
514 int si_band; /* Band event for SIGPOLL. */
515 int si_fd;
516 } _sigpoll;
517 } _sifields;
518} siginfo_t;
519
520#define si_pid _sifields._kill.si_pid
521#define si_uid _sifields._kill.si_uid
522#define si_status _sifields._sigchld.si_status
523#define si_utime _sifields._sigchld.si_utime
524#define si_stime _sifields._sigchld.si_stime
525#define si_value _sifields._rt.si_sigval
526#define si_int _sifields._rt.si_sigval.sival_int
527#define si_ptr _sifields._rt.si_sigval.sival_ptr
528#define si_addr _sifields._sigfault.si_addr
529#define si_band _sifields._sigpoll.si_band
530#define si_fd _sifields._sigpoll.si_fd
531
532#endif
533
534#endif
535
536#if defined (SVR4) || defined (LINUX)
537
Roland McGrathd9f816f2004-09-04 03:39:20 +0000538static const struct xlat siginfo_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000539#ifdef SI_NOINFO
540 { SI_NOINFO, "SI_NOINFO" },
541#endif
542#ifdef SI_USER
543 { SI_USER, "SI_USER" },
544#endif
545#ifdef SI_LWP
546 { SI_LWP, "SI_LWP" },
547#endif
548#ifdef SI_QUEUE
549 { SI_QUEUE, "SI_QUEUE" },
550#endif
551#ifdef SI_TIMER
552 { SI_TIMER, "SI_TIMER" },
553#endif
554#ifdef SI_ASYNCIO
555 { SI_ASYNCIO, "SI_ASYNCIO" },
556#endif
557#ifdef SI_MESGQ
558 { SI_MESGQ, "SI_MESGQ" },
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
John Hughes58265892001-10-18 15:13:53 +0000566 { 0, NULL },
567};
568
Roland McGrathd9f816f2004-09-04 03:39:20 +0000569static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000570 { ILL_ILLOPC, "ILL_ILLOPC" },
571 { ILL_ILLOPN, "ILL_ILLOPN" },
572 { ILL_ILLADR, "ILL_ILLADR" },
573 { ILL_ILLTRP, "ILL_ILLTRP" },
574 { ILL_PRVOPC, "ILL_PRVOPC" },
575 { ILL_PRVREG, "ILL_PRVREG" },
576 { ILL_COPROC, "ILL_COPROC" },
577 { ILL_BADSTK, "ILL_BADSTK" },
578 { 0, NULL },
579};
580
Roland McGrathd9f816f2004-09-04 03:39:20 +0000581static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000582 { FPE_INTDIV, "FPE_INTDIV" },
583 { FPE_INTOVF, "FPE_INTOVF" },
584 { FPE_FLTDIV, "FPE_FLTDIV" },
585 { FPE_FLTOVF, "FPE_FLTOVF" },
586 { FPE_FLTUND, "FPE_FLTUND" },
587 { FPE_FLTRES, "FPE_FLTRES" },
588 { FPE_FLTINV, "FPE_FLTINV" },
589 { FPE_FLTSUB, "FPE_FLTSUB" },
590 { 0, NULL },
591};
592
Roland McGrathd9f816f2004-09-04 03:39:20 +0000593static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000594 { TRAP_BRKPT, "TRAP_BRKPT" },
595 { TRAP_TRACE, "TRAP_TRACE" },
596 { 0, NULL },
597};
598
Roland McGrathd9f816f2004-09-04 03:39:20 +0000599static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000600 { CLD_EXITED, "CLD_EXITED" },
601 { CLD_KILLED, "CLD_KILLED" },
602 { CLD_DUMPED, "CLD_DUMPED" },
603 { CLD_TRAPPED, "CLD_TRAPPED" },
604 { CLD_STOPPED, "CLD_STOPPED" },
605 { CLD_CONTINUED,"CLD_CONTINUED" },
606 { 0, NULL },
607};
608
Roland McGrathd9f816f2004-09-04 03:39:20 +0000609static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000610 { POLL_IN, "POLL_IN" },
611 { POLL_OUT, "POLL_OUT" },
612 { POLL_MSG, "POLL_MSG" },
613 { POLL_ERR, "POLL_ERR" },
614 { POLL_PRI, "POLL_PRI" },
615 { POLL_HUP, "POLL_HUP" },
616 { 0, NULL },
617};
618
Roland McGrathd9f816f2004-09-04 03:39:20 +0000619static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000620#ifdef PROF_SIG
621 { PROF_SIG, "PROF_SIG" },
622#endif
623 { 0, NULL },
624};
625
626#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000627static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000628#ifdef EMT_TAGOVF
629 { EMT_TAGOVF, "EMT_TAGOVF" },
630#endif
631 { 0, NULL },
632};
633#endif
634
Roland McGrathd9f816f2004-09-04 03:39:20 +0000635static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000636 { SEGV_MAPERR, "SEGV_MAPERR" },
637 { SEGV_ACCERR, "SEGV_ACCERR" },
638 { 0, NULL },
639};
640
Roland McGrathd9f816f2004-09-04 03:39:20 +0000641static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000642 { BUS_ADRALN, "BUS_ADRALN" },
643 { BUS_ADRERR, "BUS_ADRERR" },
644 { BUS_OBJERR, "BUS_OBJERR" },
645 { 0, NULL },
646};
647
648void
649printsiginfo(sip, verbose)
650siginfo_t *sip;
651int verbose;
652{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000653 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000654
655 if (sip->si_signo == 0) {
656 tprintf ("{}");
657 return;
658 }
659 tprintf("{si_signo=");
660 printsignal(sip->si_signo);
661 code = xlookup(siginfo_codes, sip->si_code);
662 if (!code) {
663 switch (sip->si_signo) {
664 case SIGTRAP:
665 code = xlookup(sigtrap_codes, sip->si_code);
666 break;
667 case SIGCHLD:
668 code = xlookup(sigchld_codes, sip->si_code);
669 break;
670 case SIGPOLL:
671 code = xlookup(sigpoll_codes, sip->si_code);
672 break;
673 case SIGPROF:
674 code = xlookup(sigprof_codes, sip->si_code);
675 break;
676 case SIGILL:
677 code = xlookup(sigill_codes, sip->si_code);
678 break;
679#ifdef SIGEMT
680 case SIGEMT:
681 code = xlookup(sigemt_codes, sip->si_code);
682 break;
683#endif
684 case SIGFPE:
685 code = xlookup(sigfpe_codes, sip->si_code);
686 break;
687 case SIGSEGV:
688 code = xlookup(sigsegv_codes, sip->si_code);
689 break;
690 case SIGBUS:
691 code = xlookup(sigbus_codes, sip->si_code);
692 break;
693 }
694 }
695 if (code)
696 tprintf(", si_code=%s", code);
697 else
698 tprintf(", si_code=%#x", sip->si_code);
699#ifdef SI_NOINFO
700 if (sip->si_code != SI_NOINFO)
701#endif
702 {
703 if (sip->si_errno) {
704 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
705 tprintf(", si_errno=%d", sip->si_errno);
706 else
707 tprintf(", si_errno=%s",
708 errnoent[sip->si_errno]);
709 }
710#ifdef SI_FROMUSER
711 if (SI_FROMUSER(sip)) {
712 tprintf(", si_pid=%ld, si_uid=%ld",
713 sip->si_pid, sip->si_uid);
714#ifdef SI_QUEUE
715 switch (sip->si_code) {
716 case SI_QUEUE:
717#ifdef SI_TIMER
718 case SI_TIMER:
719#endif /* SI_QUEUE */
720 case SI_ASYNCIO:
721#ifdef SI_MESGQ
722 case SI_MESGQ:
723#endif /* SI_MESGQ */
724 tprintf(", si_value=%d",
725 sip->si_value.sival_int);
726 break;
727 }
728#endif /* SI_QUEUE */
729 }
730 else
731#endif /* SI_FROMUSER */
732 {
733 switch (sip->si_signo) {
734 case SIGCHLD:
735 tprintf(", si_pid=%ld, si_status=",
736 (long) sip->si_pid);
737 if (sip->si_code == CLD_EXITED)
738 tprintf("%d", sip->si_status);
739 else
740 printsignal(sip->si_status);
741#if LINUX
742 if (!verbose)
743 tprintf(", ...");
744 else
745 tprintf(", si_utime=%lu, si_stime=%lu",
746 sip->si_utime,
747 sip->si_stime);
748#endif
749 break;
750 case SIGILL: case SIGFPE:
751 case SIGSEGV: case SIGBUS:
752 tprintf(", si_addr=%#lx",
753 (unsigned long) sip->si_addr);
754 break;
755 case SIGPOLL:
756 switch (sip->si_code) {
757 case POLL_IN: case POLL_OUT: case POLL_MSG:
758 tprintf(", si_band=%ld",
759 (long) sip->si_band);
760 break;
761 }
762 break;
763#ifdef LINUX
764 default:
765 tprintf(", si_pid=%lu, si_uid=%lu, ",
766 (unsigned long) sip->si_pid,
767 (unsigned long) sip->si_uid);
768 if (!verbose)
769 tprintf("...");
770 else {
771 tprintf("si_value={int=%u, ptr=%#lx}",
772 sip->si_int,
773 (unsigned long) sip->si_ptr);
774 }
775#endif
Roland McGratha39c5a12002-12-17 05:10:37 +0000776
John Hughes58265892001-10-18 15:13:53 +0000777 }
778 }
779 }
780 tprintf("}");
781}
782
783#endif /* SVR4 || LINUX */
784
785#ifdef LINUX
786
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000787static void
788parse_sigset_t (const char *str, sigset_t *set)
789{
Roland McGrathc38feca2003-10-01 07:50:28 +0000790 const char *p;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000791 unsigned int digit;
792 int i;
793
794 sigemptyset(set);
795
Roland McGrathc38feca2003-10-01 07:50:28 +0000796 p = strchr(str, '\n');
797 if (p == NULL)
798 p = strchr(str, '\0');
799 for (i = 0; p-- > str; i += 4) {
800 if (*p >= '0' && *p <= '9')
801 digit = *p - '0';
802 else if (*p >= 'a' && *p <= 'f')
Roland McGrath92f1d6d2004-08-31 07:03:20 +0000803 digit = *p - 'a' + 10;
Roland McGrathc38feca2003-10-01 07:50:28 +0000804 else if (*p >= 'A' && *p <= 'F')
Roland McGrath92f1d6d2004-08-31 07:03:20 +0000805 digit = *p - 'A' + 10;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000806 else
Roland McGrathc38feca2003-10-01 07:50:28 +0000807 break;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000808 if (digit & 1)
809 sigaddset(set, i + 1);
810 if (digit & 2)
811 sigaddset(set, i + 2);
812 if (digit & 4)
813 sigaddset(set, i + 3);
814 if (digit & 8)
815 sigaddset(set, i + 4);
816 }
817}
818
819#endif
820
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000821/*
822 * Check process TCP for the disposition of signal SIG.
823 * Return 1 if the process would somehow manage to survive signal SIG,
824 * else return 0. This routine will never be called with SIGKILL.
825 */
826int
827sigishandled(tcp, sig)
828struct tcb *tcp;
829int sig;
830{
831#ifdef LINUX
832 int sfd;
833 char sname[32];
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000834 char buf[2048];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000835 char *s;
836 int i;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000837 sigset_t ignored, caught;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000838#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000839#ifdef SVR4
840 /*
841 * Since procfs doesn't interfere with wait I think it is safe
842 * to punt on this question. If not, the information is there.
843 */
844 return 1;
845#else /* !SVR4 */
846 switch (sig) {
847 case SIGCONT:
848 case SIGSTOP:
849 case SIGTSTP:
850 case SIGTTIN:
851 case SIGTTOU:
852 case SIGCHLD:
853 case SIGIO:
854#if defined(SIGURG) && SIGURG != SIGIO
855 case SIGURG:
856#endif
857 case SIGWINCH:
858 /* Gloria Gaynor says ... */
859 return 1;
860 default:
861 break;
862 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000863#endif /* !SVR4 */
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000864#ifdef LINUX
865
866 /* This is incredibly costly but it's worth it. */
867 /* NOTE: LinuxThreads internally uses SIGRTMIN, SIGRTMIN + 1 and
868 SIGRTMIN + 2, so we can't use the obsolete /proc/%d/stat which
869 doesn't handle real-time signals). */
870 sprintf(sname, "/proc/%d/status", tcp->pid);
871 if ((sfd = open(sname, O_RDONLY)) == -1) {
872 perror(sname);
873 return 1;
874 }
875 i = read(sfd, buf, sizeof(buf));
876 buf[i] = '\0';
877 close(sfd);
878 /*
879 * Skip the extraneous fields. We need to skip
880 * command name has any spaces in it. So be it.
881 */
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000882 s = strstr(buf, "SigIgn:\t");
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000883 if (!s)
884 {
885 fprintf(stderr, "/proc/pid/status format error\n");
886 return 1;
887 }
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000888 parse_sigset_t(s + 8, &ignored);
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000889
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000890 s = strstr(buf, "SigCgt:\t");
891 if (!s)
892 {
893 fprintf(stderr, "/proc/pid/status format error\n");
894 return 1;
895 }
896 parse_sigset_t(s + 8, &caught);
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000897
898#ifdef DEBUG
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000899 fprintf(stderr, "sigs: %016qx %016qx (sig=%d)\n",
900 *(long long *) &ignored, *(long long *) &caught, sig);
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000901#endif
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000902 if (sigismember(&ignored, sig) || sigismember(&caught, sig))
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000903 return 1;
904#endif /* LINUX */
905
906#ifdef SUNOS4
907 void (*u_signal)();
908
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000909 if (upeek(tcp, uoff(u_signal[0]) + sig*sizeof(u_signal),
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000910 (long *) &u_signal) < 0) {
911 return 0;
912 }
913 if (u_signal != SIG_DFL)
914 return 1;
915#endif /* SUNOS4 */
916
917 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000918}
919
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000920#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000921
922int
923sys_sigvec(tcp)
924struct tcb *tcp;
925{
926 struct sigvec sv;
927 long addr;
928
929 if (entering(tcp)) {
930 printsignal(tcp->u_arg[0]);
931 tprintf(", ");
932 addr = tcp->u_arg[1];
933 } else {
934 addr = tcp->u_arg[2];
935 }
936 if (addr == 0)
937 tprintf("NULL");
938 else if (!verbose(tcp))
939 tprintf("%#lx", addr);
940 else if (umove(tcp, addr, &sv) < 0)
941 tprintf("{...}");
942 else {
943 switch ((int) sv.sv_handler) {
944 case (int) SIG_ERR:
945 tprintf("{SIG_ERR}");
946 break;
947 case (int) SIG_DFL:
948 tprintf("{SIG_DFL}");
949 break;
950 case (int) SIG_IGN:
951 if (tcp->u_arg[0] == SIGTRAP) {
952 tcp->flags |= TCB_SIGTRAPPED;
953 kill(tcp->pid, SIGSTOP);
954 }
955 tprintf("{SIG_IGN}");
956 break;
957 case (int) SIG_HOLD:
958 if (tcp->u_arg[0] == SIGTRAP) {
959 tcp->flags |= TCB_SIGTRAPPED;
960 kill(tcp->pid, SIGSTOP);
961 }
962 tprintf("SIG_HOLD");
963 break;
964 default:
965 if (tcp->u_arg[0] == SIGTRAP) {
966 tcp->flags |= TCB_SIGTRAPPED;
967 kill(tcp->pid, SIGSTOP);
968 }
969 tprintf("{%#lx, ", (unsigned long) sv.sv_handler);
Nate Sammons4a121431999-04-06 01:19:39 +0000970 printsigmask(&sv.sv_mask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000971 tprintf(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000972 printflags(sigvec_flags, sv.sv_flags, "SV_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000973 tprintf("}");
974 }
975 }
976 if (entering(tcp))
977 tprintf(", ");
978 return 0;
979}
980
981int
982sys_sigpause(tcp)
983struct tcb *tcp;
984{
985 if (entering(tcp)) { /* WTA: UD had a bug here: he forgot the braces */
Nate Sammons4a121431999-04-06 01:19:39 +0000986 sigset_t sigm;
987 long_to_sigset(tcp->u_arg[0], &sigm);
988 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000989 }
990 return 0;
991}
992
993int
994sys_sigstack(tcp)
995struct tcb *tcp;
996{
997 struct sigstack ss;
998 long addr;
999
1000 if (entering(tcp))
1001 addr = tcp->u_arg[0];
1002 else
1003 addr = tcp->u_arg[1];
1004 if (addr == 0)
1005 tprintf("NULL");
1006 else if (umove(tcp, addr, &ss) < 0)
1007 tprintf("%#lx", addr);
1008 else {
1009 tprintf("{ss_sp %#lx ", (unsigned long) ss.ss_sp);
1010 tprintf("ss_onstack %s}", ss.ss_onstack ? "YES" : "NO");
1011 }
1012 if (entering(tcp))
1013 tprintf(", ");
1014 return 0;
1015}
1016
1017int
1018sys_sigcleanup(tcp)
1019struct tcb *tcp;
1020{
1021 return 0;
1022}
1023
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001024#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001025
1026#ifndef SVR4
1027
1028int
1029sys_sigsetmask(tcp)
1030struct tcb *tcp;
1031{
1032 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001033 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001034 long_to_sigset(tcp->u_arg[0], &sigm);
1035 printsigmask(&sigm, 0);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001036#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001037 if ((tcp->u_arg[0] & sigmask(SIGTRAP))) {
1038 /* Mark attempt to block SIGTRAP */
1039 tcp->flags |= TCB_SIGTRAPPED;
1040 /* Send unblockable signal */
1041 kill(tcp->pid, SIGSTOP);
1042 }
Roland McGratha39c5a12002-12-17 05:10:37 +00001043#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001044 }
1045 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001046 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001047 long_to_sigset(tcp->u_rval, &sigm);
1048 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001049
1050 return RVAL_HEX | RVAL_STR;
1051 }
1052 return 0;
1053}
1054
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001055#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001056int
1057sys_sigblock(tcp)
1058struct tcb *tcp;
1059{
1060 return sys_sigsetmask(tcp);
1061}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001062#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001063
1064#endif /* !SVR4 */
1065
1066#ifdef HAVE_SIGACTION
1067
1068#ifdef LINUX
1069struct old_sigaction {
1070 __sighandler_t __sa_handler;
1071 unsigned long sa_mask;
1072 unsigned long sa_flags;
1073 void (*sa_restorer)(void);
1074};
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001075#define SA_HANDLER __sa_handler
1076#endif /* LINUX */
1077
Roland McGratha39c5a12002-12-17 05:10:37 +00001078#ifndef SA_HANDLER
1079#define SA_HANDLER sa_handler
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001080#endif
1081
1082int
1083sys_sigaction(tcp)
1084struct tcb *tcp;
1085{
1086 long addr;
Nate Sammons4a121431999-04-06 01:19:39 +00001087#ifdef LINUX
John Hughes1e4cb342001-03-06 09:25:46 +00001088 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001089 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001090#else
1091 struct sigaction sa;
1092#endif
1093
1094
1095 if (entering(tcp)) {
1096 printsignal(tcp->u_arg[0]);
1097 tprintf(", ");
1098 addr = tcp->u_arg[1];
1099 } else
1100 addr = tcp->u_arg[2];
1101 if (addr == 0)
1102 tprintf("NULL");
1103 else if (!verbose(tcp))
1104 tprintf("%#lx", addr);
1105 else if (umove(tcp, addr, &sa) < 0)
1106 tprintf("{...}");
1107 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001108 /* Architectures using function pointers, like
1109 * hppa, may need to manipulate the function pointer
1110 * to compute the result of a comparison. However,
1111 * the SA_HANDLER function pointer exists only in
1112 * the address space of the traced process, and can't
1113 * be manipulated by strace. In order to prevent the
1114 * compiler from generating code to manipulate
1115 * SA_HANDLER we cast the function pointers to long. */
1116 if ((long)sa.SA_HANDLER == (long)SIG_ERR)
Roland McGrath5f206812008-08-20 01:59:40 +00001117 tprintf("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001118 else if ((long)sa.SA_HANDLER == (long)SIG_DFL)
Roland McGrath5f206812008-08-20 01:59:40 +00001119 tprintf("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001120 else if ((long)sa.SA_HANDLER == (long)SIG_IGN) {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001121#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001122 if (tcp->u_arg[0] == SIGTRAP) {
1123 tcp->flags |= TCB_SIGTRAPPED;
1124 kill(tcp->pid, SIGSTOP);
1125 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001126#endif /* !USE_PROCFS */
Roland McGrath5f206812008-08-20 01:59:40 +00001127 tprintf("{SIG_IGN, ");
1128 }
1129 else {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001130#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001131 if (tcp->u_arg[0] == SIGTRAP) {
1132 tcp->flags |= TCB_SIGTRAPPED;
1133 kill(tcp->pid, SIGSTOP);
1134 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001135#endif /* !USE_PROCFS */
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001136 tprintf("{%#lx, ", (long) sa.SA_HANDLER);
Wichert Akkerman48214be1999-11-26 09:55:42 +00001137#ifndef LINUX
1138 printsigmask (&sa.sa_mask, 0);
1139#else
Nate Sammons4a121431999-04-06 01:19:39 +00001140 long_to_sigset(sa.sa_mask, &sigset);
1141 printsigmask(&sigset, 0);
Wichert Akkerman48214be1999-11-26 09:55:42 +00001142#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001143 tprintf(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +00001144 printflags(sigact_flags, sa.sa_flags, "SA_???");
Roland McGrath2638cb42002-12-15 23:58:41 +00001145#ifdef SA_RESTORER
1146 if (sa.sa_flags & SA_RESTORER)
1147 tprintf(", %p", sa.sa_restorer);
1148#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001149 tprintf("}");
1150 }
1151 }
1152 if (entering(tcp))
1153 tprintf(", ");
1154#ifdef LINUX
1155 else
1156 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
1157#endif
1158 return 0;
1159}
1160
1161int
1162sys_signal(tcp)
1163struct tcb *tcp;
1164{
1165 if (entering(tcp)) {
1166 printsignal(tcp->u_arg[0]);
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001167 tprintf(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001168 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +00001169 case (long) SIG_ERR:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001170 tprintf("SIG_ERR");
1171 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001172 case (long) SIG_DFL:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001173 tprintf("SIG_DFL");
1174 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001175 case (long) SIG_IGN:
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001176#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001177 if (tcp->u_arg[0] == SIGTRAP) {
1178 tcp->flags |= TCB_SIGTRAPPED;
1179 kill(tcp->pid, SIGSTOP);
1180 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001181#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001182 tprintf("SIG_IGN");
1183 break;
1184 default:
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001185#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001186 if (tcp->u_arg[0] == SIGTRAP) {
1187 tcp->flags |= TCB_SIGTRAPPED;
1188 kill(tcp->pid, SIGSTOP);
1189 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001190#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001191 tprintf("%#lx", tcp->u_arg[1]);
1192 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001193 return 0;
1194 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +00001195 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001196 switch (tcp->u_rval) {
Jan Kratochvil1f942712008-08-06 21:38:52 +00001197 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001198 tcp->auxstr = "SIG_ERR"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001199 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001200 tcp->auxstr = "SIG_DFL"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001201 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001202 tcp->auxstr = "SIG_IGN"; break;
1203 default:
1204 tcp->auxstr = NULL;
1205 }
1206 return RVAL_HEX | RVAL_STR;
1207 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +00001208 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001209}
1210
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001211#ifdef SVR4
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001212int
1213sys_sighold(tcp)
1214struct tcb *tcp;
1215{
1216 if (entering(tcp)) {
1217 printsignal(tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001218 }
1219 return 0;
1220}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001221#endif /* SVR4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001222
1223#endif /* HAVE_SIGACTION */
1224
1225#ifdef LINUX
1226
1227int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001228sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001229{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001230#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +00001231 struct pt_regs regs;
1232 struct sigcontext_struct sc;
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001233
Roland McGrath0f87c492003-06-03 23:29:04 +00001234 if (entering(tcp)) {
1235 tcp->u_arg[0] = 0;
1236
1237 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)&regs) == -1)
1238 return 0;
1239
1240 if (umove(tcp, regs.ARM_sp, &sc) < 0)
1241 return 0;
1242
1243 tcp->u_arg[0] = 1;
1244 tcp->u_arg[1] = sc.oldmask;
1245 } else {
1246 sigset_t sigm;
1247 long_to_sigset(tcp->u_arg[1], &sigm);
1248 tcp->u_rval = tcp->u_error = 0;
1249 if (tcp->u_arg[0] == 0)
1250 return 0;
1251 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1252 return RVAL_NONE | RVAL_STR;
1253 }
1254 return 0;
1255#elif defined(S390) || defined(S390X)
1256 long usp;
1257 struct sigcontext_struct sc;
1258
1259 if (entering(tcp)) {
1260 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001261 if (upeek(tcp,PT_GPR15,&usp)<0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001262 return 0;
1263 if (umove(tcp, usp+__SIGNAL_FRAMESIZE, &sc) < 0)
1264 return 0;
1265 tcp->u_arg[0] = 1;
1266 memcpy(&tcp->u_arg[1],&sc.oldmask[0],sizeof(sigset_t));
1267 } else {
1268 tcp->u_rval = tcp->u_error = 0;
1269 if (tcp->u_arg[0] == 0)
1270 return 0;
1271 tcp->auxstr = sprintsigmask("mask now ",(sigset_t *)&tcp->u_arg[1],0);
1272 return RVAL_NONE | RVAL_STR;
1273 }
1274 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001275#elif defined(I386)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001276 long esp;
1277 struct sigcontext_struct sc;
1278
1279 if (entering(tcp)) {
1280 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001281 if (upeek(tcp, 4*UESP, &esp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001282 return 0;
1283 if (umove(tcp, esp, &sc) < 0)
1284 return 0;
1285 tcp->u_arg[0] = 1;
1286 tcp->u_arg[1] = sc.oldmask;
1287 }
1288 else {
1289 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001290 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001291 tcp->u_rval = tcp->u_error = 0;
1292 if (tcp->u_arg[0] == 0)
1293 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +00001294 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001295 return RVAL_NONE | RVAL_STR;
1296 }
1297 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001298#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001299 struct sigcontext sc;
1300 long sp;
1301
1302 if (entering(tcp)) {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001303 /* offset of sigcontext in the kernel's sigframe structure: */
1304# define SIGFRAME_SC_OFFSET 0x90
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001305 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001306 if (upeek(tcp, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001307 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001308 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001309 return 0;
1310 tcp->u_arg[0] = 1;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001311 memcpy(tcp->u_arg + 1, &sc.sc_mask, sizeof(sc.sc_mask));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001312 }
1313 else {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001314 sigset_t sigm;
1315
1316 memcpy(&sigm, tcp->u_arg + 1, sizeof (sigm));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001317 tcp->u_rval = tcp->u_error = 0;
1318 if (tcp->u_arg[0] == 0)
1319 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001320 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001321 return RVAL_NONE | RVAL_STR;
1322 }
1323 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001324#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +00001325 long esp;
1326 struct sigcontext_struct sc;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001327
Roland McGrath0f87c492003-06-03 23:29:04 +00001328 if (entering(tcp)) {
1329 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001330 if (upeek(tcp, sizeof(unsigned long)*PT_R1, &esp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001331 return 0;
1332 if (umove(tcp, esp, &sc) < 0)
1333 return 0;
1334 tcp->u_arg[0] = 1;
1335 tcp->u_arg[1] = sc.oldmask;
1336 }
1337 else {
1338 sigset_t sigm;
1339 long_to_sigset(tcp->u_arg[1], &sigm);
1340 tcp->u_rval = tcp->u_error = 0;
1341 if (tcp->u_arg[0] == 0)
1342 return 0;
1343 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1344 return RVAL_NONE | RVAL_STR;
1345 }
1346 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001347#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001348 long usp;
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001349 struct sigcontext sc;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001350
1351 if (entering(tcp)) {
Roland McGrath0f87c492003-06-03 23:29:04 +00001352 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001353 if (upeek(tcp, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001354 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001355 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001356 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001357 tcp->u_arg[0] = 1;
1358 tcp->u_arg[1] = sc.sc_mask;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001359 }
1360 else {
Roland McGrath0f87c492003-06-03 23:29:04 +00001361 sigset_t sigm;
1362 long_to_sigset(tcp->u_arg[1], &sigm);
1363 tcp->u_rval = tcp->u_error = 0;
1364 if (tcp->u_arg[0] == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001365 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001366 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1367 return RVAL_NONE | RVAL_STR;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001368 }
1369 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001370#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001371 long fp;
1372 struct sigcontext_struct sc;
1373
1374 if (entering(tcp)) {
Roland McGrath0f87c492003-06-03 23:29:04 +00001375 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001376 if (upeek(tcp, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001377 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001378 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001379 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001380 tcp->u_arg[0] = 1;
1381 tcp->u_arg[1] = sc.sc_mask;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001382 }
1383 else {
Roland McGrath0f87c492003-06-03 23:29:04 +00001384 sigset_t sigm;
1385 long_to_sigset(tcp->u_arg[1], &sigm);
1386 tcp->u_rval = tcp->u_error = 0;
1387 if (tcp->u_arg[0] == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001388 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001389 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1390 return RVAL_NONE | RVAL_STR;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001391 }
1392 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001393#elif defined (SPARC) || defined (SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001394 long i1;
Mike Frysinger8566c502009-10-12 11:05:14 -04001395 struct pt_regs regs;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001396 m_siginfo_t si;
1397
Roland McGratheb9e2e82009-06-02 16:49:22 -07001398 if(ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1399 perror("sigreturn: PTRACE_GETREGS ");
Roland McGrath0f87c492003-06-03 23:29:04 +00001400 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001401 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001402 if(entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001403 tcp->u_arg[0] = 0;
Mike Frysinger8566c502009-10-12 11:05:14 -04001404 i1 = regs.u_regs[U_REG_O1];
Roland McGratheb9e2e82009-06-02 16:49:22 -07001405 if(umove(tcp, i1, &si) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001406 perror("sigreturn: umove ");
1407 return 0;
1408 }
1409 tcp->u_arg[0] = 1;
1410 tcp->u_arg[1] = si.si_mask;
1411 } else {
1412 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001413 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001414 tcp->u_rval = tcp->u_error = 0;
1415 if(tcp->u_arg[0] == 0)
1416 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +00001417 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001418 return RVAL_NONE | RVAL_STR;
1419 }
1420 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001421#elif defined (LINUX_MIPSN32) || defined (LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +00001422 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
1423 sigreturn. */
1424 long sp;
1425 struct ucontext uc;
1426
1427 if(entering(tcp)) {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001428 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001429 if (upeek(tcp, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001430 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001431 /* There are six words followed by a 128-byte siginfo. */
1432 sp = sp + 6 * 4 + 128;
1433 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001434 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001435 tcp->u_arg[0] = 1;
1436 tcp->u_arg[1] = *(long *) &uc.uc_sigmask;
1437 } else {
1438 sigset_t sigm;
1439 long_to_sigset(tcp->u_arg[1], &sigm);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001440 tcp->u_rval = tcp->u_error = 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001441 if(tcp->u_arg[0] == 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001442 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001443 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1444 return RVAL_NONE | RVAL_STR;
1445 }
1446 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001447#elif defined(MIPS)
Wichert Akkermanf90da011999-10-31 21:15:38 +00001448 long sp;
Roland McGrath576b7842007-11-04 00:00:00 +00001449 struct pt_regs regs;
1450 m_siginfo_t si;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001451
Roland McGrath576b7842007-11-04 00:00:00 +00001452 if(ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1453 perror("sigreturn: PTRACE_GETREGS ");
1454 return 0;
1455 }
Wichert Akkermanf90da011999-10-31 21:15:38 +00001456 if(entering(tcp)) {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001457 tcp->u_arg[0] = 0;
Roland McGrath576b7842007-11-04 00:00:00 +00001458 sp = regs.regs[29];
1459 if (umove(tcp, sp, &si) < 0)
Wichert Akkermanf90da011999-10-31 21:15:38 +00001460 tcp->u_arg[0] = 1;
Roland McGrath576b7842007-11-04 00:00:00 +00001461 tcp->u_arg[1] = si.si_mask;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001462 } else {
Roland McGrath576b7842007-11-04 00:00:00 +00001463 sigset_t sigm;
1464 long_to_sigset(tcp->u_arg[1], &sigm);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001465 tcp->u_rval = tcp->u_error = 0;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001466 if(tcp->u_arg[0] == 0)
Roland McGrath576b7842007-11-04 00:00:00 +00001467 return 0;
1468 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkermanf90da011999-10-31 21:15:38 +00001469 return RVAL_NONE | RVAL_STR;
1470 }
1471 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001472#elif defined(CRISV10) || defined(CRISV32)
1473 struct sigcontext sc;
1474
1475 if (entering(tcp)) {
1476 long regs[PT_MAX+1];
1477
1478 tcp->u_arg[0] = 0;
1479
1480 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
1481 perror("sigreturn: PTRACE_GETREGS");
1482 return 0;
1483 }
1484 if (umove(tcp, regs[PT_USP], &sc) < 0)
1485 return 0;
1486 tcp->u_arg[0] = 1;
1487 tcp->u_arg[1] = sc.oldmask;
1488 } else {
1489 sigset_t sigm;
1490 long_to_sigset(tcp->u_arg[1], &sigm);
1491 tcp->u_rval = tcp->u_error = 0;
1492
1493 if (tcp->u_arg[0] == 0)
1494 return 0;
1495 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1496 return RVAL_NONE | RVAL_STR;
1497 }
1498 return 0;
Chris Metcalfc8c66982009-12-28 10:00:15 -05001499#elif defined(TILE)
1500 struct ucontext uc;
1501 long sp;
1502
1503 /* offset of ucontext in the kernel's sigframe structure */
1504# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo)
1505
1506 if (entering(tcp)) {
1507 tcp->u_arg[0] = 0;
1508 if (upeek(tcp, PTREGS_OFFSET_SP, &sp) < 0)
1509 return 0;
1510 if (umove(tcp, sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1511 return 0;
1512 tcp->u_arg[0] = 1;
1513 memcpy(tcp->u_arg + 1, &uc.uc_sigmask, sizeof(uc.uc_sigmask));
1514 }
1515 else {
1516 sigset_t sigm;
1517
1518 memcpy(&sigm, tcp->u_arg + 1, sizeof (sigm));
1519 tcp->u_rval = tcp->u_error = 0;
1520 if (tcp->u_arg[0] == 0)
1521 return 0;
1522 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1523 return RVAL_NONE | RVAL_STR;
1524 }
1525 return 0;
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001526#else
Michal Ludvig0e035502002-09-23 15:41:01 +00001527#warning No sys_sigreturn() for this architecture
1528#warning (no problem, just a reminder :-)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001529 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001530#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001531}
1532
1533int
1534sys_siggetmask(tcp)
1535struct tcb *tcp;
1536{
1537 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001538 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001539 long_to_sigset(tcp->u_rval, &sigm);
1540 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001541 }
1542 return RVAL_HEX | RVAL_STR;
1543}
1544
1545int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001546sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001547{
1548 if (entering(tcp)) {
1549 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001550 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001551 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001552 }
1553 return 0;
1554}
1555
1556#endif /* LINUX */
1557
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001558#if defined(SVR4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001559
1560int
1561sys_sigsuspend(tcp)
1562struct tcb *tcp;
1563{
1564 sigset_t sigset;
1565
1566 if (entering(tcp)) {
1567 if (umove(tcp, tcp->u_arg[0], &sigset) < 0)
1568 tprintf("[?]");
1569 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001570 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001571 }
1572 return 0;
1573}
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001574#ifndef FREEBSD
Roland McGrathd9f816f2004-09-04 03:39:20 +00001575static const struct xlat ucontext_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001576 { UC_SIGMASK, "UC_SIGMASK" },
1577 { UC_STACK, "UC_STACK" },
1578 { UC_CPU, "UC_CPU" },
1579#ifdef UC_FPU
1580 { UC_FPU, "UC_FPU" },
1581#endif
1582#ifdef UC_INTR
1583 { UC_INTR, "UC_INTR" },
1584#endif
1585 { 0, NULL },
1586};
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001587#endif /* !FREEBSD */
1588#endif /* SVR4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001589
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001590#if defined SVR4 || defined LINUX || defined FREEBSD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001591#if defined LINUX && !defined SS_ONSTACK
1592#define SS_ONSTACK 1
1593#define SS_DISABLE 2
1594#if __GLIBC_MINOR__ == 0
1595typedef struct
1596{
1597 __ptr_t ss_sp;
1598 int ss_flags;
1599 size_t ss_size;
1600} stack_t;
1601#endif
1602#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001603#ifdef FREEBSD
1604#define stack_t struct sigaltstack
1605#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001606
Roland McGrathd9f816f2004-09-04 03:39:20 +00001607static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001608 { SS_ONSTACK, "SS_ONSTACK" },
1609 { SS_DISABLE, "SS_DISABLE" },
1610 { 0, NULL },
1611};
1612#endif
1613
1614#ifdef SVR4
1615static void
1616printcontext(tcp, ucp)
1617struct tcb *tcp;
1618ucontext_t *ucp;
1619{
1620 tprintf("{");
1621 if (!abbrev(tcp)) {
1622 tprintf("uc_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001623 printflags(ucontext_flags, ucp->uc_flags, "UC_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001624 tprintf(", uc_link=%#lx, ", (unsigned long) ucp->uc_link);
1625 }
1626 tprintf("uc_sigmask=");
John Hughes70c5e7a2001-05-15 15:09:14 +00001627 printsigmask(&ucp->uc_sigmask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001628 if (!abbrev(tcp)) {
1629 tprintf(", uc_stack={ss_sp=%#lx, ss_size=%d, ss_flags=",
1630 (unsigned long) ucp->uc_stack.ss_sp,
1631 ucp->uc_stack.ss_size);
Roland McGrathb2dee132005-06-01 19:02:36 +00001632 printflags(sigaltstack_flags, ucp->uc_stack.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001633 tprintf("}");
1634 }
1635 tprintf(", ...}");
1636}
1637
1638int
1639sys_getcontext(tcp)
1640struct tcb *tcp;
1641{
1642 ucontext_t uc;
1643
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001644 if (exiting(tcp)) {
1645 if (tcp->u_error)
1646 tprintf("%#lx", tcp->u_arg[0]);
1647 else if (!tcp->u_arg[0])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001648 tprintf("NULL");
1649 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
1650 tprintf("{...}");
1651 else
1652 printcontext(tcp, &uc);
1653 }
1654 return 0;
1655}
1656
1657int
1658sys_setcontext(tcp)
1659struct tcb *tcp;
1660{
1661 ucontext_t uc;
1662
1663 if (entering(tcp)) {
1664 if (!tcp->u_arg[0])
1665 tprintf("NULL");
1666 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
1667 tprintf("{...}");
1668 else
1669 printcontext(tcp, &uc);
1670 }
1671 else {
1672 tcp->u_rval = tcp->u_error = 0;
1673 if (tcp->u_arg[0] == 0)
1674 return 0;
1675 return RVAL_NONE;
1676 }
1677 return 0;
1678}
1679
1680#endif /* SVR4 */
1681
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001682#if defined(LINUX) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001683
1684static int
1685print_stack_t(tcp, addr)
1686struct tcb *tcp;
1687unsigned long addr;
1688{
1689 stack_t ss;
1690 if (umove(tcp, addr, &ss) < 0)
1691 return -1;
1692 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
Roland McGrathb2dee132005-06-01 19:02:36 +00001693 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001694 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1695 return 0;
1696}
1697
1698int
1699sys_sigaltstack(tcp)
1700 struct tcb *tcp;
1701{
1702 if (entering(tcp)) {
1703 if (tcp->u_arg[0] == 0)
1704 tprintf("NULL");
1705 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1706 return -1;
1707 }
1708 else {
1709 tprintf(", ");
1710 if (tcp->u_arg[1] == 0)
1711 tprintf("NULL");
1712 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1713 return -1;
1714 }
1715 return 0;
1716}
1717#endif
1718
1719#ifdef HAVE_SIGACTION
1720
1721int
1722sys_sigprocmask(tcp)
1723struct tcb *tcp;
1724{
1725#ifdef ALPHA
1726 if (entering(tcp)) {
1727 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1728 tprintf(", ");
Nate Sammons4a121431999-04-06 01:19:39 +00001729 printsigmask(tcp->u_arg[1], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001730 }
1731 else if (!syserror(tcp)) {
Nate Sammons4a121431999-04-06 01:19:39 +00001732 tcp->auxstr = sprintsigmask("old mask ", tcp->u_rval, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001733 return RVAL_HEX | RVAL_STR;
1734 }
1735#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001736 if (entering(tcp)) {
1737#ifdef SVR4
1738 if (tcp->u_arg[0] == 0)
1739 tprintf("0");
1740 else
1741#endif /* SVR4 */
1742 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1743 tprintf(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001744 print_sigset(tcp, tcp->u_arg[1], 0);
1745 tprintf(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001746 }
1747 else {
1748 if (!tcp->u_arg[2])
1749 tprintf("NULL");
1750 else if (syserror(tcp))
1751 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001752 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001753 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001754 }
1755#endif /* !ALPHA */
1756 return 0;
1757}
1758
1759#endif /* HAVE_SIGACTION */
1760
1761int
1762sys_kill(tcp)
1763struct tcb *tcp;
1764{
1765 if (entering(tcp)) {
Roland McGrath4d7ed022008-05-20 01:43:09 +00001766 /*
1767 * Sign-extend a 32-bit value when that's what it is.
1768 */
1769 long pid = tcp->u_arg[0];
1770 if (personality_wordsize[current_personality] < sizeof pid)
1771 pid = (long) (int) pid;
1772 tprintf("%ld, %s", pid, signame(tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001773 }
1774 return 0;
1775}
1776
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001777#if defined(FREEBSD) || defined(SUNOS4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001778int
1779sys_killpg(tcp)
1780struct tcb *tcp;
1781{
1782 return sys_kill(tcp);
1783}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001784#endif /* FREEBSD || SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001785
Roland McGrath8ffc3522003-07-09 09:47:49 +00001786#ifdef LINUX
1787int
1788sys_tgkill(tcp)
1789 struct tcb *tcp;
1790{
1791 if (entering(tcp)) {
1792 tprintf("%ld, %ld, %s",
1793 tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2]));
1794 }
1795 return 0;
1796}
1797#endif
1798
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001799int
1800sys_sigpending(tcp)
1801struct tcb *tcp;
1802{
1803 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001804
1805 if (exiting(tcp)) {
1806 if (syserror(tcp))
1807 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001808 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001809 tprintf("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001810 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001811 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001812 }
1813 return 0;
1814}
1815
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001816#ifdef SVR4
John Hughes42162082001-10-18 14:48:26 +00001817int sys_sigwait(tcp)
1818struct tcb *tcp;
1819{
1820 sigset_t sigset;
1821
1822 if (entering(tcp)) {
1823 if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
1824 tprintf("[?]");
1825 else
1826 printsigmask(&sigset, 0);
1827 }
1828 else {
1829 if (!syserror(tcp)) {
1830 tcp->auxstr = signalent[tcp->u_rval];
1831 return RVAL_DECIMAL | RVAL_STR;
1832 }
1833 }
1834 return 0;
1835}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001836#endif /* SVR4 */
John Hughes42162082001-10-18 14:48:26 +00001837
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001838#ifdef LINUX
1839
1840 int
1841sys_rt_sigprocmask(tcp)
1842 struct tcb *tcp;
1843{
1844 sigset_t sigset;
1845
Nate Sammons4a121431999-04-06 01:19:39 +00001846 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001847 if (entering(tcp)) {
1848 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1849 tprintf(", ");
1850 if (!tcp->u_arg[1])
1851 tprintf("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001852 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001853 tprintf("%#lx, ", tcp->u_arg[1]);
1854 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001855 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001856 tprintf(", ");
1857 }
1858 }
1859 else {
1860 if (!tcp->u_arg[2])
1861
1862 tprintf("NULL");
1863 else if (syserror(tcp))
1864 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001865 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001866 tprintf("[?]");
1867 else
Nate Sammons4a121431999-04-06 01:19:39 +00001868 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001869 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001870 }
1871 return 0;
1872}
1873
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001874
1875/* Structure describing the action to be taken when a signal arrives. */
1876struct new_sigaction
1877{
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001878 __sighandler_t __sa_handler;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001879 unsigned long sa_flags;
1880 void (*sa_restorer) (void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001881 /* Kernel treats sa_mask as an array of longs. */
1882 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1883};
1884/* Same for i386-on-x86_64 and similar cases */
1885struct new_sigaction32
1886{
1887 uint32_t __sa_handler;
1888 uint32_t sa_flags;
1889 uint32_t sa_restorer;
1890 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001891};
1892
1893
Roland McGrath5f206812008-08-20 01:59:40 +00001894int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001895sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001896{
1897 struct new_sigaction sa;
1898 sigset_t sigset;
1899 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001900 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001901
1902 if (entering(tcp)) {
1903 printsignal(tcp->u_arg[0]);
1904 tprintf(", ");
1905 addr = tcp->u_arg[1];
1906 } else
1907 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001908
1909 if (addr == 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001910 tprintf("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001911 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001912 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001913 if (!verbose(tcp)) {
1914 tprintf("%#lx", addr);
1915 goto after_sa;
1916 }
1917#if SUPPORTED_PERSONALITIES > 1
1918 if (personality_wordsize[current_personality] != sizeof(sa.sa_flags)
1919 && personality_wordsize[current_personality] == 4
1920 ) {
1921 struct new_sigaction32 sa32;
1922 r = umove(tcp, addr, &sa32);
1923 if (r >= 0) {
1924 memset(&sa, 0, sizeof(sa));
1925 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1926 sa.sa_flags = sa32.sa_flags;
1927 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1928 /* Kernel treats sa_mask as an array of longs.
1929 * For 32-bit process, "long" is uint32_t, thus, for example,
1930 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1931 * But for (64-bit) kernel, 32th bit in sa_mask is
1932 * 32th bit in 0th (64-bit) long!
1933 * For little-endian, it's the same.
1934 * For big-endian, we swap 32-bit words.
1935 */
1936 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1937 }
1938 } else
1939#endif
1940 {
1941 r = umove(tcp, addr, &sa);
1942 }
1943 if (r < 0) {
1944 tprintf("{...}");
1945 goto after_sa;
1946 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001947 /* Architectures using function pointers, like
1948 * hppa, may need to manipulate the function pointer
1949 * to compute the result of a comparison. However,
1950 * the SA_HANDLER function pointer exists only in
1951 * the address space of the traced process, and can't
1952 * be manipulated by strace. In order to prevent the
1953 * compiler from generating code to manipulate
1954 * SA_HANDLER we cast the function pointers to long. */
1955 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001956 tprintf("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001957 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001958 tprintf("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001959 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001960 tprintf("{SIG_IGN, ");
1961 else
1962 tprintf("{%#lx, ", (long) sa.__sa_handler);
1963 /* Questionable code below.
1964 * Kernel won't handle sys_rt_sigaction
1965 * with wrong sigset size (just returns EINVAL)
1966 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1967 * and we always use smaller memcpy. */
1968 sigemptyset(&sigset);
1969#ifdef LINUXSPARC
1970 if (tcp->u_arg[4] <= sizeof(sigset))
1971 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1972#else
1973 if (tcp->u_arg[3] <= sizeof(sigset))
1974 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1975#endif
1976 else
1977 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1978 printsigmask(&sigset, 1);
1979 tprintf(", ");
1980 printflags(sigact_flags, sa.sa_flags, "SA_???");
1981#ifdef SA_RESTORER
1982 if (sa.sa_flags & SA_RESTORER)
1983 tprintf(", %p", sa.sa_restorer);
1984#endif
1985 tprintf("}");
1986
1987 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001988 if (entering(tcp))
1989 tprintf(", ");
1990 else
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001991#ifdef LINUXSPARC
1992 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1993#elif defined(ALPHA)
1994 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1995#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001996 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001997#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001998 return 0;
1999}
2000
Denys Vlasenko1d632462009-04-14 12:51:00 +00002001int
2002sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002003{
2004 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002005
2006 if (exiting(tcp)) {
2007 if (syserror(tcp))
2008 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00002009 else if (copy_sigset_len(tcp, tcp->u_arg[0],
2010 &sigset, tcp->u_arg[1]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002011 tprintf("[?]");
2012 else
Wichert Akkerman46956571999-11-26 10:12:59 +00002013 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002014 }
2015 return 0;
2016}
Denys Vlasenko1d632462009-04-14 12:51:00 +00002017
2018int
2019sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002020{
2021 if (entering(tcp)) {
2022 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00002023 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
2024 tprintf("[?]");
2025 else
2026 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002027 }
2028 return 0;
2029}
Denys Vlasenko1d632462009-04-14 12:51:00 +00002030
2031int
2032sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002033{
2034 if (entering(tcp)) {
2035 siginfo_t si;
2036 tprintf("%lu, ", tcp->u_arg[0]);
2037 printsignal(tcp->u_arg[1]);
2038 tprintf(", ");
2039 if (umove(tcp, tcp->u_arg[2], &si) < 0)
2040 tprintf("%#lx", tcp->u_arg[2]);
2041 else
Denys Vlasenkof535b542009-01-13 18:30:55 +00002042 printsiginfo(&si, verbose(tcp));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002043 }
2044 return 0;
2045}
2046
Denys Vlasenko1d632462009-04-14 12:51:00 +00002047int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002048{
2049 if (entering(tcp)) {
2050 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002051
Roland McGratha39c5a12002-12-17 05:10:37 +00002052 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00002053 &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002054 tprintf("[?]");
2055 else
Wichert Akkerman46956571999-11-26 10:12:59 +00002056 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002057 tprintf(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002058 /* This is the only "return" parameter, */
2059 if (tcp->u_arg[1] != 0)
2060 return 0;
2061 /* ... if it's NULL, can decode all on entry */
2062 tprintf("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002063 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002064 else if (tcp->u_arg[1] != 0) {
2065 /* syscall exit, and u_arg[1] wasn't NULL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002066 if (syserror(tcp))
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002067 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002068 else {
2069 siginfo_t si;
2070 if (umove(tcp, tcp->u_arg[1], &si) < 0)
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002071 tprintf("%#lx, ", tcp->u_arg[1]);
2072 else {
Denys Vlasenkof535b542009-01-13 18:30:55 +00002073 printsiginfo(&si, verbose(tcp));
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002074 tprintf(", ");
2075 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002076 }
2077 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002078 else {
2079 /* syscall exit, and u_arg[1] was NULL */
2080 return 0;
2081 }
2082 print_timespec(tcp, tcp->u_arg[2]);
2083 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002084 return 0;
2085};
2086
Roland McGrath79dcd7a2006-01-12 22:34:50 +00002087int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002088sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00002089{
2090 if (entering(tcp))
2091 tprintf("<... resuming interrupted call ...>");
2092 return 0;
2093}
2094
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002095static int
2096do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00002097{
2098 if (entering(tcp)) {
2099 tprintf("%ld, ", tcp->u_arg[0]);
2100 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00002101 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002102 if (flags_arg >= 0) {
2103 tprintf(", ");
2104 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
2105 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00002106 }
2107 return 0;
2108}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002109
2110int
2111sys_signalfd(struct tcb *tcp)
2112{
2113 return do_signalfd(tcp, -1);
2114}
2115
2116int
2117sys_signalfd4(struct tcb *tcp)
2118{
2119 return do_signalfd(tcp, 3);
2120}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002121#endif /* LINUX */