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