]> granicus.if.org Git - strace/blob - syscall.c
Add mpers support
[strace] / syscall.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/param.h>
36
37 /* for struct iovec */
38 #include <sys/uio.h>
39
40 #include "regs.h"
41 #include "ptrace.h"
42
43 #if defined(SPARC64)
44 # undef PTRACE_GETREGS
45 # define PTRACE_GETREGS PTRACE_GETREGS64
46 # undef PTRACE_SETREGS
47 # define PTRACE_SETREGS PTRACE_SETREGS64
48 #endif
49
50 #if defined SPARC64
51 # include <asm/psrcompat.h>
52 #elif defined SPARC
53 # include <asm/psr.h>
54 #endif
55
56 #ifdef IA64
57 # include <asm/rse.h>
58 #endif
59
60 #ifndef NT_PRSTATUS
61 # define NT_PRSTATUS 1
62 #endif
63
64 #ifndef NSIG
65 # warning: NSIG is not defined, using 32
66 # define NSIG 32
67 #endif
68
69 #include "syscall.h"
70
71 /* Define these shorthand notations to simplify the syscallent files. */
72 #define TD TRACE_DESC
73 #define TF TRACE_FILE
74 #define TI TRACE_IPC
75 #define TN TRACE_NETWORK
76 #define TP TRACE_PROCESS
77 #define TS TRACE_SIGNAL
78 #define TM TRACE_MEMORY
79 #define NF SYSCALL_NEVER_FAILS
80 #define MA MAX_ARGS
81 #define SI STACKTRACE_INVALIDATE_CACHE
82 #define SE STACKTRACE_CAPTURE_ON_ENTER
83
84 #define SEN_NAME(syscall_name) SEN_ ## syscall_name
85 #define SEN(syscall_name) SEN_NAME(syscall_name), SYS_FUNC_NAME(syscall_name)
86
87 const struct_sysent sysent0[] = {
88 #include "syscallent.h"
89 };
90
91 #if SUPPORTED_PERSONALITIES > 1
92 # include PERSONALITY1_INCLUDE_FUNCS
93 static const struct_sysent sysent1[] = {
94 # include "syscallent1.h"
95 };
96 #endif
97
98 #if SUPPORTED_PERSONALITIES > 2
99 # include PERSONALITY2_INCLUDE_FUNCS
100 static const struct_sysent sysent2[] = {
101 # include "syscallent2.h"
102 };
103 #endif
104
105 /* Now undef them since short defines cause wicked namespace pollution. */
106 #undef SEN
107 #undef SEN_NAME
108 #undef TD
109 #undef TF
110 #undef TI
111 #undef TN
112 #undef TP
113 #undef TS
114 #undef TM
115 #undef NF
116 #undef MA
117 #undef SI
118 #undef SE
119
120 /*
121  * `ioctlent[012].h' files are automatically generated by the auxiliary
122  * program `ioctlsort', such that the list is sorted by the `code' field.
123  * This has the side-effect of resolving the _IO.. macros into
124  * plain integers, eliminating the need to include here everything
125  * in "/usr/include".
126  */
127
128 const char *const errnoent0[] = {
129 #include "errnoent.h"
130 };
131 const char *const signalent0[] = {
132 #include "signalent.h"
133 };
134 const struct_ioctlent ioctlent0[] = {
135 #include "ioctlent0.h"
136 };
137
138 #if SUPPORTED_PERSONALITIES > 1
139 static const char *const errnoent1[] = {
140 # include "errnoent1.h"
141 };
142 static const char *const signalent1[] = {
143 # include "signalent1.h"
144 };
145 static const struct_ioctlent ioctlent1[] = {
146 # include "ioctlent1.h"
147 };
148 # include PERSONALITY0_INCLUDE_PRINTERS_DECLS
149 static const struct_printers printers0 = {
150 # include PERSONALITY0_INCLUDE_PRINTERS_DEFS
151 };
152 # include PERSONALITY1_INCLUDE_PRINTERS_DECLS
153 static const struct_printers printers1 = {
154 # include PERSONALITY1_INCLUDE_PRINTERS_DEFS
155 };
156 #endif
157
158 #if SUPPORTED_PERSONALITIES > 2
159 static const char *const errnoent2[] = {
160 # include "errnoent2.h"
161 };
162 static const char *const signalent2[] = {
163 # include "signalent2.h"
164 };
165 static const struct_ioctlent ioctlent2[] = {
166 # include "ioctlent2.h"
167 };
168 # include PERSONALITY2_INCLUDE_PRINTERS_DECLS
169 static const struct_printers printers2 = {
170 # include PERSONALITY2_INCLUDE_PRINTERS_DEFS
171 };
172 #endif
173
174 enum {
175         nsyscalls0 = ARRAY_SIZE(sysent0)
176 #if SUPPORTED_PERSONALITIES > 1
177         , nsyscalls1 = ARRAY_SIZE(sysent1)
178 # if SUPPORTED_PERSONALITIES > 2
179         , nsyscalls2 = ARRAY_SIZE(sysent2)
180 # endif
181 #endif
182 };
183
184 enum {
185         nerrnos0 = ARRAY_SIZE(errnoent0)
186 #if SUPPORTED_PERSONALITIES > 1
187         , nerrnos1 = ARRAY_SIZE(errnoent1)
188 # if SUPPORTED_PERSONALITIES > 2
189         , nerrnos2 = ARRAY_SIZE(errnoent2)
190 # endif
191 #endif
192 };
193
194 enum {
195         nsignals0 = ARRAY_SIZE(signalent0)
196 #if SUPPORTED_PERSONALITIES > 1
197         , nsignals1 = ARRAY_SIZE(signalent1)
198 # if SUPPORTED_PERSONALITIES > 2
199         , nsignals2 = ARRAY_SIZE(signalent2)
200 # endif
201 #endif
202 };
203
204 enum {
205         nioctlents0 = ARRAY_SIZE(ioctlent0)
206 #if SUPPORTED_PERSONALITIES > 1
207         , nioctlents1 = ARRAY_SIZE(ioctlent1)
208 # if SUPPORTED_PERSONALITIES > 2
209         , nioctlents2 = ARRAY_SIZE(ioctlent2)
210 # endif
211 #endif
212 };
213
214 #if SUPPORTED_PERSONALITIES > 1
215 const struct_sysent *sysent = sysent0;
216 const char *const *errnoent = errnoent0;
217 const char *const *signalent = signalent0;
218 const struct_ioctlent *ioctlent = ioctlent0;
219 const struct_printers *printers = &printers0;
220 #endif
221
222 unsigned nsyscalls = nsyscalls0;
223 unsigned nerrnos = nerrnos0;
224 unsigned nsignals = nsignals0;
225 unsigned nioctlents = nioctlents0;
226
227 unsigned num_quals;
228 qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
229
230 static const unsigned nsyscall_vec[SUPPORTED_PERSONALITIES] = {
231         nsyscalls0,
232 #if SUPPORTED_PERSONALITIES > 1
233         nsyscalls1,
234 #endif
235 #if SUPPORTED_PERSONALITIES > 2
236         nsyscalls2,
237 #endif
238 };
239 static const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES] = {
240         sysent0,
241 #if SUPPORTED_PERSONALITIES > 1
242         sysent1,
243 #endif
244 #if SUPPORTED_PERSONALITIES > 2
245         sysent2,
246 #endif
247 };
248
249 enum {
250         MAX_NSYSCALLS1 = (nsyscalls0
251 #if SUPPORTED_PERSONALITIES > 1
252                         > nsyscalls1 ? nsyscalls0 : nsyscalls1
253 #endif
254                         ),
255         MAX_NSYSCALLS2 = (MAX_NSYSCALLS1
256 #if SUPPORTED_PERSONALITIES > 2
257                         > nsyscalls2 ? MAX_NSYSCALLS1 : nsyscalls2
258 #endif
259                         ),
260         MAX_NSYSCALLS = MAX_NSYSCALLS2,
261         /* We are ready for arches with up to 255 signals,
262          * even though the largest known signo is on MIPS and it is 128.
263          * The number of existing syscalls on all arches is
264          * larger that 255 anyway, so it is just a pedantic matter.
265          */
266         MIN_QUALS = MAX_NSYSCALLS > 255 ? MAX_NSYSCALLS : 255
267 };
268
269 #if SUPPORTED_PERSONALITIES > 1
270 unsigned current_personality;
271
272 # ifndef current_wordsize
273 unsigned current_wordsize;
274 static const int personality_wordsize[SUPPORTED_PERSONALITIES] = {
275         PERSONALITY0_WORDSIZE,
276         PERSONALITY1_WORDSIZE,
277 # if SUPPORTED_PERSONALITIES > 2
278         PERSONALITY2_WORDSIZE,
279 # endif
280 };
281 # endif
282
283 void
284 set_personality(int personality)
285 {
286         nsyscalls = nsyscall_vec[personality];
287         sysent = sysent_vec[personality];
288
289         switch (personality) {
290         case 0:
291                 errnoent = errnoent0;
292                 nerrnos = nerrnos0;
293                 ioctlent = ioctlent0;
294                 nioctlents = nioctlents0;
295                 signalent = signalent0;
296                 nsignals = nsignals0;
297                 printers = &printers0;
298                 break;
299
300         case 1:
301                 errnoent = errnoent1;
302                 nerrnos = nerrnos1;
303                 ioctlent = ioctlent1;
304                 nioctlents = nioctlents1;
305                 signalent = signalent1;
306                 nsignals = nsignals1;
307                 printers = &printers1;
308                 break;
309
310 # if SUPPORTED_PERSONALITIES > 2
311         case 2:
312                 errnoent = errnoent2;
313                 nerrnos = nerrnos2;
314                 ioctlent = ioctlent2;
315                 nioctlents = nioctlents2;
316                 signalent = signalent2;
317                 nsignals = nsignals2;
318                 printers = &printers2;
319                 break;
320 # endif
321         }
322
323         current_personality = personality;
324 # ifndef current_wordsize
325         current_wordsize = personality_wordsize[personality];
326 # endif
327 }
328
329 static void
330 update_personality(struct tcb *tcp, unsigned int personality)
331 {
332         if (personality == current_personality)
333                 return;
334         set_personality(personality);
335
336         if (personality == tcp->currpers)
337                 return;
338         tcp->currpers = personality;
339
340 # undef PERSONALITY_NAMES
341 # if defined POWERPC64
342 #  define PERSONALITY_NAMES {"64 bit", "32 bit"}
343 # elif defined X86_64
344 #  define PERSONALITY_NAMES {"64 bit", "32 bit", "x32"}
345 # elif defined X32
346 #  define PERSONALITY_NAMES {"x32", "32 bit"}
347 # elif defined AARCH64
348 #  define PERSONALITY_NAMES {"32-bit", "AArch64"}
349 # elif defined TILE
350 #  define PERSONALITY_NAMES {"64-bit", "32-bit"}
351 # endif
352 # ifdef PERSONALITY_NAMES
353         if (!qflag) {
354                 static const char *const names[] = PERSONALITY_NAMES;
355                 error_msg("[ Process PID=%d runs in %s mode. ]",
356                           tcp->pid, names[personality]);
357         }
358 # endif
359 }
360 #endif
361
362 static int qual_syscall(), qual_signal(), qual_desc();
363
364 static const struct qual_options {
365         unsigned int bitflag;
366         const char *option_name;
367         int (*qualify)(const char *, int, int);
368         const char *argument_name;
369 } qual_options[] = {
370         { QUAL_TRACE,   "trace",        qual_syscall,   "system call"   },
371         { QUAL_TRACE,   "t",            qual_syscall,   "system call"   },
372         { QUAL_ABBREV,  "abbrev",       qual_syscall,   "system call"   },
373         { QUAL_ABBREV,  "a",            qual_syscall,   "system call"   },
374         { QUAL_VERBOSE, "verbose",      qual_syscall,   "system call"   },
375         { QUAL_VERBOSE, "v",            qual_syscall,   "system call"   },
376         { QUAL_RAW,     "raw",          qual_syscall,   "system call"   },
377         { QUAL_RAW,     "x",            qual_syscall,   "system call"   },
378         { QUAL_SIGNAL,  "signal",       qual_signal,    "signal"        },
379         { QUAL_SIGNAL,  "signals",      qual_signal,    "signal"        },
380         { QUAL_SIGNAL,  "s",            qual_signal,    "signal"        },
381         { QUAL_READ,    "read",         qual_desc,      "descriptor"    },
382         { QUAL_READ,    "reads",        qual_desc,      "descriptor"    },
383         { QUAL_READ,    "r",            qual_desc,      "descriptor"    },
384         { QUAL_WRITE,   "write",        qual_desc,      "descriptor"    },
385         { QUAL_WRITE,   "writes",       qual_desc,      "descriptor"    },
386         { QUAL_WRITE,   "w",            qual_desc,      "descriptor"    },
387         { 0,            NULL,           NULL,           NULL            },
388 };
389
390 static void
391 reallocate_qual(const unsigned int n)
392 {
393         unsigned p;
394         qualbits_t *qp;
395         for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
396                 qp = qual_vec[p] = xreallocarray(qual_vec[p], n,
397                                                  sizeof(qualbits_t));
398                 memset(&qp[num_quals], 0, (n - num_quals) * sizeof(qualbits_t));
399         }
400         num_quals = n;
401 }
402
403 static void
404 qualify_one(const unsigned int n, unsigned int bitflag, const int not, const int pers)
405 {
406         int p;
407
408         if (num_quals <= n)
409                 reallocate_qual(n + 1);
410
411         for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
412                 if (pers == p || pers < 0) {
413                         if (not)
414                                 qual_vec[p][n] &= ~bitflag;
415                         else
416                                 qual_vec[p][n] |= bitflag;
417                 }
418         }
419 }
420
421 static int
422 qual_syscall(const char *s, const unsigned int bitflag, const int not)
423 {
424         int p;
425         unsigned int i;
426         int rc = -1;
427
428         if (*s >= '0' && *s <= '9') {
429                 i = string_to_uint(s);
430                 if (i >= MAX_NSYSCALLS)
431                         return -1;
432                 qualify_one(i, bitflag, not, -1);
433                 return 0;
434         }
435
436         for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
437                 for (i = 0; i < nsyscall_vec[p]; i++) {
438                         if (sysent_vec[p][i].sys_name
439                          && strcmp(s, sysent_vec[p][i].sys_name) == 0
440                         ) {
441                                 qualify_one(i, bitflag, not, p);
442                                 rc = 0;
443                         }
444                 }
445         }
446
447         return rc;
448 }
449
450 static int
451 qual_signal(const char *s, const unsigned int bitflag, const int not)
452 {
453         unsigned int i;
454
455         if (*s >= '0' && *s <= '9') {
456                 int signo = string_to_uint(s);
457                 if (signo < 0 || signo > 255)
458                         return -1;
459                 qualify_one(signo, bitflag, not, -1);
460                 return 0;
461         }
462         if (strncasecmp(s, "SIG", 3) == 0)
463                 s += 3;
464         for (i = 0; i <= NSIG; i++) {
465                 if (strcasecmp(s, signame(i) + 3) == 0) {
466                         qualify_one(i, bitflag, not, -1);
467                         return 0;
468                 }
469         }
470         return -1;
471 }
472
473 static int
474 qual_desc(const char *s, const unsigned int bitflag, const int not)
475 {
476         if (*s >= '0' && *s <= '9') {
477                 int desc = string_to_uint(s);
478                 if (desc < 0 || desc > 0x7fff) /* paranoia */
479                         return -1;
480                 qualify_one(desc, bitflag, not, -1);
481                 return 0;
482         }
483         return -1;
484 }
485
486 static int
487 lookup_class(const char *s)
488 {
489         if (strcmp(s, "file") == 0)
490                 return TRACE_FILE;
491         if (strcmp(s, "ipc") == 0)
492                 return TRACE_IPC;
493         if (strcmp(s, "network") == 0)
494                 return TRACE_NETWORK;
495         if (strcmp(s, "process") == 0)
496                 return TRACE_PROCESS;
497         if (strcmp(s, "signal") == 0)
498                 return TRACE_SIGNAL;
499         if (strcmp(s, "desc") == 0)
500                 return TRACE_DESC;
501         if (strcmp(s, "memory") == 0)
502                 return TRACE_MEMORY;
503         return -1;
504 }
505
506 void
507 qualify(const char *s)
508 {
509         const struct qual_options *opt;
510         char *copy;
511         const char *p;
512         int not;
513         unsigned int i;
514
515         if (num_quals == 0)
516                 reallocate_qual(MIN_QUALS);
517
518         opt = &qual_options[0];
519         for (i = 0; (p = qual_options[i].option_name); i++) {
520                 unsigned int len = strlen(p);
521                 if (strncmp(s, p, len) == 0 && s[len] == '=') {
522                         opt = &qual_options[i];
523                         s += len + 1;
524                         break;
525                 }
526         }
527         not = 0;
528         if (*s == '!') {
529                 not = 1;
530                 s++;
531         }
532         if (strcmp(s, "none") == 0) {
533                 not = 1 - not;
534                 s = "all";
535         }
536         if (strcmp(s, "all") == 0) {
537                 for (i = 0; i < num_quals; i++) {
538                         qualify_one(i, opt->bitflag, not, -1);
539                 }
540                 return;
541         }
542         for (i = 0; i < num_quals; i++) {
543                 qualify_one(i, opt->bitflag, !not, -1);
544         }
545         copy = xstrdup(s);
546         for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) {
547                 int n;
548                 if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) {
549                         unsigned pers;
550                         for (pers = 0; pers < SUPPORTED_PERSONALITIES; pers++) {
551                                 for (i = 0; i < nsyscall_vec[pers]; i++)
552                                         if (sysent_vec[pers][i].sys_flags & n)
553                                                 qualify_one(i, opt->bitflag, not, pers);
554                         }
555                         continue;
556                 }
557                 if (opt->qualify(p, opt->bitflag, not)) {
558                         error_msg_and_die("invalid %s '%s'",
559                                 opt->argument_name, p);
560                 }
561         }
562         free(copy);
563         return;
564 }
565
566 #ifdef SYS_socket_subcall
567 static void
568 decode_socket_subcall(struct tcb *tcp)
569 {
570         unsigned long addr;
571         unsigned int n;
572
573         if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_socket_nsubcalls)
574                 return;
575
576         tcp->scno = SYS_socket_subcall + tcp->u_arg[0];
577         tcp->qual_flg = qual_flags[tcp->scno];
578         tcp->s_ent = &sysent[tcp->scno];
579         addr = tcp->u_arg[1];
580         n = tcp->s_ent->nargs;
581         if (sizeof(tcp->u_arg[0]) == current_wordsize) {
582                 memset(tcp->u_arg, 0, n * sizeof(tcp->u_arg[0]));
583                 (void) umoven(tcp, addr, n * sizeof(tcp->u_arg[0]), tcp->u_arg);
584         } else {
585                 unsigned int args[n];
586                 unsigned int i;
587
588                 memset(args, 0, sizeof(args));
589                 (void) umove(tcp, addr, &args);
590                 for (i = 0; i < n; ++i)
591                         tcp->u_arg[i] = args[i];
592         }
593 }
594 #endif
595
596 #ifdef SYS_ipc_subcall
597 static void
598 decode_ipc_subcall(struct tcb *tcp)
599 {
600         unsigned int i, n;
601
602         if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_ipc_nsubcalls)
603                 return;
604
605         tcp->scno = SYS_ipc_subcall + tcp->u_arg[0];
606         tcp->qual_flg = qual_flags[tcp->scno];
607         tcp->s_ent = &sysent[tcp->scno];
608         n = tcp->s_ent->nargs;
609         for (i = 0; i < n; i++)
610                 tcp->u_arg[i] = tcp->u_arg[i + 1];
611 }
612 #endif
613
614 #ifdef LINUX_MIPSO32
615 static void
616 decode_mips_subcall(struct tcb *tcp)
617 {
618         if (!SCNO_IS_VALID(tcp->u_arg[0]))
619                 return;
620         tcp->scno = tcp->u_arg[0];
621         tcp->qual_flg = qual_flags[tcp->scno];
622         tcp->s_ent = &sysent[tcp->scno];
623         memmove(&tcp->u_arg[0], &tcp->u_arg[1],
624                 sizeof(tcp->u_arg) - sizeof(tcp->u_arg[0]));
625         /*
626          * Fetching the last arg of 7-arg syscalls (fadvise64_64
627          * and sync_file_range) would require additional code,
628          * see linux/mips/get_syscall_args.c
629          */
630 }
631
632 SYS_FUNC(syscall)
633 {
634         return printargs(tcp);
635 }
636 #endif
637
638 int
639 printargs(struct tcb *tcp)
640 {
641         if (entering(tcp)) {
642                 int i;
643                 int n = tcp->s_ent->nargs;
644                 for (i = 0; i < n; i++)
645                         tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]);
646         }
647         return 0;
648 }
649
650 int
651 printargs_lu(struct tcb *tcp)
652 {
653         if (entering(tcp)) {
654                 int i;
655                 int n = tcp->s_ent->nargs;
656                 for (i = 0; i < n; i++)
657                         tprintf("%s%lu", i ? ", " : "", tcp->u_arg[i]);
658         }
659         return 0;
660 }
661
662 int
663 printargs_ld(struct tcb *tcp)
664 {
665         if (entering(tcp)) {
666                 int i;
667                 int n = tcp->s_ent->nargs;
668                 for (i = 0; i < n; i++)
669                         tprintf("%s%ld", i ? ", " : "", tcp->u_arg[i]);
670         }
671         return 0;
672 }
673
674 static void
675 dumpio(struct tcb *tcp)
676 {
677         int sen;
678
679         if (syserror(tcp))
680                 return;
681         if ((unsigned long) tcp->u_arg[0] >= num_quals)
682                 return;
683         sen = tcp->s_ent->sen;
684         if (SEN_printargs == sen)
685                 return;
686         if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
687                 switch (sen) {
688                 case SEN_read:
689                 case SEN_pread:
690                 case SEN_recv:
691                 case SEN_recvfrom:
692                         dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
693                         return;
694                 case SEN_readv:
695                         dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
696                         return;
697 #ifdef HAVE_SENDMSG
698                 case SEN_recvmsg:
699                         dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
700                         return;
701                 case SEN_recvmmsg:
702                         dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
703                         return;
704 #endif
705                 }
706         }
707         if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
708                 switch (sen) {
709                 case SEN_write:
710                 case SEN_pwrite:
711                 case SEN_send:
712                 case SEN_sendto:
713                         dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
714                         break;
715                 case SEN_writev:
716                         dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
717                         break;
718 #ifdef HAVE_SENDMSG
719                 case SEN_sendmsg:
720                         dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
721                         break;
722                 case SEN_sendmmsg:
723                         dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
724                         break;
725 #endif
726                 }
727         }
728 }
729
730 /*
731  * Shuffle syscall numbers so that we don't have huge gaps in syscall table.
732  * The shuffling should be an involution: shuffle_scno(shuffle_scno(n)) == n.
733  */
734 #if defined(ARM) || defined(AARCH64) /* So far only 32-bit ARM needs this */
735 static long
736 shuffle_scno(unsigned long scno)
737 {
738         if (scno < ARM_FIRST_SHUFFLED_SYSCALL)
739                 return scno;
740
741         /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */
742         if (scno == ARM_FIRST_SHUFFLED_SYSCALL)
743                 return 0x000ffff0;
744         if (scno == 0x000ffff0)
745                 return ARM_FIRST_SHUFFLED_SYSCALL;
746
747 #define ARM_SECOND_SHUFFLED_SYSCALL (ARM_FIRST_SHUFFLED_SYSCALL + 1)
748         /*
749          * Is it ARM specific syscall?
750          * Swap [0x000f0000, 0x000f0000 + LAST_SPECIAL] range
751          * with [SECOND_SHUFFLED, SECOND_SHUFFLED + LAST_SPECIAL] range.
752          */
753         if (scno >= 0x000f0000 &&
754             scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL) {
755                 return scno - 0x000f0000 + ARM_SECOND_SHUFFLED_SYSCALL;
756         }
757         if (scno <= ARM_SECOND_SHUFFLED_SYSCALL + ARM_LAST_SPECIAL_SYSCALL) {
758                 return scno + 0x000f0000 - ARM_SECOND_SHUFFLED_SYSCALL;
759         }
760
761         return scno;
762 }
763 #else
764 # define shuffle_scno(scno) ((long)(scno))
765 #endif
766
767 const char *
768 syscall_name(long scno)
769 {
770         static char buf[sizeof("syscall_%lu") + sizeof(long)*3];
771
772         if (SCNO_IS_VALID(scno))
773                 return sysent[scno].sys_name;
774         else {
775                 sprintf(buf, "syscall_%lu", shuffle_scno(scno));
776                 return buf;
777         }
778 }
779
780 static long get_regs_error;
781
782 void
783 clear_regs(void)
784 {
785         get_regs_error = -1;
786 }
787
788 static int get_syscall_args(struct tcb *);
789 static int get_syscall_result(struct tcb *);
790
791 static int
792 trace_syscall_entering(struct tcb *tcp)
793 {
794         int res, scno_good;
795
796         scno_good = res = get_scno(tcp);
797         if (res == 0)
798                 return res;
799         if (res == 1)
800                 res = get_syscall_args(tcp);
801
802         if (res != 1) {
803                 printleader(tcp);
804                 if (scno_good != 1)
805                         tprints("????" /* anti-trigraph gap */ "(");
806                 else if (tcp->qual_flg & UNDEFINED_SCNO)
807                         tprintf("%s(", syscall_name(tcp->scno));
808                 else
809                         tprintf("%s(", tcp->s_ent->sys_name);
810                 /*
811                  * " <unavailable>" will be added later by the code which
812                  * detects ptrace errors.
813                  */
814                 goto ret;
815         }
816
817 #ifdef LINUX_MIPSO32
818         if (SEN_syscall == tcp->s_ent->sen)
819                 decode_mips_subcall(tcp);
820 #endif
821
822         if (   SEN_execve == tcp->s_ent->sen
823 # if defined(SPARC) || defined(SPARC64)
824             || SEN_execv == tcp->s_ent->sen
825 # endif
826            ) {
827                 hide_log_until_execve = 0;
828         }
829
830 #if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
831         switch (tcp->s_ent->sen) {
832 # ifdef SYS_socket_subcall
833                 case SEN_socketcall:
834                         decode_socket_subcall(tcp);
835                         break;
836 # endif
837 # ifdef SYS_ipc_subcall
838                 case SEN_ipc:
839                         decode_ipc_subcall(tcp);
840                         break;
841 # endif
842         }
843 #endif
844
845         if (!(tcp->qual_flg & QUAL_TRACE)
846          || (tracing_paths && !pathtrace_match(tcp))
847         ) {
848                 tcp->flags |= TCB_INSYSCALL | TCB_FILTERED;
849                 tcp->sys_func_rval = 0;
850                 return 0;
851         }
852
853         tcp->flags &= ~TCB_FILTERED;
854
855         if (cflag == CFLAG_ONLY_STATS || hide_log_until_execve) {
856                 res = 0;
857                 goto ret;
858         }
859
860 #ifdef USE_LIBUNWIND
861         if (stack_trace_enabled) {
862                 if (tcp->s_ent->sys_flags & STACKTRACE_CAPTURE_ON_ENTER)
863                         unwind_capture_stacktrace(tcp);
864         }
865 #endif
866
867         printleader(tcp);
868         if (tcp->qual_flg & UNDEFINED_SCNO)
869                 tprintf("%s(", syscall_name(tcp->scno));
870         else
871                 tprintf("%s(", tcp->s_ent->sys_name);
872         if ((tcp->qual_flg & QUAL_RAW) && SEN_exit != tcp->s_ent->sen)
873                 res = printargs(tcp);
874         else
875                 res = tcp->s_ent->sys_func(tcp);
876
877         fflush(tcp->outf);
878  ret:
879         tcp->flags |= TCB_INSYSCALL;
880         tcp->sys_func_rval = res;
881         /* Measure the entrance time as late as possible to avoid errors. */
882         if (Tflag || cflag)
883                 gettimeofday(&tcp->etime, NULL);
884         return res;
885 }
886
887 static int
888 trace_syscall_exiting(struct tcb *tcp)
889 {
890         int sys_res;
891         struct timeval tv;
892         int res;
893         long u_error;
894
895         /* Measure the exit time as early as possible to avoid errors. */
896         if (Tflag || cflag)
897                 gettimeofday(&tv, NULL);
898
899 #ifdef USE_LIBUNWIND
900         if (stack_trace_enabled) {
901                 if (tcp->s_ent->sys_flags & STACKTRACE_INVALIDATE_CACHE)
902                         unwind_cache_invalidate(tcp);
903         }
904 #endif
905
906 #if SUPPORTED_PERSONALITIES > 1
907         update_personality(tcp, tcp->currpers);
908 #endif
909         res = (get_regs_error ? -1 : get_syscall_result(tcp));
910         if (filtered(tcp) || hide_log_until_execve)
911                 goto ret;
912
913         if (cflag) {
914                 count_syscall(tcp, &tv);
915                 if (cflag == CFLAG_ONLY_STATS) {
916                         goto ret;
917                 }
918         }
919
920         /* If not in -ff mode, and printing_tcp != tcp,
921          * then the log currently does not end with output
922          * of _our syscall entry_, but with something else.
923          * We need to say which syscall's return is this.
924          *
925          * Forced reprinting via TCB_REPRINT is used only by
926          * "strace -ff -oLOG test/threaded_execve" corner case.
927          * It's the only case when -ff mode needs reprinting.
928          */
929         if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) {
930                 tcp->flags &= ~TCB_REPRINT;
931                 printleader(tcp);
932                 if (tcp->qual_flg & UNDEFINED_SCNO)
933                         tprintf("<... %s resumed> ", syscall_name(tcp->scno));
934                 else
935                         tprintf("<... %s resumed> ", tcp->s_ent->sys_name);
936         }
937         printing_tcp = tcp;
938
939         tcp->s_prev_ent = NULL;
940         if (res != 1) {
941                 /* There was error in one of prior ptrace ops */
942                 tprints(") ");
943                 tabto();
944                 tprints("= ? <unavailable>\n");
945                 line_ended();
946                 tcp->flags &= ~TCB_INSYSCALL;
947                 tcp->sys_func_rval = 0;
948                 return res;
949         }
950         tcp->s_prev_ent = tcp->s_ent;
951
952         sys_res = 0;
953         if (tcp->qual_flg & QUAL_RAW) {
954                 /* sys_res = printargs(tcp); - but it's nop on sysexit */
955         } else {
956         /* FIXME: not_failing_only (IOW, option -z) is broken:
957          * failure of syscall is known only after syscall return.
958          * Thus we end up with something like this on, say, ENOENT:
959          *     open("doesnt_exist", O_RDONLY <unfinished ...>
960          *     {next syscall decode}
961          * whereas the intended result is that open(...) line
962          * is not shown at all.
963          */
964                 if (not_failing_only && tcp->u_error)
965                         goto ret;       /* ignore failed syscalls */
966                 if (tcp->sys_func_rval & RVAL_DECODED)
967                         sys_res = tcp->sys_func_rval;
968                 else
969                         sys_res = tcp->s_ent->sys_func(tcp);
970         }
971
972         tprints(") ");
973         tabto();
974         u_error = tcp->u_error;
975         if (tcp->qual_flg & QUAL_RAW) {
976                 if (u_error)
977                         tprintf("= -1 (errno %ld)", u_error);
978                 else
979                         tprintf("= %#lx", tcp->u_rval);
980         }
981         else if (!(sys_res & RVAL_NONE) && u_error) {
982                 switch (u_error) {
983                 /* Blocked signals do not interrupt any syscalls.
984                  * In this case syscalls don't return ERESTARTfoo codes.
985                  *
986                  * Deadly signals set to SIG_DFL interrupt syscalls
987                  * and kill the process regardless of which of the codes below
988                  * is returned by the interrupted syscall.
989                  * In some cases, kernel forces a kernel-generated deadly
990                  * signal to be unblocked and set to SIG_DFL (and thus cause
991                  * death) if it is blocked or SIG_IGNed: for example, SIGSEGV
992                  * or SIGILL. (The alternative is to leave process spinning
993                  * forever on the faulty instruction - not useful).
994                  *
995                  * SIG_IGNed signals and non-deadly signals set to SIG_DFL
996                  * (for example, SIGCHLD, SIGWINCH) interrupt syscalls,
997                  * but kernel will always restart them.
998                  */
999                 case ERESTARTSYS:
1000                         /* Most common type of signal-interrupted syscall exit code.
1001                          * The system call will be restarted with the same arguments
1002                          * if SA_RESTART is set; otherwise, it will fail with EINTR.
1003                          */
1004                         tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)");
1005                         break;
1006                 case ERESTARTNOINTR:
1007                         /* Rare. For example, fork() returns this if interrupted.
1008                          * SA_RESTART is ignored (assumed set): the restart is unconditional.
1009                          */
1010                         tprints("= ? ERESTARTNOINTR (To be restarted)");
1011                         break;
1012                 case ERESTARTNOHAND:
1013                         /* pause(), rt_sigsuspend() etc use this code.
1014                          * SA_RESTART is ignored (assumed not set):
1015                          * syscall won't restart (will return EINTR instead)
1016                          * even after signal with SA_RESTART set. However,
1017                          * after SIG_IGN or SIG_DFL signal it will restart
1018                          * (thus the name "restart only if has no handler").
1019                          */
1020                         tprints("= ? ERESTARTNOHAND (To be restarted if no handler)");
1021                         break;
1022                 case ERESTART_RESTARTBLOCK:
1023                         /* Syscalls like nanosleep(), poll() which can't be
1024                          * restarted with their original arguments use this
1025                          * code. Kernel will execute restart_syscall() instead,
1026                          * which changes arguments before restarting syscall.
1027                          * SA_RESTART is ignored (assumed not set) similarly
1028                          * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART
1029                          * since restart data is saved in "restart block"
1030                          * in task struct, and if signal handler uses a syscall
1031                          * which in turn saves another such restart block,
1032                          * old data is lost and restart becomes impossible)
1033                          */
1034                         tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
1035                         break;
1036                 default:
1037                         if ((unsigned long) u_error < nerrnos
1038                             && errnoent[u_error])
1039                                 tprintf("= -1 %s (%s)", errnoent[u_error],
1040                                         strerror(u_error));
1041                         else
1042                                 tprintf("= -1 ERRNO_%lu (%s)", u_error,
1043                                         strerror(u_error));
1044                         break;
1045                 }
1046                 if ((sys_res & RVAL_STR) && tcp->auxstr)
1047                         tprintf(" (%s)", tcp->auxstr);
1048         }
1049         else {
1050                 if (sys_res & RVAL_NONE)
1051                         tprints("= ?");
1052                 else {
1053                         switch (sys_res & RVAL_MASK) {
1054                         case RVAL_HEX:
1055 #if SUPPORTED_PERSONALITIES > 1
1056                                 if (current_wordsize < sizeof(long))
1057                                         tprintf("= %#x",
1058                                                 (unsigned int) tcp->u_rval);
1059                                 else
1060 #endif
1061                                         tprintf("= %#lx", tcp->u_rval);
1062                                 break;
1063                         case RVAL_OCTAL:
1064                                 tprintf("= %#lo", tcp->u_rval);
1065                                 break;
1066                         case RVAL_UDECIMAL:
1067                                 tprintf("= %lu", tcp->u_rval);
1068                                 break;
1069                         case RVAL_DECIMAL:
1070                                 tprintf("= %ld", tcp->u_rval);
1071                                 break;
1072                         case RVAL_FD:
1073                                 if (show_fd_path) {
1074                                         tprints("= ");
1075                                         printfd(tcp, tcp->u_rval);
1076                                 }
1077                                 else
1078                                         tprintf("= %ld", tcp->u_rval);
1079                                 break;
1080 #if defined(LINUX_MIPSN32) || defined(X32)
1081                         /*
1082                         case RVAL_LHEX:
1083                                 tprintf("= %#llx", tcp->u_lrval);
1084                                 break;
1085                         case RVAL_LOCTAL:
1086                                 tprintf("= %#llo", tcp->u_lrval);
1087                                 break;
1088                         */
1089                         case RVAL_LUDECIMAL:
1090                                 tprintf("= %llu", tcp->u_lrval);
1091                                 break;
1092                         /*
1093                         case RVAL_LDECIMAL:
1094                                 tprintf("= %lld", tcp->u_lrval);
1095                                 break;
1096                         */
1097 #endif
1098                         default:
1099                                 error_msg("invalid rval format");
1100                                 break;
1101                         }
1102                 }
1103                 if ((sys_res & RVAL_STR) && tcp->auxstr)
1104                         tprintf(" (%s)", tcp->auxstr);
1105         }
1106         if (Tflag) {
1107                 tv_sub(&tv, &tv, &tcp->etime);
1108                 tprintf(" <%ld.%06ld>",
1109                         (long) tv.tv_sec, (long) tv.tv_usec);
1110         }
1111         tprints("\n");
1112         dumpio(tcp);
1113         line_ended();
1114
1115 #ifdef USE_LIBUNWIND
1116         if (stack_trace_enabled)
1117                 unwind_print_stacktrace(tcp);
1118 #endif
1119
1120  ret:
1121         tcp->flags &= ~TCB_INSYSCALL;
1122         tcp->sys_func_rval = 0;
1123         return 0;
1124 }
1125
1126 int
1127 trace_syscall(struct tcb *tcp)
1128 {
1129         return exiting(tcp) ?
1130                 trace_syscall_exiting(tcp) : trace_syscall_entering(tcp);
1131 }
1132
1133 /*
1134  * Cannot rely on __kernel_[u]long_t being defined,
1135  * it is quite a recent feature of <asm/posix_types.h>.
1136  */
1137 #ifdef __kernel_long_t
1138 typedef __kernel_long_t kernel_long_t;
1139 typedef __kernel_ulong_t kernel_ulong_t;
1140 #else
1141 # ifdef X32
1142 typedef long long kernel_long_t;
1143 typedef unsigned long long kernel_ulong_t;
1144 # else
1145 typedef long kernel_long_t;
1146 typedef unsigned long kernel_ulong_t;
1147 # endif
1148 #endif
1149
1150 /*
1151  * Check the syscall return value register value for whether it is
1152  * a negated errno code indicating an error, or a success return value.
1153  */
1154 static inline bool
1155 is_negated_errno(kernel_ulong_t val)
1156 {
1157         /* Linux kernel defines MAX_ERRNO to 4095. */
1158         kernel_ulong_t max = -(kernel_long_t) 4095;
1159
1160 #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
1161         if (current_wordsize < sizeof(val)) {
1162                 val = (uint32_t) val;
1163                 max = (uint32_t) max;
1164         }
1165 #elif defined X32
1166         /*
1167          * current_wordsize is 4 even in personality 0 (native X32)
1168          * but truncation _must not_ be done in it.
1169          * can't check current_wordsize here!
1170          */
1171         if (current_personality != 0) {
1172                 val = (uint32_t) val;
1173                 max = (uint32_t) max;
1174         }
1175 #endif
1176
1177         return val >= max;
1178 }
1179
1180 #include "arch_regs.c"
1181
1182 #ifdef HAVE_GETRVAL2
1183 # include "arch_getrval2.c"
1184 #endif
1185
1186 void
1187 print_pc(struct tcb *tcp)
1188 {
1189         const char *fmt;
1190         const char *bad;
1191
1192 #ifdef current_wordsize
1193 # define pc_wordsize current_wordsize
1194 #else
1195 # define pc_wordsize personality_wordsize[tcp->currpers]
1196 #endif
1197
1198         if (pc_wordsize == 4) {
1199                 fmt = "[%08lx] ";
1200                 bad = "[????????] ";
1201         } else {
1202                 fmt = "[%016lx] ";
1203                 bad = "[????????????????] ";
1204         }
1205
1206 #undef pc_wordsize
1207 #define PRINTBADPC tprints(bad)
1208
1209         if (get_regs_error) {
1210                 PRINTBADPC;
1211                 return;
1212         }
1213
1214 #include "print_pc.c"
1215 }
1216
1217 #if defined X86_64 || defined POWERPC
1218 # include "getregs_old.c"
1219 #endif
1220
1221 #if defined ARCH_REGS_FOR_GETREGSET
1222 static long
1223 get_regset(pid_t pid)
1224 {
1225 # ifdef ARCH_IOVEC_FOR_GETREGSET
1226         /* variable iovec */
1227         ARCH_IOVEC_FOR_GETREGSET.iov_len = sizeof(ARCH_REGS_FOR_GETREGSET);
1228         return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS,
1229                       &ARCH_IOVEC_FOR_GETREGSET);
1230 # else
1231         /* constant iovec */
1232         static struct iovec io = {
1233                 .iov_base = &ARCH_REGS_FOR_GETREGSET,
1234                 .iov_len = sizeof(ARCH_REGS_FOR_GETREGSET)
1235         };
1236         return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
1237
1238 # endif
1239 }
1240 #endif /* ARCH_REGS_FOR_GETREGSET */
1241
1242 void
1243 get_regs(pid_t pid)
1244 {
1245 #ifdef ARCH_REGS_FOR_GETREGSET
1246 # ifdef X86_64
1247         /* Try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS. */
1248         static int getregset_support;
1249
1250         if (getregset_support >= 0) {
1251                 get_regs_error = get_regset(pid);
1252                 if (getregset_support > 0)
1253                         return;
1254                 if (get_regs_error >= 0) {
1255                         getregset_support = 1;
1256                         return;
1257                 }
1258                 if (errno == EPERM || errno == ESRCH)
1259                         return;
1260                 getregset_support = -1;
1261         }
1262         getregs_old(pid);
1263 # else /* !X86_64 */
1264         /* Assume that PTRACE_GETREGSET works. */
1265         get_regs_error = get_regset(pid);
1266 # endif
1267 #elif defined ARCH_REGS_FOR_GETREGS
1268 # if defined SPARC || defined SPARC64
1269         /* SPARC systems have the meaning of data and addr reversed */
1270         get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&ARCH_REGS_FOR_GETREGS, 0);
1271 # elif defined POWERPC
1272         static bool old_kernel = 0;
1273         if (old_kernel)
1274                 goto old;
1275         get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1276         if (get_regs_error && errno == EIO) {
1277                 old_kernel = 1;
1278  old:
1279                 get_regs_error = getregs_old(pid);
1280         }
1281 # else
1282         /* Assume that PTRACE_GETREGS works. */
1283         get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1284 # endif
1285
1286 #else /* !ARCH_REGS_FOR_GETREGSET && !ARCH_REGS_FOR_GETREGS */
1287 #  warning get_regs is not implemented for this architecture yet
1288         get_regs_error = 0;
1289 #endif
1290 }
1291
1292 /* Returns:
1293  * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1294  * 1: ok, continue in trace_syscall_entering().
1295  * other: error, trace_syscall_entering() should print error indicator
1296  *    ("????" etc) and bail out.
1297  */
1298 int
1299 get_scno(struct tcb *tcp)
1300 {
1301         if (get_regs_error)
1302                 return -1;
1303
1304         long scno = 0;
1305
1306 #include "get_scno.c"
1307
1308         tcp->scno = scno;
1309         if (SCNO_IS_VALID(tcp->scno)) {
1310                 tcp->s_ent = &sysent[scno];
1311                 tcp->qual_flg = qual_flags[scno];
1312         } else {
1313                 static const struct_sysent unknown = {
1314                         .nargs = MAX_ARGS,
1315                         .sys_flags = 0,
1316                         .sys_func = printargs,
1317                         .sys_name = "system call",
1318                 };
1319                 tcp->s_ent = &unknown;
1320                 tcp->qual_flg = UNDEFINED_SCNO | QUAL_RAW | DEFAULT_QUAL_FLAGS;
1321                 if (debug_flag)
1322                         error_msg("pid %d invalid syscall %ld", tcp->pid, scno);
1323         }
1324         return 1;
1325 }
1326
1327 /* Return -1 on error or 1 on success (never 0!) */
1328 static int
1329 get_syscall_args(struct tcb *tcp)
1330 {
1331 #include "get_syscall_args.c"
1332         return 1;
1333 }
1334
1335 static void
1336 get_error(struct tcb *tcp)
1337 {
1338         const bool check_errno = !(tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS);
1339         tcp->u_error = 0;
1340
1341 #include "get_error.c"
1342 }
1343
1344 /* Returns:
1345  * 1: ok, continue in trace_syscall_exiting().
1346  * -1: error, trace_syscall_exiting() should print error indicator
1347  *    ("????" etc) and bail out.
1348  */
1349 static int
1350 get_syscall_result(struct tcb *tcp)
1351 {
1352 #if defined ARCH_REGS_FOR_GETREGSET || defined ARCH_REGS_FOR_GETREGS
1353         /* already done by get_regs */
1354 #else
1355 # include "get_syscall_result.c"
1356 #endif
1357         get_error(tcp);
1358         return 1;
1359 }