]> granicus.if.org Git - strace/blob - signal.c
Delete old PTRACE_{PEEK,POKE}USR logic
[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         { SA_RESTORER,  "SA_RESTORER"   },
104 #endif
105 #ifdef SA_STACK
106         { SA_STACK,     "SA_STACK"      },
107 #endif
108 #ifdef SA_RESTART
109         { SA_RESTART,   "SA_RESTART"    },
110 #endif
111 #ifdef SA_INTERRUPT
112         { SA_INTERRUPT, "SA_INTERRUPT"  },
113 #endif
114 #ifdef SA_NODEFER
115         { SA_NODEFER,   "SA_NODEFER"    },
116 #endif
117 #if defined SA_NOMASK && SA_NODEFER != SA_NOMASK
118         { SA_NOMASK,    "SA_NOMASK"     },
119 #endif
120 #ifdef SA_RESETHAND
121         { SA_RESETHAND, "SA_RESETHAND"  },
122 #endif
123 #if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND
124         { SA_ONESHOT,   "SA_ONESHOT"    },
125 #endif
126 #ifdef SA_SIGINFO
127         { SA_SIGINFO,   "SA_SIGINFO"    },
128 #endif
129 #ifdef SA_RESETHAND
130         { SA_RESETHAND, "SA_RESETHAND"  },
131 #endif
132 #ifdef SA_ONSTACK
133         { SA_ONSTACK,   "SA_ONSTACK"    },
134 #endif
135 #ifdef SA_NODEFER
136         { SA_NODEFER,   "SA_NODEFER"    },
137 #endif
138 #ifdef SA_NOCLDSTOP
139         { SA_NOCLDSTOP, "SA_NOCLDSTOP"  },
140 #endif
141 #ifdef SA_NOCLDWAIT
142         { SA_NOCLDWAIT, "SA_NOCLDWAIT"  },
143 #endif
144 #ifdef _SA_BSDCALL
145         { _SA_BSDCALL,  "_SA_BSDCALL"   },
146 #endif
147 #ifdef SA_NOPTRACE
148         { SA_NOPTRACE,  "SA_NOPTRACE"   },
149 #endif
150         { 0,            NULL            },
151 };
152
153 static const struct xlat sigprocmaskcmds[] = {
154         { SIG_BLOCK,    "SIG_BLOCK"     },
155         { SIG_UNBLOCK,  "SIG_UNBLOCK"   },
156         { SIG_SETMASK,  "SIG_SETMASK"   },
157 #ifdef SIG_SETMASK32
158         { SIG_SETMASK32,"SIG_SETMASK32" },
159 #endif
160         { 0,            NULL            },
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         { SI_KERNEL,    "SI_KERNEL"     },
380 #endif
381 #ifdef SI_USER
382         { SI_USER,      "SI_USER"       },
383 #endif
384 #ifdef SI_QUEUE
385         { SI_QUEUE,     "SI_QUEUE"      },
386 #endif
387 #ifdef SI_TIMER
388         { SI_TIMER,     "SI_TIMER"      },
389 #endif
390 #ifdef SI_MESGQ
391         { SI_MESGQ,     "SI_MESGQ"      },
392 #endif
393 #ifdef SI_ASYNCIO
394         { SI_ASYNCIO,   "SI_ASYNCIO"    },
395 #endif
396 #ifdef SI_SIGIO
397         { SI_SIGIO,     "SI_SIGIO"      },
398 #endif
399 #ifdef SI_TKILL
400         { SI_TKILL,     "SI_TKILL"      },
401 #endif
402 #ifdef SI_ASYNCNL
403         { SI_ASYNCNL,   "SI_ASYNCNL"    },
404 #endif
405 #ifdef SI_NOINFO
406         { SI_NOINFO,    "SI_NOINFO"     },
407 #endif
408 #ifdef SI_LWP
409         { SI_LWP,       "SI_LWP"        },
410 #endif
411         { 0,            NULL            },
412 };
413
414 static const struct xlat sigill_codes[] = {
415         { ILL_ILLOPC,   "ILL_ILLOPC"    },
416         { ILL_ILLOPN,   "ILL_ILLOPN"    },
417         { ILL_ILLADR,   "ILL_ILLADR"    },
418         { ILL_ILLTRP,   "ILL_ILLTRP"    },
419         { ILL_PRVOPC,   "ILL_PRVOPC"    },
420         { ILL_PRVREG,   "ILL_PRVREG"    },
421         { ILL_COPROC,   "ILL_COPROC"    },
422         { ILL_BADSTK,   "ILL_BADSTK"    },
423         { 0,            NULL            },
424 };
425
426 static const struct xlat sigfpe_codes[] = {
427         { FPE_INTDIV,   "FPE_INTDIV"    },
428         { FPE_INTOVF,   "FPE_INTOVF"    },
429         { FPE_FLTDIV,   "FPE_FLTDIV"    },
430         { FPE_FLTOVF,   "FPE_FLTOVF"    },
431         { FPE_FLTUND,   "FPE_FLTUND"    },
432         { FPE_FLTRES,   "FPE_FLTRES"    },
433         { FPE_FLTINV,   "FPE_FLTINV"    },
434         { FPE_FLTSUB,   "FPE_FLTSUB"    },
435         { 0,            NULL            },
436 };
437
438 static const struct xlat sigtrap_codes[] = {
439         { TRAP_BRKPT,   "TRAP_BRKPT"    },
440         { TRAP_TRACE,   "TRAP_TRACE"    },
441         { 0,            NULL            },
442 };
443
444 static const struct xlat sigchld_codes[] = {
445         { CLD_EXITED,   "CLD_EXITED"    },
446         { CLD_KILLED,   "CLD_KILLED"    },
447         { CLD_DUMPED,   "CLD_DUMPED"    },
448         { CLD_TRAPPED,  "CLD_TRAPPED"   },
449         { CLD_STOPPED,  "CLD_STOPPED"   },
450         { CLD_CONTINUED,"CLD_CONTINUED" },
451         { 0,            NULL            },
452 };
453
454 static const struct xlat sigpoll_codes[] = {
455         { POLL_IN,      "POLL_IN"       },
456         { POLL_OUT,     "POLL_OUT"      },
457         { POLL_MSG,     "POLL_MSG"      },
458         { POLL_ERR,     "POLL_ERR"      },
459         { POLL_PRI,     "POLL_PRI"      },
460         { POLL_HUP,     "POLL_HUP"      },
461         { 0,            NULL            },
462 };
463
464 static const struct xlat sigprof_codes[] = {
465 #ifdef PROF_SIG
466         { PROF_SIG,     "PROF_SIG"      },
467 #endif
468         { 0,            NULL            },
469 };
470
471 #ifdef SIGEMT
472 static const struct xlat sigemt_codes[] = {
473 #ifdef EMT_TAGOVF
474         { EMT_TAGOVF,   "EMT_TAGOVF"    },
475 #endif
476         { 0,            NULL            },
477 };
478 #endif
479
480 static const struct xlat sigsegv_codes[] = {
481         { SEGV_MAPERR,  "SEGV_MAPERR"   },
482         { SEGV_ACCERR,  "SEGV_ACCERR"   },
483         { 0,            NULL            },
484 };
485
486 static const struct xlat sigbus_codes[] = {
487         { BUS_ADRALN,   "BUS_ADRALN"    },
488         { BUS_ADRERR,   "BUS_ADRERR"    },
489         { BUS_OBJERR,   "BUS_OBJERR"    },
490         { 0,            NULL            },
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         void (*__sa_handler)(int);
673         unsigned long sa_mask;
674         unsigned long sa_flags;
675         void (*sa_restorer)(void);
676 };
677
678 int
679 sys_sigaction(struct tcb *tcp)
680 {
681         long addr;
682         struct old_sigaction sa;
683
684         if (entering(tcp)) {
685                 printsignal(tcp->u_arg[0]);
686                 tprints(", ");
687                 addr = tcp->u_arg[1];
688         } else
689                 addr = tcp->u_arg[2];
690         if (addr == 0)
691                 tprints("NULL");
692         else if (!verbose(tcp))
693                 tprintf("%#lx", addr);
694         else if (umove(tcp, addr, &sa) < 0)
695                 tprints("{...}");
696         else {
697                 /* Architectures using function pointers, like
698                  * hppa, may need to manipulate the function pointer
699                  * to compute the result of a comparison. However,
700                  * the __sa_handler function pointer exists only in
701                  * the address space of the traced process, and can't
702                  * be manipulated by strace. In order to prevent the
703                  * compiler from generating code to manipulate
704                  * __sa_handler we cast the function pointers to long. */
705                 if ((long)sa.__sa_handler == (long)SIG_ERR)
706                         tprints("{SIG_ERR, ");
707                 else if ((long)sa.__sa_handler == (long)SIG_DFL)
708                         tprints("{SIG_DFL, ");
709                 else if ((long)sa.__sa_handler == (long)SIG_IGN)
710                         tprints("{SIG_IGN, ");
711                 else
712                         tprintf("{%#lx, ", (long) sa.__sa_handler);
713                 tprints(sprintsigmask_long("", sa.sa_mask));
714                 tprints(", ");
715                 printflags(sigact_flags, sa.sa_flags, "SA_???");
716 #ifdef SA_RESTORER
717                 if (sa.sa_flags & SA_RESTORER)
718                         tprintf(", %p", sa.sa_restorer);
719 #endif
720                 tprints("}");
721         }
722         if (entering(tcp))
723                 tprints(", ");
724         else
725                 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
726         return 0;
727 }
728
729 int
730 sys_signal(struct tcb *tcp)
731 {
732         if (entering(tcp)) {
733                 printsignal(tcp->u_arg[0]);
734                 tprints(", ");
735                 switch (tcp->u_arg[1]) {
736                 case (long) SIG_ERR:
737                         tprints("SIG_ERR");
738                         break;
739                 case (long) SIG_DFL:
740                         tprints("SIG_DFL");
741                         break;
742                 case (long) SIG_IGN:
743                         tprints("SIG_IGN");
744                         break;
745                 default:
746                         tprintf("%#lx", tcp->u_arg[1]);
747                 }
748                 return 0;
749         }
750         else if (!syserror(tcp)) {
751                 switch (tcp->u_rval) {
752                 case (long) SIG_ERR:
753                         tcp->auxstr = "SIG_ERR"; break;
754                 case (long) SIG_DFL:
755                         tcp->auxstr = "SIG_DFL"; break;
756                 case (long) SIG_IGN:
757                         tcp->auxstr = "SIG_IGN"; break;
758                 default:
759                         tcp->auxstr = NULL;
760                 }
761                 return RVAL_HEX | RVAL_STR;
762         }
763         return 0;
764 }
765
766 #endif /* HAVE_SIGACTION */
767
768 int
769 sys_sigreturn(struct tcb *tcp)
770 {
771 #if defined(ARM)
772         if (entering(tcp)) {
773                 struct arm_sigcontext {
774                         unsigned long trap_no;
775                         unsigned long error_code;
776                         unsigned long oldmask;
777                         unsigned long arm_r0;
778                         unsigned long arm_r1;
779                         unsigned long arm_r2;
780                         unsigned long arm_r3;
781                         unsigned long arm_r4;
782                         unsigned long arm_r5;
783                         unsigned long arm_r6;
784                         unsigned long arm_r7;
785                         unsigned long arm_r8;
786                         unsigned long arm_r9;
787                         unsigned long arm_r10;
788                         unsigned long arm_fp;
789                         unsigned long arm_ip;
790                         unsigned long arm_sp;
791                         unsigned long arm_lr;
792                         unsigned long arm_pc;
793                         unsigned long arm_cpsr;
794                         unsigned long fault_address;
795                 };
796                 struct arm_ucontext {
797                         unsigned long uc_flags;
798                         unsigned long uc_link;  /* struct ucontext* */
799                         /* The next three members comprise stack_t struct: */
800                         unsigned long ss_sp;    /* void*   */
801                         unsigned long ss_flags; /* int     */
802                         unsigned long ss_size;  /* size_t  */
803                         struct arm_sigcontext sc;
804                         /* These two members are sigset_t: */
805                         unsigned long uc_sigmask[2];
806                         /* more fields follow, which we aren't interested in */
807                 };
808                 struct arm_ucontext uc;
809                 sigset_t sigm;
810                 if (umove(tcp, arm_regs.ARM_sp, &uc) < 0)
811                         return 0;
812                 /* Kernel fills out uc.sc.oldmask too when it sets up signal stack,
813                  * but for sigmask restore, sigreturn syscall uses uc.uc_sigmask instead.
814                  *  tprints(sprintsigmask_long(") (mask ", uc.sc.oldmask));
815                  */
816                 sigemptyset(&sigm);
817                 ((uint32_t*)&sigm)[0] = uc.uc_sigmask[0];
818                 ((uint32_t*)&sigm)[1] = uc.uc_sigmask[1];
819                 tprints(sprintsigmask(") (mask ", &sigm));
820         }
821 #elif defined(S390) || defined(S390X)
822         if (entering(tcp)) {
823                 long usp;
824                 struct sigcontext sc;
825                 if (upeek(tcp->pid, PT_GPR15, &usp) < 0)
826                         return 0;
827                 if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0)
828                         return 0;
829                 tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0]));
830         }
831 #elif defined(I386) || defined(X86_64)
832 # if defined(X86_64)
833         if (current_personality == 0) /* 64-bit */
834                 return 0;
835 # endif
836         if (entering(tcp)) {
837                 struct i386_sigcontext_struct {
838                         uint16_t gs, __gsh;
839                         uint16_t fs, __fsh;
840                         uint16_t es, __esh;
841                         uint16_t ds, __dsh;
842                         uint32_t edi;
843                         uint32_t esi;
844                         uint32_t ebp;
845                         uint32_t esp;
846                         uint32_t ebx;
847                         uint32_t edx;
848                         uint32_t ecx;
849                         uint32_t eax;
850                         uint32_t trapno;
851                         uint32_t err;
852                         uint32_t eip;
853                         uint16_t cs, __csh;
854                         uint32_t eflags;
855                         uint32_t esp_at_signal;
856                         uint16_t ss, __ssh;
857                         uint32_t i387;
858                         uint32_t oldmask;
859                         uint32_t cr2;
860                 };
861                 struct i386_fpstate {
862                         uint32_t cw;
863                         uint32_t sw;
864                         uint32_t tag;
865                         uint32_t ipoff;
866                         uint32_t cssel;
867                         uint32_t dataoff;
868                         uint32_t datasel;
869                         uint8_t  st[8][10]; /* 8*10 bytes: FP regs */
870                         uint16_t status;
871                         uint16_t magic;
872                         uint32_t fxsr_env[6];
873                         uint32_t mxcsr;
874                         uint32_t reserved;
875                         uint8_t  stx[8][16]; /* 8*16 bytes: FP regs, each padded to 16 bytes */
876                         uint8_t  xmm[8][16]; /* 8 XMM regs */
877                         uint32_t padding1[44];
878                         uint32_t padding2[12]; /* union with struct _fpx_sw_bytes */
879                 };
880                 struct {
881                         struct i386_sigcontext_struct sc;
882                         struct i386_fpstate fp;
883                         uint32_t extramask[1];
884                 } signal_stack;
885                 /* On i386, sc is followed on stack by struct fpstate
886                  * and after it an additional u32 extramask[1] which holds
887                  * upper half of the mask.
888                  */
889                 union {
890                         sigset_t sig;
891                         uint32_t mask[2];
892                 } sigmask;
893                 if (umove(tcp, *i386_esp_ptr, &signal_stack) < 0)
894                         return 0;
895                 sigemptyset(&sigmask.sig);
896                 sigmask.mask[0] = signal_stack.sc.oldmask;
897                 sigmask.mask[1] = signal_stack.extramask[0];
898                 tprints(sprintsigmask(") (mask ", &sigmask.sig));
899         }
900 #elif defined(IA64)
901         if (entering(tcp)) {
902                 struct sigcontext sc;
903                 long sp;
904                 sigset_t sigm;
905                 /* offset of sigcontext in the kernel's sigframe structure: */
906 #               define SIGFRAME_SC_OFFSET       0x90
907                 if (upeek(tcp->pid, PT_R12, &sp) < 0)
908                         return 0;
909                 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
910                         return 0;
911                 sigemptyset(&sigm);
912                 memcpy(&sigm, &sc.sc_mask, NSIG / 8);
913                 tprints(sprintsigmask(") (mask ", &sigm));
914         }
915 #elif defined(POWERPC)
916         if (entering(tcp)) {
917                 long esp;
918                 struct sigcontext sc;
919
920                 esp = ppc_regs.gpr[1];
921
922                 /* Skip dummy stack frame. */
923 #ifdef POWERPC64
924                 if (current_personality == 0)
925                         esp += 128;
926                 else
927                         esp += 64;
928 #else
929                 esp += 64;
930 #endif
931                 if (umove(tcp, esp, &sc) < 0)
932                         return 0;
933                 tprints(sprintsigmask_long(") (mask ", sc.oldmask));
934         }
935 #elif defined(M68K)
936         if (entering(tcp)) {
937                 long usp;
938                 struct sigcontext sc;
939                 if (upeek(tcp->pid, 4*PT_USP, &usp) < 0)
940                         return 0;
941                 if (umove(tcp, usp, &sc) < 0)
942                         return 0;
943                 tprints(sprintsigmask_long(") (mask ", sc.sc_mask));
944         }
945 #elif defined(ALPHA)
946         if (entering(tcp)) {
947                 long fp;
948                 struct sigcontext sc;
949                 if (upeek(tcp->pid, REG_FP, &fp) < 0)
950                         return 0;
951                 if (umove(tcp, fp, &sc) < 0)
952                         return 0;
953                 tprints(sprintsigmask_long(") (mask ", sc.sc_mask));
954         }
955 #elif defined(SPARC) || defined(SPARC64)
956         if (entering(tcp)) {
957                 long i1;
958                 m_siginfo_t si;
959                 i1 = sparc_regs.u_regs[U_REG_O1];
960                 if (umove(tcp, i1, &si) < 0) {
961                         perror_msg("sigreturn: umove");
962                         return 0;
963                 }
964                 tprints(sprintsigmask_long(") (mask ", si.si_mask));
965         }
966 #elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
967         /* This decodes rt_sigreturn.  The 64-bit ABIs do not have
968            sigreturn.  */
969         if (entering(tcp)) {
970                 long sp;
971                 struct ucontext uc;
972                 sigset_t sigm;
973                 if (upeek(tcp->pid, REG_SP, &sp) < 0)
974                         return 0;
975                 /* There are six words followed by a 128-byte siginfo.  */
976                 sp = sp + 6 * 4 + 128;
977                 if (umove(tcp, sp, &uc) < 0)
978                         return 0;
979                 tprints(sprintsigmask_long(") (mask ", *(long *) &uc.uc_sigmask));
980         }
981 #elif defined(MIPS)
982         if (entering(tcp)) {
983                 long sp;
984                 struct pt_regs regs;
985                 m_siginfo_t si;
986                 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
987                         perror_msg("sigreturn: PTRACE_GETREGS");
988                         return 0;
989                 }
990                 sp = regs.regs[29];
991                 if (umove(tcp, sp, &si) < 0)
992                         return 0;
993                 tprints(sprintsigmask_long(") (mask ", si.si_mask));
994         }
995 #elif defined(CRISV10) || defined(CRISV32)
996         if (entering(tcp)) {
997                 struct sigcontext sc;
998                 long regs[PT_MAX+1];
999                 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
1000                         perror_msg("sigreturn: PTRACE_GETREGS");
1001                         return 0;
1002                 }
1003                 if (umove(tcp, regs[PT_USP], &sc) < 0)
1004                         return 0;
1005                 tprints(sprintsigmask_long(") (mask ", sc.oldmask));
1006         }
1007 #elif defined(TILE)
1008         if (entering(tcp)) {
1009                 struct ucontext uc;
1010                 sigset_t sigm;
1011
1012                 /* offset of ucontext in the kernel's sigframe structure */
1013 #               define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(siginfo_t)
1014                 if (umove(tcp, tile_regs.sp + SIGFRAME_UC_OFFSET, &uc) < 0)
1015                         return 0;
1016                 sigemptyset(&sigm);
1017                 memcpy(&sigm, &uc.uc_sigmask, NSIG / 8);
1018                 tprints(sprintsigmask(") (mask ", &sigm));
1019         }
1020 #elif defined(MICROBLAZE)
1021         /* TODO: Verify that this is correct...  */
1022         if (entering(tcp)) {
1023                 struct sigcontext sc;
1024                 long sp;
1025                 /* Read r1, the stack pointer.  */
1026                 if (upeek(tcp->pid, 1 * 4, &sp) < 0)
1027                         return 0;
1028                 if (umove(tcp, sp, &sc) < 0)
1029                         return 0;
1030                 tprints(sprintsigmask_long(") (mask ", sc.oldmask));
1031         }
1032 #elif defined(XTENSA)
1033         /* Xtensa only has rt_sys_sigreturn */
1034 #elif defined(ARC)
1035         /* ARC syscall ABI only supports rt_sys_sigreturn */
1036 #else
1037 # warning No sys_sigreturn() for this architecture
1038 # warning         (no problem, just a reminder :-)
1039 #endif
1040         return 0;
1041 }
1042
1043 int
1044 sys_siggetmask(struct tcb *tcp)
1045 {
1046         if (exiting(tcp)) {
1047                 tcp->auxstr = sprintsigmask_long("mask ", tcp->u_rval);
1048         }
1049         return RVAL_HEX | RVAL_STR;
1050 }
1051
1052 int
1053 sys_sigsuspend(struct tcb *tcp)
1054 {
1055         if (entering(tcp)) {
1056                 tprints(sprintsigmask_long("", tcp->u_arg[2]));
1057         }
1058         return 0;
1059 }
1060
1061 #if !defined SS_ONSTACK
1062 #define SS_ONSTACK      1
1063 #define SS_DISABLE      2
1064 #endif
1065
1066 static const struct xlat sigaltstack_flags[] = {
1067         { SS_ONSTACK,   "SS_ONSTACK"    },
1068         { SS_DISABLE,   "SS_DISABLE"    },
1069         { 0,            NULL            },
1070 };
1071
1072 static void
1073 print_stack_t(struct tcb *tcp, unsigned long addr)
1074 {
1075         stack_t ss;
1076
1077         if (!addr) {
1078                 tprints("NULL");
1079         } else if (umove(tcp, addr, &ss) < 0) {
1080                 tprintf("%#lx", addr);
1081         } else {
1082                 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1083                 printflags(sigaltstack_flags, ss.ss_flags, "SS_???");
1084                 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1085         }
1086 }
1087
1088 int
1089 sys_sigaltstack(struct tcb *tcp)
1090 {
1091         if (entering(tcp)) {
1092                 print_stack_t(tcp, tcp->u_arg[0]);
1093         }
1094         else {
1095                 tprints(", ");
1096                 print_stack_t(tcp, tcp->u_arg[1]);
1097         }
1098         return 0;
1099 }
1100
1101 #ifdef HAVE_SIGACTION
1102
1103 /* "Old" sigprocmask, which operates with word-sized signal masks */
1104 int
1105 sys_sigprocmask(struct tcb *tcp)
1106 {
1107 # ifdef ALPHA
1108         if (entering(tcp)) {
1109                 /*
1110                  * Alpha/OSF is different: it doesn't pass in two pointers,
1111                  * but rather passes in the new bitmask as an argument and
1112                  * then returns the old bitmask.  This "works" because we
1113                  * only have 64 signals to worry about.  If you want more,
1114                  * use of the rt_sigprocmask syscall is required.
1115                  * Alpha:
1116                  *      old = osf_sigprocmask(how, new);
1117                  * Everyone else:
1118                  *      ret = sigprocmask(how, &new, &old, ...);
1119                  */
1120                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1121                 tprints(sprintsigmask_long(", ", tcp->u_arg[1]));
1122         }
1123         else if (!syserror(tcp)) {
1124                 tcp->auxstr = sprintsigmask_long("old mask ", tcp->u_rval);
1125                 return RVAL_HEX | RVAL_STR;
1126         }
1127 # else /* !ALPHA */
1128         if (entering(tcp)) {
1129                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1130                 tprints(", ");
1131                 print_sigset_addr_len(tcp, tcp->u_arg[1], current_wordsize);
1132                 tprints(", ");
1133         }
1134         else {
1135                 if (syserror(tcp))
1136                         tprintf("%#lx", tcp->u_arg[2]);
1137                 else
1138                         print_sigset_addr_len(tcp, tcp->u_arg[2], current_wordsize);
1139         }
1140 # endif /* !ALPHA */
1141         return 0;
1142 }
1143
1144 #endif /* HAVE_SIGACTION */
1145
1146 int
1147 sys_kill(struct tcb *tcp)
1148 {
1149         if (entering(tcp)) {
1150                 tprintf("%ld, %s",
1151                         widen_to_long(tcp->u_arg[0]),
1152                         signame(tcp->u_arg[1])
1153                 );
1154         }
1155         return 0;
1156 }
1157
1158 int
1159 sys_tgkill(struct tcb *tcp)
1160 {
1161         if (entering(tcp)) {
1162                 tprintf("%ld, %ld, %s",
1163                         widen_to_long(tcp->u_arg[0]),
1164                         widen_to_long(tcp->u_arg[1]),
1165                         signame(tcp->u_arg[2])
1166                 );
1167         }
1168         return 0;
1169 }
1170
1171 int
1172 sys_sigpending(struct tcb *tcp)
1173 {
1174         if (exiting(tcp)) {
1175                 if (syserror(tcp))
1176                         tprintf("%#lx", tcp->u_arg[0]);
1177                 else
1178                         print_sigset_addr_len(tcp, tcp->u_arg[0], current_wordsize);
1179         }
1180         return 0;
1181 }
1182
1183 int
1184 sys_rt_sigprocmask(struct tcb *tcp)
1185 {
1186         /* Note: arg[3] is the length of the sigset. Kernel requires NSIG / 8 */
1187         if (entering(tcp)) {
1188                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1189                 tprints(", ");
1190                 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[3]);
1191                 tprints(", ");
1192         }
1193         else {
1194                 if (syserror(tcp))
1195                         tprintf("%#lx", tcp->u_arg[2]);
1196                 else
1197                         print_sigset_addr_len(tcp, tcp->u_arg[2], tcp->u_arg[3]);
1198                 tprintf(", %lu", tcp->u_arg[3]);
1199         }
1200         return 0;
1201 }
1202
1203 /* Structure describing the action to be taken when a signal arrives.  */
1204 struct new_sigaction
1205 {
1206         /* sa_handler may be a libc #define, need to use other name: */
1207         void (*__sa_handler)(int);
1208         unsigned long sa_flags;
1209         void (*sa_restorer)(void);
1210         /* Kernel treats sa_mask as an array of longs. */
1211         unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];
1212 };
1213 /* Same for i386-on-x86_64 and similar cases */
1214 struct new_sigaction32
1215 {
1216         uint32_t __sa_handler;
1217         uint32_t sa_flags;
1218         uint32_t sa_restorer;
1219         uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)];
1220 };
1221
1222 int
1223 sys_rt_sigaction(struct tcb *tcp)
1224 {
1225         struct new_sigaction sa;
1226         sigset_t sigset;
1227         long addr;
1228         int r;
1229
1230         if (entering(tcp)) {
1231                 printsignal(tcp->u_arg[0]);
1232                 tprints(", ");
1233                 addr = tcp->u_arg[1];
1234         } else
1235                 addr = tcp->u_arg[2];
1236
1237         if (addr == 0) {
1238                 tprints("NULL");
1239                 goto after_sa;
1240         }
1241         if (!verbose(tcp)) {
1242                 tprintf("%#lx", addr);
1243                 goto after_sa;
1244         }
1245 #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
1246         if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) {
1247                 struct new_sigaction32 sa32;
1248                 r = umove(tcp, addr, &sa32);
1249                 if (r >= 0) {
1250                         memset(&sa, 0, sizeof(sa));
1251                         sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler;
1252                         sa.sa_flags     = sa32.sa_flags;
1253                         sa.sa_restorer  = (void*)(unsigned long)sa32.sa_restorer;
1254                         /* Kernel treats sa_mask as an array of longs.
1255                          * For 32-bit process, "long" is uint32_t, thus, for example,
1256                          * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
1257                          * But for (64-bit) kernel, 32th bit in sa_mask is
1258                          * 32th bit in 0th (64-bit) long!
1259                          * For little-endian, it's the same.
1260                          * For big-endian, we swap 32-bit words.
1261                          */
1262                         sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32);
1263                 }
1264         } else
1265 #endif
1266         {
1267                 r = umove(tcp, addr, &sa);
1268         }
1269         if (r < 0) {
1270                 tprints("{...}");
1271                 goto after_sa;
1272         }
1273         /* Architectures using function pointers, like
1274          * hppa, may need to manipulate the function pointer
1275          * to compute the result of a comparison. However,
1276          * the __sa_handler function pointer exists only in
1277          * the address space of the traced process, and can't
1278          * be manipulated by strace. In order to prevent the
1279          * compiler from generating code to manipulate
1280          * __sa_handler we cast the function pointers to long. */
1281         if ((long)sa.__sa_handler == (long)SIG_ERR)
1282                 tprints("{SIG_ERR, ");
1283         else if ((long)sa.__sa_handler == (long)SIG_DFL)
1284                 tprints("{SIG_DFL, ");
1285         else if ((long)sa.__sa_handler == (long)SIG_IGN)
1286                 tprints("{SIG_IGN, ");
1287         else
1288                 tprintf("{%#lx, ", (long) sa.__sa_handler);
1289         /*
1290          * Sigset size is in tcp->u_arg[4] (SPARC)
1291          * or in tcp->u_arg[3] (all other),
1292          * but kernel won't handle sys_rt_sigaction
1293          * with wrong sigset size (just returns EINVAL instead).
1294          * We just fetch the right size, which is NSIG / 8.
1295          */
1296         sigemptyset(&sigset);
1297         memcpy(&sigset, &sa.sa_mask, NSIG / 8);
1298         printsigmask(&sigset);
1299         tprints(", ");
1300
1301         printflags(sigact_flags, sa.sa_flags, "SA_???");
1302 #ifdef SA_RESTORER
1303         if (sa.sa_flags & SA_RESTORER)
1304                 tprintf(", %p", sa.sa_restorer);
1305 #endif
1306         tprints("}");
1307
1308  after_sa:
1309         if (entering(tcp))
1310                 tprints(", ");
1311         else
1312 #if defined(SPARC) || defined(SPARC64)
1313                 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1314 #elif defined(ALPHA)
1315                 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1316 #else
1317                 tprintf(", %lu", tcp->u_arg[3]);
1318 #endif
1319         return 0;
1320 }
1321
1322 int
1323 sys_rt_sigpending(struct tcb *tcp)
1324 {
1325         if (exiting(tcp)) {
1326                 /*
1327                  * One of the few syscalls where sigset size (arg[1])
1328                  * is allowed to be <= NSIG / 8, not strictly ==.
1329                  * This allows non-rt sigpending() syscall
1330                  * to reuse rt_sigpending() code in kernel.
1331                  */
1332                 if (syserror(tcp))
1333                         tprintf("%#lx", tcp->u_arg[0]);
1334                 else
1335                         print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
1336                 tprintf(", %lu", tcp->u_arg[1]);
1337         }
1338         return 0;
1339 }
1340
1341 int
1342 sys_rt_sigsuspend(struct tcb *tcp)
1343 {
1344         if (entering(tcp)) {
1345                 /* NB: kernel requires arg[1] == NSIG / 8 */
1346                 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
1347                 tprintf(", %lu", tcp->u_arg[1]);
1348         }
1349         return 0;
1350 }
1351
1352 static void
1353 print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo)
1354 {
1355         printsignal(sig);
1356         tprints(", ");
1357         printsiginfo_at(tcp, uinfo);
1358 }
1359
1360 int
1361 sys_rt_sigqueueinfo(struct tcb *tcp)
1362 {
1363         if (entering(tcp)) {
1364                 tprintf("%lu, ", tcp->u_arg[0]);
1365                 print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1366         }
1367         return 0;
1368 }
1369
1370 int
1371 sys_rt_tgsigqueueinfo(struct tcb *tcp)
1372 {
1373         if (entering(tcp)) {
1374                 tprintf("%lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
1375                 print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
1376         }
1377         return 0;
1378 }
1379
1380 int sys_rt_sigtimedwait(struct tcb *tcp)
1381 {
1382         /* NB: kernel requires arg[3] == NSIG / 8 */
1383         if (entering(tcp)) {
1384                 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[3]);
1385                 tprints(", ");
1386                 /* This is the only "return" parameter, */
1387                 if (tcp->u_arg[1] != 0)
1388                         return 0;
1389                 /* ... if it's NULL, can decode all on entry */
1390                 tprints("NULL, ");
1391         }
1392         else if (tcp->u_arg[1] != 0) {
1393                 /* syscall exit, and u_arg[1] wasn't NULL */
1394                 printsiginfo_at(tcp, tcp->u_arg[1]);
1395                 tprints(", ");
1396         }
1397         else {
1398                 /* syscall exit, and u_arg[1] was NULL */
1399                 return 0;
1400         }
1401         print_timespec(tcp, tcp->u_arg[2]);
1402         tprintf(", %lu", tcp->u_arg[3]);
1403         return 0;
1404 };
1405
1406 int
1407 sys_restart_syscall(struct tcb *tcp)
1408 {
1409         if (entering(tcp))
1410                 tprints("<... resuming interrupted call ...>");
1411         return 0;
1412 }
1413
1414 static int
1415 do_signalfd(struct tcb *tcp, int flags_arg)
1416 {
1417         /* NB: kernel requires arg[2] == NSIG / 8 */
1418         if (entering(tcp)) {
1419                 printfd(tcp, tcp->u_arg[0]);
1420                 tprints(", ");
1421                 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[2]);
1422                 tprintf(", %lu", tcp->u_arg[2]);
1423                 if (flags_arg >= 0) {
1424                         tprints(", ");
1425                         printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1426                 }
1427         }
1428         return 0;
1429 }
1430
1431 int
1432 sys_signalfd(struct tcb *tcp)
1433 {
1434         return do_signalfd(tcp, -1);
1435 }
1436
1437 int
1438 sys_signalfd4(struct tcb *tcp)
1439 {
1440         return do_signalfd(tcp, 3);
1441 }