blob: cab13ee487748449b97e35389fdad8dd6ef6b750 [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. Levin30145dd2010-09-06 22:08:24 +0000318 const char *format;
319 char *s;
Roland McGratha39c5a12002-12-17 05:10:37 +0000320 static char outstr[8 * sizeof(sigset_t) * 8];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000321
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000322 strcpy(outstr, str);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000323 s = outstr + strlen(outstr);
324 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000325 maxsigs = nsignals;
326#ifdef __SIGRTMAX
327 if (rt)
328 maxsigs = __SIGRTMAX; /* instead */
329#endif
330 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000331 if (sigismember(mask, i) == 1)
332 nsigs++;
333 }
334 if (nsigs >= nsignals * 2 / 3) {
335 *s++ = '~';
Nate Sammons4a121431999-04-06 01:19:39 +0000336 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000337 switch (sigismember(mask, i)) {
338 case 1:
339 sigdelset(mask, i);
340 break;
341 case 0:
342 sigaddset(mask, i);
343 break;
344 }
345 }
346 }
347 format = "%s";
348 *s++ = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000349 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000350 if (sigismember(mask, i) == 1) {
John Hughesbdf48f52001-03-06 15:08:09 +0000351 /* real-time signals on solaris don't have
352 * signalent entries
353 */
354 if (i < nsignals) {
355 sprintf(s, format, signalent[i] + 3);
356 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000357#ifdef SIGRTMIN
358 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
359 char tsig[40];
360 sprintf(tsig, "RT_%u", i - __SIGRTMIN);
361 sprintf(s, format, tsig);
362 }
363#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000364 else {
365 char tsig[32];
366 sprintf(tsig, "%u", i);
367 sprintf(s, format, tsig);
368 }
369 s += strlen(s);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000370 format = " %s";
371 }
372 }
373 *s++ = ']';
374 *s = '\0';
375 return outstr;
376}
377
378static void
Nate Sammons4a121431999-04-06 01:19:39 +0000379printsigmask(mask, rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000380sigset_t *mask;
Nate Sammons4a121431999-04-06 01:19:39 +0000381int rt;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000382{
Nate Sammons4a121431999-04-06 01:19:39 +0000383 tprintf("%s", sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000384}
385
386void
387printsignal(nr)
388int nr;
389{
Dmitry V. Levin4bcd5ef2009-06-01 10:32:27 +0000390 tprintf("%s", signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000391}
392
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000393void
394print_sigset(struct tcb *tcp, long addr, int rt)
395{
396 sigset_t ss;
397
398 if (!addr)
399 tprintf("NULL");
400 else if (copy_sigset(tcp, addr, &ss) < 0)
401 tprintf("%#lx", addr);
402 else
403 printsigmask(&ss, rt);
404}
405
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000406#ifdef LINUX
407
John Hughes58265892001-10-18 15:13:53 +0000408#ifndef ILL_ILLOPC
409#define ILL_ILLOPC 1 /* illegal opcode */
410#define ILL_ILLOPN 2 /* illegal operand */
411#define ILL_ILLADR 3 /* illegal addressing mode */
412#define ILL_ILLTRP 4 /* illegal trap */
413#define ILL_PRVOPC 5 /* privileged opcode */
414#define ILL_PRVREG 6 /* privileged register */
415#define ILL_COPROC 7 /* coprocessor error */
416#define ILL_BADSTK 8 /* internal stack error */
417#define FPE_INTDIV 1 /* integer divide by zero */
418#define FPE_INTOVF 2 /* integer overflow */
419#define FPE_FLTDIV 3 /* floating point divide by zero */
420#define FPE_FLTOVF 4 /* floating point overflow */
421#define FPE_FLTUND 5 /* floating point underflow */
422#define FPE_FLTRES 6 /* floating point inexact result */
423#define FPE_FLTINV 7 /* floating point invalid operation */
424#define FPE_FLTSUB 8 /* subscript out of range */
425#define SEGV_MAPERR 1 /* address not mapped to object */
426#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
427#define BUS_ADRALN 1 /* invalid address alignment */
428#define BUS_ADRERR 2 /* non-existant physical address */
429#define BUS_OBJERR 3 /* object specific hardware error */
430#define TRAP_BRKPT 1 /* process breakpoint */
431#define TRAP_TRACE 2 /* process trace trap */
432#define CLD_EXITED 1 /* child has exited */
433#define CLD_KILLED 2 /* child was killed */
434#define CLD_DUMPED 3 /* child terminated abnormally */
435#define CLD_TRAPPED 4 /* traced child has trapped */
436#define CLD_STOPPED 5 /* child has stopped */
437#define CLD_CONTINUED 6 /* stopped child has continued */
438#define POLL_IN 1 /* data input available */
439#define POLL_OUT 2 /* output buffers available */
440#define POLL_MSG 3 /* input message available */
441#define POLL_ERR 4 /* i/o error */
442#define POLL_PRI 5 /* high priority input available */
443#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000444#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000445#define SI_USER 0 /* sent by kill, sigsend, raise */
446#define SI_QUEUE -1 /* sent by sigqueue */
447#define SI_TIMER -2 /* sent by timer expiration */
448#define SI_MESGQ -3 /* sent by real time mesq state change */
449#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000450#define SI_SIGIO -5 /* sent by SIGIO */
451#define SI_TKILL -6 /* sent by tkill */
452#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
453
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000454#define SI_FROMUSER(sip) ((sip)->si_code <= 0)
455
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000456#endif /* LINUX */
John Hughes58265892001-10-18 15:13:53 +0000457
458#if __GLIBC_MINOR__ < 1
459/* Type for data associated with a signal. */
460typedef union sigval
461{
462 int sival_int;
463 void *sival_ptr;
464} sigval_t;
465
466# define __SI_MAX_SIZE 128
467# define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 3)
468
469typedef struct siginfo
470{
471 int si_signo; /* Signal number. */
472 int si_errno; /* If non-zero, an errno value associated with
473 this signal, as defined in <errno.h>. */
474 int si_code; /* Signal code. */
475
476 union
477 {
478 int _pad[__SI_PAD_SIZE];
479
480 /* kill(). */
481 struct
482 {
483 __pid_t si_pid; /* Sending process ID. */
484 __uid_t si_uid; /* Real user ID of sending process. */
485 } _kill;
486
487 /* POSIX.1b timers. */
488 struct
489 {
490 unsigned int _timer1;
491 unsigned int _timer2;
492 } _timer;
493
494 /* POSIX.1b signals. */
495 struct
496 {
497 __pid_t si_pid; /* Sending process ID. */
498 __uid_t si_uid; /* Real user ID of sending process. */
499 sigval_t si_sigval; /* Signal value. */
500 } _rt;
501
502 /* SIGCHLD. */
503 struct
504 {
505 __pid_t si_pid; /* Which child. */
506 int si_status; /* Exit value or signal. */
507 __clock_t si_utime;
508 __clock_t si_stime;
509 } _sigchld;
510
511 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
512 struct
513 {
514 void *si_addr; /* Faulting insn/memory ref. */
515 } _sigfault;
516
517 /* SIGPOLL. */
518 struct
519 {
520 int si_band; /* Band event for SIGPOLL. */
521 int si_fd;
522 } _sigpoll;
523 } _sifields;
524} siginfo_t;
525
526#define si_pid _sifields._kill.si_pid
527#define si_uid _sifields._kill.si_uid
528#define si_status _sifields._sigchld.si_status
529#define si_utime _sifields._sigchld.si_utime
530#define si_stime _sifields._sigchld.si_stime
531#define si_value _sifields._rt.si_sigval
532#define si_int _sifields._rt.si_sigval.sival_int
533#define si_ptr _sifields._rt.si_sigval.sival_ptr
534#define si_addr _sifields._sigfault.si_addr
535#define si_band _sifields._sigpoll.si_band
536#define si_fd _sifields._sigpoll.si_fd
537
538#endif
539
540#endif
541
542#if defined (SVR4) || defined (LINUX)
543
Roland McGrathd9f816f2004-09-04 03:39:20 +0000544static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000545#ifdef SI_KERNEL
546 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000547#endif
548#ifdef SI_USER
549 { SI_USER, "SI_USER" },
550#endif
John Hughes58265892001-10-18 15:13:53 +0000551#ifdef SI_QUEUE
552 { SI_QUEUE, "SI_QUEUE" },
553#endif
554#ifdef SI_TIMER
555 { SI_TIMER, "SI_TIMER" },
556#endif
John Hughes58265892001-10-18 15:13:53 +0000557#ifdef SI_MESGQ
558 { SI_MESGQ, "SI_MESGQ" },
559#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000560#ifdef SI_ASYNCIO
561 { SI_ASYNCIO, "SI_ASYNCIO" },
562#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000563#ifdef SI_SIGIO
564 { SI_SIGIO, "SI_SIGIO" },
565#endif
566#ifdef SI_TKILL
567 { SI_TKILL, "SI_TKILL" },
568#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000569#ifdef SI_ASYNCNL
570 { SI_ASYNCNL, "SI_ASYNCNL" },
571#endif
572#ifdef SI_NOINFO
573 { SI_NOINFO, "SI_NOINFO" },
574#endif
575#ifdef SI_LWP
576 { SI_LWP, "SI_LWP" },
577#endif
John Hughes58265892001-10-18 15:13:53 +0000578 { 0, NULL },
579};
580
Roland McGrathd9f816f2004-09-04 03:39:20 +0000581static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000582 { ILL_ILLOPC, "ILL_ILLOPC" },
583 { ILL_ILLOPN, "ILL_ILLOPN" },
584 { ILL_ILLADR, "ILL_ILLADR" },
585 { ILL_ILLTRP, "ILL_ILLTRP" },
586 { ILL_PRVOPC, "ILL_PRVOPC" },
587 { ILL_PRVREG, "ILL_PRVREG" },
588 { ILL_COPROC, "ILL_COPROC" },
589 { ILL_BADSTK, "ILL_BADSTK" },
590 { 0, NULL },
591};
592
Roland McGrathd9f816f2004-09-04 03:39:20 +0000593static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000594 { FPE_INTDIV, "FPE_INTDIV" },
595 { FPE_INTOVF, "FPE_INTOVF" },
596 { FPE_FLTDIV, "FPE_FLTDIV" },
597 { FPE_FLTOVF, "FPE_FLTOVF" },
598 { FPE_FLTUND, "FPE_FLTUND" },
599 { FPE_FLTRES, "FPE_FLTRES" },
600 { FPE_FLTINV, "FPE_FLTINV" },
601 { FPE_FLTSUB, "FPE_FLTSUB" },
602 { 0, NULL },
603};
604
Roland McGrathd9f816f2004-09-04 03:39:20 +0000605static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000606 { TRAP_BRKPT, "TRAP_BRKPT" },
607 { TRAP_TRACE, "TRAP_TRACE" },
608 { 0, NULL },
609};
610
Roland McGrathd9f816f2004-09-04 03:39:20 +0000611static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000612 { CLD_EXITED, "CLD_EXITED" },
613 { CLD_KILLED, "CLD_KILLED" },
614 { CLD_DUMPED, "CLD_DUMPED" },
615 { CLD_TRAPPED, "CLD_TRAPPED" },
616 { CLD_STOPPED, "CLD_STOPPED" },
617 { CLD_CONTINUED,"CLD_CONTINUED" },
618 { 0, NULL },
619};
620
Roland McGrathd9f816f2004-09-04 03:39:20 +0000621static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000622 { POLL_IN, "POLL_IN" },
623 { POLL_OUT, "POLL_OUT" },
624 { POLL_MSG, "POLL_MSG" },
625 { POLL_ERR, "POLL_ERR" },
626 { POLL_PRI, "POLL_PRI" },
627 { POLL_HUP, "POLL_HUP" },
628 { 0, NULL },
629};
630
Roland McGrathd9f816f2004-09-04 03:39:20 +0000631static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000632#ifdef PROF_SIG
633 { PROF_SIG, "PROF_SIG" },
634#endif
635 { 0, NULL },
636};
637
638#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000639static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000640#ifdef EMT_TAGOVF
641 { EMT_TAGOVF, "EMT_TAGOVF" },
642#endif
643 { 0, NULL },
644};
645#endif
646
Roland McGrathd9f816f2004-09-04 03:39:20 +0000647static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000648 { SEGV_MAPERR, "SEGV_MAPERR" },
649 { SEGV_ACCERR, "SEGV_ACCERR" },
650 { 0, NULL },
651};
652
Roland McGrathd9f816f2004-09-04 03:39:20 +0000653static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000654 { BUS_ADRALN, "BUS_ADRALN" },
655 { BUS_ADRERR, "BUS_ADRERR" },
656 { BUS_OBJERR, "BUS_OBJERR" },
657 { 0, NULL },
658};
659
660void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000661printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000662{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000663 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000664
665 if (sip->si_signo == 0) {
666 tprintf ("{}");
667 return;
668 }
669 tprintf("{si_signo=");
670 printsignal(sip->si_signo);
671 code = xlookup(siginfo_codes, sip->si_code);
672 if (!code) {
673 switch (sip->si_signo) {
674 case SIGTRAP:
675 code = xlookup(sigtrap_codes, sip->si_code);
676 break;
677 case SIGCHLD:
678 code = xlookup(sigchld_codes, sip->si_code);
679 break;
680 case SIGPOLL:
681 code = xlookup(sigpoll_codes, sip->si_code);
682 break;
683 case SIGPROF:
684 code = xlookup(sigprof_codes, sip->si_code);
685 break;
686 case SIGILL:
687 code = xlookup(sigill_codes, sip->si_code);
688 break;
689#ifdef SIGEMT
690 case SIGEMT:
691 code = xlookup(sigemt_codes, sip->si_code);
692 break;
693#endif
694 case SIGFPE:
695 code = xlookup(sigfpe_codes, sip->si_code);
696 break;
697 case SIGSEGV:
698 code = xlookup(sigsegv_codes, sip->si_code);
699 break;
700 case SIGBUS:
701 code = xlookup(sigbus_codes, sip->si_code);
702 break;
703 }
704 }
705 if (code)
706 tprintf(", si_code=%s", code);
707 else
708 tprintf(", si_code=%#x", sip->si_code);
709#ifdef SI_NOINFO
710 if (sip->si_code != SI_NOINFO)
711#endif
712 {
713 if (sip->si_errno) {
714 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
715 tprintf(", si_errno=%d", sip->si_errno);
716 else
717 tprintf(", si_errno=%s",
718 errnoent[sip->si_errno]);
719 }
720#ifdef SI_FROMUSER
721 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000722 tprintf(", si_pid=%lu, si_uid=%lu",
723 (unsigned long) sip->si_pid,
724 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000725 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000726#ifdef SI_USER
727 case SI_USER:
728 break;
729#endif
730#ifdef SI_TKILL
731 case SI_TKILL:
732 break;
733#endif
John Hughes58265892001-10-18 15:13:53 +0000734#ifdef SI_TIMER
735 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000736 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000737 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000738#endif
739#ifdef LINUX
740 default:
741 if (!verbose)
742 tprintf(", ...");
743 else
744 tprintf(", si_value={int=%u, ptr=%#lx}",
745 sip->si_int,
746 (unsigned long) sip->si_ptr);
747 break;
748#endif
John Hughes58265892001-10-18 15:13:53 +0000749 }
John Hughes58265892001-10-18 15:13:53 +0000750 }
751 else
752#endif /* SI_FROMUSER */
753 {
754 switch (sip->si_signo) {
755 case SIGCHLD:
756 tprintf(", si_pid=%ld, si_status=",
757 (long) sip->si_pid);
758 if (sip->si_code == CLD_EXITED)
759 tprintf("%d", sip->si_status);
760 else
761 printsignal(sip->si_status);
762#if LINUX
763 if (!verbose)
764 tprintf(", ...");
765 else
766 tprintf(", si_utime=%lu, si_stime=%lu",
767 sip->si_utime,
768 sip->si_stime);
769#endif
770 break;
771 case SIGILL: case SIGFPE:
772 case SIGSEGV: case SIGBUS:
773 tprintf(", si_addr=%#lx",
774 (unsigned long) sip->si_addr);
775 break;
776 case SIGPOLL:
777 switch (sip->si_code) {
778 case POLL_IN: case POLL_OUT: case POLL_MSG:
779 tprintf(", si_band=%ld",
780 (long) sip->si_band);
781 break;
782 }
783 break;
784#ifdef LINUX
785 default:
786 tprintf(", si_pid=%lu, si_uid=%lu, ",
787 (unsigned long) sip->si_pid,
788 (unsigned long) sip->si_uid);
789 if (!verbose)
790 tprintf("...");
791 else {
792 tprintf("si_value={int=%u, ptr=%#lx}",
793 sip->si_int,
794 (unsigned long) sip->si_ptr);
795 }
796#endif
Roland McGratha39c5a12002-12-17 05:10:37 +0000797
John Hughes58265892001-10-18 15:13:53 +0000798 }
799 }
800 }
801 tprintf("}");
802}
803
804#endif /* SVR4 || LINUX */
805
806#ifdef LINUX
807
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000808static void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000809parse_sigset_t(const char *str, sigset_t *set)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000810{
Roland McGrathc38feca2003-10-01 07:50:28 +0000811 const char *p;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000812 unsigned int digit;
813 int i;
814
815 sigemptyset(set);
816
Roland McGrathc38feca2003-10-01 07:50:28 +0000817 p = strchr(str, '\n');
818 if (p == NULL)
819 p = strchr(str, '\0');
820 for (i = 0; p-- > str; i += 4) {
821 if (*p >= '0' && *p <= '9')
822 digit = *p - '0';
823 else if (*p >= 'a' && *p <= 'f')
Roland McGrath92f1d6d2004-08-31 07:03:20 +0000824 digit = *p - 'a' + 10;
Roland McGrathc38feca2003-10-01 07:50:28 +0000825 else if (*p >= 'A' && *p <= 'F')
Roland McGrath92f1d6d2004-08-31 07:03:20 +0000826 digit = *p - 'A' + 10;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000827 else
Roland McGrathc38feca2003-10-01 07:50:28 +0000828 break;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000829 if (digit & 1)
830 sigaddset(set, i + 1);
831 if (digit & 2)
832 sigaddset(set, i + 2);
833 if (digit & 4)
834 sigaddset(set, i + 3);
835 if (digit & 8)
836 sigaddset(set, i + 4);
837 }
838}
839
840#endif
841
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000842/*
843 * Check process TCP for the disposition of signal SIG.
844 * Return 1 if the process would somehow manage to survive signal SIG,
845 * else return 0. This routine will never be called with SIGKILL.
846 */
847int
848sigishandled(tcp, sig)
849struct tcb *tcp;
850int sig;
851{
852#ifdef LINUX
853 int sfd;
854 char sname[32];
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000855 char buf[2048];
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000856 const char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000857 int i;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000858 sigset_t ignored, caught;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000859#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000860#ifdef SVR4
861 /*
862 * Since procfs doesn't interfere with wait I think it is safe
863 * to punt on this question. If not, the information is there.
864 */
865 return 1;
866#else /* !SVR4 */
867 switch (sig) {
868 case SIGCONT:
869 case SIGSTOP:
870 case SIGTSTP:
871 case SIGTTIN:
872 case SIGTTOU:
873 case SIGCHLD:
874 case SIGIO:
875#if defined(SIGURG) && SIGURG != SIGIO
876 case SIGURG:
877#endif
878 case SIGWINCH:
879 /* Gloria Gaynor says ... */
880 return 1;
881 default:
882 break;
883 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000884#endif /* !SVR4 */
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000885#ifdef LINUX
886
887 /* This is incredibly costly but it's worth it. */
888 /* NOTE: LinuxThreads internally uses SIGRTMIN, SIGRTMIN + 1 and
889 SIGRTMIN + 2, so we can't use the obsolete /proc/%d/stat which
890 doesn't handle real-time signals). */
891 sprintf(sname, "/proc/%d/status", tcp->pid);
892 if ((sfd = open(sname, O_RDONLY)) == -1) {
893 perror(sname);
894 return 1;
895 }
896 i = read(sfd, buf, sizeof(buf));
897 buf[i] = '\0';
898 close(sfd);
899 /*
900 * Skip the extraneous fields. We need to skip
901 * command name has any spaces in it. So be it.
902 */
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000903 s = strstr(buf, "SigIgn:\t");
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000904 if (!s)
905 {
906 fprintf(stderr, "/proc/pid/status format error\n");
907 return 1;
908 }
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000909 parse_sigset_t(s + 8, &ignored);
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000910
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000911 s = strstr(buf, "SigCgt:\t");
912 if (!s)
913 {
914 fprintf(stderr, "/proc/pid/status format error\n");
915 return 1;
916 }
917 parse_sigset_t(s + 8, &caught);
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000918
919#ifdef DEBUG
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000920 fprintf(stderr, "sigs: %016qx %016qx (sig=%d)\n",
921 *(long long *) &ignored, *(long long *) &caught, sig);
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000922#endif
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000923 if (sigismember(&ignored, sig) || sigismember(&caught, sig))
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000924 return 1;
925#endif /* LINUX */
926
927#ifdef SUNOS4
928 void (*u_signal)();
929
Denys Vlasenko932fc7d2008-12-16 18:18:40 +0000930 if (upeek(tcp, uoff(u_signal[0]) + sig*sizeof(u_signal),
Wichert Akkermand5c2dae2001-04-12 09:10:24 +0000931 (long *) &u_signal) < 0) {
932 return 0;
933 }
934 if (u_signal != SIG_DFL)
935 return 1;
936#endif /* SUNOS4 */
937
938 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000939}
940
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000941#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000942
943int
944sys_sigvec(tcp)
945struct tcb *tcp;
946{
947 struct sigvec sv;
948 long addr;
949
950 if (entering(tcp)) {
951 printsignal(tcp->u_arg[0]);
952 tprintf(", ");
953 addr = tcp->u_arg[1];
954 } else {
955 addr = tcp->u_arg[2];
956 }
957 if (addr == 0)
958 tprintf("NULL");
959 else if (!verbose(tcp))
960 tprintf("%#lx", addr);
961 else if (umove(tcp, addr, &sv) < 0)
962 tprintf("{...}");
963 else {
964 switch ((int) sv.sv_handler) {
965 case (int) SIG_ERR:
966 tprintf("{SIG_ERR}");
967 break;
968 case (int) SIG_DFL:
969 tprintf("{SIG_DFL}");
970 break;
971 case (int) SIG_IGN:
972 if (tcp->u_arg[0] == SIGTRAP) {
973 tcp->flags |= TCB_SIGTRAPPED;
974 kill(tcp->pid, SIGSTOP);
975 }
976 tprintf("{SIG_IGN}");
977 break;
978 case (int) SIG_HOLD:
979 if (tcp->u_arg[0] == SIGTRAP) {
980 tcp->flags |= TCB_SIGTRAPPED;
981 kill(tcp->pid, SIGSTOP);
982 }
983 tprintf("SIG_HOLD");
984 break;
985 default:
986 if (tcp->u_arg[0] == SIGTRAP) {
987 tcp->flags |= TCB_SIGTRAPPED;
988 kill(tcp->pid, SIGSTOP);
989 }
990 tprintf("{%#lx, ", (unsigned long) sv.sv_handler);
Nate Sammons4a121431999-04-06 01:19:39 +0000991 printsigmask(&sv.sv_mask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000992 tprintf(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000993 printflags(sigvec_flags, sv.sv_flags, "SV_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000994 tprintf("}");
995 }
996 }
997 if (entering(tcp))
998 tprintf(", ");
999 return 0;
1000}
1001
1002int
1003sys_sigpause(tcp)
1004struct tcb *tcp;
1005{
1006 if (entering(tcp)) { /* WTA: UD had a bug here: he forgot the braces */
Nate Sammons4a121431999-04-06 01:19:39 +00001007 sigset_t sigm;
1008 long_to_sigset(tcp->u_arg[0], &sigm);
1009 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001010 }
1011 return 0;
1012}
1013
1014int
1015sys_sigstack(tcp)
1016struct tcb *tcp;
1017{
1018 struct sigstack ss;
1019 long addr;
1020
1021 if (entering(tcp))
1022 addr = tcp->u_arg[0];
1023 else
1024 addr = tcp->u_arg[1];
1025 if (addr == 0)
1026 tprintf("NULL");
1027 else if (umove(tcp, addr, &ss) < 0)
1028 tprintf("%#lx", addr);
1029 else {
1030 tprintf("{ss_sp %#lx ", (unsigned long) ss.ss_sp);
1031 tprintf("ss_onstack %s}", ss.ss_onstack ? "YES" : "NO");
1032 }
1033 if (entering(tcp))
1034 tprintf(", ");
1035 return 0;
1036}
1037
1038int
1039sys_sigcleanup(tcp)
1040struct tcb *tcp;
1041{
1042 return 0;
1043}
1044
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001045#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001046
1047#ifndef SVR4
1048
1049int
1050sys_sigsetmask(tcp)
1051struct tcb *tcp;
1052{
1053 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001054 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001055 long_to_sigset(tcp->u_arg[0], &sigm);
1056 printsigmask(&sigm, 0);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001057#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001058 if ((tcp->u_arg[0] & sigmask(SIGTRAP))) {
1059 /* Mark attempt to block SIGTRAP */
1060 tcp->flags |= TCB_SIGTRAPPED;
1061 /* Send unblockable signal */
1062 kill(tcp->pid, SIGSTOP);
1063 }
Roland McGratha39c5a12002-12-17 05:10:37 +00001064#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001065 }
1066 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001067 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001068 long_to_sigset(tcp->u_rval, &sigm);
1069 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001070
1071 return RVAL_HEX | RVAL_STR;
1072 }
1073 return 0;
1074}
1075
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001076#if defined(SUNOS4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001077int
1078sys_sigblock(tcp)
1079struct tcb *tcp;
1080{
1081 return sys_sigsetmask(tcp);
1082}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001083#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001084
1085#endif /* !SVR4 */
1086
1087#ifdef HAVE_SIGACTION
1088
1089#ifdef LINUX
1090struct old_sigaction {
1091 __sighandler_t __sa_handler;
1092 unsigned long sa_mask;
1093 unsigned long sa_flags;
1094 void (*sa_restorer)(void);
1095};
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001096#define SA_HANDLER __sa_handler
1097#endif /* LINUX */
1098
Roland McGratha39c5a12002-12-17 05:10:37 +00001099#ifndef SA_HANDLER
1100#define SA_HANDLER sa_handler
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001101#endif
1102
1103int
1104sys_sigaction(tcp)
1105struct tcb *tcp;
1106{
1107 long addr;
Nate Sammons4a121431999-04-06 01:19:39 +00001108#ifdef LINUX
John Hughes1e4cb342001-03-06 09:25:46 +00001109 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001110 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001111#else
1112 struct sigaction sa;
1113#endif
1114
1115
1116 if (entering(tcp)) {
1117 printsignal(tcp->u_arg[0]);
1118 tprintf(", ");
1119 addr = tcp->u_arg[1];
1120 } else
1121 addr = tcp->u_arg[2];
1122 if (addr == 0)
1123 tprintf("NULL");
1124 else if (!verbose(tcp))
1125 tprintf("%#lx", addr);
1126 else if (umove(tcp, addr, &sa) < 0)
1127 tprintf("{...}");
1128 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001129 /* Architectures using function pointers, like
1130 * hppa, may need to manipulate the function pointer
1131 * to compute the result of a comparison. However,
1132 * the SA_HANDLER function pointer exists only in
1133 * the address space of the traced process, and can't
1134 * be manipulated by strace. In order to prevent the
1135 * compiler from generating code to manipulate
1136 * SA_HANDLER we cast the function pointers to long. */
1137 if ((long)sa.SA_HANDLER == (long)SIG_ERR)
Roland McGrath5f206812008-08-20 01:59:40 +00001138 tprintf("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001139 else if ((long)sa.SA_HANDLER == (long)SIG_DFL)
Roland McGrath5f206812008-08-20 01:59:40 +00001140 tprintf("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001141 else if ((long)sa.SA_HANDLER == (long)SIG_IGN) {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001142#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001143 if (tcp->u_arg[0] == SIGTRAP) {
1144 tcp->flags |= TCB_SIGTRAPPED;
1145 kill(tcp->pid, SIGSTOP);
1146 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001147#endif /* !USE_PROCFS */
Roland McGrath5f206812008-08-20 01:59:40 +00001148 tprintf("{SIG_IGN, ");
1149 }
1150 else {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001151#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001152 if (tcp->u_arg[0] == SIGTRAP) {
1153 tcp->flags |= TCB_SIGTRAPPED;
1154 kill(tcp->pid, SIGSTOP);
1155 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001156#endif /* !USE_PROCFS */
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001157 tprintf("{%#lx, ", (long) sa.SA_HANDLER);
Wichert Akkerman48214be1999-11-26 09:55:42 +00001158#ifndef LINUX
1159 printsigmask (&sa.sa_mask, 0);
1160#else
Nate Sammons4a121431999-04-06 01:19:39 +00001161 long_to_sigset(sa.sa_mask, &sigset);
1162 printsigmask(&sigset, 0);
Wichert Akkerman48214be1999-11-26 09:55:42 +00001163#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001164 tprintf(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +00001165 printflags(sigact_flags, sa.sa_flags, "SA_???");
Roland McGrath2638cb42002-12-15 23:58:41 +00001166#ifdef SA_RESTORER
1167 if (sa.sa_flags & SA_RESTORER)
1168 tprintf(", %p", sa.sa_restorer);
1169#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001170 tprintf("}");
1171 }
1172 }
1173 if (entering(tcp))
1174 tprintf(", ");
1175#ifdef LINUX
1176 else
1177 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
1178#endif
1179 return 0;
1180}
1181
1182int
1183sys_signal(tcp)
1184struct tcb *tcp;
1185{
1186 if (entering(tcp)) {
1187 printsignal(tcp->u_arg[0]);
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001188 tprintf(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001189 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +00001190 case (long) SIG_ERR:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001191 tprintf("SIG_ERR");
1192 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001193 case (long) SIG_DFL:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001194 tprintf("SIG_DFL");
1195 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001196 case (long) SIG_IGN:
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001197#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001198 if (tcp->u_arg[0] == SIGTRAP) {
1199 tcp->flags |= TCB_SIGTRAPPED;
1200 kill(tcp->pid, SIGSTOP);
1201 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001202#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001203 tprintf("SIG_IGN");
1204 break;
1205 default:
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001206#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001207 if (tcp->u_arg[0] == SIGTRAP) {
1208 tcp->flags |= TCB_SIGTRAPPED;
1209 kill(tcp->pid, SIGSTOP);
1210 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001211#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001212 tprintf("%#lx", tcp->u_arg[1]);
1213 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001214 return 0;
1215 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +00001216 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001217 switch (tcp->u_rval) {
Jan Kratochvil1f942712008-08-06 21:38:52 +00001218 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001219 tcp->auxstr = "SIG_ERR"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001220 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001221 tcp->auxstr = "SIG_DFL"; break;
Jan Kratochvil1f942712008-08-06 21:38:52 +00001222 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001223 tcp->auxstr = "SIG_IGN"; break;
1224 default:
1225 tcp->auxstr = NULL;
1226 }
1227 return RVAL_HEX | RVAL_STR;
1228 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +00001229 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001230}
1231
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001232#ifdef SVR4
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001233int
1234sys_sighold(tcp)
1235struct tcb *tcp;
1236{
1237 if (entering(tcp)) {
1238 printsignal(tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001239 }
1240 return 0;
1241}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001242#endif /* SVR4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001243
1244#endif /* HAVE_SIGACTION */
1245
1246#ifdef LINUX
1247
1248int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001249sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001250{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001251#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +00001252 struct pt_regs regs;
1253 struct sigcontext_struct sc;
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001254
Roland McGrath0f87c492003-06-03 23:29:04 +00001255 if (entering(tcp)) {
1256 tcp->u_arg[0] = 0;
1257
1258 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)&regs) == -1)
1259 return 0;
1260
1261 if (umove(tcp, regs.ARM_sp, &sc) < 0)
1262 return 0;
1263
1264 tcp->u_arg[0] = 1;
1265 tcp->u_arg[1] = sc.oldmask;
1266 } else {
1267 sigset_t sigm;
1268 long_to_sigset(tcp->u_arg[1], &sigm);
1269 tcp->u_rval = tcp->u_error = 0;
1270 if (tcp->u_arg[0] == 0)
1271 return 0;
1272 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1273 return RVAL_NONE | RVAL_STR;
1274 }
1275 return 0;
1276#elif defined(S390) || defined(S390X)
1277 long usp;
1278 struct sigcontext_struct sc;
1279
1280 if (entering(tcp)) {
1281 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001282 if (upeek(tcp,PT_GPR15,&usp)<0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001283 return 0;
1284 if (umove(tcp, usp+__SIGNAL_FRAMESIZE, &sc) < 0)
1285 return 0;
1286 tcp->u_arg[0] = 1;
1287 memcpy(&tcp->u_arg[1],&sc.oldmask[0],sizeof(sigset_t));
1288 } else {
1289 tcp->u_rval = tcp->u_error = 0;
1290 if (tcp->u_arg[0] == 0)
1291 return 0;
1292 tcp->auxstr = sprintsigmask("mask now ",(sigset_t *)&tcp->u_arg[1],0);
1293 return RVAL_NONE | RVAL_STR;
1294 }
1295 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001296#elif defined(I386)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001297 long esp;
1298 struct sigcontext_struct sc;
1299
1300 if (entering(tcp)) {
1301 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001302 if (upeek(tcp, 4*UESP, &esp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001303 return 0;
1304 if (umove(tcp, esp, &sc) < 0)
1305 return 0;
1306 tcp->u_arg[0] = 1;
1307 tcp->u_arg[1] = sc.oldmask;
1308 }
1309 else {
1310 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001311 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001312 tcp->u_rval = tcp->u_error = 0;
1313 if (tcp->u_arg[0] == 0)
1314 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +00001315 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001316 return RVAL_NONE | RVAL_STR;
1317 }
1318 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001319#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001320 struct sigcontext sc;
1321 long sp;
1322
1323 if (entering(tcp)) {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001324 /* offset of sigcontext in the kernel's sigframe structure: */
1325# define SIGFRAME_SC_OFFSET 0x90
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001326 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001327 if (upeek(tcp, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001328 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001329 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001330 return 0;
1331 tcp->u_arg[0] = 1;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001332 memcpy(tcp->u_arg + 1, &sc.sc_mask, sizeof(sc.sc_mask));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001333 }
1334 else {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001335 sigset_t sigm;
1336
1337 memcpy(&sigm, tcp->u_arg + 1, sizeof (sigm));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001338 tcp->u_rval = tcp->u_error = 0;
1339 if (tcp->u_arg[0] == 0)
1340 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001341 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001342 return RVAL_NONE | RVAL_STR;
1343 }
1344 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001345#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +00001346 long esp;
1347 struct sigcontext_struct sc;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001348
Roland McGrath0f87c492003-06-03 23:29:04 +00001349 if (entering(tcp)) {
1350 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001351 if (upeek(tcp, sizeof(unsigned long)*PT_R1, &esp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +00001352 return 0;
Andreas Schwabedb39342010-02-23 00:18:51 +01001353 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +02001354#ifdef POWERPC64
1355 if (current_personality == 0)
1356 esp += 128;
1357 else
1358 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +01001359#else
1360 esp += 64;
1361#endif
Roland McGrath0f87c492003-06-03 23:29:04 +00001362 if (umove(tcp, esp, &sc) < 0)
1363 return 0;
1364 tcp->u_arg[0] = 1;
1365 tcp->u_arg[1] = sc.oldmask;
1366 }
1367 else {
1368 sigset_t sigm;
1369 long_to_sigset(tcp->u_arg[1], &sigm);
1370 tcp->u_rval = tcp->u_error = 0;
1371 if (tcp->u_arg[0] == 0)
1372 return 0;
1373 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1374 return RVAL_NONE | RVAL_STR;
1375 }
1376 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001377#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001378 long usp;
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001379 struct sigcontext sc;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001380
1381 if (entering(tcp)) {
Roland McGrath0f87c492003-06-03 23:29:04 +00001382 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001383 if (upeek(tcp, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001384 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001385 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001386 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001387 tcp->u_arg[0] = 1;
1388 tcp->u_arg[1] = sc.sc_mask;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001389 }
1390 else {
Roland McGrath0f87c492003-06-03 23:29:04 +00001391 sigset_t sigm;
1392 long_to_sigset(tcp->u_arg[1], &sigm);
1393 tcp->u_rval = tcp->u_error = 0;
1394 if (tcp->u_arg[0] == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001395 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001396 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1397 return RVAL_NONE | RVAL_STR;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001398 }
1399 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001400#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001401 long fp;
1402 struct sigcontext_struct sc;
1403
1404 if (entering(tcp)) {
Roland McGrath0f87c492003-06-03 23:29:04 +00001405 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001406 if (upeek(tcp, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001407 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001408 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001409 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001410 tcp->u_arg[0] = 1;
1411 tcp->u_arg[1] = sc.sc_mask;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001412 }
1413 else {
Roland McGrath0f87c492003-06-03 23:29:04 +00001414 sigset_t sigm;
1415 long_to_sigset(tcp->u_arg[1], &sigm);
1416 tcp->u_rval = tcp->u_error = 0;
1417 if (tcp->u_arg[0] == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001418 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +00001419 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1420 return RVAL_NONE | RVAL_STR;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001421 }
1422 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001423#elif defined (SPARC) || defined (SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001424 long i1;
Mike Frysinger8566c502009-10-12 11:05:14 -04001425 struct pt_regs regs;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001426 m_siginfo_t si;
1427
Roland McGratheb9e2e82009-06-02 16:49:22 -07001428 if(ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1429 perror("sigreturn: PTRACE_GETREGS ");
Roland McGrath0f87c492003-06-03 23:29:04 +00001430 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001431 }
Roland McGratheb9e2e82009-06-02 16:49:22 -07001432 if(entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001433 tcp->u_arg[0] = 0;
Mike Frysinger8566c502009-10-12 11:05:14 -04001434 i1 = regs.u_regs[U_REG_O1];
Roland McGratheb9e2e82009-06-02 16:49:22 -07001435 if(umove(tcp, i1, &si) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001436 perror("sigreturn: umove ");
1437 return 0;
1438 }
1439 tcp->u_arg[0] = 1;
1440 tcp->u_arg[1] = si.si_mask;
1441 } else {
1442 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001443 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001444 tcp->u_rval = tcp->u_error = 0;
1445 if(tcp->u_arg[0] == 0)
1446 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +00001447 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001448 return RVAL_NONE | RVAL_STR;
1449 }
1450 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001451#elif defined (LINUX_MIPSN32) || defined (LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +00001452 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
1453 sigreturn. */
1454 long sp;
1455 struct ucontext uc;
1456
1457 if(entering(tcp)) {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001458 tcp->u_arg[0] = 0;
Denys Vlasenko932fc7d2008-12-16 18:18:40 +00001459 if (upeek(tcp, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001460 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001461 /* There are six words followed by a 128-byte siginfo. */
1462 sp = sp + 6 * 4 + 128;
1463 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001464 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001465 tcp->u_arg[0] = 1;
1466 tcp->u_arg[1] = *(long *) &uc.uc_sigmask;
1467 } else {
1468 sigset_t sigm;
1469 long_to_sigset(tcp->u_arg[1], &sigm);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001470 tcp->u_rval = tcp->u_error = 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001471 if(tcp->u_arg[0] == 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001472 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +00001473 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1474 return RVAL_NONE | RVAL_STR;
1475 }
1476 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001477#elif defined(MIPS)
Wichert Akkermanf90da011999-10-31 21:15:38 +00001478 long sp;
Roland McGrath576b7842007-11-04 00:00:00 +00001479 struct pt_regs regs;
1480 m_siginfo_t si;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001481
Roland McGrath576b7842007-11-04 00:00:00 +00001482 if(ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1483 perror("sigreturn: PTRACE_GETREGS ");
1484 return 0;
1485 }
Wichert Akkermanf90da011999-10-31 21:15:38 +00001486 if(entering(tcp)) {
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001487 tcp->u_arg[0] = 0;
Roland McGrath576b7842007-11-04 00:00:00 +00001488 sp = regs.regs[29];
1489 if (umove(tcp, sp, &si) < 0)
Wichert Akkermanf90da011999-10-31 21:15:38 +00001490 tcp->u_arg[0] = 1;
Roland McGrath576b7842007-11-04 00:00:00 +00001491 tcp->u_arg[1] = si.si_mask;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001492 } else {
Roland McGrath576b7842007-11-04 00:00:00 +00001493 sigset_t sigm;
1494 long_to_sigset(tcp->u_arg[1], &sigm);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +00001495 tcp->u_rval = tcp->u_error = 0;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001496 if(tcp->u_arg[0] == 0)
Roland McGrath576b7842007-11-04 00:00:00 +00001497 return 0;
1498 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkermanf90da011999-10-31 21:15:38 +00001499 return RVAL_NONE | RVAL_STR;
1500 }
1501 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001502#elif defined(CRISV10) || defined(CRISV32)
1503 struct sigcontext sc;
1504
1505 if (entering(tcp)) {
1506 long regs[PT_MAX+1];
1507
1508 tcp->u_arg[0] = 0;
1509
1510 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
1511 perror("sigreturn: PTRACE_GETREGS");
1512 return 0;
1513 }
1514 if (umove(tcp, regs[PT_USP], &sc) < 0)
1515 return 0;
1516 tcp->u_arg[0] = 1;
1517 tcp->u_arg[1] = sc.oldmask;
1518 } else {
1519 sigset_t sigm;
1520 long_to_sigset(tcp->u_arg[1], &sigm);
1521 tcp->u_rval = tcp->u_error = 0;
1522
1523 if (tcp->u_arg[0] == 0)
1524 return 0;
1525 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1526 return RVAL_NONE | RVAL_STR;
1527 }
1528 return 0;
Chris Metcalfc8c66982009-12-28 10:00:15 -05001529#elif defined(TILE)
1530 struct ucontext uc;
1531 long sp;
1532
1533 /* offset of ucontext in the kernel's sigframe structure */
1534# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo)
1535
1536 if (entering(tcp)) {
1537 tcp->u_arg[0] = 0;
1538 if (upeek(tcp, PTREGS_OFFSET_SP, &sp) < 0)
1539 return 0;
1540 if (umove(tcp, sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1541 return 0;
1542 tcp->u_arg[0] = 1;
1543 memcpy(tcp->u_arg + 1, &uc.uc_sigmask, sizeof(uc.uc_sigmask));
1544 }
1545 else {
1546 sigset_t sigm;
1547
1548 memcpy(&sigm, tcp->u_arg + 1, sizeof (sigm));
1549 tcp->u_rval = tcp->u_error = 0;
1550 if (tcp->u_arg[0] == 0)
1551 return 0;
1552 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1553 return RVAL_NONE | RVAL_STR;
1554 }
1555 return 0;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001556#elif defined(MICROBLAZE)
1557 struct sigcontext sc;
1558
1559 /* TODO: Verify that this is correct... */
1560 if (entering(tcp)) {
1561 long sp;
1562
1563 tcp->u_arg[0] = 0;
1564
1565 /* Read r1, the stack pointer. */
1566 if (upeek(tcp, 1 * 4, &sp) < 0)
1567 return 0;
1568 if (umove(tcp, sp, &sc) < 0)
1569 return 0;
1570 tcp->u_arg[0] = 1;
1571 tcp->u_arg[1] = sc.oldmask;
1572 } else {
1573 sigset_t sigm;
1574 long_to_sigset(tcp->u_arg[1], &sigm);
1575 tcp->u_rval = tcp->u_error = 0;
1576 if (tcp->u_arg[0] == 0)
1577 return 0;
1578 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
1579 return RVAL_NONE | RVAL_STR;
1580 }
1581 return 0;
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001582#else
Michal Ludvig0e035502002-09-23 15:41:01 +00001583#warning No sys_sigreturn() for this architecture
1584#warning (no problem, just a reminder :-)
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001585 return 0;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001586#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001587}
1588
1589int
1590sys_siggetmask(tcp)
1591struct tcb *tcp;
1592{
1593 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001594 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001595 long_to_sigset(tcp->u_rval, &sigm);
1596 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001597 }
1598 return RVAL_HEX | RVAL_STR;
1599}
1600
1601int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001602sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001603{
1604 if (entering(tcp)) {
1605 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001606 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001607 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001608 }
1609 return 0;
1610}
1611
1612#endif /* LINUX */
1613
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001614#if defined(SVR4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001615
1616int
1617sys_sigsuspend(tcp)
1618struct tcb *tcp;
1619{
1620 sigset_t sigset;
1621
1622 if (entering(tcp)) {
1623 if (umove(tcp, tcp->u_arg[0], &sigset) < 0)
1624 tprintf("[?]");
1625 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001626 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001627 }
1628 return 0;
1629}
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001630#ifndef FREEBSD
Roland McGrathd9f816f2004-09-04 03:39:20 +00001631static const struct xlat ucontext_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001632 { UC_SIGMASK, "UC_SIGMASK" },
1633 { UC_STACK, "UC_STACK" },
1634 { UC_CPU, "UC_CPU" },
1635#ifdef UC_FPU
1636 { UC_FPU, "UC_FPU" },
1637#endif
1638#ifdef UC_INTR
1639 { UC_INTR, "UC_INTR" },
1640#endif
1641 { 0, NULL },
1642};
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001643#endif /* !FREEBSD */
1644#endif /* SVR4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001645
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001646#if defined SVR4 || defined LINUX || defined FREEBSD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001647#if defined LINUX && !defined SS_ONSTACK
1648#define SS_ONSTACK 1
1649#define SS_DISABLE 2
1650#if __GLIBC_MINOR__ == 0
1651typedef struct
1652{
1653 __ptr_t ss_sp;
1654 int ss_flags;
1655 size_t ss_size;
1656} stack_t;
1657#endif
1658#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001659#ifdef FREEBSD
1660#define stack_t struct sigaltstack
1661#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001662
Roland McGrathd9f816f2004-09-04 03:39:20 +00001663static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001664 { SS_ONSTACK, "SS_ONSTACK" },
1665 { SS_DISABLE, "SS_DISABLE" },
1666 { 0, NULL },
1667};
1668#endif
1669
1670#ifdef SVR4
1671static void
1672printcontext(tcp, ucp)
1673struct tcb *tcp;
1674ucontext_t *ucp;
1675{
1676 tprintf("{");
1677 if (!abbrev(tcp)) {
1678 tprintf("uc_flags=");
Roland McGrathb2dee132005-06-01 19:02:36 +00001679 printflags(ucontext_flags, ucp->uc_flags, "UC_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001680 tprintf(", uc_link=%#lx, ", (unsigned long) ucp->uc_link);
1681 }
1682 tprintf("uc_sigmask=");
John Hughes70c5e7a2001-05-15 15:09:14 +00001683 printsigmask(&ucp->uc_sigmask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001684 if (!abbrev(tcp)) {
1685 tprintf(", uc_stack={ss_sp=%#lx, ss_size=%d, ss_flags=",
1686 (unsigned long) ucp->uc_stack.ss_sp,
1687 ucp->uc_stack.ss_size);
Roland McGrathb2dee132005-06-01 19:02:36 +00001688 printflags(sigaltstack_flags, ucp->uc_stack.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001689 tprintf("}");
1690 }
1691 tprintf(", ...}");
1692}
1693
1694int
1695sys_getcontext(tcp)
1696struct tcb *tcp;
1697{
1698 ucontext_t uc;
1699
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001700 if (exiting(tcp)) {
1701 if (tcp->u_error)
1702 tprintf("%#lx", tcp->u_arg[0]);
1703 else if (!tcp->u_arg[0])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001704 tprintf("NULL");
1705 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
1706 tprintf("{...}");
1707 else
1708 printcontext(tcp, &uc);
1709 }
1710 return 0;
1711}
1712
1713int
1714sys_setcontext(tcp)
1715struct tcb *tcp;
1716{
1717 ucontext_t uc;
1718
1719 if (entering(tcp)) {
1720 if (!tcp->u_arg[0])
1721 tprintf("NULL");
1722 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
1723 tprintf("{...}");
1724 else
1725 printcontext(tcp, &uc);
1726 }
1727 else {
1728 tcp->u_rval = tcp->u_error = 0;
1729 if (tcp->u_arg[0] == 0)
1730 return 0;
1731 return RVAL_NONE;
1732 }
1733 return 0;
1734}
1735
1736#endif /* SVR4 */
1737
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001738#if defined(LINUX) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001739
1740static int
1741print_stack_t(tcp, addr)
1742struct tcb *tcp;
1743unsigned long addr;
1744{
1745 stack_t ss;
1746 if (umove(tcp, addr, &ss) < 0)
1747 return -1;
1748 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
Roland McGrathb2dee132005-06-01 19:02:36 +00001749 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001750 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1751 return 0;
1752}
1753
1754int
1755sys_sigaltstack(tcp)
1756 struct tcb *tcp;
1757{
1758 if (entering(tcp)) {
1759 if (tcp->u_arg[0] == 0)
1760 tprintf("NULL");
1761 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1762 return -1;
1763 }
1764 else {
1765 tprintf(", ");
1766 if (tcp->u_arg[1] == 0)
1767 tprintf("NULL");
1768 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1769 return -1;
1770 }
1771 return 0;
1772}
1773#endif
1774
1775#ifdef HAVE_SIGACTION
1776
1777int
1778sys_sigprocmask(tcp)
1779struct tcb *tcp;
1780{
1781#ifdef ALPHA
1782 if (entering(tcp)) {
1783 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1784 tprintf(", ");
Nate Sammons4a121431999-04-06 01:19:39 +00001785 printsigmask(tcp->u_arg[1], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001786 }
1787 else if (!syserror(tcp)) {
Nate Sammons4a121431999-04-06 01:19:39 +00001788 tcp->auxstr = sprintsigmask("old mask ", tcp->u_rval, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001789 return RVAL_HEX | RVAL_STR;
1790 }
1791#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001792 if (entering(tcp)) {
1793#ifdef SVR4
1794 if (tcp->u_arg[0] == 0)
1795 tprintf("0");
1796 else
1797#endif /* SVR4 */
1798 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1799 tprintf(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001800 print_sigset(tcp, tcp->u_arg[1], 0);
1801 tprintf(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001802 }
1803 else {
1804 if (!tcp->u_arg[2])
1805 tprintf("NULL");
1806 else if (syserror(tcp))
1807 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001808 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001809 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001810 }
1811#endif /* !ALPHA */
1812 return 0;
1813}
1814
1815#endif /* HAVE_SIGACTION */
1816
1817int
1818sys_kill(tcp)
1819struct tcb *tcp;
1820{
1821 if (entering(tcp)) {
Roland McGrath4d7ed022008-05-20 01:43:09 +00001822 /*
1823 * Sign-extend a 32-bit value when that's what it is.
1824 */
1825 long pid = tcp->u_arg[0];
1826 if (personality_wordsize[current_personality] < sizeof pid)
1827 pid = (long) (int) pid;
1828 tprintf("%ld, %s", pid, signame(tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001829 }
1830 return 0;
1831}
1832
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001833#if defined(FREEBSD) || defined(SUNOS4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001834int
1835sys_killpg(tcp)
1836struct tcb *tcp;
1837{
1838 return sys_kill(tcp);
1839}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001840#endif /* FREEBSD || SUNOS4 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001841
Roland McGrath8ffc3522003-07-09 09:47:49 +00001842#ifdef LINUX
1843int
1844sys_tgkill(tcp)
1845 struct tcb *tcp;
1846{
1847 if (entering(tcp)) {
1848 tprintf("%ld, %ld, %s",
1849 tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2]));
1850 }
1851 return 0;
1852}
1853#endif
1854
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001855int
1856sys_sigpending(tcp)
1857struct tcb *tcp;
1858{
1859 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001860
1861 if (exiting(tcp)) {
1862 if (syserror(tcp))
1863 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001864 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001865 tprintf("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001866 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001867 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001868 }
1869 return 0;
1870}
1871
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001872#ifdef SVR4
John Hughes42162082001-10-18 14:48:26 +00001873int sys_sigwait(tcp)
1874struct tcb *tcp;
1875{
1876 sigset_t sigset;
1877
1878 if (entering(tcp)) {
1879 if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
1880 tprintf("[?]");
1881 else
1882 printsigmask(&sigset, 0);
1883 }
1884 else {
1885 if (!syserror(tcp)) {
1886 tcp->auxstr = signalent[tcp->u_rval];
1887 return RVAL_DECIMAL | RVAL_STR;
1888 }
1889 }
1890 return 0;
1891}
Dmitry V. Levinb9fe0112006-12-13 16:59:44 +00001892#endif /* SVR4 */
John Hughes42162082001-10-18 14:48:26 +00001893
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001894#ifdef LINUX
1895
1896 int
1897sys_rt_sigprocmask(tcp)
1898 struct tcb *tcp;
1899{
1900 sigset_t sigset;
1901
Nate Sammons4a121431999-04-06 01:19:39 +00001902 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001903 if (entering(tcp)) {
1904 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1905 tprintf(", ");
1906 if (!tcp->u_arg[1])
1907 tprintf("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001908 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001909 tprintf("%#lx, ", tcp->u_arg[1]);
1910 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001911 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001912 tprintf(", ");
1913 }
1914 }
1915 else {
1916 if (!tcp->u_arg[2])
1917
1918 tprintf("NULL");
1919 else if (syserror(tcp))
1920 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001921 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001922 tprintf("[?]");
1923 else
Nate Sammons4a121431999-04-06 01:19:39 +00001924 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001925 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001926 }
1927 return 0;
1928}
1929
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001930
1931/* Structure describing the action to be taken when a signal arrives. */
1932struct new_sigaction
1933{
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001934 __sighandler_t __sa_handler;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001935 unsigned long sa_flags;
1936 void (*sa_restorer) (void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001937 /* Kernel treats sa_mask as an array of longs. */
1938 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1939};
1940/* Same for i386-on-x86_64 and similar cases */
1941struct new_sigaction32
1942{
1943 uint32_t __sa_handler;
1944 uint32_t sa_flags;
1945 uint32_t sa_restorer;
1946 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001947};
1948
1949
Roland McGrath5f206812008-08-20 01:59:40 +00001950int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001951sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001952{
1953 struct new_sigaction sa;
1954 sigset_t sigset;
1955 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001956 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001957
1958 if (entering(tcp)) {
1959 printsignal(tcp->u_arg[0]);
1960 tprintf(", ");
1961 addr = tcp->u_arg[1];
1962 } else
1963 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001964
1965 if (addr == 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001966 tprintf("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001967 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001968 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001969 if (!verbose(tcp)) {
1970 tprintf("%#lx", addr);
1971 goto after_sa;
1972 }
1973#if SUPPORTED_PERSONALITIES > 1
1974 if (personality_wordsize[current_personality] != sizeof(sa.sa_flags)
1975 && personality_wordsize[current_personality] == 4
1976 ) {
1977 struct new_sigaction32 sa32;
1978 r = umove(tcp, addr, &sa32);
1979 if (r >= 0) {
1980 memset(&sa, 0, sizeof(sa));
1981 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1982 sa.sa_flags = sa32.sa_flags;
1983 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1984 /* Kernel treats sa_mask as an array of longs.
1985 * For 32-bit process, "long" is uint32_t, thus, for example,
1986 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1987 * But for (64-bit) kernel, 32th bit in sa_mask is
1988 * 32th bit in 0th (64-bit) long!
1989 * For little-endian, it's the same.
1990 * For big-endian, we swap 32-bit words.
1991 */
1992 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1993 }
1994 } else
1995#endif
1996 {
1997 r = umove(tcp, addr, &sa);
1998 }
1999 if (r < 0) {
2000 tprintf("{...}");
2001 goto after_sa;
2002 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00002003 /* Architectures using function pointers, like
2004 * hppa, may need to manipulate the function pointer
2005 * to compute the result of a comparison. However,
2006 * the SA_HANDLER function pointer exists only in
2007 * the address space of the traced process, and can't
2008 * be manipulated by strace. In order to prevent the
2009 * compiler from generating code to manipulate
2010 * SA_HANDLER we cast the function pointers to long. */
2011 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00002012 tprintf("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00002013 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00002014 tprintf("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00002015 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00002016 tprintf("{SIG_IGN, ");
2017 else
2018 tprintf("{%#lx, ", (long) sa.__sa_handler);
2019 /* Questionable code below.
2020 * Kernel won't handle sys_rt_sigaction
2021 * with wrong sigset size (just returns EINVAL)
2022 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
2023 * and we always use smaller memcpy. */
2024 sigemptyset(&sigset);
2025#ifdef LINUXSPARC
2026 if (tcp->u_arg[4] <= sizeof(sigset))
2027 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
2028#else
2029 if (tcp->u_arg[3] <= sizeof(sigset))
2030 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
2031#endif
2032 else
2033 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
2034 printsigmask(&sigset, 1);
2035 tprintf(", ");
2036 printflags(sigact_flags, sa.sa_flags, "SA_???");
2037#ifdef SA_RESTORER
2038 if (sa.sa_flags & SA_RESTORER)
2039 tprintf(", %p", sa.sa_restorer);
2040#endif
2041 tprintf("}");
2042
2043 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002044 if (entering(tcp))
2045 tprintf(", ");
2046 else
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00002047#ifdef LINUXSPARC
2048 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
2049#elif defined(ALPHA)
2050 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
2051#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00002052 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00002053#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002054 return 0;
2055}
2056
Denys Vlasenko1d632462009-04-14 12:51:00 +00002057int
2058sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002059{
2060 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002061
2062 if (exiting(tcp)) {
2063 if (syserror(tcp))
2064 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00002065 else if (copy_sigset_len(tcp, tcp->u_arg[0],
2066 &sigset, tcp->u_arg[1]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002067 tprintf("[?]");
2068 else
Wichert Akkerman46956571999-11-26 10:12:59 +00002069 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002070 }
2071 return 0;
2072}
Denys Vlasenko1d632462009-04-14 12:51:00 +00002073
2074int
2075sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002076{
2077 if (entering(tcp)) {
2078 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00002079 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
2080 tprintf("[?]");
2081 else
2082 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002083 }
2084 return 0;
2085}
Denys Vlasenko1d632462009-04-14 12:51:00 +00002086
2087int
2088sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002089{
2090 if (entering(tcp)) {
2091 siginfo_t si;
2092 tprintf("%lu, ", tcp->u_arg[0]);
2093 printsignal(tcp->u_arg[1]);
2094 tprintf(", ");
2095 if (umove(tcp, tcp->u_arg[2], &si) < 0)
2096 tprintf("%#lx", tcp->u_arg[2]);
2097 else
Denys Vlasenkof535b542009-01-13 18:30:55 +00002098 printsiginfo(&si, verbose(tcp));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002099 }
2100 return 0;
2101}
2102
Denys Vlasenko1d632462009-04-14 12:51:00 +00002103int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002104{
2105 if (entering(tcp)) {
2106 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002107
Roland McGratha39c5a12002-12-17 05:10:37 +00002108 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00002109 &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002110 tprintf("[?]");
2111 else
Wichert Akkerman46956571999-11-26 10:12:59 +00002112 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002113 tprintf(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002114 /* This is the only "return" parameter, */
2115 if (tcp->u_arg[1] != 0)
2116 return 0;
2117 /* ... if it's NULL, can decode all on entry */
2118 tprintf("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002119 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002120 else if (tcp->u_arg[1] != 0) {
2121 /* syscall exit, and u_arg[1] wasn't NULL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002122 if (syserror(tcp))
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002123 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002124 else {
2125 siginfo_t si;
2126 if (umove(tcp, tcp->u_arg[1], &si) < 0)
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002127 tprintf("%#lx, ", tcp->u_arg[1]);
2128 else {
Denys Vlasenkof535b542009-01-13 18:30:55 +00002129 printsiginfo(&si, verbose(tcp));
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002130 tprintf(", ");
2131 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002132 }
2133 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00002134 else {
2135 /* syscall exit, and u_arg[1] was NULL */
2136 return 0;
2137 }
2138 print_timespec(tcp, tcp->u_arg[2]);
2139 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002140 return 0;
2141};
2142
Roland McGrath79dcd7a2006-01-12 22:34:50 +00002143int
Denys Vlasenko1d632462009-04-14 12:51:00 +00002144sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00002145{
2146 if (entering(tcp))
2147 tprintf("<... resuming interrupted call ...>");
2148 return 0;
2149}
2150
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002151static int
2152do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00002153{
2154 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03002155 printfd(tcp, tcp->u_arg[0]);
2156 tprintf(", ");
Roland McGrathf46ccd32007-08-02 01:15:59 +00002157 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00002158 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002159 if (flags_arg >= 0) {
2160 tprintf(", ");
2161 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
2162 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00002163 }
2164 return 0;
2165}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00002166
2167int
2168sys_signalfd(struct tcb *tcp)
2169{
2170 return do_signalfd(tcp, -1);
2171}
2172
2173int
2174sys_signalfd4(struct tcb *tcp)
2175{
2176 return do_signalfd(tcp, 3);
2177}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002178#endif /* LINUX */