]> granicus.if.org Git - strace/blob - signal.c
btrfs: use uint32_t instead of __u32
[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  * Copyright (c) 2001-2017 The strace developers.
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. The name of the author may not be used to endorse or promote products
21  *    derived from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include "defs.h"
36 #include "nsig.h"
37 #include "xstring.h"
38
39 /* The libc headers do not define this constant since it should only be
40    used by the implementation.  So we define it here.  */
41 #ifndef SA_RESTORER
42 # ifdef ASM_SA_RESTORER
43 #  define SA_RESTORER ASM_SA_RESTORER
44 # endif
45 #endif
46
47 /*
48  * Some architectures define SA_RESTORER in their headers,
49  * but do not actually have sa_restorer.
50  *
51  * Some architectures, otherwise, do not define SA_RESTORER in their headers,
52  * but actually have sa_restorer.
53  */
54 #ifdef SA_RESTORER
55 # if defined HPPA || defined IA64
56 #  define HAVE_SA_RESTORER 0
57 # else
58 #  define HAVE_SA_RESTORER 1
59 # endif
60 #else /* !SA_RESTORER */
61 # if defined SPARC || defined SPARC64 || defined M68K
62 #  define HAVE_SA_RESTORER 1
63 # else
64 #  define HAVE_SA_RESTORER 0
65 # endif
66 #endif
67
68 #include "xlat/sa_handler_values.h"
69 #include "xlat/sigact_flags.h"
70 #include "xlat/sigprocmaskcmds.h"
71
72 /* Anonymous realtime signals. */
73 #ifndef ASM_SIGRTMIN
74 /* Linux kernel >= 3.18 defines SIGRTMIN to 32 on all architectures. */
75 # define ASM_SIGRTMIN 32
76 #endif
77 #ifndef ASM_SIGRTMAX
78 /* Under glibc 2.1, SIGRTMAX et al are functions, but __SIGRTMAX is a
79    constant.  This is what we want.  Otherwise, just use SIGRTMAX. */
80 # ifdef SIGRTMAX
81 #  ifndef __SIGRTMAX
82 #   define __SIGRTMAX SIGRTMAX
83 #  endif
84 # endif
85 # ifdef __SIGRTMAX
86 #  define ASM_SIGRTMAX __SIGRTMAX
87 # endif
88 #endif
89
90 /* Note on the size of sigset_t:
91  *
92  * In glibc, sigset_t is an array with space for 1024 bits (!),
93  * even though all arches supported by Linux have only 64 signals
94  * except MIPS, which has 128. IOW, it is 128 bytes long.
95  *
96  * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long).
97  * However, some old syscall return only 32 lower bits (one word).
98  * Example: sys_sigpending vs sys_rt_sigpending.
99  *
100  * Be aware of this fact when you try to
101  *     memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t))
102  * - sizeof(sigset_t) is much bigger than you think,
103  * it may overflow tcp->u_arg[] array, and it may try to copy more data
104  * than is really available in <something>.
105  * Similarly,
106  *     umoven(tcp, addr, sizeof(sigset_t), &sigset)
107  * may be a bad idea: it'll try to read much more data than needed
108  * to fetch a sigset_t.
109  * Use NSIG_BYTES as a size instead.
110  */
111
112 static const char *
113 get_sa_handler_str(kernel_ulong_t handler)
114 {
115         return xlookup(sa_handler_values, handler);
116 }
117
118 static void
119 print_sa_handler(kernel_ulong_t handler)
120 {
121         const char *sa_handler_str = get_sa_handler_str(handler);
122
123         if (sa_handler_str)
124                 tprints(sa_handler_str);
125         else
126                 printaddr(handler);
127 }
128
129 const char *
130 signame(const int sig)
131 {
132         static char buf[sizeof("SIGRT_%u") + sizeof(int)*3];
133
134         if (sig >= 0) {
135                 const unsigned int s = sig;
136
137                 if (s < nsignals)
138                         return signalent[s];
139 #ifdef ASM_SIGRTMAX
140                 if (s >= ASM_SIGRTMIN && s <= (unsigned int) ASM_SIGRTMAX) {
141                         xsprintf(buf, "SIGRT_%u", s - ASM_SIGRTMIN);
142                         return buf;
143                 }
144 #endif
145         }
146         xsprintf(buf, "%d", sig);
147         return buf;
148 }
149
150 static unsigned int
151 popcount32(const uint32_t *a, unsigned int size)
152 {
153         unsigned int count = 0;
154
155         for (; size; ++a, --size) {
156                 uint32_t x = *a;
157
158 #ifdef HAVE___BUILTIN_POPCOUNT
159                 count += __builtin_popcount(x);
160 #else
161                 for (; x; ++count)
162                         x &= x - 1;
163 #endif
164         }
165
166         return count;
167 }
168
169 const char *
170 sprintsigmask_n(const char *prefix, const void *sig_mask, unsigned int bytes)
171 {
172         /*
173          * The maximum number of signal names to be printed
174          * is NSIG_BYTES * 8 * 2 / 3.
175          * Most of signal names have length 7,
176          * average length of signal names is less than 7.
177          * The length of prefix string does not exceed 16.
178          */
179         static char outstr[128 + 8 * (NSIG_BYTES * 8 * 2 / 3)];
180
181         char *s;
182         const uint32_t *mask;
183         uint32_t inverted_mask[NSIG_BYTES / 4];
184         unsigned int size;
185         int i;
186         char sep;
187
188         s = stpcpy(outstr, prefix);
189
190         mask = sig_mask;
191         /* length of signal mask in 4-byte words */
192         size = (bytes >= NSIG_BYTES) ? NSIG_BYTES / 4 : (bytes + 3) / 4;
193
194         /* check whether 2/3 or more bits are set */
195         if (popcount32(mask, size) >= size * (4 * 8) * 2 / 3) {
196                 /* show those signals that are NOT in the mask */
197                 unsigned int j;
198                 for (j = 0; j < size; ++j)
199                         inverted_mask[j] = ~mask[j];
200                 mask = inverted_mask;
201                 *s++ = '~';
202         }
203
204         sep = '[';
205         for (i = 0; (i = next_set_bit(mask, i, size * (4 * 8))) >= 0; ) {
206                 ++i;
207                 *s++ = sep;
208                 if ((unsigned) i < nsignals) {
209                         s = stpcpy(s, signalent[i] + 3);
210                 }
211 #ifdef ASM_SIGRTMAX
212                 else if (i >= ASM_SIGRTMIN && i <= ASM_SIGRTMAX) {
213                         s = xappendstr(outstr, s, "RT_%u", i - ASM_SIGRTMIN);
214                 }
215 #endif
216                 else {
217                         s = xappendstr(outstr, s, "%u", i);
218                 }
219                 sep = ' ';
220         }
221         if (sep == '[')
222                 *s++ = sep;
223         *s++ = ']';
224         *s = '\0';
225         return outstr;
226 }
227
228 #define sprintsigmask_val(prefix, mask) \
229         sprintsigmask_n((prefix), &(mask), sizeof(mask))
230
231 #define tprintsigmask_val(prefix, mask) \
232         tprints(sprintsigmask_n((prefix), &(mask), sizeof(mask)))
233
234 static const char *
235 sprint_old_sigmask_val(const char *const prefix, const unsigned long mask)
236 {
237 #if defined(current_wordsize) || !defined(WORDS_BIGENDIAN)
238         return sprintsigmask_n(prefix, &mask, current_wordsize);
239 #else /* !current_wordsize && WORDS_BIGENDIAN */
240         if (current_wordsize == sizeof(mask)) {
241                 return sprintsigmask_val(prefix, mask);
242         } else {
243                 uint32_t mask32 = mask;
244                 return sprintsigmask_val(prefix, mask32);
245         }
246 #endif
247 }
248
249 #define tprint_old_sigmask_val(prefix, mask) \
250         tprints(sprint_old_sigmask_val((prefix), (mask)))
251
252 void
253 printsignal(int nr)
254 {
255         tprints(signame(nr));
256 }
257
258 static void
259 print_sigset_addr_len_limit(struct tcb *const tcp, const kernel_ulong_t addr,
260                             const kernel_ulong_t len, const unsigned int min_len)
261 {
262         /*
263          * Here len is usually equal to NSIG_BYTES or current_wordsize.
264          * But we code this defensively:
265          */
266         if (len < min_len || len > NSIG_BYTES) {
267                 printaddr(addr);
268                 return;
269         }
270         int mask[NSIG_BYTES / sizeof(int)] = {};
271         if (umoven_or_printaddr(tcp, addr, len, mask))
272                 return;
273         tprints(sprintsigmask_n("", mask, len));
274 }
275
276 void
277 print_sigset_addr_len(struct tcb *const tcp, const kernel_ulong_t addr,
278                       const kernel_ulong_t len)
279 {
280         print_sigset_addr_len_limit(tcp, addr, len, current_wordsize);
281 }
282
283 void
284 print_sigset_addr(struct tcb *const tcp, const kernel_ulong_t addr)
285 {
286         print_sigset_addr_len_limit(tcp, addr, NSIG_BYTES, NSIG_BYTES);
287 }
288
289 SYS_FUNC(ssetmask)
290 {
291         if (entering(tcp)) {
292                 tprint_old_sigmask_val("", (unsigned) tcp->u_arg[0]);
293         } else if (!syserror(tcp)) {
294                 tcp->auxstr = sprint_old_sigmask_val("old mask ",
295                                                      (unsigned) tcp->u_rval);
296                 return RVAL_HEX | RVAL_STR;
297         }
298         return 0;
299 }
300
301 struct old_sigaction {
302         /* sa_handler may be a libc #define, need to use other name: */
303 #if defined MIPS
304         unsigned int sa_flags;
305         unsigned long sa_handler__;
306         unsigned long sa_mask;
307 #elif defined ALPHA
308         unsigned long sa_handler__;
309         unsigned long sa_mask;
310         unsigned int sa_flags;
311 #else
312         unsigned long sa_handler__;
313         unsigned long sa_mask;
314         unsigned long sa_flags;
315         unsigned long sa_restorer;
316 #endif
317 }
318 #ifdef ALPHA
319         ATTRIBUTE_PACKED
320 #endif
321 ;
322
323 static void
324 decode_old_sigaction(struct tcb *const tcp, const kernel_ulong_t addr)
325 {
326         struct old_sigaction sa;
327
328 #ifndef current_wordsize
329         if (current_wordsize < sizeof(sa.sa_handler__)) {
330                 struct old_sigaction32 {
331                         uint32_t sa_handler__;
332                         uint32_t sa_mask;
333                         uint32_t sa_flags;
334                         uint32_t sa_restorer;
335                 } sa32;
336
337                 if (umove_or_printaddr(tcp, addr, &sa32))
338                         return;
339
340                 memset(&sa, 0, sizeof(sa));
341                 sa.sa_handler__ = sa32.sa_handler__;
342                 sa.sa_flags = sa32.sa_flags;
343                 sa.sa_restorer = sa32.sa_restorer;
344                 sa.sa_mask = sa32.sa_mask;
345         } else
346 #endif
347         if (umove_or_printaddr(tcp, addr, &sa))
348                 return;
349
350         tprints("{sa_handler=");
351         print_sa_handler(sa.sa_handler__);
352         tprints(", sa_mask=");
353         tprint_old_sigmask_val("", sa.sa_mask);
354         tprints(", sa_flags=");
355         printflags(sigact_flags, sa.sa_flags, "SA_???");
356 #if !(defined ALPHA || defined MIPS)
357         if (sa.sa_flags & 0x04000000U) {
358                 tprints(", sa_restorer=");
359                 printaddr(sa.sa_restorer);
360         }
361 #endif
362         tprints("}");
363 }
364
365 SYS_FUNC(sigaction)
366 {
367         if (entering(tcp)) {
368                 int signo = tcp->u_arg[0];
369 #if defined SPARC || defined SPARC64
370                 if (signo < 0) {
371                         tprints("-");
372                         signo = -signo;
373                 }
374 #endif
375                 printsignal(signo);
376                 tprints(", ");
377                 decode_old_sigaction(tcp, tcp->u_arg[1]);
378                 tprints(", ");
379         } else
380                 decode_old_sigaction(tcp, tcp->u_arg[2]);
381         return 0;
382 }
383
384 SYS_FUNC(signal)
385 {
386         if (entering(tcp)) {
387                 printsignal(tcp->u_arg[0]);
388                 tprints(", ");
389                 print_sa_handler(tcp->u_arg[1]);
390                 return 0;
391         } else if (!syserror(tcp)) {
392                 tcp->auxstr = get_sa_handler_str(tcp->u_rval);
393                 return RVAL_HEX | RVAL_STR;
394         }
395         return 0;
396 }
397
398 SYS_FUNC(sgetmask)
399 {
400         if (exiting(tcp) && !syserror(tcp)) {
401                 tcp->auxstr = sprint_old_sigmask_val("mask ", tcp->u_rval);
402                 return RVAL_HEX | RVAL_STR;
403         }
404         return 0;
405 }
406
407 SYS_FUNC(sigsuspend)
408 {
409 #ifdef MIPS
410         print_sigset_addr_len(tcp, tcp->u_arg[tcp->s_ent->nargs - 1],
411                               current_wordsize);
412 #else
413         tprint_old_sigmask_val("", tcp->u_arg[tcp->s_ent->nargs - 1]);
414 #endif
415
416         return RVAL_DECODED;
417 }
418
419 #ifdef ALPHA
420 /*
421  * The OSF/1 sigprocmask is different: it doesn't pass in two pointers,
422  * but rather passes in the new bitmask as an argument and then returns
423  * the old bitmask.  This "works" because we only have 64 signals to worry
424  * about.  If you want more, use of the rt_sigprocmask syscall is required.
425  *
426  * Alpha:
427  *      old = osf_sigprocmask(how, new);
428  * Everyone else:
429  *      ret = sigprocmask(how, &new, &old, ...);
430  */
431 SYS_FUNC(osf_sigprocmask)
432 {
433         if (entering(tcp)) {
434                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
435                 tprintsigmask_val(", ", tcp->u_arg[1]);
436         } else if (!syserror(tcp)) {
437                 tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval);
438                 return RVAL_HEX | RVAL_STR;
439         }
440         return 0;
441 }
442
443 #else /* !ALPHA */
444
445 /* "Old" sigprocmask, which operates with word-sized signal masks */
446 SYS_FUNC(sigprocmask)
447 {
448         if (entering(tcp)) {
449                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
450                 tprints(", ");
451                 print_sigset_addr_len(tcp, tcp->u_arg[1], current_wordsize);
452                 tprints(", ");
453         } else {
454                 print_sigset_addr_len(tcp, tcp->u_arg[2], current_wordsize);
455         }
456         return 0;
457 }
458 #endif /* !ALPHA */
459
460 SYS_FUNC(kill)
461 {
462         tprintf("%d, %s",
463                 (int) tcp->u_arg[0],
464                 signame(tcp->u_arg[1]));
465
466         return RVAL_DECODED;
467 }
468
469 SYS_FUNC(tgkill)
470 {
471         tprintf("%d, %d, %s",
472                 (int) tcp->u_arg[0],
473                 (int) tcp->u_arg[1],
474                 signame(tcp->u_arg[2]));
475
476         return RVAL_DECODED;
477 }
478
479 SYS_FUNC(sigpending)
480 {
481         if (exiting(tcp))
482                 print_sigset_addr_len(tcp, tcp->u_arg[0], current_wordsize);
483         return 0;
484 }
485
486 SYS_FUNC(rt_sigprocmask)
487 {
488         /* Note: arg[3] is the length of the sigset. Kernel requires NSIG_BYTES */
489         if (entering(tcp)) {
490                 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
491                 tprints(", ");
492                 print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[3]);
493                 tprints(", ");
494         } else {
495                 print_sigset_addr_len(tcp, tcp->u_arg[2], tcp->u_arg[3]);
496                 tprintf(", %" PRI_klu, tcp->u_arg[3]);
497         }
498         return 0;
499 }
500
501 /* Structure describing the action to be taken when a signal arrives.  */
502 struct new_sigaction {
503         /* sa_handler may be a libc #define, need to use other name: */
504 #ifdef MIPS
505         unsigned int sa_flags;
506         unsigned long sa_handler__;
507 #else
508         unsigned long sa_handler__;
509         unsigned long sa_flags;
510 #endif /* !MIPS */
511 #if HAVE_SA_RESTORER
512         unsigned long sa_restorer;
513 #endif
514         /* Kernel treats sa_mask as an array of longs. */
515         unsigned long sa_mask[NSIG / sizeof(long)];
516 };
517 /* Same for i386-on-x86_64 and similar cases */
518 struct new_sigaction32 {
519         uint32_t sa_handler__;
520         uint32_t sa_flags;
521 #if HAVE_SA_RESTORER
522         uint32_t sa_restorer;
523 #endif
524         uint32_t sa_mask[2 * (NSIG / sizeof(long))];
525 };
526
527 static void
528 decode_new_sigaction(struct tcb *const tcp, const kernel_ulong_t addr)
529 {
530         struct new_sigaction sa;
531
532 #ifndef current_wordsize
533         if (current_wordsize < sizeof(sa.sa_handler__)) {
534                 struct new_sigaction32 sa32;
535
536                 if (umove_or_printaddr(tcp, addr, &sa32))
537                         return;
538
539                 memset(&sa, 0, sizeof(sa));
540                 sa.sa_handler__ = sa32.sa_handler__;
541                 sa.sa_flags     = sa32.sa_flags;
542 #if HAVE_SA_RESTORER && defined SA_RESTORER
543                 sa.sa_restorer  = sa32.sa_restorer;
544 #endif
545                 /* Kernel treats sa_mask as an array of longs.
546                  * For 32-bit process, "long" is uint32_t, thus, for example,
547                  * 32th bit in sa_mask will end up as bit 0 in sa_mask[1].
548                  * But for (64-bit) kernel, 32th bit in sa_mask is
549                  * 32th bit in 0th (64-bit) long!
550                  * For little-endian, it's the same.
551                  * For big-endian, we swap 32-bit words.
552                  */
553                 sa.sa_mask[0] = ULONG_LONG(sa32.sa_mask[0], sa32.sa_mask[1]);
554         } else
555 #endif
556         if (umove_or_printaddr(tcp, addr, &sa))
557                 return;
558
559         tprints("{sa_handler=");
560         print_sa_handler(sa.sa_handler__);
561         tprints(", sa_mask=");
562         /*
563          * Sigset size is in tcp->u_arg[4] (SPARC)
564          * or in tcp->u_arg[3] (all other),
565          * but kernel won't handle sys_rt_sigaction
566          * with wrong sigset size (just returns EINVAL instead).
567          * We just fetch the right size, which is NSIG_BYTES.
568          */
569         tprintsigmask_val("", sa.sa_mask);
570         tprints(", sa_flags=");
571
572         printflags(sigact_flags, sa.sa_flags, "SA_???");
573 #if HAVE_SA_RESTORER && defined SA_RESTORER
574         if (sa.sa_flags & SA_RESTORER) {
575                 tprints(", sa_restorer=");
576                 printaddr(sa.sa_restorer);
577         }
578 #endif
579         tprints("}");
580 }
581
582 SYS_FUNC(rt_sigaction)
583 {
584         if (entering(tcp)) {
585                 printsignal(tcp->u_arg[0]);
586                 tprints(", ");
587                 decode_new_sigaction(tcp, tcp->u_arg[1]);
588                 tprints(", ");
589         } else {
590                 decode_new_sigaction(tcp, tcp->u_arg[2]);
591 #if defined(SPARC) || defined(SPARC64)
592                 tprintf(", %#" PRI_klx ", %" PRI_klu, tcp->u_arg[3], tcp->u_arg[4]);
593 #elif defined(ALPHA)
594                 tprintf(", %" PRI_klu ", %#" PRI_klx, tcp->u_arg[3], tcp->u_arg[4]);
595 #else
596                 tprintf(", %" PRI_klu, tcp->u_arg[3]);
597 #endif
598         }
599         return 0;
600 }
601
602 SYS_FUNC(rt_sigpending)
603 {
604         if (exiting(tcp)) {
605                 /*
606                  * One of the few syscalls where sigset size (arg[1])
607                  * is allowed to be <= NSIG_BYTES, not strictly ==.
608                  * This allows non-rt sigpending() syscall
609                  * to reuse rt_sigpending() code in kernel.
610                  */
611                 print_sigset_addr_len_limit(tcp, tcp->u_arg[0],
612                                             tcp->u_arg[1], 1);
613                 tprintf(", %" PRI_klu, tcp->u_arg[1]);
614         }
615         return 0;
616 }
617
618 SYS_FUNC(rt_sigsuspend)
619 {
620         /* NB: kernel requires arg[1] == NSIG_BYTES */
621         print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]);
622         tprintf(", %" PRI_klu, tcp->u_arg[1]);
623
624         return RVAL_DECODED;
625 }
626
627 static void
628 print_sigqueueinfo(struct tcb *const tcp, const int sig,
629                    const kernel_ulong_t addr)
630 {
631         printsignal(sig);
632         tprints(", ");
633         printsiginfo_at(tcp, addr);
634 }
635
636 SYS_FUNC(rt_sigqueueinfo)
637 {
638         tprintf("%d, ", (int) tcp->u_arg[0]);
639         print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]);
640
641         return RVAL_DECODED;
642 }
643
644 SYS_FUNC(rt_tgsigqueueinfo)
645 {
646         tprintf("%d, %d, ", (int) tcp->u_arg[0], (int) tcp->u_arg[1]);
647         print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]);
648
649         return RVAL_DECODED;
650 }
651
652 SYS_FUNC(rt_sigtimedwait)
653 {
654         /* NB: kernel requires arg[3] == NSIG_BYTES */
655         if (entering(tcp)) {
656                 print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[3]);
657                 tprints(", ");
658                 if (!(tcp->u_arg[1] && verbose(tcp))) {
659                         /*
660                          * This is the only "return" parameter,
661                          * if we are not going to fetch it on exit,
662                          * decode all parameters on entry.
663                          */
664                         printaddr(tcp->u_arg[1]);
665                         tprints(", ");
666                         print_timespec(tcp, tcp->u_arg[2]);
667                         tprintf(", %" PRI_klu, tcp->u_arg[3]);
668                 } else {
669                         char *sts = xstrdup(sprint_timespec(tcp, tcp->u_arg[2]));
670                         set_tcb_priv_data(tcp, sts, free);
671                 }
672         } else {
673                 if (tcp->u_arg[1] && verbose(tcp)) {
674                         printsiginfo_at(tcp, tcp->u_arg[1]);
675                         tprints(", ");
676                         tprints(get_tcb_priv_data(tcp));
677                         tprintf(", %" PRI_klu, tcp->u_arg[3]);
678                 }
679
680                 if (!syserror(tcp) && tcp->u_rval) {
681                         tcp->auxstr = signame(tcp->u_rval);
682                         return RVAL_STR;
683                 }
684         }
685         return 0;
686 };
687
688 SYS_FUNC(restart_syscall)
689 {
690         tprintf("<... resuming interrupted %s ...>",
691                 tcp->s_prev_ent ? tcp->s_prev_ent->sys_name : "system call");
692
693         return RVAL_DECODED;
694 }