blob: e433306f9fd7b1ba4c2c68045ddecb2c7a17fb9a [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.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000032 */
33
34#include "defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035#include <sys/user.h>
36#include <fcntl.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000037
Wichert Akkerman36915a11999-07-13 15:45:02 +000038#ifdef HAVE_SYS_REG_H
39# include <sys/reg.h>
Denys Vlasenko84703742012-02-25 02:38:52 +010040# ifndef PTRACE_PEEKUSR
41# define PTRACE_PEEKUSR PTRACE_PEEKUSER
42# endif
43# ifndef PTRACE_POKEUSR
44# define PTRACE_POKEUSR PTRACE_POKEUSER
45# endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000046#elif defined(HAVE_LINUX_PTRACE_H)
Denys Vlasenko84703742012-02-25 02:38:52 +010047# undef PTRACE_SYSCALL
Roland McGrathb0acdfd2004-03-01 21:31:02 +000048# ifdef HAVE_STRUCT_IA64_FPREG
49# define ia64_fpreg XXX_ia64_fpreg
50# endif
51# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
52# define pt_all_user_regs XXX_pt_all_user_regs
53# endif
Denys Vlasenko84703742012-02-25 02:38:52 +010054# include <linux/ptrace.h>
Roland McGrathb0acdfd2004-03-01 21:31:02 +000055# undef ia64_fpreg
56# undef pt_all_user_regs
Wichert Akkerman15dea971999-10-06 13:06:34 +000057#endif
Wichert Akkerman36915a11999-07-13 15:45:02 +000058
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000059#ifdef IA64
60# include <asm/ptrace_offsets.h>
Denys Vlasenko041b3ee2011-08-18 12:48:56 +020061#endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000062
Denys Vlasenko84703742012-02-25 02:38:52 +010063#if defined(SPARC) || defined(SPARC64) || defined(MIPS)
Roland McGrath576b7842007-11-04 00:00:00 +000064typedef struct {
65 struct pt_regs si_regs;
66 int si_mask;
67} m_siginfo_t;
Roland McGrath30ff45e2003-01-30 20:15:23 +000068#elif defined HAVE_ASM_SIGCONTEXT_H
H.J. Lu35be5812012-04-16 13:00:01 +020069# if !defined(IA64) && !defined(X86_64) && !defined(X32)
Denys Vlasenko84703742012-02-25 02:38:52 +010070# include <asm/sigcontext.h>
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010071# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000072#else /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenkob51f3642013-07-16 12:06:25 +020073# if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT
74struct sigcontext {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000075 unsigned long sc_mask;
76 unsigned long sc_usp;
77 unsigned long sc_d0;
78 unsigned long sc_d1;
79 unsigned long sc_a0;
80 unsigned long sc_a1;
81 unsigned short sc_sr;
82 unsigned long sc_pc;
83 unsigned short sc_formatvec;
84};
Denys Vlasenkob51f3642013-07-16 12:06:25 +020085# endif /* M68K */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000086#endif /* !HAVE_ASM_SIGCONTEXT_H */
Denys Vlasenkob51f3642013-07-16 12:06:25 +020087#if defined(I386) || defined(X86_64)
88struct i386_sigcontext_struct {
89 uint16_t gs, __gsh;
90 uint16_t fs, __fsh;
91 uint16_t es, __esh;
92 uint16_t ds, __dsh;
93 uint32_t edi;
94 uint32_t esi;
95 uint32_t ebp;
96 uint32_t esp;
97 uint32_t ebx;
98 uint32_t edx;
99 uint32_t ecx;
100 uint32_t eax;
101 uint32_t trapno;
102 uint32_t err;
103 uint32_t eip;
104 uint16_t cs, __csh;
105 uint32_t eflags;
106 uint32_t esp_at_signal;
107 uint16_t ss, __ssh;
108 uint32_t i387;
109 uint32_t oldmask;
110 uint32_t cr2;
111};
112struct i386_fpstate {
113 uint32_t cw;
114 uint32_t sw;
115 uint32_t tag;
116 uint32_t ipoff;
117 uint32_t cssel;
118 uint32_t dataoff;
119 uint32_t datasel;
120 uint8_t st[8][10]; /* 8*10 bytes: FP regs */
121 uint16_t status;
122 uint16_t magic;
123 uint32_t fxsr_env[6];
124 uint32_t mxcsr;
125 uint32_t reserved;
126 uint8_t stx[8][16]; /* 8*16 bytes: FP regs, each padded to 16 bytes */
127 uint8_t xmm[8][16]; /* 8 XMM regs */
128 uint32_t padding1[44];
129 uint32_t padding2[12]; /* union with struct _fpx_sw_bytes */
130};
131#endif
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200132
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000133#ifndef NSIG
Denys Vlasenko84703742012-02-25 02:38:52 +0100134# warning: NSIG is not defined, using 32
135# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000136#endif
137#ifdef ARM
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200138/* Ugh. Is this really correct? ARM has no RT signals?! */
Denys Vlasenko84703742012-02-25 02:38:52 +0100139# undef NSIG
140# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000141#endif
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200142
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000143#ifdef HAVE_SIGACTION
144
H.J. Lu35be5812012-04-16 13:00:01 +0200145#if defined I386 || defined X86_64 || defined X32
Roland McGrath2638cb42002-12-15 23:58:41 +0000146/* The libc headers do not define this constant since it should only be
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200147 used by the implementation. So we define it here. */
Roland McGrath2638cb42002-12-15 23:58:41 +0000148# ifndef SA_RESTORER
149# define SA_RESTORER 0x04000000
150# endif
151#endif
152
Roland McGrathd9f816f2004-09-04 03:39:20 +0000153static const struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000154#ifdef SA_RESTORER
155 { SA_RESTORER, "SA_RESTORER" },
156#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000157#ifdef SA_STACK
158 { SA_STACK, "SA_STACK" },
159#endif
160#ifdef SA_RESTART
161 { SA_RESTART, "SA_RESTART" },
162#endif
163#ifdef SA_INTERRUPT
164 { SA_INTERRUPT, "SA_INTERRUPT" },
165#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000166#ifdef SA_NODEFER
167 { SA_NODEFER, "SA_NODEFER" },
168#endif
169#if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000170 { SA_NOMASK, "SA_NOMASK" },
171#endif
Roland McGrath4fef51d2008-07-18 01:02:41 +0000172#ifdef SA_RESETHAND
173 { SA_RESETHAND, "SA_RESETHAND" },
174#endif
175#if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000176 { SA_ONESHOT, "SA_ONESHOT" },
177#endif
178#ifdef SA_SIGINFO
179 { SA_SIGINFO, "SA_SIGINFO" },
180#endif
181#ifdef SA_RESETHAND
182 { SA_RESETHAND, "SA_RESETHAND" },
183#endif
184#ifdef SA_ONSTACK
185 { SA_ONSTACK, "SA_ONSTACK" },
186#endif
187#ifdef SA_NODEFER
188 { SA_NODEFER, "SA_NODEFER" },
189#endif
190#ifdef SA_NOCLDSTOP
191 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
192#endif
193#ifdef SA_NOCLDWAIT
194 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
195#endif
196#ifdef _SA_BSDCALL
197 { _SA_BSDCALL, "_SA_BSDCALL" },
198#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500199#ifdef SA_NOPTRACE
200 { SA_NOPTRACE, "SA_NOPTRACE" },
201#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000202 { 0, NULL },
203};
204
Roland McGrathd9f816f2004-09-04 03:39:20 +0000205static const struct xlat sigprocmaskcmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000206 { SIG_BLOCK, "SIG_BLOCK" },
207 { SIG_UNBLOCK, "SIG_UNBLOCK" },
208 { SIG_SETMASK, "SIG_SETMASK" },
209#ifdef SIG_SETMASK32
210 { SIG_SETMASK32,"SIG_SETMASK32" },
211#endif
212 { 0, NULL },
213};
214
215#endif /* HAVE_SIGACTION */
216
Nate Sammonsce780fc1999-03-29 23:23:13 +0000217/* Anonymous realtime signals. */
218/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
219 constant. This is what we want. Otherwise, just use SIGRTMIN. */
220#ifdef SIGRTMIN
221#ifndef __SIGRTMIN
222#define __SIGRTMIN SIGRTMIN
223#define __SIGRTMAX SIGRTMAX /* likewise */
224#endif
225#endif
226
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200227/* Note on the size of sigset_t:
228 *
229 * In glibc, sigset_t is an array with space for 1024 bits (!),
230 * even though all arches supported by Linux have only 64 signals
231 * except MIPS, which has 128. IOW, it is 128 bytes long.
232 *
233 * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
234 * However, some old syscall return only 32 lower bits (one word).
235 * Example: sys_sigpending vs sys_rt_sigpending.
236 *
237 * Be aware of this fact when you try to
238 * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
239 * - sizeof(sigset_t) is much bigger than you think,
240 * it may overflow tcp->u_arg[] array, and it may try to copy more data
241 * than is really available in <something>.
242 * Similarly,
243 * umoven(tcp, addr, sizeof(sigset_t), &sigset)
244 * may be a bad idea: it'll try to read much more data than needed
245 * to fetch a sigset_t.
246 * Use (NSIG / 8) as a size instead.
247 */
248
Roland McGrathee36ce12004-09-04 03:53:10 +0000249const char *
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200250signame(int sig)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000251{
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200252 static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
253
254 if (sig >= 0 && sig < nsignals)
Nate Sammonsce780fc1999-03-29 23:23:13 +0000255 return signalent[sig];
256#ifdef SIGRTMIN
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200257 if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
258 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000259 return buf;
260 }
Denys Vlasenko041b3ee2011-08-18 12:48:56 +0200261#endif
262 sprintf(buf, "%d", sig);
263 return buf;
Nate Sammonsce780fc1999-03-29 23:23:13 +0000264}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000265
Nate Sammons4a121431999-04-06 01:19:39 +0000266static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200267long_to_sigset(long l, sigset_t *s)
Nate Sammons4a121431999-04-06 01:19:39 +0000268{
269 sigemptyset(s);
270 *(long *)s = l;
271}
272
273static int
Denys Vlasenko12014262011-05-30 14:00:14 +0200274copy_sigset_len(struct tcb *tcp, long addr, sigset_t *s, int len)
Nate Sammons4a121431999-04-06 01:19:39 +0000275{
276 if (len > sizeof(*s))
277 len = sizeof(*s);
278 sigemptyset(s);
279 if (umoven(tcp, addr, len, (char *)s) < 0)
280 return -1;
281 return 0;
282}
283
Nate Sammons4a121431999-04-06 01:19:39 +0000284/* Original sigset is unsigned long */
285#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
Nate Sammons4a121431999-04-06 01:19:39 +0000286
Dmitry V. Levinab9008b2007-01-11 22:05:04 +0000287static const char *
288sprintsigmask(const char *str, sigset_t *mask, int rt)
289/* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000290{
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200291 /* Was [8 * sizeof(sigset_t) * 8], but
292 * glibc sigset_t is huge (1024 bits = 128 *bytes*),
293 * and we were ending up with 8k (!) buffer here.
294 *
295 * No Unix system can have sig > 255
296 * (waitpid API won't be able to indicate death from one)
297 * and sig 0 doesn't exist either.
298 * Therefore max possible no of sigs is 255: 1..255
299 */
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100300 static char outstr[8 * (255 * 2 / 3)];
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200301
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000302 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000303 int maxsigs;
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100304 int show_members;
305 char sep;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000306 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000307
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200308 /* Note: nsignals = ARRAY_SIZE(signalent[]),
309 * and that array may not have SIGRTnn.
310 */
Nate Sammons4a121431999-04-06 01:19:39 +0000311 maxsigs = nsignals;
312#ifdef __SIGRTMAX
313 if (rt)
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200314 maxsigs = __SIGRTMAX + 1; /* instead */
Nate Sammons4a121431999-04-06 01:19:39 +0000315#endif
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100316 s = stpcpy(outstr, str);
317 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000318 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000319 if (sigismember(mask, i) == 1)
320 nsigs++;
321 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100322
323 /* 1: show mask members, 0: show those which are NOT in mask */
324 show_members = (nsigs < nsignals * 2 / 3);
325 if (!show_members)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000326 *s++ = '~';
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100327
328 sep = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000329 for (i = 1; i < maxsigs; i++) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100330 if (sigismember(mask, i) == show_members) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100331 *s++ = sep;
John Hughesbdf48f52001-03-06 15:08:09 +0000332 if (i < nsignals) {
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100333 s = stpcpy(s, signalent[i] + 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000334 }
Roland McGrath90b4cb52003-09-23 22:19:32 +0000335#ifdef SIGRTMIN
336 else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200337 s += sprintf(s, "RT_%u", i - __SIGRTMIN);
Roland McGrath90b4cb52003-09-23 22:19:32 +0000338 }
339#endif /* SIGRTMIN */
John Hughesbdf48f52001-03-06 15:08:09 +0000340 else {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200341 s += sprintf(s, "%u", i);
John Hughesbdf48f52001-03-06 15:08:09 +0000342 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100343 sep = ' ';
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000344 }
345 }
Denys Vlasenko4f3df072012-01-29 22:38:35 +0100346 if (sep == '[')
347 *s++ = sep;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000348 *s++ = ']';
349 *s = '\0';
350 return outstr;
351}
352
353static void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200354printsigmask(sigset_t *mask, int rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000355{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200356 tprints(sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000357}
358
359void
Denys Vlasenkoeccc48c2011-06-09 01:28:11 +0200360printsignal(int nr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000361{
Denys Vlasenko5940e652011-09-01 09:55:05 +0200362 tprints(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000363}
364
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000365void
366print_sigset(struct tcb *tcp, long addr, int rt)
367{
368 sigset_t ss;
369
370 if (!addr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200371 tprints("NULL");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +0000372 else if (copy_sigset(tcp, addr, &ss) < 0)
373 tprintf("%#lx", addr);
374 else
375 printsigmask(&ss, rt);
376}
377
John Hughes58265892001-10-18 15:13:53 +0000378#ifndef ILL_ILLOPC
379#define ILL_ILLOPC 1 /* illegal opcode */
380#define ILL_ILLOPN 2 /* illegal operand */
381#define ILL_ILLADR 3 /* illegal addressing mode */
382#define ILL_ILLTRP 4 /* illegal trap */
383#define ILL_PRVOPC 5 /* privileged opcode */
384#define ILL_PRVREG 6 /* privileged register */
385#define ILL_COPROC 7 /* coprocessor error */
386#define ILL_BADSTK 8 /* internal stack error */
387#define FPE_INTDIV 1 /* integer divide by zero */
388#define FPE_INTOVF 2 /* integer overflow */
389#define FPE_FLTDIV 3 /* floating point divide by zero */
390#define FPE_FLTOVF 4 /* floating point overflow */
391#define FPE_FLTUND 5 /* floating point underflow */
392#define FPE_FLTRES 6 /* floating point inexact result */
393#define FPE_FLTINV 7 /* floating point invalid operation */
394#define FPE_FLTSUB 8 /* subscript out of range */
395#define SEGV_MAPERR 1 /* address not mapped to object */
396#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
397#define BUS_ADRALN 1 /* invalid address alignment */
398#define BUS_ADRERR 2 /* non-existant physical address */
399#define BUS_OBJERR 3 /* object specific hardware error */
400#define TRAP_BRKPT 1 /* process breakpoint */
401#define TRAP_TRACE 2 /* process trace trap */
402#define CLD_EXITED 1 /* child has exited */
403#define CLD_KILLED 2 /* child was killed */
404#define CLD_DUMPED 3 /* child terminated abnormally */
405#define CLD_TRAPPED 4 /* traced child has trapped */
406#define CLD_STOPPED 5 /* child has stopped */
407#define CLD_CONTINUED 6 /* stopped child has continued */
408#define POLL_IN 1 /* data input available */
409#define POLL_OUT 2 /* output buffers available */
410#define POLL_MSG 3 /* input message available */
411#define POLL_ERR 4 /* i/o error */
412#define POLL_PRI 5 /* high priority input available */
413#define POLL_HUP 6 /* device disconnected */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000414#define SI_KERNEL 0x80 /* sent by kernel */
John Hughes58265892001-10-18 15:13:53 +0000415#define SI_USER 0 /* sent by kill, sigsend, raise */
416#define SI_QUEUE -1 /* sent by sigqueue */
417#define SI_TIMER -2 /* sent by timer expiration */
418#define SI_MESGQ -3 /* sent by real time mesq state change */
419#define SI_ASYNCIO -4 /* sent by AIO completion */
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000420#define SI_SIGIO -5 /* sent by SIGIO */
421#define SI_TKILL -6 /* sent by tkill */
422#define SI_ASYNCNL -60 /* sent by asynch name lookup completion */
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100423#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000424
Denys Vlasenko2c4fb902012-03-15 17:24:49 +0100425#ifndef SI_FROMUSER
426# define SI_FROMUSER(sip) ((sip)->si_code <= 0)
Denys Vlasenko84703742012-02-25 02:38:52 +0100427#endif
John Hughes58265892001-10-18 15:13:53 +0000428
Roland McGrathd9f816f2004-09-04 03:39:20 +0000429static const struct xlat siginfo_codes[] = {
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000430#ifdef SI_KERNEL
431 { SI_KERNEL, "SI_KERNEL" },
John Hughes58265892001-10-18 15:13:53 +0000432#endif
433#ifdef SI_USER
434 { SI_USER, "SI_USER" },
435#endif
John Hughes58265892001-10-18 15:13:53 +0000436#ifdef SI_QUEUE
437 { SI_QUEUE, "SI_QUEUE" },
438#endif
439#ifdef SI_TIMER
440 { SI_TIMER, "SI_TIMER" },
441#endif
John Hughes58265892001-10-18 15:13:53 +0000442#ifdef SI_MESGQ
443 { SI_MESGQ, "SI_MESGQ" },
444#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000445#ifdef SI_ASYNCIO
446 { SI_ASYNCIO, "SI_ASYNCIO" },
447#endif
Roland McGrath941b7402003-05-23 00:29:02 +0000448#ifdef SI_SIGIO
449 { SI_SIGIO, "SI_SIGIO" },
450#endif
451#ifdef SI_TKILL
452 { SI_TKILL, "SI_TKILL" },
453#endif
Dmitry V. Levin7d4bff12011-03-10 21:41:34 +0000454#ifdef SI_ASYNCNL
455 { SI_ASYNCNL, "SI_ASYNCNL" },
456#endif
457#ifdef SI_NOINFO
458 { SI_NOINFO, "SI_NOINFO" },
459#endif
460#ifdef SI_LWP
461 { SI_LWP, "SI_LWP" },
462#endif
John Hughes58265892001-10-18 15:13:53 +0000463 { 0, NULL },
464};
465
Roland McGrathd9f816f2004-09-04 03:39:20 +0000466static const struct xlat sigill_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000467 { ILL_ILLOPC, "ILL_ILLOPC" },
468 { ILL_ILLOPN, "ILL_ILLOPN" },
469 { ILL_ILLADR, "ILL_ILLADR" },
470 { ILL_ILLTRP, "ILL_ILLTRP" },
471 { ILL_PRVOPC, "ILL_PRVOPC" },
472 { ILL_PRVREG, "ILL_PRVREG" },
473 { ILL_COPROC, "ILL_COPROC" },
474 { ILL_BADSTK, "ILL_BADSTK" },
475 { 0, NULL },
476};
477
Roland McGrathd9f816f2004-09-04 03:39:20 +0000478static const struct xlat sigfpe_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000479 { FPE_INTDIV, "FPE_INTDIV" },
480 { FPE_INTOVF, "FPE_INTOVF" },
481 { FPE_FLTDIV, "FPE_FLTDIV" },
482 { FPE_FLTOVF, "FPE_FLTOVF" },
483 { FPE_FLTUND, "FPE_FLTUND" },
484 { FPE_FLTRES, "FPE_FLTRES" },
485 { FPE_FLTINV, "FPE_FLTINV" },
486 { FPE_FLTSUB, "FPE_FLTSUB" },
487 { 0, NULL },
488};
489
Roland McGrathd9f816f2004-09-04 03:39:20 +0000490static const struct xlat sigtrap_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000491 { TRAP_BRKPT, "TRAP_BRKPT" },
492 { TRAP_TRACE, "TRAP_TRACE" },
493 { 0, NULL },
494};
495
Roland McGrathd9f816f2004-09-04 03:39:20 +0000496static const struct xlat sigchld_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000497 { CLD_EXITED, "CLD_EXITED" },
498 { CLD_KILLED, "CLD_KILLED" },
499 { CLD_DUMPED, "CLD_DUMPED" },
500 { CLD_TRAPPED, "CLD_TRAPPED" },
501 { CLD_STOPPED, "CLD_STOPPED" },
502 { CLD_CONTINUED,"CLD_CONTINUED" },
503 { 0, NULL },
504};
505
Roland McGrathd9f816f2004-09-04 03:39:20 +0000506static const struct xlat sigpoll_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000507 { POLL_IN, "POLL_IN" },
508 { POLL_OUT, "POLL_OUT" },
509 { POLL_MSG, "POLL_MSG" },
510 { POLL_ERR, "POLL_ERR" },
511 { POLL_PRI, "POLL_PRI" },
512 { POLL_HUP, "POLL_HUP" },
513 { 0, NULL },
514};
515
Roland McGrathd9f816f2004-09-04 03:39:20 +0000516static const struct xlat sigprof_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000517#ifdef PROF_SIG
518 { PROF_SIG, "PROF_SIG" },
519#endif
520 { 0, NULL },
521};
522
523#ifdef SIGEMT
Roland McGrathd9f816f2004-09-04 03:39:20 +0000524static const struct xlat sigemt_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000525#ifdef EMT_TAGOVF
526 { EMT_TAGOVF, "EMT_TAGOVF" },
527#endif
528 { 0, NULL },
529};
530#endif
531
Roland McGrathd9f816f2004-09-04 03:39:20 +0000532static const struct xlat sigsegv_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000533 { SEGV_MAPERR, "SEGV_MAPERR" },
534 { SEGV_ACCERR, "SEGV_ACCERR" },
535 { 0, NULL },
536};
537
Roland McGrathd9f816f2004-09-04 03:39:20 +0000538static const struct xlat sigbus_codes[] = {
John Hughes58265892001-10-18 15:13:53 +0000539 { BUS_ADRALN, "BUS_ADRALN" },
540 { BUS_ADRERR, "BUS_ADRERR" },
541 { BUS_OBJERR, "BUS_OBJERR" },
542 { 0, NULL },
543};
544
545void
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000546printsiginfo(siginfo_t *sip, int verbose)
John Hughes58265892001-10-18 15:13:53 +0000547{
Roland McGrathf9c49b22004-10-06 22:11:54 +0000548 const char *code;
John Hughes58265892001-10-18 15:13:53 +0000549
550 if (sip->si_signo == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200551 tprints("{}");
John Hughes58265892001-10-18 15:13:53 +0000552 return;
553 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200554 tprints("{si_signo=");
John Hughes58265892001-10-18 15:13:53 +0000555 printsignal(sip->si_signo);
556 code = xlookup(siginfo_codes, sip->si_code);
557 if (!code) {
558 switch (sip->si_signo) {
559 case SIGTRAP:
560 code = xlookup(sigtrap_codes, sip->si_code);
561 break;
562 case SIGCHLD:
563 code = xlookup(sigchld_codes, sip->si_code);
564 break;
565 case SIGPOLL:
566 code = xlookup(sigpoll_codes, sip->si_code);
567 break;
568 case SIGPROF:
569 code = xlookup(sigprof_codes, sip->si_code);
570 break;
571 case SIGILL:
572 code = xlookup(sigill_codes, sip->si_code);
573 break;
574#ifdef SIGEMT
575 case SIGEMT:
576 code = xlookup(sigemt_codes, sip->si_code);
577 break;
578#endif
579 case SIGFPE:
580 code = xlookup(sigfpe_codes, sip->si_code);
581 break;
582 case SIGSEGV:
583 code = xlookup(sigsegv_codes, sip->si_code);
584 break;
585 case SIGBUS:
586 code = xlookup(sigbus_codes, sip->si_code);
587 break;
588 }
589 }
590 if (code)
591 tprintf(", si_code=%s", code);
592 else
593 tprintf(", si_code=%#x", sip->si_code);
594#ifdef SI_NOINFO
595 if (sip->si_code != SI_NOINFO)
596#endif
597 {
598 if (sip->si_errno) {
599 if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
600 tprintf(", si_errno=%d", sip->si_errno);
601 else
602 tprintf(", si_errno=%s",
603 errnoent[sip->si_errno]);
604 }
605#ifdef SI_FROMUSER
606 if (SI_FROMUSER(sip)) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000607 tprintf(", si_pid=%lu, si_uid=%lu",
608 (unsigned long) sip->si_pid,
609 (unsigned long) sip->si_uid);
John Hughes58265892001-10-18 15:13:53 +0000610 switch (sip->si_code) {
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000611#ifdef SI_USER
612 case SI_USER:
613 break;
614#endif
615#ifdef SI_TKILL
616 case SI_TKILL:
617 break;
618#endif
John Hughes58265892001-10-18 15:13:53 +0000619#ifdef SI_TIMER
620 case SI_TIMER:
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000621 tprintf(", si_value=%d", sip->si_int);
John Hughes58265892001-10-18 15:13:53 +0000622 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000623#endif
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000624 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000625 if (!sip->si_ptr)
626 break;
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000627 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200628 tprints(", ...");
Dmitry V. Levin6d9e8e82011-03-10 22:18:56 +0000629 else
630 tprintf(", si_value={int=%u, ptr=%#lx}",
631 sip->si_int,
632 (unsigned long) sip->si_ptr);
633 break;
John Hughes58265892001-10-18 15:13:53 +0000634 }
John Hughes58265892001-10-18 15:13:53 +0000635 }
636 else
637#endif /* SI_FROMUSER */
638 {
639 switch (sip->si_signo) {
640 case SIGCHLD:
641 tprintf(", si_pid=%ld, si_status=",
642 (long) sip->si_pid);
643 if (sip->si_code == CLD_EXITED)
644 tprintf("%d", sip->si_status);
645 else
646 printsignal(sip->si_status);
John Hughes58265892001-10-18 15:13:53 +0000647 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200648 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000649 else
H.J. Lu2bb45812012-04-15 11:17:13 -0700650 tprintf(", si_utime=%llu, si_stime=%llu",
651 (unsigned long long) sip->si_utime,
652 (unsigned long long) sip->si_stime);
John Hughes58265892001-10-18 15:13:53 +0000653 break;
654 case SIGILL: case SIGFPE:
655 case SIGSEGV: case SIGBUS:
656 tprintf(", si_addr=%#lx",
657 (unsigned long) sip->si_addr);
658 break;
659 case SIGPOLL:
660 switch (sip->si_code) {
661 case POLL_IN: case POLL_OUT: case POLL_MSG:
662 tprintf(", si_band=%ld",
663 (long) sip->si_band);
664 break;
665 }
666 break;
John Hughes58265892001-10-18 15:13:53 +0000667 default:
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000668 if (sip->si_pid || sip->si_uid)
669 tprintf(", si_pid=%lu, si_uid=%lu",
670 (unsigned long) sip->si_pid,
671 (unsigned long) sip->si_uid);
672 if (!sip->si_ptr)
673 break;
John Hughes58265892001-10-18 15:13:53 +0000674 if (!verbose)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200675 tprints(", ...");
John Hughes58265892001-10-18 15:13:53 +0000676 else {
Dmitry V. Levinb41e1c92011-03-10 23:14:47 +0000677 tprintf(", si_value={int=%u, ptr=%#lx}",
John Hughes58265892001-10-18 15:13:53 +0000678 sip->si_int,
679 (unsigned long) sip->si_ptr);
680 }
Roland McGratha39c5a12002-12-17 05:10:37 +0000681
John Hughes58265892001-10-18 15:13:53 +0000682 }
683 }
684 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200685 tprints("}");
John Hughes58265892001-10-18 15:13:53 +0000686}
687
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +0100688void
689printsiginfo_at(struct tcb *tcp, long addr)
690{
691 siginfo_t si;
692 if (!addr) {
693 tprints("NULL");
694 return;
695 }
696 if (syserror(tcp)) {
697 tprintf("%#lx", addr);
698 return;
699 }
700 if (umove(tcp, addr, &si) < 0) {
701 tprints("{???}");
702 return;
703 }
704 printsiginfo(&si, verbose(tcp));
705}
706
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000707int
Denys Vlasenko12014262011-05-30 14:00:14 +0200708sys_sigsetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000709{
710 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000711 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000712 long_to_sigset(tcp->u_arg[0], &sigm);
713 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000714 }
715 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000716 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000717 long_to_sigset(tcp->u_rval, &sigm);
718 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000719
720 return RVAL_HEX | RVAL_STR;
721 }
722 return 0;
723}
724
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000725#ifdef HAVE_SIGACTION
726
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000727struct old_sigaction {
Denys Vlasenko86d94842013-02-08 12:59:13 +0100728 /* sa_handler may be a libc #define, need to use other name: */
729 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000730 unsigned long sa_mask;
731 unsigned long sa_flags;
732 void (*sa_restorer)(void);
733};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000734
735int
Denys Vlasenko12014262011-05-30 14:00:14 +0200736sys_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000737{
738 long addr;
John Hughes1e4cb342001-03-06 09:25:46 +0000739 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000740 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000741
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000742 if (entering(tcp)) {
743 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200744 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000745 addr = tcp->u_arg[1];
746 } else
747 addr = tcp->u_arg[2];
748 if (addr == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200749 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000750 else if (!verbose(tcp))
751 tprintf("%#lx", addr);
752 else if (umove(tcp, addr, &sa) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200753 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000754 else {
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000755 /* Architectures using function pointers, like
756 * hppa, may need to manipulate the function pointer
757 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +0100758 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +0000759 * the address space of the traced process, and can't
760 * be manipulated by strace. In order to prevent the
761 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +0100762 * __sa_handler we cast the function pointers to long. */
763 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200764 tprints("{SIG_ERR, ");
Denys Vlasenko86d94842013-02-08 12:59:13 +0100765 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200766 tprints("{SIG_DFL, ");
Denys Vlasenko86d94842013-02-08 12:59:13 +0100767 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200768 tprints("{SIG_IGN, ");
Denys Vlasenko023b7702012-01-18 16:30:47 +0100769 else
Denys Vlasenko86d94842013-02-08 12:59:13 +0100770 tprintf("{%#lx, ", (long) sa.__sa_handler);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100771 long_to_sigset(sa.sa_mask, &sigset);
772 printsigmask(&sigset, 0);
Denys Vlasenkobbe29b32012-01-18 15:30:56 +0100773 tprints(", ");
774 printflags(sigact_flags, sa.sa_flags, "SA_???");
775#ifdef SA_RESTORER
776 if (sa.sa_flags & SA_RESTORER)
777 tprintf(", %p", sa.sa_restorer);
778#endif
779 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000780 }
781 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200782 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000783 else
784 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000785 return 0;
786}
787
788int
Denys Vlasenko12014262011-05-30 14:00:14 +0200789sys_signal(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000790{
791 if (entering(tcp)) {
792 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200793 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000794 switch (tcp->u_arg[1]) {
Jan Kratochvil1f942712008-08-06 21:38:52 +0000795 case (long) SIG_ERR:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200796 tprints("SIG_ERR");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000797 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000798 case (long) SIG_DFL:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200799 tprints("SIG_DFL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000800 break;
Jan Kratochvil1f942712008-08-06 21:38:52 +0000801 case (long) SIG_IGN:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200802 tprints("SIG_IGN");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000803 break;
804 default:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000805 tprintf("%#lx", tcp->u_arg[1]);
806 }
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000807 return 0;
808 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000809 else if (!syserror(tcp)) {
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000810 switch (tcp->u_rval) {
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100811 case (long) SIG_ERR:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000812 tcp->auxstr = "SIG_ERR"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100813 case (long) SIG_DFL:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000814 tcp->auxstr = "SIG_DFL"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100815 case (long) SIG_IGN:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000816 tcp->auxstr = "SIG_IGN"; break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +0100817 default:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000818 tcp->auxstr = NULL;
819 }
820 return RVAL_HEX | RVAL_STR;
821 }
Dmitry V. Levin21a75342008-09-03 01:22:18 +0000822 return 0;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000823}
824
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000825#endif /* HAVE_SIGACTION */
826
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000827int
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000828sys_sigreturn(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000829{
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000830#if defined(ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000831 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200832 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100833 sigset_t sigm;
Denys Vlasenko401374e2013-02-06 18:24:39 +0100834 if (umove(tcp, arm_regs.ARM_sp, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000835 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100836 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100837 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000838 }
Roland McGrath0f87c492003-06-03 23:29:04 +0000839#elif defined(S390) || defined(S390X)
Roland McGrath0f87c492003-06-03 23:29:04 +0000840 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200841 long usp;
842 struct sigcontext_struct sc;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200843 if (upeek(tcp->pid, PT_GPR15, &usp) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000844 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100845 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
Roland McGrath0f87c492003-06-03 23:29:04 +0000846 return 0;
Andreas Schwaba7920a82012-01-17 17:56:44 +0100847 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000848 }
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200849#elif defined(I386) || defined(X86_64)
850# if defined(X86_64)
851 if (current_personality == 0) /* 64-bit */
852 return 0;
853# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000854 if (entering(tcp)) {
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200855 struct {
856 struct i386_sigcontext_struct sc;
857 struct i386_fpstate fp;
858 uint32_t extramask[1];
859 } signal_stack;
860 /* On i386, sc is followed on stack by struct fpstate
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100861 * and after it an additional u32 extramask[1] which holds
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200862 * upper half of the mask.
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100863 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000864 sigset_t sigm;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200865 if (umove(tcp, *i386_esp_ptr, &signal_stack) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000866 return 0;
Denys Vlasenkob51f3642013-07-16 12:06:25 +0200867 sigemptyset(&sigm);
868 ((uint32_t*)&sigm)[0] = signal_stack.sc.oldmask;
869 ((uint32_t*)&sigm)[1] = signal_stack.extramask[0];
870 tprints(sprintsigmask(") (mask ", &sigm, /*RT sigs too?:*/ 1));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000871 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000872#elif defined(IA64)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000873 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200874 struct sigcontext sc;
875 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100876 sigset_t sigm;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000877 /* offset of sigcontext in the kernel's sigframe structure: */
878# define SIGFRAME_SC_OFFSET 0x90
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200879 if (upeek(tcp->pid, PT_R12, &sp) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000880 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000881 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000882 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +0200883 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100884 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100885 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000886 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000887#elif defined(POWERPC)
Roland McGrath0f87c492003-06-03 23:29:04 +0000888 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200889 long esp;
890 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100891 sigset_t sigm;
Anton Blanchardce6e33b2013-06-26 15:53:33 +0200892
893 esp = ppc_regs.gpr[1];
894
Andreas Schwabedb39342010-02-23 00:18:51 +0100895 /* Skip dummy stack frame. */
Andreas Schwabd69fa492010-07-12 21:39:57 +0200896#ifdef POWERPC64
897 if (current_personality == 0)
898 esp += 128;
899 else
900 esp += 64;
Andreas Schwabedb39342010-02-23 00:18:51 +0100901#else
902 esp += 64;
903#endif
Roland McGrath0f87c492003-06-03 23:29:04 +0000904 if (umove(tcp, esp, &sc) < 0)
905 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100906 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100907 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath0f87c492003-06-03 23:29:04 +0000908 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000909#elif defined(M68K)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000910 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200911 long usp;
912 struct sigcontext sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100913 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200914 if (upeek(tcp->pid, 4*PT_USP, &usp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000915 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000916 if (umove(tcp, usp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000917 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100918 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100919 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000920 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000921#elif defined(ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000922 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200923 long fp;
924 struct sigcontext_struct sc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100925 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200926 if (upeek(tcp->pid, REG_FP, &fp) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000927 return 0;
Roland McGrath0f87c492003-06-03 23:29:04 +0000928 if (umove(tcp, fp, &sc) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000929 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100930 long_to_sigset(sc.sc_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100931 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000932 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100933#elif defined(SPARC) || defined(SPARC64)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200934 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200935 long i1;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200936 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100937 sigset_t sigm;
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +0100938 i1 = sparc_regs.u_regs[U_REG_O1];
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200939 if (umove(tcp, i1, &si) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100940 perror_msg("sigreturn: umove");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000941 return 0;
942 }
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100943 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100944 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000945 }
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100946#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
Roland McGrath542c2c62008-05-20 01:11:56 +0000947 /* This decodes rt_sigreturn. The 64-bit ABIs do not have
948 sigreturn. */
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200949 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200950 long sp;
951 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100952 sigset_t sigm;
Denys Vlasenko752e5a02013-06-28 14:35:47 +0200953 if (upeek(tcp->pid, REG_SP, &sp) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000954 return 0;
Roland McGrath542c2c62008-05-20 01:11:56 +0000955 /* There are six words followed by a 128-byte siginfo. */
956 sp = sp + 6 * 4 + 128;
957 if (umove(tcp, sp, &uc) < 0)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000958 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100959 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100960 tprints(sprintsigmask(") (mask ", &sigm, 0));
Roland McGrath542c2c62008-05-20 01:11:56 +0000961 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000962#elif defined(MIPS)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200963 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200964 long sp;
965 struct pt_regs regs;
966 m_siginfo_t si;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100967 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200968 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100969 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenko56a52982011-06-09 01:36:29 +0200970 return 0;
971 }
Roland McGrath576b7842007-11-04 00:00:00 +0000972 sp = regs.regs[29];
973 if (umove(tcp, sp, &si) < 0)
Denys Vlasenkofacd45b2011-06-09 01:22:10 +0200974 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100975 long_to_sigset(si.si_mask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100976 tprints(sprintsigmask(") (mask ", &sigm, 0));
Wichert Akkermanf90da011999-10-31 21:15:38 +0000977 }
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000978#elif defined(CRISV10) || defined(CRISV32)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000979 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200980 struct sigcontext sc;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000981 long regs[PT_MAX+1];
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100982 sigset_t sigm;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000983 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
Denys Vlasenko905e8e02013-02-26 12:30:09 +0100984 perror_msg("sigreturn: PTRACE_GETREGS");
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000985 return 0;
986 }
987 if (umove(tcp, regs[PT_USP], &sc) < 0)
988 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100989 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +0100990 tprints(sprintsigmask(") (mask ", &sigm, 0));
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000991 }
Chris Metcalfc8c66982009-12-28 10:00:15 -0500992#elif defined(TILE)
Chris Metcalfc8c66982009-12-28 10:00:15 -0500993 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +0200994 struct ucontext uc;
Denys Vlasenkob11322f2012-01-10 16:40:35 +0100995 sigset_t sigm;
Denys Vlasenko56a52982011-06-09 01:36:29 +0200996
997 /* offset of ucontext in the kernel's sigframe structure */
Chris Metcalf5c0796f2013-05-21 20:25:22 -0400998# define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(siginfo_t)
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100999 if (umove(tcp, tile_regs.sp + SIGFRAME_UC_OFFSET, &uc) < 0)
Chris Metcalfc8c66982009-12-28 10:00:15 -05001000 return 0;
Denys Vlasenkod9560c12011-08-19 17:41:28 +02001001 sigemptyset(&sigm);
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001002 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001003 tprints(sprintsigmask(") (mask ", &sigm, 0));
Chris Metcalfc8c66982009-12-28 10:00:15 -05001004 }
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001005#elif defined(MICROBLAZE)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001006 /* TODO: Verify that this is correct... */
1007 if (entering(tcp)) {
Denys Vlasenko56a52982011-06-09 01:36:29 +02001008 struct sigcontext sc;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001009 long sp;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001010 sigset_t sigm;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001011 /* Read r1, the stack pointer. */
Denys Vlasenko752e5a02013-06-28 14:35:47 +02001012 if (upeek(tcp->pid, 1 * 4, &sp) < 0)
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001013 return 0;
1014 if (umove(tcp, sp, &sc) < 0)
1015 return 0;
Denys Vlasenkob11322f2012-01-10 16:40:35 +01001016 long_to_sigset(sc.oldmask, &sigm);
Andreas Schwaba7920a82012-01-17 17:56:44 +01001017 tprints(sprintsigmask(") (mask ", &sigm, 0));
Edgar E. Iglesias939caba2010-07-06 14:21:07 +02001018 }
Chris Zankel8f636ed2013-03-25 10:22:07 -07001019#elif defined(XTENSA)
1020 /* Xtensa only has rt_sys_sigreturn */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001021#else
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001022# warning No sys_sigreturn() for this architecture
1023# warning (no problem, just a reminder :-)
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001024#endif
Dmitry V. Levinf112d072012-05-15 00:13:59 +00001025 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001026}
1027
1028int
Denys Vlasenko12014262011-05-30 14:00:14 +02001029sys_siggetmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001030{
1031 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001032 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001033 long_to_sigset(tcp->u_rval, &sigm);
1034 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001035 }
1036 return RVAL_HEX | RVAL_STR;
1037}
1038
1039int
Dmitry V. Levine5e60852009-12-31 22:50:49 +00001040sys_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001041{
1042 if (entering(tcp)) {
1043 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001044 long_to_sigset(tcp->u_arg[2], &sigm);
Nate Sammons4a121431999-04-06 01:19:39 +00001045 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001046 }
1047 return 0;
1048}
1049
Denys Vlasenko84703742012-02-25 02:38:52 +01001050#if !defined SS_ONSTACK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001051#define SS_ONSTACK 1
1052#define SS_DISABLE 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001053#endif
1054
Roland McGrathd9f816f2004-09-04 03:39:20 +00001055static const struct xlat sigaltstack_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001056 { SS_ONSTACK, "SS_ONSTACK" },
1057 { SS_DISABLE, "SS_DISABLE" },
1058 { 0, NULL },
1059};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001060
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001061static void
Denys Vlasenko12014262011-05-30 14:00:14 +02001062print_stack_t(struct tcb *tcp, unsigned long addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001063{
1064 stack_t ss;
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001065
1066 if (!addr) {
1067 tprints("NULL");
1068 } else if (umove(tcp, addr, &ss) < 0) {
1069 tprintf("%#lx", addr);
1070 } else {
1071 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1072 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
1073 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1074 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001075}
1076
1077int
Denys Vlasenko12014262011-05-30 14:00:14 +02001078sys_sigaltstack(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001079{
1080 if (entering(tcp)) {
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001081 print_stack_t(tcp, tcp->u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001082 }
1083 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001084 tprints(", ");
Dmitry V. Levin338c0692013-02-09 02:03:04 +00001085 print_stack_t(tcp, tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001086 }
1087 return 0;
1088}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001089
1090#ifdef HAVE_SIGACTION
1091
1092int
Denys Vlasenko12014262011-05-30 14:00:14 +02001093sys_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001094{
1095#ifdef ALPHA
Mike Frysingerdde045c2012-03-15 00:45:33 -04001096 sigset_t ss;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001097 if (entering(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001098 /*
1099 * Alpha/OSF is different: it doesn't pass in two pointers,
1100 * but rather passes in the new bitmask as an argument and
1101 * then returns the old bitmask. This "works" because we
1102 * only have 64 signals to worry about. If you want more,
1103 * use of the rt_sigprocmask syscall is required.
1104 * Alpha:
1105 * old = osf_sigprocmask(how, new);
1106 * Everyone else:
1107 * ret = sigprocmask(how, &new, &old, ...);
1108 */
1109 memcpy(&ss, &tcp->u_arg[1], sizeof(long));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001110 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001111 tprints(", ");
Mike Frysingerdde045c2012-03-15 00:45:33 -04001112 printsigmask(&ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001113 }
1114 else if (!syserror(tcp)) {
Mike Frysingerdde045c2012-03-15 00:45:33 -04001115 memcpy(&ss, &tcp->u_rval, sizeof(long));
1116 tcp->auxstr = sprintsigmask("old mask ", &ss, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001117 return RVAL_HEX | RVAL_STR;
1118 }
1119#else /* !ALPHA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001120 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001121 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001122 tprints(", ");
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001123 print_sigset(tcp, tcp->u_arg[1], 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001124 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001125 }
1126 else {
1127 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001128 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001129 else if (syserror(tcp))
1130 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001131 else
Dmitry V. Levin95ebf5a2006-10-13 20:25:12 +00001132 print_sigset(tcp, tcp->u_arg[2], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001133 }
1134#endif /* !ALPHA */
1135 return 0;
1136}
1137
1138#endif /* HAVE_SIGACTION */
1139
1140int
Denys Vlasenko12014262011-05-30 14:00:14 +02001141sys_kill(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001142{
1143 if (entering(tcp)) {
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001144 tprintf("%ld, %s",
1145 widen_to_long(tcp->u_arg[0]),
1146 signame(tcp->u_arg[1])
1147 );
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001148 }
1149 return 0;
1150}
1151
Roland McGrath8ffc3522003-07-09 09:47:49 +00001152int
Denys Vlasenko12014262011-05-30 14:00:14 +02001153sys_tgkill(struct tcb *tcp)
Roland McGrath8ffc3522003-07-09 09:47:49 +00001154{
1155 if (entering(tcp)) {
1156 tprintf("%ld, %ld, %s",
Denys Vlasenkoe015d2d2013-02-15 14:58:52 +01001157 widen_to_long(tcp->u_arg[0]),
1158 widen_to_long(tcp->u_arg[1]),
1159 signame(tcp->u_arg[2])
1160 );
Roland McGrath8ffc3522003-07-09 09:47:49 +00001161 }
1162 return 0;
1163}
Roland McGrath8ffc3522003-07-09 09:47:49 +00001164
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001165int
Denys Vlasenko12014262011-05-30 14:00:14 +02001166sys_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001167{
1168 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001169
1170 if (exiting(tcp)) {
1171 if (syserror(tcp))
1172 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001173 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001174 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001175 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001176 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001177 }
1178 return 0;
1179}
1180
Denys Vlasenko12014262011-05-30 14:00:14 +02001181int
1182sys_rt_sigprocmask(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001183{
1184 sigset_t sigset;
1185
Nate Sammons4a121431999-04-06 01:19:39 +00001186 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001187 if (entering(tcp)) {
1188 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001189 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001190 if (!tcp->u_arg[1])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001191 tprints("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001192 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001193 tprintf("%#lx, ", tcp->u_arg[1]);
1194 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001195 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001196 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001197 }
1198 }
1199 else {
1200 if (!tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001201 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001202 else if (syserror(tcp))
1203 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001204 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001205 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001206 else
Nate Sammons4a121431999-04-06 01:19:39 +00001207 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001208 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001209 }
1210 return 0;
1211}
1212
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001213/* Structure describing the action to be taken when a signal arrives. */
1214struct new_sigaction
1215{
Denys Vlasenko86d94842013-02-08 12:59:13 +01001216 /* sa_handler may be a libc #define, need to use other name: */
1217 void (*__sa_handler)(int);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001218 unsigned long sa_flags;
Denys Vlasenko86d94842013-02-08 12:59:13 +01001219 void (*sa_restorer)(void);
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001220 /* Kernel treats sa_mask as an array of longs. */
1221 unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1222};
1223/* Same for i386-on-x86_64 and similar cases */
1224struct new_sigaction32
1225{
1226 uint32_t __sa_handler;
1227 uint32_t sa_flags;
1228 uint32_t sa_restorer;
1229 uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001230};
1231
Roland McGrath5f206812008-08-20 01:59:40 +00001232int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001233sys_rt_sigaction(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001234{
1235 struct new_sigaction sa;
1236 sigset_t sigset;
1237 long addr;
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001238 int r;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001239
1240 if (entering(tcp)) {
1241 printsignal(tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001242 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001243 addr = tcp->u_arg[1];
1244 } else
1245 addr = tcp->u_arg[2];
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001246
1247 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001248 tprints("NULL");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001249 goto after_sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001250 }
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001251 if (!verbose(tcp)) {
1252 tprintf("%#lx", addr);
1253 goto after_sa;
1254 }
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001255#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Denys Vlasenko9fd4f962012-03-19 09:36:42 +01001256 if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001257 struct new_sigaction32 sa32;
1258 r = umove(tcp, addr, &sa32);
1259 if (r >= 0) {
1260 memset(&sa, 0, sizeof(sa));
1261 sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1262 sa.sa_flags = sa32.sa_flags;
1263 sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer;
1264 /* Kernel treats sa_mask as an array of longs.
1265 * For 32-bit process, "long" is uint32_t, thus, for example,
1266 * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1267 * But for (64-bit) kernel, 32th bit in sa_mask is
1268 * 32th bit in 0th (64-bit) long!
1269 * For little-endian, it's the same.
1270 * For big-endian, we swap 32-bit words.
1271 */
1272 sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1273 }
1274 } else
1275#endif
1276 {
1277 r = umove(tcp, addr, &sa);
1278 }
1279 if (r < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001280 tprints("{...}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001281 goto after_sa;
1282 }
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001283 /* Architectures using function pointers, like
1284 * hppa, may need to manipulate the function pointer
1285 * to compute the result of a comparison. However,
Denys Vlasenko86d94842013-02-08 12:59:13 +01001286 * the __sa_handler function pointer exists only in
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001287 * the address space of the traced process, and can't
1288 * be manipulated by strace. In order to prevent the
1289 * compiler from generating code to manipulate
Denys Vlasenko86d94842013-02-08 12:59:13 +01001290 * __sa_handler we cast the function pointers to long. */
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001291 if ((long)sa.__sa_handler == (long)SIG_ERR)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001292 tprints("{SIG_ERR, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001293 else if ((long)sa.__sa_handler == (long)SIG_DFL)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001294 tprints("{SIG_DFL, ");
Carlos O'Donell4677c8a2009-09-09 18:13:19 +00001295 else if ((long)sa.__sa_handler == (long)SIG_IGN)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001296 tprints("{SIG_IGN, ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001297 else
1298 tprintf("{%#lx, ", (long) sa.__sa_handler);
1299 /* Questionable code below.
1300 * Kernel won't handle sys_rt_sigaction
1301 * with wrong sigset size (just returns EINVAL)
1302 * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1303 * and we always use smaller memcpy. */
1304 sigemptyset(&sigset);
Denys Vlasenko9472a272013-02-12 11:43:46 +01001305#if defined(SPARC) || defined(SPARC64)
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001306 if (tcp->u_arg[4] <= sizeof(sigset))
1307 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1308#else
1309 if (tcp->u_arg[3] <= sizeof(sigset))
1310 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1311#endif
1312 else
1313 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1314 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001315 tprints(", ");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001316 printflags(sigact_flags, sa.sa_flags, "SA_???");
1317#ifdef SA_RESTORER
1318 if (sa.sa_flags & SA_RESTORER)
1319 tprintf(", %p", sa.sa_restorer);
1320#endif
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001321 tprints("}");
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001322
1323 after_sa:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001324 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001325 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001326 else
Denys Vlasenko9472a272013-02-12 11:43:46 +01001327#if defined(SPARC) || defined(SPARC64)
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001328 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1329#elif defined(ALPHA)
1330 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1331#else
Denys Vlasenko7a862d72009-04-15 13:22:59 +00001332 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001333#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001334 return 0;
1335}
1336
Denys Vlasenko1d632462009-04-14 12:51:00 +00001337int
1338sys_rt_sigpending(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001339{
1340 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001341
1342 if (exiting(tcp)) {
1343 if (syserror(tcp))
1344 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001345 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1346 &sigset, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001347 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001348 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001349 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001350 }
1351 return 0;
1352}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001353
1354int
1355sys_rt_sigsuspend(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001356{
1357 if (entering(tcp)) {
1358 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001359 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001360 tprints("[?]");
Nate Sammons4a121431999-04-06 01:19:39 +00001361 else
1362 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001363 }
1364 return 0;
1365}
Denys Vlasenko1d632462009-04-14 12:51:00 +00001366
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001367static void
1368print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1369{
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001370 printsignal(sig);
1371 tprints(", ");
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001372 printsiginfo_at(tcp, uinfo);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001373}
1374
Denys Vlasenko1d632462009-04-14 12:51:00 +00001375int
1376sys_rt_sigqueueinfo(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001377{
1378 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001379 tprintf("%lu, ", tcp->u_arg[0]);
Dmitry V. Levin297632b2012-03-13 15:51:13 +00001380 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1381 }
1382 return 0;
1383}
1384
1385int
1386sys_rt_tgsigqueueinfo(struct tcb *tcp)
1387{
1388 if (entering(tcp)) {
1389 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1390 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001391 }
1392 return 0;
1393}
1394
Denys Vlasenko1d632462009-04-14 12:51:00 +00001395int sys_rt_sigtimedwait(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001396{
1397 if (entering(tcp)) {
1398 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001399
Roland McGratha39c5a12002-12-17 05:10:37 +00001400 if (copy_sigset_len(tcp, tcp->u_arg[0],
Nate Sammons4a121431999-04-06 01:19:39 +00001401 &sigset, tcp->u_arg[3]) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001402 tprints("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001403 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001404 printsigmask(&sigset, 1);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001405 tprints(", ");
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001406 /* This is the only "return" parameter, */
1407 if (tcp->u_arg[1] != 0)
1408 return 0;
1409 /* ... if it's NULL, can decode all on entry */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001410 tprints("NULL, ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001411 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001412 else if (tcp->u_arg[1] != 0) {
1413 /* syscall exit, and u_arg[1] wasn't NULL */
Denys Vlasenkod4d3ede2013-02-13 16:31:32 +01001414 printsiginfo_at(tcp, tcp->u_arg[1]);
1415 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001416 }
Denys Vlasenkob1a78cf2009-04-15 13:31:59 +00001417 else {
1418 /* syscall exit, and u_arg[1] was NULL */
1419 return 0;
1420 }
1421 print_timespec(tcp, tcp->u_arg[2]);
1422 tprintf(", %d", (int) tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001423 return 0;
1424};
1425
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001426int
Denys Vlasenko1d632462009-04-14 12:51:00 +00001427sys_restart_syscall(struct tcb *tcp)
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001428{
1429 if (entering(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001430 tprints("<... resuming interrupted call ...>");
Roland McGrath79dcd7a2006-01-12 22:34:50 +00001431 return 0;
1432}
1433
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001434static int
1435do_signalfd(struct tcb *tcp, int flags_arg)
Roland McGrathf46ccd32007-08-02 01:15:59 +00001436{
1437 if (entering(tcp)) {
Dmitry V. Levin31382132011-03-04 05:08:02 +03001438 printfd(tcp, tcp->u_arg[0]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001439 tprints(", ");
Roland McGrathf46ccd32007-08-02 01:15:59 +00001440 print_sigset(tcp, tcp->u_arg[1], 1);
Dmitry V. Levin9d2ee3d2009-10-05 13:45:19 +00001441 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001442 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001443 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001444 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1445 }
Roland McGrathf46ccd32007-08-02 01:15:59 +00001446 }
1447 return 0;
1448}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001449
1450int
1451sys_signalfd(struct tcb *tcp)
1452{
1453 return do_signalfd(tcp, -1);
1454}
1455
1456int
1457sys_signalfd4(struct tcb *tcp)
1458{
1459 return do_signalfd(tcp, 3);
1460}