blob: 1ccad402b096ef82c2f4822e32e01249cb666d74 [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;
Andreas Schwabedb39342010-02-23 00:18:51 +01001332 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +02001333#ifdef POWERPC64
1334 if (current_personality == 0)
1335 esp += 128;
1336 else
1337 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +01001338#else
1339 esp += 64;
1340#endif
Roland McGrath0f87c492003-06-03 23:29:04 +00001341 if (umove(tcp, esp, &sc) < 0)
1342 return 0;
1343 tcp->u_arg[0] = 1;
1344 tcp->u_arg[1] = sc.oldmask;
1345 }
1346 else {
1347 sigset_t sigm;
1348 long_to_sigset(tcp->u_arg[1], &sigm);
1349 tcp->u_rval = tcp->u_error = 0;
1350 if (tcp->u_arg[0] == 0)
1351 return 0;
1352 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1353 return RVAL_NONE | RVAL_STR;
1354 }
1355 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001356#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001357 long usp;
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001358 struct sigcontext sc;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001359
1360 if (entering(tcp)) {
Roland McGrath0f87c492003-06-03 23:29:04 +00001361 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001362 if (upeek(tcp, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001363 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001364 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001365 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001366 tcp->u_arg[0] = 1;
1367 tcp->u_arg[1] = sc.sc_mask;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001368 }
1369 else {
Roland McGrath0f87c492003-06-03 23:29:04 +00001370 sigset_t sigm;
1371 long_to_sigset(tcp->u_arg[1], &sigm);
1372 tcp->u_rval = tcp->u_error = 0;
1373 if (tcp->u_arg[0] == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001374 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001375 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1376 return RVAL_NONE | RVAL_STR;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001377 }
1378 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001379#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001380 long fp;
1381 struct sigcontext_struct sc;
1382
1383 if (entering(tcp)) {
Roland McGrath0f87c492003-06-03 23:29:04 +00001384 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001385 if (upeek(tcp, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001386 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001387 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001388 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001389 tcp->u_arg[0] = 1;
1390 tcp->u_arg[1] = sc.sc_mask;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001391 }
1392 else {
Roland McGrath0f87c492003-06-03 23:29:04 +00001393 sigset_t sigm;
1394 long_to_sigset(tcp->u_arg[1], &sigm);
1395 tcp->u_rval = tcp->u_error = 0;
1396 if (tcp->u_arg[0] == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001397 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001398 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1399 return RVAL_NONE | RVAL_STR;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001400 }
1401 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001402#elif defined (SPARC) || defined (SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001403 long i1;
Mike Frysinger8566c502009-10-12 11:05:14 -04001404 struct pt_regs regs;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001405 m_siginfo_t si;
1406
Roland McGratheb9e2e82009-06-02 16:49:22 -07001407 if(ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1408 perror("sigreturn: PTRACE_GETREGS ");
Roland McGrath0f87c492003-06-03 23:29:04 +00001409 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001410 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001411 if(entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001412 tcp->u_arg[0] = 0;
Mike Frysinger8566c502009-10-12 11:05:14 -04001413 i1 = regs.u_regs[U_REG_O1];
Roland McGratheb9e2e82009-06-02 16:49:22 -07001414 if(umove(tcp, i1, &si) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001415 perror("sigreturn: umove ");
1416 return 0;
1417 }
1418 tcp->u_arg[0] = 1;
1419 tcp->u_arg[1] = si.si_mask;
1420 } else {
1421 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001422 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001423 tcp->u_rval = tcp->u_error = 0;
1424 if(tcp->u_arg[0] == 0)
1425 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +00001426 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001427 return RVAL_NONE | RVAL_STR;
1428 }
1429 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001430#elif defined (LINUX_MIPSN32) || defined (LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +00001431 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
1432 sigreturn. */
1433 long sp;
1434 struct ucontext uc;
1435
1436 if(entering(tcp)) {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001437 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001438 if (upeek(tcp, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001439 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001440 /* There are six words followed by a 128-byte siginfo. */
1441 sp = sp + 6 * 4 + 128;
1442 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001443 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001444 tcp->u_arg[0] = 1;
1445 tcp->u_arg[1] = *(long *) &uc.uc_sigmask;
1446 } else {
1447 sigset_t sigm;
1448 long_to_sigset(tcp->u_arg[1], &sigm);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001449 tcp->u_rval = tcp->u_error = 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001450 if(tcp->u_arg[0] == 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001451 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001452 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1453 return RVAL_NONE | RVAL_STR;
1454 }
1455 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001456#elif defined(MIPS)
Wichert Akkermanf90da011999-10-31 21:15:38 +00001457 long sp;
Roland McGrath576b7842007-11-04 00:00:00 +00001458 struct pt_regs regs;
1459 m_siginfo_t si;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001460
Roland McGrath576b7842007-11-04 00:00:00 +00001461 if(ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1462 perror("sigreturn: PTRACE_GETREGS ");
1463 return 0;
1464 }
Wichert Akkermanf90da011999-10-31 21:15:38 +00001465 if(entering(tcp)) {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001466 tcp->u_arg[0] = 0;
Roland McGrath576b7842007-11-04 00:00:00 +00001467 sp = regs.regs[29];
1468 if (umove(tcp, sp, &si) < 0)
Wichert Akkermanf90da011999-10-31 21:15:38 +00001469 tcp->u_arg[0] = 1;
Roland McGrath576b7842007-11-04 00:00:00 +00001470 tcp->u_arg[1] = si.si_mask;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001471 } else {
Roland McGrath576b7842007-11-04 00:00:00 +00001472 sigset_t sigm;
1473 long_to_sigset(tcp->u_arg[1], &sigm);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001474 tcp->u_rval = tcp->u_error = 0;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001475 if(tcp->u_arg[0] == 0)
Roland McGrath576b7842007-11-04 00:00:00 +00001476 return 0;
1477 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkermanf90da011999-10-31 21:15:38 +00001478 return RVAL_NONE | RVAL_STR;
1479 }
1480 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001481#elif defined(CRISV10) || defined(CRISV32)
1482 struct sigcontext sc;
1483
1484 if (entering(tcp)) {
1485 long regs[PT_MAX+1];
1486
1487 tcp->u_arg[0] = 0;
1488
1489 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
1490 perror("sigreturn: PTRACE_GETREGS");
1491 return 0;
1492 }
1493 if (umove(tcp, regs[PT_USP], &sc) < 0)
1494 return 0;
1495 tcp->u_arg[0] = 1;
1496 tcp->u_arg[1] = sc.oldmask;
1497 } else {
1498 sigset_t sigm;
1499 long_to_sigset(tcp->u_arg[1], &sigm);
1500 tcp->u_rval = tcp->u_error = 0;
1501
1502 if (tcp->u_arg[0] == 0)
1503 return 0;
1504 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1505 return RVAL_NONE | RVAL_STR;
1506 }
1507 return 0;
Chris Metcalfc8c66982009-12-28 10:00:15 -05001508#elif defined(TILE)
1509 struct ucontext uc;
1510 long sp;
1511
1512 /* offset of ucontext in the kernel's sigframe structure */
1513# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo)
1514
1515 if (entering(tcp)) {
1516 tcp->u_arg[0] = 0;
1517 if (upeek(tcp, PTREGS_OFFSET_SP, &sp) < 0)
1518 return 0;
1519 if (umove(tcp, sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1520 return 0;
1521 tcp->u_arg[0] = 1;
1522 memcpy(tcp->u_arg + 1, &uc.uc_sigmask, sizeof(uc.uc_sigmask));
1523 }
1524 else {
1525 sigset_t sigm;
1526
1527 memcpy(&sigm, tcp->u_arg + 1, sizeof (sigm));
1528 tcp->u_rval = tcp->u_error = 0;
1529 if (tcp->u_arg[0] == 0)
1530 return 0;
1531 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1532 return RVAL_NONE | RVAL_STR;
1533 }
1534 return 0;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001535#elif defined(MICROBLAZE)
1536 struct sigcontext sc;
1537
1538 /* TODO: Verify that this is correct... */
1539 if (entering(tcp)) {
1540 long sp;
1541
1542 tcp->u_arg[0] = 0;
1543
1544 /* Read r1, the stack pointer. */
1545 if (upeek(tcp, 1 * 4, &sp) < 0)
1546 return 0;
1547 if (umove(tcp, sp, &sc) < 0)
1548 return 0;
1549 tcp->u_arg[0] = 1;
1550 tcp->u_arg[1] = sc.oldmask;
1551 } else {
1552 sigset_t sigm;
1553 long_to_sigset(tcp->u_arg[1], &sigm);
1554 tcp->u_rval = tcp->u_error = 0;
1555 if (tcp->u_arg[0] == 0)
1556 return 0;
1557 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1558 return RVAL_NONE | RVAL_STR;
1559 }
1560 return 0;
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001561#else
Michal Ludvig0e035502002-09-23 15:41:01 +00001562#warning No sys_sigreturn() for this architecture
1563#warning (no problem, just a reminder :-)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001564 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001565#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001566}
1567
1568int
1569sys_siggetmask(tcp)
1570struct tcb *tcp;
1571{
1572 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001573 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001574 long_to_sigset(tcp->u_rval, &sigm);
1575 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001576 }
1577 return RVAL_HEX | RVAL_STR;
1578}
1579
1580int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001581sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001582{
1583 if (entering(tcp)) {
1584 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001585 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001586 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001587 }
1588 return 0;
1589}
1590
1591#endif /* LINUX */
1592
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001593#if defined(SVR4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001594
1595int
1596sys_sigsuspend(tcp)
1597struct tcb *tcp;
1598{
1599 sigset_t sigset;
1600
1601 if (entering(tcp)) {
1602 if (umove(tcp, tcp->u_arg[0], &sigset) < 0)
1603 tprintf("[?]");
1604 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001605 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001606 }
1607 return 0;
1608}
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001609#ifndef FREEBSD
Roland McGrathd9f816f2004-09-04 03:39:20 +00001610static const struct xlat ucontext_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001611 { UC_SIGMASK, "UC_SIGMASK" },
1612 { UC_STACK, "UC_STACK" },
1613 { UC_CPU, "UC_CPU" },
1614#ifdef UC_FPU
1615 { UC_FPU, "UC_FPU" },
1616#endif
1617#ifdef UC_INTR
1618 { UC_INTR, "UC_INTR" },
1619#endif
1620 { 0, NULL },
1621};
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001622#endif /* !FREEBSD */
1623#endif /* SVR4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001624
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001625#if defined SVR4 || defined LINUX || defined FREEBSD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001626#if defined LINUX && !defined SS_ONSTACK
1627#define SS_ONSTACK 1
1628#define SS_DISABLE 2
1629#if __GLIBC_MINOR__ == 0
1630typedef struct
1631{
1632 __ptr_t ss_sp;
1633 int ss_flags;
1634 size_t ss_size;
1635} stack_t;
1636#endif
1637#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001638#ifdef FREEBSD
1639#define stack_t struct sigaltstack
1640#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001641
Roland McGrathd9f816f2004-09-04 03:39:20 +00001642static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001643 { SS_ONSTACK, "SS_ONSTACK" },
1644 { SS_DISABLE, "SS_DISABLE" },
1645 { 0, NULL },
1646};
1647#endif
1648
1649#ifdef SVR4
1650static void
1651printcontext(tcp, ucp)
1652struct tcb *tcp;
1653ucontext_t *ucp;
1654{
1655 tprintf("{");
1656 if (!abbrev(tcp)) {
1657 tprintf("uc_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001658 printflags(ucontext_flags, ucp->uc_flags, "UC_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001659 tprintf(", uc_link=%#lx, ", (unsigned long) ucp->uc_link);
1660 }
1661 tprintf("uc_sigmask=");
John Hughes70c5e7a2001-05-15 15:09:14 +00001662 printsigmask(&ucp->uc_sigmask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001663 if (!abbrev(tcp)) {
1664 tprintf(", uc_stack={ss_sp=%#lx, ss_size=%d, ss_flags=",
1665 (unsigned long) ucp->uc_stack.ss_sp,
1666 ucp->uc_stack.ss_size);
Roland McGrathb2dee132005-06-01 19:02:36 +00001667 printflags(sigaltstack_flags, ucp->uc_stack.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001668 tprintf("}");
1669 }
1670 tprintf(", ...}");
1671}
1672
1673int
1674sys_getcontext(tcp)
1675struct tcb *tcp;
1676{
1677 ucontext_t uc;
1678
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001679 if (exiting(tcp)) {
1680 if (tcp->u_error)
1681 tprintf("%#lx", tcp->u_arg[0]);
1682 else if (!tcp->u_arg[0])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001683 tprintf("NULL");
1684 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
1685 tprintf("{...}");
1686 else
1687 printcontext(tcp, &uc);
1688 }
1689 return 0;
1690}
1691
1692int
1693sys_setcontext(tcp)
1694struct tcb *tcp;
1695{
1696 ucontext_t uc;
1697
1698 if (entering(tcp)) {
1699 if (!tcp->u_arg[0])
1700 tprintf("NULL");
1701 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
1702 tprintf("{...}");
1703 else
1704 printcontext(tcp, &uc);
1705 }
1706 else {
1707 tcp->u_rval = tcp->u_error = 0;
1708 if (tcp->u_arg[0] == 0)
1709 return 0;
1710 return RVAL_NONE;
1711 }
1712 return 0;
1713}
1714
1715#endif /* SVR4 */
1716
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001717#if defined(LINUX) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001718
1719static int
1720print_stack_t(tcp, addr)
1721struct tcb *tcp;
1722unsigned long addr;
1723{
1724 stack_t ss;
1725 if (umove(tcp, addr, &ss) < 0)
1726 return -1;
1727 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
Roland McGrathb2dee132005-06-01 19:02:36 +00001728 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001729 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1730 return 0;
1731}
1732
1733int
1734sys_sigaltstack(tcp)
1735 struct tcb *tcp;
1736{
1737 if (entering(tcp)) {
1738 if (tcp->u_arg[0] == 0)
1739 tprintf("NULL");
1740 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1741 return -1;
1742 }
1743 else {
1744 tprintf(", ");
1745 if (tcp->u_arg[1] == 0)
1746 tprintf("NULL");
1747 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1748 return -1;
1749 }
1750 return 0;
1751}
1752#endif
1753
1754#ifdef HAVE_SIGACTION
1755
1756int
1757sys_sigprocmask(tcp)
1758struct tcb *tcp;
1759{
1760#ifdef ALPHA
1761 if (entering(tcp)) {
1762 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1763 tprintf(", ");
Nate Sammons4a121431999-04-06 01:19:39 +00001764 printsigmask(tcp->u_arg[1], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001765 }
1766 else if (!syserror(tcp)) {
Nate Sammons4a121431999-04-06 01:19:39 +00001767 tcp->auxstr = sprintsigmask("old mask ", tcp->u_rval, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001768 return RVAL_HEX | RVAL_STR;
1769 }
1770#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001771 if (entering(tcp)) {
1772#ifdef SVR4
1773 if (tcp->u_arg[0] == 0)
1774 tprintf("0");
1775 else
1776#endif /* SVR4 */
1777 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1778 tprintf(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001779 print_sigset(tcp, tcp->u_arg[1], 0);
1780 tprintf(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001781 }
1782 else {
1783 if (!tcp->u_arg[2])
1784 tprintf("NULL");
1785 else if (syserror(tcp))
1786 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001787 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001788 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001789 }
1790#endif /* !ALPHA */
1791 return 0;
1792}
1793
1794#endif /* HAVE_SIGACTION */
1795
1796int
1797sys_kill(tcp)
1798struct tcb *tcp;
1799{
1800 if (entering(tcp)) {
Roland McGrath4d7ed022008-05-20 01:43:09 +00001801 /*
1802 * Sign-extend a 32-bit value when that's what it is.
1803 */
1804 long pid = tcp->u_arg[0];
1805 if (personality_wordsize[current_personality] < sizeof pid)
1806 pid = (long) (int) pid;
1807 tprintf("%ld, %s", pid, signame(tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001808 }
1809 return 0;
1810}
1811
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001812#if defined(FREEBSD) || defined(SUNOS4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001813int
1814sys_killpg(tcp)
1815struct tcb *tcp;
1816{
1817 return sys_kill(tcp);
1818}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001819#endif /* FREEBSD || SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001820
Roland McGrath8ffc3522003-07-09 09:47:49 +00001821#ifdef LINUX
1822int
1823sys_tgkill(tcp)
1824 struct tcb *tcp;
1825{
1826 if (entering(tcp)) {
1827 tprintf("%ld, %ld, %s",
1828 tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2]));
1829 }
1830 return 0;
1831}
1832#endif
1833
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001834int
1835sys_sigpending(tcp)
1836struct tcb *tcp;
1837{
1838 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001839
1840 if (exiting(tcp)) {
1841 if (syserror(tcp))
1842 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001843 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001844 tprintf("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001845 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001846 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001847 }
1848 return 0;
1849}
1850
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001851#ifdef SVR4
John Hughes42162082001-10-18 14:48:26 +00001852int sys_sigwait(tcp)
1853struct tcb *tcp;
1854{
1855 sigset_t sigset;
1856
1857 if (entering(tcp)) {
1858 if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
1859 tprintf("[?]");
1860 else
1861 printsigmask(&sigset, 0);
1862 }
1863 else {
1864 if (!syserror(tcp)) {
1865 tcp->auxstr = signalent[tcp->u_rval];
1866 return RVAL_DECIMAL | RVAL_STR;
1867 }
1868 }
1869 return 0;
1870}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001871#endif /* SVR4 */
John Hughes42162082001-10-18 14:48:26 +00001872
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001873#ifdef LINUX
1874
1875 int
1876sys_rt_sigprocmask(tcp)
1877 struct tcb *tcp;
1878{
1879 sigset_t sigset;
1880
Nate Sammons4a121431999-04-06 01:19:39 +00001881 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001882 if (entering(tcp)) {
1883 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1884 tprintf(", ");
1885 if (!tcp->u_arg[1])
1886 tprintf("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001887 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001888 tprintf("%#lx, ", tcp->u_arg[1]);
1889 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001890 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001891 tprintf(", ");
1892 }
1893 }
1894 else {
1895 if (!tcp->u_arg[2])
1896
1897 tprintf("NULL");
1898 else if (syserror(tcp))
1899 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001900 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001901 tprintf("[?]");
1902 else
Nate Sammons4a121431999-04-06 01:19:39 +00001903 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001904 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001905 }
1906 return 0;
1907}
1908
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001909
1910/* Structure describing the action to be taken when a signal arrives. */
1911struct new_sigaction
1912{
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001913 __sighandler_t __sa_handler;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001914 unsigned long sa_flags;
1915 void (*sa_restorer) (void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001916 /* Kernel treats sa_mask as an array of longs. */
1917 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1918};
1919/* Same for i386-on-x86_64 and similar cases */
1920struct new_sigaction32
1921{
1922 uint32_t __sa_handler;
1923 uint32_t sa_flags;
1924 uint32_t sa_restorer;
1925 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001926};
1927
1928
Roland McGrath5f206812008-08-20 01:59:40 +00001929int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001930sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001931{
1932 struct new_sigaction sa;
1933 sigset_t sigset;
1934 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001935 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001936
1937 if (entering(tcp)) {
1938 printsignal(tcp->u_arg[0]);
1939 tprintf(", ");
1940 addr = tcp->u_arg[1];
1941 } else
1942 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001943
1944 if (addr == 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001945 tprintf("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001946 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001947 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001948 if (!verbose(tcp)) {
1949 tprintf("%#lx", addr);
1950 goto after_sa;
1951 }
1952#if SUPPORTED_PERSONALITIES > 1
1953 if (personality_wordsize[current_personality] != sizeof(sa.sa_flags)
1954 && personality_wordsize[current_personality] == 4
1955 ) {
1956 struct new_sigaction32 sa32;
1957 r = umove(tcp, addr, &sa32);
1958 if (r >= 0) {
1959 memset(&sa, 0, sizeof(sa));
1960 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1961 sa.sa_flags = sa32.sa_flags;
1962 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1963 /* Kernel treats sa_mask as an array of longs.
1964 * For 32-bit process, "long" is uint32_t, thus, for example,
1965 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1966 * But for (64-bit) kernel, 32th bit in sa_mask is
1967 * 32th bit in 0th (64-bit) long!
1968 * For little-endian, it's the same.
1969 * For big-endian, we swap 32-bit words.
1970 */
1971 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1972 }
1973 } else
1974#endif
1975 {
1976 r = umove(tcp, addr, &sa);
1977 }
1978 if (r < 0) {
1979 tprintf("{...}");
1980 goto after_sa;
1981 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001982 /* Architectures using function pointers, like
1983 * hppa, may need to manipulate the function pointer
1984 * to compute the result of a comparison. However,
1985 * the SA_HANDLER function pointer exists only in
1986 * the address space of the traced process, and can't
1987 * be manipulated by strace. In order to prevent the
1988 * compiler from generating code to manipulate
1989 * SA_HANDLER we cast the function pointers to long. */
1990 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001991 tprintf("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001992 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001993 tprintf("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001994 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001995 tprintf("{SIG_IGN, ");
1996 else
1997 tprintf("{%#lx, ", (long) sa.__sa_handler);
1998 /* Questionable code below.
1999 * Kernel won't handle sys_rt_sigaction
2000 * with wrong sigset size (just returns EINVAL)
2001 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
2002 * and we always use smaller memcpy. */
2003 sigemptyset(&sigset);
2004#ifdef LINUXSPARC
2005 if (tcp->u_arg[4] <= sizeof(sigset))
2006 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
2007#else
2008 if (tcp->u_arg[3] <= sizeof(sigset))
2009 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
2010#endif
2011 else
2012 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
2013 printsigmask(&sigset, 1);
2014 tprintf(", ");
2015 printflags(sigact_flags, sa.sa_flags, "SA_???");
2016#ifdef SA_RESTORER
2017 if (sa.sa_flags & SA_RESTORER)
2018 tprintf(", %p", sa.sa_restorer);
2019#endif
2020 tprintf("}");
2021
2022 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002023 if (entering(tcp))
2024 tprintf(", ");
2025 else
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00002026#ifdef LINUXSPARC
2027 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
2028#elif defined(ALPHA)
2029 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
2030#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00002031 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00002032#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002033 return 0;
2034}
2035
Denys Vlasenko1d632462009-04-14 12:51:00 +00002036int
2037sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002038{
2039 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002040
2041 if (exiting(tcp)) {
2042 if (syserror(tcp))
2043 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00002044 else if (copy_sigset_len(tcp, tcp->u_arg[0],
2045 &sigset, tcp->u_arg[1]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002046 tprintf("[?]");
2047 else
Wichert Akkerman46956571999-11-26 10:12:59 +00002048 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002049 }
2050 return 0;
2051}
Denys Vlasenko1d632462009-04-14 12:51:00 +00002052
2053int
2054sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002055{
2056 if (entering(tcp)) {
2057 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00002058 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
2059 tprintf("[?]");
2060 else
2061 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002062 }
2063 return 0;
2064}
Denys Vlasenko1d632462009-04-14 12:51:00 +00002065
2066int
2067sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002068{
2069 if (entering(tcp)) {
2070 siginfo_t si;
2071 tprintf("%lu, ", tcp->u_arg[0]);
2072 printsignal(tcp->u_arg[1]);
2073 tprintf(", ");
2074 if (umove(tcp, tcp->u_arg[2], &si) < 0)
2075 tprintf("%#lx", tcp->u_arg[2]);
2076 else
Denys Vlasenkof535b542009-01-13 18:30:55 +00002077 printsiginfo(&si, verbose(tcp));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002078 }
2079 return 0;
2080}
2081
Denys Vlasenko1d632462009-04-14 12:51:00 +00002082int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002083{
2084 if (entering(tcp)) {
2085 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002086
Roland McGratha39c5a12002-12-17 05:10:37 +00002087 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00002088 &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002089 tprintf("[?]");
2090 else
Wichert Akkerman46956571999-11-26 10:12:59 +00002091 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002092 tprintf(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002093 /* This is the only "return" parameter, */
2094 if (tcp->u_arg[1] != 0)
2095 return 0;
2096 /* ... if it's NULL, can decode all on entry */
2097 tprintf("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002098 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002099 else if (tcp->u_arg[1] != 0) {
2100 /* syscall exit, and u_arg[1] wasn't NULL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002101 if (syserror(tcp))
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002102 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002103 else {
2104 siginfo_t si;
2105 if (umove(tcp, tcp->u_arg[1], &si) < 0)
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002106 tprintf("%#lx, ", tcp->u_arg[1]);
2107 else {
Denys Vlasenkof535b542009-01-13 18:30:55 +00002108 printsiginfo(&si, verbose(tcp));
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002109 tprintf(", ");
2110 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002111 }
2112 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002113 else {
2114 /* syscall exit, and u_arg[1] was NULL */
2115 return 0;
2116 }
2117 print_timespec(tcp, tcp->u_arg[2]);
2118 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002119 return 0;
2120};
2121
Roland McGrath79dcd7a2006-01-12 22:34:50 +00002122int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002123sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00002124{
2125 if (entering(tcp))
2126 tprintf("<... resuming interrupted call ...>");
2127 return 0;
2128}
2129
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002130static int
2131do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00002132{
2133 if (entering(tcp)) {
2134 tprintf("%ld, ", tcp->u_arg[0]);
2135 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00002136 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002137 if (flags_arg >= 0) {
2138 tprintf(", ");
2139 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
2140 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00002141 }
2142 return 0;
2143}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002144
2145int
2146sys_signalfd(struct tcb *tcp)
2147{
2148 return do_signalfd(tcp, -1);
2149}
2150
2151int
2152sys_signalfd4(struct tcb *tcp)
2153{
2154 return do_signalfd(tcp, 3);
2155}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002156#endif /* LINUX */