]> granicus.if.org Git - strace/blob - signal.c
5fa07f6615e02b81040776105e5fd0f82fec5e31
[strace] / signal.c
1 /*
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>
5  * 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>
9  * 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
34 #include "defs.h"
35 #include <sys/user.h>
36 #include <fcntl.h>
37
38 #ifdef HAVE_SYS_REG_H
39 # include <sys/reg.h>
40 # ifndef PTRACE_PEEKUSR
41 #  define PTRACE_PEEKUSR PTRACE_PEEKUSER
42 # endif
43 # ifndef PTRACE_POKEUSR
44 #  define PTRACE_POKEUSR PTRACE_POKEUSER
45 # endif
46 #elif defined(HAVE_LINUX_PTRACE_H)
47 # undef PTRACE_SYSCALL
48 # 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
54 # include <linux/ptrace.h>
55 # undef ia64_fpreg
56 # undef pt_all_user_regs
57 #endif
58
59 #ifdef IA64
60 # include <asm/ptrace_offsets.h>
61 #endif
62
63 #if defined(SPARC) || defined(SPARC64) || defined(MIPS)
64 typedef struct {
65         struct pt_regs          si_regs;
66         int                     si_mask;
67 } m_siginfo_t;
68 #elif defined HAVE_ASM_SIGCONTEXT_H
69 # if !defined(IA64) && !defined(X86_64) && !defined(X32)
70 #  include <asm/sigcontext.h>
71 # endif
72 #else /* !HAVE_ASM_SIGCONTEXT_H */
73 # if defined I386 && !defined HAVE_STRUCT_SIGCONTEXT_STRUCT
74 struct sigcontext_struct {
75         unsigned short gs, __gsh;
76         unsigned short fs, __fsh;
77         unsigned short es, __esh;
78         unsigned short ds, __dsh;
79         unsigned long edi;
80         unsigned long esi;
81         unsigned long ebp;
82         unsigned long esp;
83         unsigned long ebx;
84         unsigned long edx;
85         unsigned long ecx;
86         unsigned long eax;
87         unsigned long trapno;
88         unsigned long err;
89         unsigned long eip;
90         unsigned short cs, __csh;
91         unsigned long eflags;
92         unsigned long esp_at_signal;
93         unsigned short ss, __ssh;
94         unsigned long i387;
95         unsigned long oldmask;
96         unsigned long cr2;
97 };
98 # else /* !I386 */
99 #  if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT
100 struct sigcontext
101 {
102         unsigned long sc_mask;
103         unsigned long sc_usp;
104         unsigned long sc_d0;
105         unsigned long sc_d1;
106         unsigned long sc_a0;
107         unsigned long sc_a1;
108         unsigned short sc_sr;
109         unsigned long sc_pc;
110         unsigned short sc_formatvec;
111 };
112 #  endif /* M68K */
113 # endif /* !I386 */
114 #endif /* !HAVE_ASM_SIGCONTEXT_H */
115
116 #ifndef NSIG
117 # warning: NSIG is not defined, using 32
118 # define NSIG 32
119 #endif
120 #ifdef ARM
121 /* Ugh. Is this really correct? ARM has no RT signals?! */
122 # undef NSIG
123 # define NSIG 32
124 #endif
125
126 #ifdef HAVE_SIGACTION
127
128 #if defined I386 || defined X86_64 || defined X32
129 /* The libc headers do not define this constant since it should only be
130    used by the implementation.  So we define it here.  */
131 # ifndef SA_RESTORER
132 #  define SA_RESTORER 0x04000000
133 # endif
134 #endif
135
136 static const struct xlat sigact_flags[] = {
137 #ifdef SA_RESTORER
138         { SA_RESTORER,  "SA_RESTORER"   },
139 #endif
140 #ifdef SA_STACK
141         { SA_STACK,     "SA_STACK"      },
142 #endif
143 #ifdef SA_RESTART
144         { SA_RESTART,   "SA_RESTART"    },
145 #endif
146 #ifdef SA_INTERRUPT
147         { SA_INTERRUPT, "SA_INTERRUPT"  },
148 #endif
149 #ifdef SA_NODEFER
150         { SA_NODEFER,   "SA_NODEFER"    },
151 #endif
152 #if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
153         { SA_NOMASK,    "SA_NOMASK"     },
154 #endif
155 #ifdef SA_RESETHAND
156         { SA_RESETHAND, "SA_RESETHAND"  },
157 #endif
158 #if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
159         { SA_ONESHOT,   "SA_ONESHOT"    },
160 #endif
161 #ifdef SA_SIGINFO
162         { SA_SIGINFO,   "SA_SIGINFO"    },
163 #endif
164 #ifdef SA_RESETHAND
165         { SA_RESETHAND, "SA_RESETHAND"  },
166 #endif
167 #ifdef SA_ONSTACK
168         { SA_ONSTACK,   "SA_ONSTACK"    },
169 #endif
170 #ifdef SA_NODEFER
171         { SA_NODEFER,   "SA_NODEFER"    },
172 #endif
173 #ifdef SA_NOCLDSTOP
174         { SA_NOCLDSTOP, "SA_NOCLDSTOP"  },
175 #endif
176 #ifdef SA_NOCLDWAIT
177         { SA_NOCLDWAIT, "SA_NOCLDWAIT"  },
178 #endif
179 #ifdef _SA_BSDCALL
180         { _SA_BSDCALL,  "_SA_BSDCALL"   },
181 #endif
182 #ifdef SA_NOPTRACE
183         { SA_NOPTRACE,  "SA_NOPTRACE"   },
184 #endif
185         { 0,            NULL            },
186 };
187
188 static const struct xlat sigprocmaskcmds[] = {
189         { SIG_BLOCK,    "SIG_BLOCK"     },
190         { SIG_UNBLOCK,  "SIG_UNBLOCK"   },
191         { SIG_SETMASK,  "SIG_SETMASK"   },
192 #ifdef SIG_SETMASK32
193         { SIG_SETMASK32,"SIG_SETMASK32" },
194 #endif
195         { 0,            NULL            },
196 };
197
198 #endif /* HAVE_SIGACTION */
199
200 /* Anonymous realtime signals. */
201 /* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
202    constant.  This is what we want.  Otherwise, just use SIGRTMIN. */
203 #ifdef SIGRTMIN
204 #ifndef __SIGRTMIN
205 #define __SIGRTMIN SIGRTMIN
206 #define __SIGRTMAX SIGRTMAX /* likewise */
207 #endif
208 #endif
209
210 /* Note on the size of sigset_t:
211  *
212  * In glibc, sigset_t is an array with space for 1024 bits (!),
213  * even though all arches supported by Linux have only 64 signals
214  * except MIPS, which has 128. IOW, it is 128 bytes long.
215  *
216  * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
217  * However, some old syscall return only 32 lower bits (one word).
218  * Example: sys_sigpending vs sys_rt_sigpending.
219  *
220  * Be aware of this fact when you try to
221  *     memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
222  * - sizeof(sigset_t) is much bigger than you think,
223  * it may overflow tcp->u_arg[] array, and it may try to copy more data
224  * than is really available in <something>.
225  * Similarly,
226  *     umoven(tcp, addr, sizeof(sigset_t), &sigset)
227  * may be a bad idea: it'll try to read much more data than needed
228  * to fetch a sigset_t.
229  * Use (NSIG / 8) as a size instead.
230  */
231
232 const char *
233 signame(int sig)
234 {
235         static char buf[sizeof("SIGRT_%d") + sizeof(int)*3];
236
237         if (sig >= 0 && sig < nsignals)
238                 return signalent[sig];
239 #ifdef SIGRTMIN
240         if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
241                 sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN));
242                 return buf;
243         }
244 #endif
245         sprintf(buf, "%d", sig);
246         return buf;
247 }
248
249 static void
250 long_to_sigset(long l, sigset_t *s)
251 {
252         sigemptyset(s);
253         *(long *)s = l;
254 }
255
256 static int
257 copy_sigset_len(struct tcb *tcp, long addr, sigset_t *s, int len)
258 {
259         if (len > sizeof(*s))
260                 len = sizeof(*s);
261         sigemptyset(s);
262         if (umoven(tcp, addr, len, (char *)s) < 0)
263                 return -1;
264         return 0;
265 }
266
267 /* Original sigset is unsigned long */
268 #define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
269
270 static const char *
271 sprintsigmask(const char *str, sigset_t *mask, int rt)
272 /* set might include realtime sigs */
273 {
274         /* Was [8 * sizeof(sigset_t) * 8], but
275          * glibc sigset_t is huge (1024 bits = 128 *bytes*),
276          * and we were ending up with 8k (!) buffer here.
277          *
278          * No Unix system can have sig > 255
279          * (waitpid API won't be able to indicate death from one)
280          * and sig 0 doesn't exist either.
281          * Therefore max possible no of sigs is 255: 1..255
282          */
283         static char outstr[8 * (255 * 2 / 3)];
284
285         int i, nsigs;
286         int maxsigs;
287         int show_members;
288         char sep;
289         char *s;
290
291         maxsigs = nsignals;
292 #ifdef __SIGRTMAX
293         if (rt)
294                 maxsigs = __SIGRTMAX; /* instead */
295 #endif
296         s = stpcpy(outstr, str);
297         nsigs = 0;
298         for (i = 1; i < maxsigs; i++) {
299                 if (sigismember(mask, i) == 1)
300                         nsigs++;
301         }
302
303         /* 1: show mask members, 0: show those which are NOT in mask */
304         show_members = (nsigs < nsignals * 2 / 3);
305         if (!show_members)
306                 *s++ = '~';
307
308         sep = '[';
309         for (i = 1; i < maxsigs; i++) {
310                 if (sigismember(mask, i) == show_members) {
311                         /* real-time signals on solaris don't have
312                          * signalent entries
313                          */
314                         char tsig[40];
315                         *s++ = sep;
316                         if (i < nsignals) {
317                                 s = stpcpy(s, signalent[i] + 3);
318                         }
319 #ifdef SIGRTMIN
320                         else if (i >= __SIGRTMIN && i <= __SIGRTMAX) {
321                                 sprintf(tsig, "RT_%u", i - __SIGRTMIN);
322                                 s = stpcpy(s, tsig);
323                         }
324 #endif /* SIGRTMIN */
325                         else {
326                                 sprintf(tsig, "%u", i);
327                                 s = stpcpy(s, tsig);
328                         }
329                         sep = ' ';
330                 }
331         }
332         if (sep == '[')
333                 *s++ = sep;
334         *s++ = ']';
335         *s = '\0';
336         return outstr;
337 }
338
339 static void
340 printsigmask(sigset_t *mask, int rt)
341 {
342         tprints(sprintsigmask("", mask, rt));
343 }
344
345 void
346 printsignal(int nr)
347 {
348         tprints(signame(nr));
349 }
350
351 void
352 print_sigset(struct tcb *tcp, long addr, int rt)
353 {
354         sigset_t ss;
355
356         if (!addr)
357                 tprints("NULL");
358         else if (copy_sigset(tcp, addr, &ss) < 0)
359                 tprintf("%#lx", addr);
360         else
361                 printsigmask(&ss, rt);
362 }
363
364 #ifndef ILL_ILLOPC
365 #define ILL_ILLOPC      1       /* illegal opcode */
366 #define ILL_ILLOPN      2       /* illegal operand */
367 #define ILL_ILLADR      3       /* illegal addressing mode */
368 #define ILL_ILLTRP      4       /* illegal trap */
369 #define ILL_PRVOPC      5       /* privileged opcode */
370 #define ILL_PRVREG      6       /* privileged register */
371 #define ILL_COPROC      7       /* coprocessor error */
372 #define ILL_BADSTK      8       /* internal stack error */
373 #define FPE_INTDIV      1       /* integer divide by zero */
374 #define FPE_INTOVF      2       /* integer overflow */
375 #define FPE_FLTDIV      3       /* floating point divide by zero */
376 #define FPE_FLTOVF      4       /* floating point overflow */
377 #define FPE_FLTUND      5       /* floating point underflow */
378 #define FPE_FLTRES      6       /* floating point inexact result */
379 #define FPE_FLTINV      7       /* floating point invalid operation */
380 #define FPE_FLTSUB      8       /* subscript out of range */
381 #define SEGV_MAPERR     1       /* address not mapped to object */
382 #define SEGV_ACCERR     2       /* invalid permissions for mapped object */
383 #define BUS_ADRALN      1       /* invalid address alignment */
384 #define BUS_ADRERR      2       /* non-existant physical address */
385 #define BUS_OBJERR      3       /* object specific hardware error */
386 #define TRAP_BRKPT      1       /* process breakpoint */
387 #define TRAP_TRACE      2       /* process trace trap */
388 #define CLD_EXITED      1       /* child has exited */
389 #define CLD_KILLED      2       /* child was killed */
390 #define CLD_DUMPED      3       /* child terminated abnormally */
391 #define CLD_TRAPPED     4       /* traced child has trapped */
392 #define CLD_STOPPED     5       /* child has stopped */
393 #define CLD_CONTINUED   6       /* stopped child has continued */
394 #define POLL_IN         1       /* data input available */
395 #define POLL_OUT        2       /* output buffers available */
396 #define POLL_MSG        3       /* input message available */
397 #define POLL_ERR        4       /* i/o error */
398 #define POLL_PRI        5       /* high priority input available */
399 #define POLL_HUP        6       /* device disconnected */
400 #define SI_KERNEL       0x80    /* sent by kernel */
401 #define SI_USER         0       /* sent by kill, sigsend, raise */
402 #define SI_QUEUE        -1      /* sent by sigqueue */
403 #define SI_TIMER        -2      /* sent by timer expiration */
404 #define SI_MESGQ        -3      /* sent by real time mesq state change */
405 #define SI_ASYNCIO      -4      /* sent by AIO completion */
406 #define SI_SIGIO        -5      /* sent by SIGIO */
407 #define SI_TKILL        -6      /* sent by tkill */
408 #define SI_ASYNCNL      -60     /* sent by asynch name lookup completion */
409 #endif
410
411 #ifndef SI_FROMUSER
412 # define SI_FROMUSER(sip)       ((sip)->si_code <= 0)
413 #endif
414
415 #if defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 1))
416 /* Type for data associated with a signal.  */
417 typedef union sigval
418 {
419         int sival_int;
420         void *sival_ptr;
421 } sigval_t;
422
423 # define __SI_MAX_SIZE     128
424 # define __SI_PAD_SIZE     ((__SI_MAX_SIZE / sizeof(int)) - 3)
425
426 typedef struct siginfo
427 {
428         int si_signo;               /* Signal number.  */
429         int si_errno;               /* If non-zero, an errno value associated with
430                                                                    this signal, as defined in <errno.h>.  */
431         int si_code;                /* Signal code.  */
432
433         union
434         {
435                 int _pad[__SI_PAD_SIZE];
436
437                 /* kill().  */
438                 struct
439                 {
440                         __pid_t si_pid;     /* Sending process ID.  */
441                         __uid_t si_uid;     /* Real user ID of sending process.  */
442                 } _kill;
443
444                 /* POSIX.1b timers.  */
445                 struct
446                 {
447                         unsigned int _timer1;
448                         unsigned int _timer2;
449                 } _timer;
450
451                 /* POSIX.1b signals.  */
452                 struct
453                 {
454                         __pid_t si_pid;     /* Sending process ID.  */
455                         __uid_t si_uid;     /* Real user ID of sending process.  */
456                         sigval_t si_sigval; /* Signal value.  */
457                 } _rt;
458
459                 /* SIGCHLD.  */
460                 struct
461                 {
462                         __pid_t si_pid;     /* Which child.  */
463                         int si_status;      /* Exit value or signal.  */
464                         __clock_t si_utime;
465                         __clock_t si_stime;
466                 } _sigchld;
467
468                 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS.  */
469                 struct
470                 {
471                         void *si_addr;      /* Faulting insn/memory ref.  */
472                 } _sigfault;
473
474                 /* SIGPOLL.  */
475                 struct
476                 {
477                         int si_band;        /* Band event for SIGPOLL.  */
478                         int si_fd;
479                 } _sigpoll;
480         } _sifields;
481 } siginfo_t;
482
483 #define si_pid          _sifields._kill.si_pid
484 #define si_uid          _sifields._kill.si_uid
485 #define si_status       _sifields._sigchld.si_status
486 #define si_utime        _sifields._sigchld.si_utime
487 #define si_stime        _sifields._sigchld.si_stime
488 #define si_value        _sifields._rt.si_sigval
489 #define si_int          _sifields._rt.si_sigval.sival_int
490 #define si_ptr          _sifields._rt.si_sigval.sival_ptr
491 #define si_addr         _sifields._sigfault.si_addr
492 #define si_band         _sifields._sigpoll.si_band
493 #define si_fd           _sifields._sigpoll.si_fd
494
495 #endif
496
497 static const struct xlat siginfo_codes[] = {
498 #ifdef SI_KERNEL
499         { SI_KERNEL,    "SI_KERNEL"     },
500 #endif
501 #ifdef SI_USER
502         { SI_USER,      "SI_USER"       },
503 #endif
504 #ifdef SI_QUEUE
505         { SI_QUEUE,     "SI_QUEUE"      },
506 #endif
507 #ifdef SI_TIMER
508         { SI_TIMER,     "SI_TIMER"      },
509 #endif
510 #ifdef SI_MESGQ
511         { SI_MESGQ,     "SI_MESGQ"      },
512 #endif
513 #ifdef SI_ASYNCIO
514         { SI_ASYNCIO,   "SI_ASYNCIO"    },
515 #endif
516 #ifdef SI_SIGIO
517         { SI_SIGIO,     "SI_SIGIO"      },
518 #endif
519 #ifdef SI_TKILL
520         { SI_TKILL,     "SI_TKILL"      },
521 #endif
522 #ifdef SI_ASYNCNL
523         { SI_ASYNCNL,   "SI_ASYNCNL"    },
524 #endif
525 #ifdef SI_NOINFO
526         { SI_NOINFO,    "SI_NOINFO"     },
527 #endif
528 #ifdef SI_LWP
529         { SI_LWP,       "SI_LWP"        },
530 #endif
531         { 0,            NULL            },
532 };
533
534 static const struct xlat sigill_codes[] = {
535         { ILL_ILLOPC,   "ILL_ILLOPC"    },
536         { ILL_ILLOPN,   "ILL_ILLOPN"    },
537         { ILL_ILLADR,   "ILL_ILLADR"    },
538         { ILL_ILLTRP,   "ILL_ILLTRP"    },
539         { ILL_PRVOPC,   "ILL_PRVOPC"    },
540         { ILL_PRVREG,   "ILL_PRVREG"    },
541         { ILL_COPROC,   "ILL_COPROC"    },
542         { ILL_BADSTK,   "ILL_BADSTK"    },
543         { 0,            NULL            },
544 };
545
546 static const struct xlat sigfpe_codes[] = {
547         { FPE_INTDIV,   "FPE_INTDIV"    },
548         { FPE_INTOVF,   "FPE_INTOVF"    },
549         { FPE_FLTDIV,   "FPE_FLTDIV"    },
550         { FPE_FLTOVF,   "FPE_FLTOVF"    },
551         { FPE_FLTUND,   "FPE_FLTUND"    },
552         { FPE_FLTRES,   "FPE_FLTRES"    },
553         { FPE_FLTINV,   "FPE_FLTINV"    },
554         { FPE_FLTSUB,   "FPE_FLTSUB"    },
555         { 0,            NULL            },
556 };
557
558 static const struct xlat sigtrap_codes[] = {
559         { TRAP_BRKPT,   "TRAP_BRKPT"    },
560         { TRAP_TRACE,   "TRAP_TRACE"    },
561         { 0,            NULL            },
562 };
563
564 static const struct xlat sigchld_codes[] = {
565         { CLD_EXITED,   "CLD_EXITED"    },
566         { CLD_KILLED,   "CLD_KILLED"    },
567         { CLD_DUMPED,   "CLD_DUMPED"    },
568         { CLD_TRAPPED,  "CLD_TRAPPED"   },
569         { CLD_STOPPED,  "CLD_STOPPED"   },
570         { CLD_CONTINUED,"CLD_CONTINUED" },
571         { 0,            NULL            },
572 };
573
574 static const struct xlat sigpoll_codes[] = {
575         { POLL_IN,      "POLL_IN"       },
576         { POLL_OUT,     "POLL_OUT"      },
577         { POLL_MSG,     "POLL_MSG"      },
578         { POLL_ERR,     "POLL_ERR"      },
579         { POLL_PRI,     "POLL_PRI"      },
580         { POLL_HUP,     "POLL_HUP"      },
581         { 0,            NULL            },
582 };
583
584 static const struct xlat sigprof_codes[] = {
585 #ifdef PROF_SIG
586         { PROF_SIG,     "PROF_SIG"      },
587 #endif
588         { 0,            NULL            },
589 };
590
591 #ifdef SIGEMT
592 static const struct xlat sigemt_codes[] = {
593 #ifdef EMT_TAGOVF
594         { EMT_TAGOVF,   "EMT_TAGOVF"    },
595 #endif
596         { 0,            NULL            },
597 };
598 #endif
599
600 static const struct xlat sigsegv_codes[] = {
601         { SEGV_MAPERR,  "SEGV_MAPERR"   },
602         { SEGV_ACCERR,  "SEGV_ACCERR"   },
603         { 0,            NULL            },
604 };
605
606 static const struct xlat sigbus_codes[] = {
607         { BUS_ADRALN,   "BUS_ADRALN"    },
608         { BUS_ADRERR,   "BUS_ADRERR"    },
609         { BUS_OBJERR,   "BUS_OBJERR"    },
610         { 0,            NULL            },
611 };
612
613 void
614 printsiginfo(siginfo_t *sip, int verbose)
615 {
616         const char *code;
617
618         if (sip->si_signo == 0) {
619                 tprints("{}");
620                 return;
621         }
622         tprints("{si_signo=");
623         printsignal(sip->si_signo);
624         code = xlookup(siginfo_codes, sip->si_code);
625         if (!code) {
626                 switch (sip->si_signo) {
627                 case SIGTRAP:
628                         code = xlookup(sigtrap_codes, sip->si_code);
629                         break;
630                 case SIGCHLD:
631                         code = xlookup(sigchld_codes, sip->si_code);
632                         break;
633                 case SIGPOLL:
634                         code = xlookup(sigpoll_codes, sip->si_code);
635                         break;
636                 case SIGPROF:
637                         code = xlookup(sigprof_codes, sip->si_code);
638                         break;
639                 case SIGILL:
640                         code = xlookup(sigill_codes, sip->si_code);
641                         break;
642 #ifdef SIGEMT
643                 case SIGEMT:
644                         code = xlookup(sigemt_codes, sip->si_code);
645                         break;
646 #endif
647                 case SIGFPE:
648                         code = xlookup(sigfpe_codes, sip->si_code);
649                         break;
650                 case SIGSEGV:
651                         code = xlookup(sigsegv_codes, sip->si_code);
652                         break;
653                 case SIGBUS:
654                         code = xlookup(sigbus_codes, sip->si_code);
655                         break;
656                 }
657         }
658         if (code)
659                 tprintf(", si_code=%s", code);
660         else
661                 tprintf(", si_code=%#x", sip->si_code);
662 #ifdef SI_NOINFO
663         if (sip->si_code != SI_NOINFO)
664 #endif
665         {
666                 if (sip->si_errno) {
667                         if (sip->si_errno < 0 || sip->si_errno >= nerrnos)
668                                 tprintf(", si_errno=%d", sip->si_errno);
669                         else
670                                 tprintf(", si_errno=%s",
671                                         errnoent[sip->si_errno]);
672                 }
673 #ifdef SI_FROMUSER
674                 if (SI_FROMUSER(sip)) {
675                         tprintf(", si_pid=%lu, si_uid=%lu",
676                                 (unsigned long) sip->si_pid,
677                                 (unsigned long) sip->si_uid);
678                         switch (sip->si_code) {
679 #ifdef SI_USER
680                         case SI_USER:
681                                 break;
682 #endif
683 #ifdef SI_TKILL
684                         case SI_TKILL:
685                                 break;
686 #endif
687 #ifdef SI_TIMER
688                         case SI_TIMER:
689                                 tprintf(", si_value=%d", sip->si_int);
690                                 break;
691 #endif
692                         default:
693                                 if (!sip->si_ptr)
694                                         break;
695                                 if (!verbose)
696                                         tprints(", ...");
697                                 else
698                                         tprintf(", si_value={int=%u, ptr=%#lx}",
699                                                 sip->si_int,
700                                                 (unsigned long) sip->si_ptr);
701                                 break;
702                         }
703                 }
704                 else
705 #endif /* SI_FROMUSER */
706                 {
707                         switch (sip->si_signo) {
708                         case SIGCHLD:
709                                 tprintf(", si_pid=%ld, si_status=",
710                                         (long) sip->si_pid);
711                                 if (sip->si_code == CLD_EXITED)
712                                         tprintf("%d", sip->si_status);
713                                 else
714                                         printsignal(sip->si_status);
715                                 if (!verbose)
716                                         tprints(", ...");
717                                 else
718                                         tprintf(", si_utime=%llu, si_stime=%llu",
719                                                 (unsigned long long) sip->si_utime,
720                                                 (unsigned long long) sip->si_stime);
721                                 break;
722                         case SIGILL: case SIGFPE:
723                         case SIGSEGV: case SIGBUS:
724                                 tprintf(", si_addr=%#lx",
725                                         (unsigned long) sip->si_addr);
726                                 break;
727                         case SIGPOLL:
728                                 switch (sip->si_code) {
729                                 case POLL_IN: case POLL_OUT: case POLL_MSG:
730                                         tprintf(", si_band=%ld",
731                                                 (long) sip->si_band);
732                                         break;
733                                 }
734                                 break;
735                         default:
736                                 if (sip->si_pid || sip->si_uid)
737                                         tprintf(", si_pid=%lu, si_uid=%lu",
738                                                 (unsigned long) sip->si_pid,
739                                                 (unsigned long) sip->si_uid);
740                                 if (!sip->si_ptr)
741                                         break;
742                                 if (!verbose)
743                                         tprints(", ...");
744                                 else {
745                                         tprintf(", si_value={int=%u, ptr=%#lx}",
746                                                 sip->si_int,
747                                                 (unsigned long) sip->si_ptr);
748                                 }
749
750                         }
751                 }
752         }
753         tprints("}");
754 }
755
756 int
757 sys_sigsetmask(struct tcb *tcp)
758 {
759         if (entering(tcp)) {
760                 sigset_t sigm;
761                 long_to_sigset(tcp->u_arg[0], &sigm);
762                 printsigmask(&sigm, 0);
763         }
764         else if (!syserror(tcp)) {
765                 sigset_t sigm;
766                 long_to_sigset(tcp->u_rval, &sigm);
767                 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
768
769                 return RVAL_HEX | RVAL_STR;
770         }
771         return 0;
772 }
773
774 #ifdef HAVE_SIGACTION
775
776 struct old_sigaction {
777         /* sa_handler may be a libc #define, need to use other name: */
778         void (*__sa_handler)(int);
779         unsigned long sa_mask;
780         unsigned long sa_flags;
781         void (*sa_restorer)(void);
782 };
783
784 int
785 sys_sigaction(struct tcb *tcp)
786 {
787         long addr;
788         sigset_t sigset;
789         struct old_sigaction sa;
790
791         if (entering(tcp)) {
792                 printsignal(tcp->u_arg[0]);
793                 tprints(", ");
794                 addr = tcp->u_arg[1];
795         } else
796                 addr = tcp->u_arg[2];
797         if (addr == 0)
798                 tprints("NULL");
799         else if (!verbose(tcp))
800                 tprintf("%#lx", addr);
801         else if (umove(tcp, addr, &sa) < 0)
802                 tprints("{...}");
803         else {
804                 /* Architectures using function pointers, like
805                  * hppa, may need to manipulate the function pointer
806                  * to compute the result of a comparison. However,
807                  * the __sa_handler function pointer exists only in
808                  * the address space of the traced process, and can't
809                  * be manipulated by strace. In order to prevent the
810                  * compiler from generating code to manipulate
811                  * __sa_handler we cast the function pointers to long. */
812                 if ((long)sa.__sa_handler == (long)SIG_ERR)
813                         tprints("{SIG_ERR, ");
814                 else if ((long)sa.__sa_handler == (long)SIG_DFL)
815                         tprints("{SIG_DFL, ");
816                 else if ((long)sa.__sa_handler == (long)SIG_IGN)
817                         tprints("{SIG_IGN, ");
818                 else
819                         tprintf("{%#lx, ", (long) sa.__sa_handler);
820                 long_to_sigset(sa.sa_mask, &sigset);
821                 printsigmask(&sigset, 0);
822                 tprints(", ");
823                 printflags(sigact_flags, sa.sa_flags, "SA_???");
824 #ifdef SA_RESTORER
825                 if (sa.sa_flags & SA_RESTORER)
826                         tprintf(", %p", sa.sa_restorer);
827 #endif
828                 tprints("}");
829         }
830         if (entering(tcp))
831                 tprints(", ");
832         else
833                 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
834         return 0;
835 }
836
837 int
838 sys_signal(struct tcb *tcp)
839 {
840         if (entering(tcp)) {
841                 printsignal(tcp->u_arg[0]);
842                 tprints(", ");
843                 switch (tcp->u_arg[1]) {
844                 case (long) SIG_ERR:
845                         tprints("SIG_ERR");
846                         break;
847                 case (long) SIG_DFL:
848                         tprints("SIG_DFL");
849                         break;
850                 case (long) SIG_IGN:
851                         tprints("SIG_IGN");
852                         break;
853                 default:
854                         tprintf("%#lx", tcp->u_arg[1]);
855                 }
856                 return 0;
857         }
858         else if (!syserror(tcp)) {
859                 switch (tcp->u_rval) {
860                 case (long) SIG_ERR:
861                         tcp->auxstr = "SIG_ERR"; break;
862                 case (long) SIG_DFL:
863                         tcp->auxstr = "SIG_DFL"; break;
864                 case (long) SIG_IGN:
865                         tcp->auxstr = "SIG_IGN"; break;
866                 default:
867                         tcp->auxstr = NULL;
868                 }
869                 return RVAL_HEX | RVAL_STR;
870         }
871         return 0;
872 }
873
874 #endif /* HAVE_SIGACTION */
875
876 int
877 sys_sigreturn(struct tcb *tcp)
878 {
879 #if defined(ARM)
880         if (entering(tcp)) {
881                 struct sigcontext_struct sc;
882                 sigset_t sigm;
883                 if (umove(tcp, arm_regs.ARM_sp, &sc) < 0)
884                         return 0;
885                 long_to_sigset(sc.oldmask, &sigm);
886                 tprints(sprintsigmask(") (mask ", &sigm, 0));
887         }
888 #elif defined(S390) || defined(S390X)
889         if (entering(tcp)) {
890                 long usp;
891                 struct sigcontext_struct sc;
892                 if (upeek(tcp, PT_GPR15, &usp) < 0)
893                         return 0;
894                 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
895                         return 0;
896                 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0));
897         }
898 #elif defined(I386)
899         if (entering(tcp)) {
900                 struct sigcontext_struct sc;
901                 /* Note: on i386, sc is followed on stack by struct fpstate
902                  * and after it an additional u32 extramask[1] which holds
903                  * upper half of the mask. We can fetch it there
904                  * if/when we'd want to display the full mask...
905                  */
906                 sigset_t sigm;
907                 if (umove(tcp, i386_regs.esp, &sc) < 0)
908                         return 0;
909                 long_to_sigset(sc.oldmask, &sigm);
910                 tprints(sprintsigmask(") (mask ", &sigm, 0));
911         }
912 #elif defined(IA64)
913         if (entering(tcp)) {
914                 struct sigcontext sc;
915                 long sp;
916                 sigset_t sigm;
917                 /* offset of sigcontext in the kernel's sigframe structure: */
918 #               define SIGFRAME_SC_OFFSET       0x90
919                 if (upeek(tcp, PT_R12, &sp) < 0)
920                         return 0;
921                 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
922                         return 0;
923                 sigemptyset(&sigm);
924                 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
925                 tprints(sprintsigmask(") (mask ", &sigm, 0));
926         }
927 #elif defined(POWERPC)
928         if (entering(tcp)) {
929                 long esp;
930                 struct sigcontext_struct sc;
931                 sigset_t sigm;
932                 if (upeek(tcp, sizeof(unsigned long) * PT_R1, &esp) < 0)
933                         return 0;
934                 /* Skip dummy stack frame. */
935 #ifdef POWERPC64
936                 if (current_personality == 0)
937                         esp += 128;
938                 else
939                         esp += 64;
940 #else
941                 esp += 64;
942 #endif
943                 if (umove(tcp, esp, &sc) < 0)
944                         return 0;
945                 long_to_sigset(sc.oldmask, &sigm);
946                 tprints(sprintsigmask(") (mask ", &sigm, 0));
947         }
948 #elif defined(M68K)
949         if (entering(tcp)) {
950                 long usp;
951                 struct sigcontext sc;
952                 sigset_t sigm;
953                 if (upeek(tcp, 4*PT_USP, &usp) < 0)
954                         return 0;
955                 if (umove(tcp, usp, &sc) < 0)
956                         return 0;
957                 long_to_sigset(sc.sc_mask, &sigm);
958                 tprints(sprintsigmask(") (mask ", &sigm, 0));
959         }
960 #elif defined(ALPHA)
961         if (entering(tcp)) {
962                 long fp;
963                 struct sigcontext_struct sc;
964                 sigset_t sigm;
965                 if (upeek(tcp, REG_FP, &fp) < 0)
966                         return 0;
967                 if (umove(tcp, fp, &sc) < 0)
968                         return 0;
969                 long_to_sigset(sc.sc_mask, &sigm);
970                 tprints(sprintsigmask(") (mask ", &sigm, 0));
971         }
972 #elif defined(SPARC) || defined(SPARC64)
973         if (entering(tcp)) {
974                 long i1;
975                 m_siginfo_t si;
976                 sigset_t sigm;
977                 i1 = regs.u_regs[U_REG_O1];
978                 if (umove(tcp, i1, &si) < 0) {
979                         perror_msg("%s", "sigreturn: umove");
980                         return 0;
981                 }
982                 long_to_sigset(si.si_mask, &sigm);
983                 tprints(sprintsigmask(") (mask ", &sigm, 0));
984         }
985 #elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
986         /* This decodes rt_sigreturn.  The 64-bit ABIs do not have
987            sigreturn.  */
988         if (entering(tcp)) {
989                 long sp;
990                 struct ucontext uc;
991                 sigset_t sigm;
992                 if (upeek(tcp, REG_SP, &sp) < 0)
993                         return 0;
994                 /* There are six words followed by a 128-byte siginfo.  */
995                 sp = sp + 6 * 4 + 128;
996                 if (umove(tcp, sp, &uc) < 0)
997                         return 0;
998                 long_to_sigset(*(long *) &uc.uc_sigmask, &sigm);
999                 tprints(sprintsigmask(") (mask ", &sigm, 0));
1000         }
1001 #elif defined(MIPS)
1002         if (entering(tcp)) {
1003                 long sp;
1004                 struct pt_regs regs;
1005                 m_siginfo_t si;
1006                 sigset_t sigm;
1007                 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
1008                         perror_msg("%s", "sigreturn: PTRACE_GETREGS");
1009                         return 0;
1010                 }
1011                 sp = regs.regs[29];
1012                 if (umove(tcp, sp, &si) < 0)
1013                         return 0;
1014                 long_to_sigset(si.si_mask, &sigm);
1015                 tprints(sprintsigmask(") (mask ", &sigm, 0));
1016         }
1017 #elif defined(CRISV10) || defined(CRISV32)
1018         if (entering(tcp)) {
1019                 struct sigcontext sc;
1020                 long regs[PT_MAX+1];
1021                 sigset_t sigm;
1022                 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
1023                         perror_msg("%s", "sigreturn: PTRACE_GETREGS");
1024                         return 0;
1025                 }
1026                 if (umove(tcp, regs[PT_USP], &sc) < 0)
1027                         return 0;
1028                 long_to_sigset(sc.oldmask, &sigm);
1029                 tprints(sprintsigmask(") (mask ", &sigm, 0));
1030         }
1031 #elif defined(TILE)
1032         if (entering(tcp)) {
1033                 struct ucontext uc;
1034                 sigset_t sigm;
1035
1036                 /* offset of ucontext in the kernel's sigframe structure */
1037 #               define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo)
1038                 if (umove(tcp, tile_regs.sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1039                         return 0;
1040                 sigemptyset(&sigm);
1041                 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
1042                 tprints(sprintsigmask(") (mask ", &sigm, 0));
1043         }
1044 #elif defined(MICROBLAZE)
1045         /* TODO: Verify that this is correct...  */
1046         if (entering(tcp)) {
1047                 struct sigcontext sc;
1048                 long sp;
1049                 sigset_t sigm;
1050                 /* Read r1, the stack pointer.  */
1051                 if (upeek(tcp, 1 * 4, &sp) < 0)
1052                         return 0;
1053                 if (umove(tcp, sp, &sc) < 0)
1054                         return 0;
1055                 long_to_sigset(sc.oldmask, &sigm);
1056                 tprints(sprintsigmask(") (mask ", &sigm, 0));
1057         }
1058 #elif defined(X86_64)
1059         /* no need to remind */
1060 #else
1061 # warning No sys_sigreturn() for this architecture
1062 # warning         (no problem, just a reminder :-)
1063 #endif
1064         return 0;
1065 }
1066
1067 int
1068 sys_siggetmask(struct tcb *tcp)
1069 {
1070         if (exiting(tcp)) {
1071                 sigset_t sigm;
1072                 long_to_sigset(tcp->u_rval, &sigm);
1073                 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
1074         }
1075         return RVAL_HEX | RVAL_STR;
1076 }
1077
1078 int
1079 sys_sigsuspend(struct tcb *tcp)
1080 {
1081         if (entering(tcp)) {
1082                 sigset_t sigm;
1083                 long_to_sigset(tcp->u_arg[2], &sigm);
1084                 printsigmask(&sigm, 0);
1085         }
1086         return 0;
1087 }
1088
1089 #if !defined SS_ONSTACK
1090 #define SS_ONSTACK      1
1091 #define SS_DISABLE      2
1092 #if defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 1))
1093 typedef struct
1094 {
1095         __ptr_t ss_sp;
1096         int ss_flags;
1097         size_t ss_size;
1098 } stack_t;
1099 #endif
1100 #endif
1101
1102 static const struct xlat sigaltstack_flags[] = {
1103         { SS_ONSTACK,   "SS_ONSTACK"    },
1104         { SS_DISABLE,   "SS_DISABLE"    },
1105         { 0,            NULL            },
1106 };
1107
1108 static int
1109 print_stack_t(struct tcb *tcp, unsigned long addr)
1110 {
1111         stack_t ss;
1112         if (umove(tcp, addr, &ss) < 0)
1113                 return -1;
1114         tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1115         printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
1116         tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1117         return 0;
1118 }
1119
1120 int
1121 sys_sigaltstack(struct tcb *tcp)
1122 {
1123         if (entering(tcp)) {
1124                 if (tcp->u_arg[0] == 0)
1125                         tprints("NULL");
1126                 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1127                         return -1;
1128         }
1129         else {
1130                 tprints(", ");
1131                 if (tcp->u_arg[1] == 0)
1132                         tprints("NULL");
1133                 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1134                         return -1;
1135         }
1136         return 0;
1137 }
1138
1139 #ifdef HAVE_SIGACTION
1140
1141 int
1142 sys_sigprocmask(struct tcb *tcp)
1143 {
1144 #ifdef ALPHA
1145         sigset_t ss;
1146         if (entering(tcp)) {
1147                 /*
1148                  * Alpha/OSF is different: it doesn't pass in two pointers,
1149                  * but rather passes in the new bitmask as an argument and
1150                  * then returns the old bitmask.  This "works" because we
1151                  * only have 64 signals to worry about.  If you want more,
1152                  * use of the rt_sigprocmask syscall is required.
1153                  * Alpha:
1154                  *      old = osf_sigprocmask(how, new);
1155                  * Everyone else:
1156                  *      ret = sigprocmask(how, &new, &old, ...);
1157                  */
1158                 memcpy(&ss, &tcp->u_arg[1], sizeof(long));
1159                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1160                 tprints(", ");
1161                 printsigmask(&ss, 0);
1162         }
1163         else if (!syserror(tcp)) {
1164                 memcpy(&ss, &tcp->u_rval, sizeof(long));
1165                 tcp->auxstr = sprintsigmask("old mask ", &ss, 0);
1166                 return RVAL_HEX | RVAL_STR;
1167         }
1168 #else /* !ALPHA */
1169         if (entering(tcp)) {
1170                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1171                 tprints(", ");
1172                 print_sigset(tcp, tcp->u_arg[1], 0);
1173                 tprints(", ");
1174         }
1175         else {
1176                 if (!tcp->u_arg[2])
1177                         tprints("NULL");
1178                 else if (syserror(tcp))
1179                         tprintf("%#lx", tcp->u_arg[2]);
1180                 else
1181                         print_sigset(tcp, tcp->u_arg[2], 0);
1182         }
1183 #endif /* !ALPHA */
1184         return 0;
1185 }
1186
1187 #endif /* HAVE_SIGACTION */
1188
1189 int
1190 sys_kill(struct tcb *tcp)
1191 {
1192         if (entering(tcp)) {
1193                 long pid = tcp->u_arg[0];
1194 #if SUPPORTED_PERSONALITIES > 1
1195                 /* Sign-extend a 32-bit value when that's what it is. */
1196                 if (current_wordsize < sizeof pid)
1197                         pid = (long) (int) pid;
1198 #endif
1199                 tprintf("%ld, %s", pid, signame(tcp->u_arg[1]));
1200         }
1201         return 0;
1202 }
1203
1204 int
1205 sys_tgkill(struct tcb *tcp)
1206 {
1207         if (entering(tcp)) {
1208                 tprintf("%ld, %ld, %s",
1209                         tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2]));
1210         }
1211         return 0;
1212 }
1213
1214 int
1215 sys_sigpending(struct tcb *tcp)
1216 {
1217         sigset_t sigset;
1218
1219         if (exiting(tcp)) {
1220                 if (syserror(tcp))
1221                         tprintf("%#lx", tcp->u_arg[0]);
1222                 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
1223                         tprints("[?]");
1224                 else
1225                         printsigmask(&sigset, 0);
1226         }
1227         return 0;
1228 }
1229
1230 int
1231 sys_rt_sigprocmask(struct tcb *tcp)
1232 {
1233         sigset_t sigset;
1234
1235         /* Note: arg[3] is the length of the sigset. */
1236         if (entering(tcp)) {
1237                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1238                 tprints(", ");
1239                 if (!tcp->u_arg[1])
1240                         tprints("NULL, ");
1241                 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
1242                         tprintf("%#lx, ", tcp->u_arg[1]);
1243                 else {
1244                         printsigmask(&sigset, 1);
1245                         tprints(", ");
1246                 }
1247         }
1248         else {
1249                 if (!tcp->u_arg[2])
1250                         tprints("NULL");
1251                 else if (syserror(tcp))
1252                         tprintf("%#lx", tcp->u_arg[2]);
1253                 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
1254                         tprints("[?]");
1255                 else
1256                         printsigmask(&sigset, 1);
1257                 tprintf(", %lu", tcp->u_arg[3]);
1258         }
1259         return 0;
1260 }
1261
1262 /* Structure describing the action to be taken when a signal arrives.  */
1263 struct new_sigaction
1264 {
1265         /* sa_handler may be a libc #define, need to use other name: */
1266         void (*__sa_handler)(int);
1267         unsigned long sa_flags;
1268         void (*sa_restorer)(void);
1269         /* Kernel treats sa_mask as an array of longs. */
1270         unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1271 };
1272 /* Same for i386-on-x86_64 and similar cases */
1273 struct new_sigaction32
1274 {
1275         uint32_t __sa_handler;
1276         uint32_t sa_flags;
1277         uint32_t sa_restorer;
1278         uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
1279 };
1280
1281 int
1282 sys_rt_sigaction(struct tcb *tcp)
1283 {
1284         struct new_sigaction sa;
1285         sigset_t sigset;
1286         long addr;
1287         int r;
1288
1289         if (entering(tcp)) {
1290                 printsignal(tcp->u_arg[0]);
1291                 tprints(", ");
1292                 addr = tcp->u_arg[1];
1293         } else
1294                 addr = tcp->u_arg[2];
1295
1296         if (addr == 0) {
1297                 tprints("NULL");
1298                 goto after_sa;
1299         }
1300         if (!verbose(tcp)) {
1301                 tprintf("%#lx", addr);
1302                 goto after_sa;
1303         }
1304 #if SUPPORTED_PERSONALITIES > 1
1305 #if SIZEOF_LONG > 4
1306         if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
1307                 struct new_sigaction32 sa32;
1308                 r = umove(tcp, addr, &sa32);
1309                 if (r >= 0) {
1310                         memset(&sa, 0, sizeof(sa));
1311                         sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1312                         sa.sa_flags     = sa32.sa_flags;
1313                         sa.sa_restorer  = (void*)(unsigned long)sa32.sa_restorer;
1314                         /* Kernel treats sa_mask as an array of longs.
1315                          * For 32-bit process, "long" is uint32_t, thus, for example,
1316                          * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1317                          * But for (64-bit) kernel, 32th bit in sa_mask is
1318                          * 32th bit in 0th (64-bit) long!
1319                          * For little-endian, it's the same.
1320                          * For big-endian, we swap 32-bit words.
1321                          */
1322                         sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1323                 }
1324         } else
1325 #endif
1326 #endif
1327         {
1328                 r = umove(tcp, addr, &sa);
1329         }
1330         if (r < 0) {
1331                 tprints("{...}");
1332                 goto after_sa;
1333         }
1334         /* Architectures using function pointers, like
1335          * hppa, may need to manipulate the function pointer
1336          * to compute the result of a comparison. However,
1337          * the __sa_handler function pointer exists only in
1338          * the address space of the traced process, and can't
1339          * be manipulated by strace. In order to prevent the
1340          * compiler from generating code to manipulate
1341          * __sa_handler we cast the function pointers to long. */
1342         if ((long)sa.__sa_handler == (long)SIG_ERR)
1343                 tprints("{SIG_ERR, ");
1344         else if ((long)sa.__sa_handler == (long)SIG_DFL)
1345                 tprints("{SIG_DFL, ");
1346         else if ((long)sa.__sa_handler == (long)SIG_IGN)
1347                 tprints("{SIG_IGN, ");
1348         else
1349                 tprintf("{%#lx, ", (long) sa.__sa_handler);
1350         /* Questionable code below.
1351          * Kernel won't handle sys_rt_sigaction
1352          * with wrong sigset size (just returns EINVAL)
1353          * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here,
1354          * and we always use smaller memcpy. */
1355         sigemptyset(&sigset);
1356 #ifdef LINUXSPARC
1357         if (tcp->u_arg[4] <= sizeof(sigset))
1358                 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1359 #else
1360         if (tcp->u_arg[3] <= sizeof(sigset))
1361                 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
1362 #endif
1363         else
1364                 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1365         printsigmask(&sigset, 1);
1366         tprints(", ");
1367         printflags(sigact_flags, sa.sa_flags, "SA_???");
1368 #ifdef SA_RESTORER
1369         if (sa.sa_flags & SA_RESTORER)
1370                 tprintf(", %p", sa.sa_restorer);
1371 #endif
1372         tprints("}");
1373
1374  after_sa:
1375         if (entering(tcp))
1376                 tprints(", ");
1377         else
1378 #ifdef LINUXSPARC
1379                 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1380 #elif defined(ALPHA)
1381                 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1382 #else
1383                 tprintf(", %lu", tcp->u_arg[3]);
1384 #endif
1385         return 0;
1386 }
1387
1388 int
1389 sys_rt_sigpending(struct tcb *tcp)
1390 {
1391         sigset_t sigset;
1392
1393         if (exiting(tcp)) {
1394                 if (syserror(tcp))
1395                         tprintf("%#lx", tcp->u_arg[0]);
1396                 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1397                                          &sigset, tcp->u_arg[1]) < 0)
1398                         tprints("[?]");
1399                 else
1400                         printsigmask(&sigset, 1);
1401         }
1402         return 0;
1403 }
1404
1405 int
1406 sys_rt_sigsuspend(struct tcb *tcp)
1407 {
1408         if (entering(tcp)) {
1409                 sigset_t sigm;
1410                 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
1411                         tprints("[?]");
1412                 else
1413                         printsigmask(&sigm, 1);
1414         }
1415         return 0;
1416 }
1417
1418 static void
1419 print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1420 {
1421         siginfo_t si;
1422
1423         printsignal(sig);
1424         tprints(", ");
1425         if (umove(tcp, uinfo, &si) < 0)
1426                 tprintf("%#lx", uinfo);
1427         else
1428                 printsiginfo(&si, verbose(tcp));
1429 }
1430
1431 int
1432 sys_rt_sigqueueinfo(struct tcb *tcp)
1433 {
1434         if (entering(tcp)) {
1435                 tprintf("%lu, ", tcp->u_arg[0]);
1436                 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1437         }
1438         return 0;
1439 }
1440
1441 int
1442 sys_rt_tgsigqueueinfo(struct tcb *tcp)
1443 {
1444         if (entering(tcp)) {
1445                 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1446                 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
1447         }
1448         return 0;
1449 }
1450
1451 int sys_rt_sigtimedwait(struct tcb *tcp)
1452 {
1453         if (entering(tcp)) {
1454                 sigset_t sigset;
1455
1456                 if (copy_sigset_len(tcp, tcp->u_arg[0],
1457                                     &sigset, tcp->u_arg[3]) < 0)
1458                         tprints("[?]");
1459                 else
1460                         printsigmask(&sigset, 1);
1461                 tprints(", ");
1462                 /* This is the only "return" parameter, */
1463                 if (tcp->u_arg[1] != 0)
1464                         return 0;
1465                 /* ... if it's NULL, can decode all on entry */
1466                 tprints("NULL, ");
1467         }
1468         else if (tcp->u_arg[1] != 0) {
1469                 /* syscall exit, and u_arg[1] wasn't NULL */
1470                 if (syserror(tcp))
1471                         tprintf("%#lx, ", tcp->u_arg[1]);
1472                 else {
1473                         siginfo_t si;
1474                         if (umove(tcp, tcp->u_arg[1], &si) < 0)
1475                                 tprintf("%#lx, ", tcp->u_arg[1]);
1476                         else {
1477                                 printsiginfo(&si, verbose(tcp));
1478                                 tprints(", ");
1479                         }
1480                 }
1481         }
1482         else {
1483                 /* syscall exit, and u_arg[1] was NULL */
1484                 return 0;
1485         }
1486         print_timespec(tcp, tcp->u_arg[2]);
1487         tprintf(", %d", (int) tcp->u_arg[3]);
1488         return 0;
1489 };
1490
1491 int
1492 sys_restart_syscall(struct tcb *tcp)
1493 {
1494         if (entering(tcp))
1495                 tprints("<... resuming interrupted call ...>");
1496         return 0;
1497 }
1498
1499 static int
1500 do_signalfd(struct tcb *tcp, int flags_arg)
1501 {
1502         if (entering(tcp)) {
1503                 printfd(tcp, tcp->u_arg[0]);
1504                 tprints(", ");
1505                 print_sigset(tcp, tcp->u_arg[1], 1);
1506                 tprintf(", %lu", tcp->u_arg[2]);
1507                 if (flags_arg >= 0) {
1508                         tprints(", ");
1509                         printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1510                 }
1511         }
1512         return 0;
1513 }
1514
1515 int
1516 sys_signalfd(struct tcb *tcp)
1517 {
1518         return do_signalfd(tcp, -1);
1519 }
1520
1521 int
1522 sys_signalfd4(struct tcb *tcp)
1523 {
1524         return do_signalfd(tcp, 3);
1525 }