]> granicus.if.org Git - strace/blob - syscall.c
Fix old_value argument retrieval in timerfd_settime parser
[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 "native_defs.h"
36 #include <sys/param.h>
37 #include <signal.h>
38
39 /* for struct iovec */
40 #include <sys/uio.h>
41
42 #include "regs.h"
43 #include "ptrace.h"
44
45 #if defined(SPARC64)
46 # undef PTRACE_GETREGS
47 # define PTRACE_GETREGS PTRACE_GETREGS64
48 # undef PTRACE_SETREGS
49 # define PTRACE_SETREGS PTRACE_SETREGS64
50 #endif
51
52 #if defined SPARC64
53 # include <asm/psrcompat.h>
54 #elif defined SPARC
55 # include <asm/psr.h>
56 #endif
57
58 #ifdef IA64
59 # include <asm/rse.h>
60 #endif
61
62 #ifndef NT_PRSTATUS
63 # define NT_PRSTATUS 1
64 #endif
65
66 #ifndef NSIG
67 # warning: NSIG is not defined, using 32
68 # define NSIG 32
69 #endif
70
71 #include "syscall.h"
72
73 /* Define these shorthand notations to simplify the syscallent files. */
74 #define TD TRACE_DESC
75 #define TF TRACE_FILE
76 #define TI TRACE_IPC
77 #define TN TRACE_NETWORK
78 #define TP TRACE_PROCESS
79 #define TS TRACE_SIGNAL
80 #define TM TRACE_MEMORY
81 #define NF SYSCALL_NEVER_FAILS
82 #define MA MAX_ARGS
83 #define SI STACKTRACE_INVALIDATE_CACHE
84 #define SE STACKTRACE_CAPTURE_ON_ENTER
85
86 #define SEN(syscall_name) SEN_ ## syscall_name, SYS_FUNC_NAME(sys_ ## syscall_name)
87
88 const struct_sysent sysent0[] = {
89 #include "syscallent.h"
90 };
91
92 #if SUPPORTED_PERSONALITIES > 1
93 # include PERSONALITY1_INCLUDE_FUNCS
94 static const struct_sysent sysent1[] = {
95 # include "syscallent1.h"
96 };
97 #endif
98
99 #if SUPPORTED_PERSONALITIES > 2
100 # include PERSONALITY2_INCLUDE_FUNCS
101 static const struct_sysent sysent2[] = {
102 # include "syscallent2.h"
103 };
104 #endif
105
106 /* Now undef them since short defines cause wicked namespace pollution. */
107 #undef SEN
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 {"64 bit", "32 bit"}
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         const int call = tcp->u_arg[0];
571
572         if (call < 1 || call >= SYS_socket_nsubcalls)
573                 return;
574
575         const unsigned long scno = SYS_socket_subcall + call;
576         const unsigned int nargs = sysent[scno].nargs;
577         uint64_t buf[nargs];
578
579         if (umoven(tcp, tcp->u_arg[1], nargs * current_wordsize, buf) < 0)
580                 return;
581
582         tcp->scno = scno;
583         tcp->qual_flg = qual_flags[scno];
584         tcp->s_ent = &sysent[scno];
585
586         unsigned int i;
587         for (i = 0; i < nargs; ++i)
588                 tcp->u_arg[i] = (sizeof(uint32_t) == current_wordsize)
589                                 ? ((uint32_t *) (void *) buf)[i] : buf[i];
590 }
591 #endif
592
593 #ifdef SYS_ipc_subcall
594 static void
595 decode_ipc_subcall(struct tcb *tcp)
596 {
597         unsigned int call = tcp->u_arg[0];
598         const unsigned int version = call >> 16;
599
600         if (version) {
601 # if defined S390 || defined S390X
602                 return;
603 # else
604 #  ifdef SPARC64
605                 if (current_wordsize == 8)
606                         return;
607 #  endif
608                 set_tcb_priv_ulong(tcp, version);
609                 call &= 0xffff;
610 # endif
611         }
612
613         switch (call) {
614                 case  1: case  2: case  3: case  4:
615                 case 11: case 12: case 13: case 14:
616                 case 21: case 22: case 23: case 24:
617                         break;
618                 default:
619                         return;
620         }
621
622         tcp->scno = SYS_ipc_subcall + call;
623         tcp->qual_flg = qual_flags[tcp->scno];
624         tcp->s_ent = &sysent[tcp->scno];
625
626         const unsigned int n = tcp->s_ent->nargs;
627         unsigned int i;
628         for (i = 0; i < n; i++)
629                 tcp->u_arg[i] = tcp->u_arg[i + 1];
630 }
631 #endif
632
633 #ifdef LINUX_MIPSO32
634 static void
635 decode_mips_subcall(struct tcb *tcp)
636 {
637         if (!SCNO_IS_VALID(tcp->u_arg[0]))
638                 return;
639         tcp->scno = tcp->u_arg[0];
640         tcp->qual_flg = qual_flags[tcp->scno];
641         tcp->s_ent = &sysent[tcp->scno];
642         memmove(&tcp->u_arg[0], &tcp->u_arg[1],
643                 sizeof(tcp->u_arg) - sizeof(tcp->u_arg[0]));
644         /*
645          * Fetching the last arg of 7-arg syscalls (fadvise64_64
646          * and sync_file_range) would require additional code,
647          * see linux/mips/get_syscall_args.c
648          */
649 }
650 #endif
651
652 static void
653 dumpio(struct tcb *tcp)
654 {
655         int sen;
656
657         if (syserror(tcp))
658                 return;
659         if ((unsigned long) tcp->u_arg[0] >= num_quals)
660                 return;
661         sen = tcp->s_ent->sen;
662         if (SEN_printargs == sen)
663                 return;
664         if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
665                 switch (sen) {
666                 case SEN_read:
667                 case SEN_pread:
668                 case SEN_recv:
669                 case SEN_recvfrom:
670                         dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
671                         return;
672                 case SEN_readv:
673                 case SEN_preadv:
674                 case SEN_preadv2:
675                         dumpiov_upto(tcp, tcp->u_arg[2], tcp->u_arg[1],
676                                      tcp->u_rval);
677                         return;
678                 case SEN_recvmsg:
679                         dumpiov_in_msghdr(tcp, tcp->u_arg[1], tcp->u_rval);
680                         return;
681                 case SEN_recvmmsg:
682                         dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
683                         return;
684                 }
685         }
686         if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
687                 switch (sen) {
688                 case SEN_write:
689                 case SEN_pwrite:
690                 case SEN_send:
691                 case SEN_sendto:
692                         dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
693                         break;
694                 case SEN_writev:
695                 case SEN_pwritev:
696                 case SEN_pwritev2:
697                 case SEN_vmsplice:
698                         dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
699                         break;
700                 case SEN_sendmsg:
701                         dumpiov_in_msghdr(tcp, tcp->u_arg[1],
702                                           (unsigned long) -1L);
703                         break;
704                 case SEN_sendmmsg:
705                         dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
706                         break;
707                 }
708         }
709 }
710
711 /*
712  * Shuffle syscall numbers so that we don't have huge gaps in syscall table.
713  * The shuffling should be an involution: shuffle_scno(shuffle_scno(n)) == n.
714  */
715 #if defined(ARM) || defined(AARCH64) /* So far only 32-bit ARM needs this */
716 static long
717 shuffle_scno(unsigned long scno)
718 {
719         if (scno < ARM_FIRST_SHUFFLED_SYSCALL)
720                 return scno;
721
722         /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */
723         if (scno == ARM_FIRST_SHUFFLED_SYSCALL)
724                 return 0x000ffff0;
725         if (scno == 0x000ffff0)
726                 return ARM_FIRST_SHUFFLED_SYSCALL;
727
728 #define ARM_SECOND_SHUFFLED_SYSCALL (ARM_FIRST_SHUFFLED_SYSCALL + 1)
729         /*
730          * Is it ARM specific syscall?
731          * Swap [0x000f0000, 0x000f0000 + LAST_SPECIAL] range
732          * with [SECOND_SHUFFLED, SECOND_SHUFFLED + LAST_SPECIAL] range.
733          */
734         if (scno >= 0x000f0000 &&
735             scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL) {
736                 return scno - 0x000f0000 + ARM_SECOND_SHUFFLED_SYSCALL;
737         }
738         if (scno <= ARM_SECOND_SHUFFLED_SYSCALL + ARM_LAST_SPECIAL_SYSCALL) {
739                 return scno + 0x000f0000 - ARM_SECOND_SHUFFLED_SYSCALL;
740         }
741
742         return scno;
743 }
744 #else
745 # define shuffle_scno(scno) ((long)(scno))
746 #endif
747
748 const char *
749 syscall_name(long scno)
750 {
751         static char buf[sizeof("syscall_%lu") + sizeof(long)*3];
752
753         if (SCNO_IS_VALID(scno))
754                 return sysent[scno].sys_name;
755         else {
756                 sprintf(buf, "syscall_%lu", scno);
757                 return buf;
758         }
759 }
760
761 static long get_regs_error;
762
763 void
764 clear_regs(void)
765 {
766         get_regs_error = -1;
767 }
768
769 static int get_syscall_args(struct tcb *);
770 static int get_syscall_result(struct tcb *);
771 static int arch_get_scno(struct tcb *tcp);
772 static void get_error(struct tcb *, const bool);
773 #if defined X86_64 || defined POWERPC
774 static int getregs_old(pid_t);
775 #endif
776
777 static int
778 trace_syscall_entering(struct tcb *tcp)
779 {
780         int res, scno_good;
781
782         scno_good = res = get_scno(tcp);
783         if (res == 0)
784                 return res;
785         if (res == 1)
786                 res = get_syscall_args(tcp);
787
788         if (res != 1) {
789                 printleader(tcp);
790                 tprintf("%s(", scno_good == 1 ? tcp->s_ent->sys_name : "????");
791                 /*
792                  * " <unavailable>" will be added later by the code which
793                  * detects ptrace errors.
794                  */
795                 goto ret;
796         }
797
798 #ifdef LINUX_MIPSO32
799         if (SEN_syscall == tcp->s_ent->sen)
800                 decode_mips_subcall(tcp);
801 #endif
802
803         if (   SEN_execve == tcp->s_ent->sen
804 # if defined(SPARC) || defined(SPARC64)
805             || SEN_execv == tcp->s_ent->sen
806 # endif
807            ) {
808                 hide_log_until_execve = 0;
809         }
810
811 #if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
812         switch (tcp->s_ent->sen) {
813 # ifdef SYS_socket_subcall
814                 case SEN_socketcall:
815                         decode_socket_subcall(tcp);
816                         break;
817 # endif
818 # ifdef SYS_ipc_subcall
819                 case SEN_ipc:
820                         decode_ipc_subcall(tcp);
821                         break;
822 # endif
823         }
824 #endif
825
826         if (!(tcp->qual_flg & QUAL_TRACE)
827          || (tracing_paths && !pathtrace_match(tcp))
828         ) {
829                 tcp->flags |= TCB_INSYSCALL | TCB_FILTERED;
830                 tcp->sys_func_rval = 0;
831                 return 0;
832         }
833
834         tcp->flags &= ~TCB_FILTERED;
835
836         if (cflag == CFLAG_ONLY_STATS || hide_log_until_execve) {
837                 res = 0;
838                 goto ret;
839         }
840
841 #ifdef USE_LIBUNWIND
842         if (stack_trace_enabled) {
843                 if (tcp->s_ent->sys_flags & STACKTRACE_CAPTURE_ON_ENTER)
844                         unwind_capture_stacktrace(tcp);
845         }
846 #endif
847
848         printleader(tcp);
849         tprintf("%s(", tcp->s_ent->sys_name);
850         if ((tcp->qual_flg & QUAL_RAW) && SEN_exit != tcp->s_ent->sen)
851                 res = printargs(tcp);
852         else
853                 res = tcp->s_ent->sys_func(tcp);
854
855         fflush(tcp->outf);
856  ret:
857         tcp->flags |= TCB_INSYSCALL;
858         tcp->sys_func_rval = res;
859         /* Measure the entrance time as late as possible to avoid errors. */
860         if (Tflag || cflag)
861                 gettimeofday(&tcp->etime, NULL);
862         return res;
863 }
864
865 static int
866 trace_syscall_exiting(struct tcb *tcp)
867 {
868         int sys_res;
869         struct timeval tv;
870         int res;
871         long u_error;
872
873         /* Measure the exit time as early as possible to avoid errors. */
874         if (Tflag || cflag)
875                 gettimeofday(&tv, NULL);
876
877 #ifdef USE_LIBUNWIND
878         if (stack_trace_enabled) {
879                 if (tcp->s_ent->sys_flags & STACKTRACE_INVALIDATE_CACHE)
880                         unwind_cache_invalidate(tcp);
881         }
882 #endif
883
884 #if SUPPORTED_PERSONALITIES > 1
885         update_personality(tcp, tcp->currpers);
886 #endif
887         res = (get_regs_error ? -1 : get_syscall_result(tcp));
888         if (filtered(tcp) || hide_log_until_execve)
889                 goto ret;
890
891         if (cflag) {
892                 count_syscall(tcp, &tv);
893                 if (cflag == CFLAG_ONLY_STATS) {
894                         goto ret;
895                 }
896         }
897
898         /* If not in -ff mode, and printing_tcp != tcp,
899          * then the log currently does not end with output
900          * of _our syscall entry_, but with something else.
901          * We need to say which syscall's return is this.
902          *
903          * Forced reprinting via TCB_REPRINT is used only by
904          * "strace -ff -oLOG test/threaded_execve" corner case.
905          * It's the only case when -ff mode needs reprinting.
906          */
907         if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) {
908                 tcp->flags &= ~TCB_REPRINT;
909                 printleader(tcp);
910                 tprintf("<... %s resumed> ", tcp->s_ent->sys_name);
911         }
912         printing_tcp = tcp;
913
914         tcp->s_prev_ent = NULL;
915         if (res != 1) {
916                 /* There was error in one of prior ptrace ops */
917                 tprints(") ");
918                 tabto();
919                 tprints("= ? <unavailable>\n");
920                 line_ended();
921                 tcp->flags &= ~TCB_INSYSCALL;
922                 tcp->sys_func_rval = 0;
923                 free_tcb_priv_data(tcp);
924                 return res;
925         }
926         tcp->s_prev_ent = tcp->s_ent;
927
928         sys_res = 0;
929         if (tcp->qual_flg & QUAL_RAW) {
930                 /* sys_res = printargs(tcp); - but it's nop on sysexit */
931         } else {
932         /* FIXME: not_failing_only (IOW, option -z) is broken:
933          * failure of syscall is known only after syscall return.
934          * Thus we end up with something like this on, say, ENOENT:
935          *     open("doesnt_exist", O_RDONLY <unfinished ...>
936          *     {next syscall decode}
937          * whereas the intended result is that open(...) line
938          * is not shown at all.
939          */
940                 if (not_failing_only && tcp->u_error)
941                         goto ret;       /* ignore failed syscalls */
942                 if (tcp->sys_func_rval & RVAL_DECODED)
943                         sys_res = tcp->sys_func_rval;
944                 else
945                         sys_res = tcp->s_ent->sys_func(tcp);
946         }
947
948         tprints(") ");
949         tabto();
950         u_error = tcp->u_error;
951         if (tcp->qual_flg & QUAL_RAW) {
952                 if (u_error)
953                         tprintf("= -1 (errno %ld)", u_error);
954                 else
955                         tprintf("= %#lx", tcp->u_rval);
956         }
957         else if (!(sys_res & RVAL_NONE) && u_error) {
958                 switch (u_error) {
959                 /* Blocked signals do not interrupt any syscalls.
960                  * In this case syscalls don't return ERESTARTfoo codes.
961                  *
962                  * Deadly signals set to SIG_DFL interrupt syscalls
963                  * and kill the process regardless of which of the codes below
964                  * is returned by the interrupted syscall.
965                  * In some cases, kernel forces a kernel-generated deadly
966                  * signal to be unblocked and set to SIG_DFL (and thus cause
967                  * death) if it is blocked or SIG_IGNed: for example, SIGSEGV
968                  * or SIGILL. (The alternative is to leave process spinning
969                  * forever on the faulty instruction - not useful).
970                  *
971                  * SIG_IGNed signals and non-deadly signals set to SIG_DFL
972                  * (for example, SIGCHLD, SIGWINCH) interrupt syscalls,
973                  * but kernel will always restart them.
974                  */
975                 case ERESTARTSYS:
976                         /* Most common type of signal-interrupted syscall exit code.
977                          * The system call will be restarted with the same arguments
978                          * if SA_RESTART is set; otherwise, it will fail with EINTR.
979                          */
980                         tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)");
981                         break;
982                 case ERESTARTNOINTR:
983                         /* Rare. For example, fork() returns this if interrupted.
984                          * SA_RESTART is ignored (assumed set): the restart is unconditional.
985                          */
986                         tprints("= ? ERESTARTNOINTR (To be restarted)");
987                         break;
988                 case ERESTARTNOHAND:
989                         /* pause(), rt_sigsuspend() etc use this code.
990                          * SA_RESTART is ignored (assumed not set):
991                          * syscall won't restart (will return EINTR instead)
992                          * even after signal with SA_RESTART set. However,
993                          * after SIG_IGN or SIG_DFL signal it will restart
994                          * (thus the name "restart only if has no handler").
995                          */
996                         tprints("= ? ERESTARTNOHAND (To be restarted if no handler)");
997                         break;
998                 case ERESTART_RESTARTBLOCK:
999                         /* Syscalls like nanosleep(), poll() which can't be
1000                          * restarted with their original arguments use this
1001                          * code. Kernel will execute restart_syscall() instead,
1002                          * which changes arguments before restarting syscall.
1003                          * SA_RESTART is ignored (assumed not set) similarly
1004                          * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART
1005                          * since restart data is saved in "restart block"
1006                          * in task struct, and if signal handler uses a syscall
1007                          * which in turn saves another such restart block,
1008                          * old data is lost and restart becomes impossible)
1009                          */
1010                         tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
1011                         break;
1012                 default:
1013                         if ((unsigned long) u_error < nerrnos
1014                             && errnoent[u_error])
1015                                 tprintf("= -1 %s (%s)", errnoent[u_error],
1016                                         strerror(u_error));
1017                         else
1018                                 tprintf("= -1 ERRNO_%lu (%s)", u_error,
1019                                         strerror(u_error));
1020                         break;
1021                 }
1022                 if ((sys_res & RVAL_STR) && tcp->auxstr)
1023                         tprintf(" (%s)", tcp->auxstr);
1024         }
1025         else {
1026                 if (sys_res & RVAL_NONE)
1027                         tprints("= ?");
1028                 else {
1029                         switch (sys_res & RVAL_MASK) {
1030                         case RVAL_HEX:
1031 #if SUPPORTED_PERSONALITIES > 1
1032                                 if (current_wordsize < sizeof(long))
1033                                         tprintf("= %#x",
1034                                                 (unsigned int) tcp->u_rval);
1035                                 else
1036 #endif
1037                                         tprintf("= %#lx", tcp->u_rval);
1038                                 break;
1039                         case RVAL_OCTAL:
1040                                 tprints("= ");
1041                                 print_numeric_long_umask(tcp->u_rval);
1042                                 break;
1043                         case RVAL_UDECIMAL:
1044 #if SUPPORTED_PERSONALITIES > 1
1045                                 if (current_wordsize < sizeof(long))
1046                                         tprintf("= %u",
1047                                                 (unsigned int) tcp->u_rval);
1048                                 else
1049 #endif
1050                                         tprintf("= %lu", tcp->u_rval);
1051                                 break;
1052                         case RVAL_DECIMAL:
1053                                 tprintf("= %ld", tcp->u_rval);
1054                                 break;
1055                         case RVAL_FD:
1056                                 if (show_fd_path) {
1057                                         tprints("= ");
1058                                         printfd(tcp, tcp->u_rval);
1059                                 }
1060                                 else
1061                                         tprintf("= %ld", tcp->u_rval);
1062                                 break;
1063 #if HAVE_STRUCT_TCB_EXT_ARG
1064                         /*
1065                         case RVAL_LHEX:
1066                                 tprintf("= %#llx", tcp->u_lrval);
1067                                 break;
1068                         case RVAL_LOCTAL:
1069                                 tprintf("= %#llo", tcp->u_lrval);
1070                                 break;
1071                         */
1072                         case RVAL_LUDECIMAL:
1073                                 tprintf("= %llu", tcp->u_lrval);
1074                                 break;
1075                         /*
1076                         case RVAL_LDECIMAL:
1077                                 tprintf("= %lld", tcp->u_lrval);
1078                                 break;
1079                         */
1080 #endif /* HAVE_STRUCT_TCB_EXT_ARG */
1081                         default:
1082                                 error_msg("invalid rval format");
1083                                 break;
1084                         }
1085                 }
1086                 if ((sys_res & RVAL_STR) && tcp->auxstr)
1087                         tprintf(" (%s)", tcp->auxstr);
1088         }
1089         if (Tflag) {
1090                 tv_sub(&tv, &tv, &tcp->etime);
1091                 tprintf(" <%ld.%06ld>",
1092                         (long) tv.tv_sec, (long) tv.tv_usec);
1093         }
1094         tprints("\n");
1095         dumpio(tcp);
1096         line_ended();
1097
1098 #ifdef USE_LIBUNWIND
1099         if (stack_trace_enabled)
1100                 unwind_print_stacktrace(tcp);
1101 #endif
1102
1103  ret:
1104         tcp->flags &= ~TCB_INSYSCALL;
1105         tcp->sys_func_rval = 0;
1106         free_tcb_priv_data(tcp);
1107         return 0;
1108 }
1109
1110 int
1111 trace_syscall(struct tcb *tcp)
1112 {
1113         return exiting(tcp) ?
1114                 trace_syscall_exiting(tcp) : trace_syscall_entering(tcp);
1115 }
1116
1117 bool
1118 is_erestart(struct tcb *tcp)
1119 {
1120         switch (tcp->u_error) {
1121                 case ERESTARTSYS:
1122                 case ERESTARTNOINTR:
1123                 case ERESTARTNOHAND:
1124                 case ERESTART_RESTARTBLOCK:
1125                         return true;
1126                 default:
1127                         return false;
1128         }
1129 }
1130
1131 static int saved_u_error;
1132
1133 void
1134 temporarily_clear_syserror(struct tcb *tcp)
1135 {
1136         saved_u_error = tcp->u_error;
1137         tcp->u_error = 0;
1138 }
1139
1140 void
1141 restore_cleared_syserror(struct tcb *tcp)
1142 {
1143         tcp->u_error = saved_u_error;
1144 }
1145
1146 #include "kernel_types.h"
1147
1148 /*
1149  * Check the syscall return value register value for whether it is
1150  * a negated errno code indicating an error, or a success return value.
1151  */
1152 static inline bool
1153 is_negated_errno(kernel_ulong_t val)
1154 {
1155         /* Linux kernel defines MAX_ERRNO to 4095. */
1156         kernel_ulong_t max = -(kernel_long_t) 4095;
1157
1158 #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
1159         if (current_wordsize < sizeof(val)) {
1160                 val = (uint32_t) val;
1161                 max = (uint32_t) max;
1162         }
1163 #elif defined X32
1164         /*
1165          * current_wordsize is 4 even in personality 0 (native X32)
1166          * but truncation _must not_ be done in it.
1167          * can't check current_wordsize here!
1168          */
1169         if (current_personality != 0) {
1170                 val = (uint32_t) val;
1171                 max = (uint32_t) max;
1172         }
1173 #endif
1174
1175         return val >= max;
1176 }
1177
1178 #include "arch_regs.c"
1179
1180 #ifdef HAVE_GETRVAL2
1181 # include "arch_getrval2.c"
1182 #endif
1183
1184 void
1185 print_pc(struct tcb *tcp)
1186 {
1187 #if defined ARCH_PC_REG
1188 # define ARCH_GET_PC 0
1189 #elif defined ARCH_PC_PEEK_ADDR
1190         long pc;
1191 # define ARCH_PC_REG pc
1192 # define ARCH_GET_PC upeek(tcp->pid, ARCH_PC_PEEK_ADDR, &pc)
1193 #else
1194 # error Neither ARCH_PC_REG nor ARCH_PC_PEEK_ADDR is defined
1195 #endif
1196         if (get_regs_error || ARCH_GET_PC)
1197                 tprints(current_wordsize == 4 ? "[????????] "
1198                                               : "[????????????????] ");
1199         else
1200                 tprintf(current_wordsize == 4 ? "[%08lx] " : "[%016lx] ",
1201                         (unsigned long) ARCH_PC_REG);
1202 }
1203
1204 #if defined ARCH_REGS_FOR_GETREGSET
1205 static long
1206 get_regset(pid_t pid)
1207 {
1208 # ifdef ARCH_IOVEC_FOR_GETREGSET
1209         /* variable iovec */
1210         ARCH_IOVEC_FOR_GETREGSET.iov_len = sizeof(ARCH_REGS_FOR_GETREGSET);
1211         return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS,
1212                       &ARCH_IOVEC_FOR_GETREGSET);
1213 # else
1214         /* constant iovec */
1215         static struct iovec io = {
1216                 .iov_base = &ARCH_REGS_FOR_GETREGSET,
1217                 .iov_len = sizeof(ARCH_REGS_FOR_GETREGSET)
1218         };
1219         return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
1220
1221 # endif
1222 }
1223 #endif /* ARCH_REGS_FOR_GETREGSET */
1224
1225 void
1226 get_regs(pid_t pid)
1227 {
1228 #undef USE_GET_SYSCALL_RESULT_REGS
1229 #ifdef ARCH_REGS_FOR_GETREGSET
1230 # ifdef X86_64
1231         /* Try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS. */
1232         static int getregset_support;
1233
1234         if (getregset_support >= 0) {
1235                 get_regs_error = get_regset(pid);
1236                 if (getregset_support > 0)
1237                         return;
1238                 if (get_regs_error >= 0) {
1239                         getregset_support = 1;
1240                         return;
1241                 }
1242                 if (errno == EPERM || errno == ESRCH)
1243                         return;
1244                 getregset_support = -1;
1245         }
1246         get_regs_error = getregs_old(pid);
1247 # else /* !X86_64 */
1248         /* Assume that PTRACE_GETREGSET works. */
1249         get_regs_error = get_regset(pid);
1250 # endif
1251 #elif defined ARCH_REGS_FOR_GETREGS
1252 # if defined SPARC || defined SPARC64
1253         /* SPARC systems have the meaning of data and addr reversed */
1254         get_regs_error =
1255                 ptrace(PTRACE_GETREGS, pid, (void *) &ARCH_REGS_FOR_GETREGS, 0);
1256 # elif defined POWERPC
1257         static bool old_kernel = 0;
1258         if (old_kernel)
1259                 goto old;
1260         get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1261         if (get_regs_error && errno == EIO) {
1262                 old_kernel = 1;
1263  old:
1264                 get_regs_error = getregs_old(pid);
1265         }
1266 # else
1267         /* Assume that PTRACE_GETREGS works. */
1268         get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1269 # endif
1270
1271 #else /* !ARCH_REGS_FOR_GETREGSET && !ARCH_REGS_FOR_GETREGS */
1272 # define USE_GET_SYSCALL_RESULT_REGS 1
1273 # warning get_regs is not implemented for this architecture yet
1274         get_regs_error = 0;
1275 #endif
1276 }
1277
1278 struct sysent_buf {
1279         struct tcb *tcp;
1280         struct_sysent ent;
1281         char buf[sizeof("syscall_%lu") + sizeof(long) * 3];
1282 };
1283
1284 static void
1285 free_sysent_buf(void *ptr)
1286 {
1287         struct sysent_buf *s = ptr;
1288         s->tcp->s_prev_ent = s->tcp->s_ent = NULL;
1289         free(ptr);
1290 }
1291
1292 /*
1293  * Returns:
1294  * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1295  * 1: ok, continue in trace_syscall_entering().
1296  * other: error, trace_syscall_entering() should print error indicator
1297  *    ("????" etc) and bail out.
1298  */
1299 int
1300 get_scno(struct tcb *tcp)
1301 {
1302         if (get_regs_error)
1303                 return -1;
1304
1305         int rc = arch_get_scno(tcp);
1306         if (rc != 1)
1307                 return rc;
1308
1309         if (SCNO_IS_VALID(tcp->scno)) {
1310                 tcp->s_ent = &sysent[tcp->scno];
1311                 tcp->qual_flg = qual_flags[tcp->scno];
1312         } else {
1313                 struct sysent_buf *s = xcalloc(1, sizeof(*s));
1314
1315                 s->tcp = tcp;
1316                 s->ent.nargs = MAX_ARGS;
1317                 s->ent.sen = SEN_printargs;
1318                 s->ent.sys_func = printargs;
1319                 s->ent.sys_name = s->buf;
1320                 sprintf(s->buf, "syscall_%lu", shuffle_scno(tcp->scno));
1321
1322                 tcp->s_ent = &s->ent;
1323                 tcp->qual_flg = QUAL_RAW | DEFAULT_QUAL_FLAGS;
1324
1325                 set_tcb_priv_data(tcp, s, free_sysent_buf);
1326
1327                 if (debug_flag)
1328                         error_msg("pid %d invalid syscall %ld", tcp->pid, tcp->scno);
1329         }
1330         return 1;
1331 }
1332
1333 #ifdef USE_GET_SYSCALL_RESULT_REGS
1334 static int get_syscall_result_regs(struct tcb *);
1335 #endif
1336
1337 /* Returns:
1338  * 1: ok, continue in trace_syscall_exiting().
1339  * -1: error, trace_syscall_exiting() should print error indicator
1340  *    ("????" etc) and bail out.
1341  */
1342 static int
1343 get_syscall_result(struct tcb *tcp)
1344 {
1345 #ifdef USE_GET_SYSCALL_RESULT_REGS
1346         if (get_syscall_result_regs(tcp))
1347                 return -1;
1348 #endif
1349         tcp->u_error = 0;
1350         get_error(tcp, !(tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS));
1351
1352         return 1;
1353 }
1354
1355 #include "get_scno.c"
1356 #include "get_syscall_args.c"
1357 #ifdef USE_GET_SYSCALL_RESULT_REGS
1358 # include "get_syscall_result.c"
1359 #endif
1360 #include "get_error.c"
1361 #if defined X86_64 || defined POWERPC
1362 # include "getregs_old.c"
1363 #endif