]> granicus.if.org Git - strace/blobdiff - syscall.c
mips n32: fix preadv/pwritev offset decoding
[strace] / syscall.c
index f8165510206d6e0a775246af4a9c4c82040fc6d7..228536b479a7f51ac8dd4cb98fd69939c73e8f5a 100644 (file)
--- a/syscall.c
+++ b/syscall.c
  */
 
 #include "defs.h"
-#include <sys/user.h>
 #include <sys/param.h>
 
-#ifdef HAVE_SYS_REG_H
-# include <sys/reg.h>
-#elif defined(HAVE_LINUX_PTRACE_H)
-# undef PTRACE_SYSCALL
-# ifdef HAVE_STRUCT_IA64_FPREG
-#  define ia64_fpreg XXX_ia64_fpreg
-# endif
-# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
-#  define pt_all_user_regs XXX_pt_all_user_regs
-# endif
-# ifdef HAVE_STRUCT_PTRACE_PEEKSIGINFO_ARGS
-#  define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args
-# endif
-# include <linux/ptrace.h>
-# undef ptrace_peeksiginfo_args
-# undef ia64_fpreg
-# undef pt_all_user_regs
-#endif
+/* for struct iovec */
+#include <sys/uio.h>
+
+#include "regs.h"
+#include "ptrace.h"
 
 #if defined(SPARC64)
 # undef PTRACE_GETREGS
 # define PTRACE_SETREGS PTRACE_SETREGS64
 #endif
 
-#if defined(IA64)
-# include <asm/ptrace_offsets.h>
-# include <asm/rse.h>
-#endif
-
-/* for struct iovec */
-#include <sys/uio.h>
-/* for NT_PRSTATUS */
-#ifdef HAVE_ELF_H
-# include <elf.h>
-#endif
-
-#if defined(AARCH64)
-# include <asm/ptrace.h>
+#if defined SPARC64
+# include <asm/psrcompat.h>
+#elif defined SPARC
+# include <asm/psr.h>
 #endif
 
-#if defined(XTENSA)
-# include <asm/ptrace.h>
+#ifndef NT_PRSTATUS
+# define NT_PRSTATUS 1
 #endif
 
 #ifndef NSIG
@@ -131,7 +107,7 @@ static const struct_sysent sysent2[] = {
 #undef SE
 
 /*
- * `ioctlent.h' may be generated from `ioctlent.raw' by the auxiliary
+ * `ioctlent[012].h' files are automatically generated by the auxiliary
  * program `ioctlsort', such that the list is sorted by the `code' field.
  * This has the side-effect of resolving the _IO.. macros into
  * plain integers, eliminating the need to include here everything
@@ -145,7 +121,7 @@ const char *const signalent0[] = {
 #include "signalent.h"
 };
 const struct_ioctlent ioctlent0[] = {
-#include "ioctlent.h"
+#include "ioctlent0.h"
 };
 
 #if SUPPORTED_PERSONALITIES > 1
@@ -323,7 +299,7 @@ set_personality(int personality)
 }
 
 static void
-update_personality(struct tcb *tcp, int personality)
+update_personality(struct tcb *tcp, unsigned int personality)
 {
        if (personality == current_personality)
                return;
@@ -370,7 +346,7 @@ update_personality(struct tcb *tcp, int personality)
 static int qual_syscall(), qual_signal(), qual_desc();
 
 static const struct qual_options {
-       int bitflag;
+       unsigned int bitflag;
        const char *option_name;
        int (*qualify)(const char *, int, int);
        const char *argument_name;
@@ -396,7 +372,7 @@ static const struct qual_options {
 };
 
 static void
-reallocate_qual(int n)
+reallocate_qual(const unsigned int n)
 {
        unsigned p;
        qualbits_t *qp;
@@ -410,9 +386,9 @@ reallocate_qual(int n)
 }
 
 static void
-qualify_one(int n, int bitflag, int not, int pers)
+qualify_one(const unsigned int n, unsigned int bitflag, const int not, const int pers)
 {
-       unsigned p;
+       int p;
 
        if (num_quals <= n)
                reallocate_qual(n + 1);
@@ -428,10 +404,10 @@ qualify_one(int n, int bitflag, int not, int pers)
 }
 
 static int
-qual_syscall(const char *s, int bitflag, int not)
+qual_syscall(const char *s, const unsigned int bitflag, const int not)
 {
-       unsigned p;
-       unsigned i;
+       int p;
+       unsigned int i;
        int rc = -1;
 
        if (*s >= '0' && *s <= '9') {
@@ -457,9 +433,9 @@ qual_syscall(const char *s, int bitflag, int not)
 }
 
 static int
-qual_signal(const char *s, int bitflag, int not)
+qual_signal(const char *s, const unsigned int bitflag, const int not)
 {
-       int i;
+       unsigned int i;
 
        if (*s >= '0' && *s <= '9') {
                int signo = string_to_uint(s);
@@ -480,7 +456,7 @@ qual_signal(const char *s, int bitflag, int not)
 }
 
 static int
-qual_desc(const char *s, int bitflag, int not)
+qual_desc(const char *s, const unsigned int bitflag, const int not)
 {
        if (*s >= '0' && *s <= '9') {
                int desc = string_to_uint(s);
@@ -516,20 +492,20 @@ void
 qualify(const char *s)
 {
        const struct qual_options *opt;
-       int not;
        char *copy;
        const char *p;
-       int i, n;
+       int not;
+       unsigned int i;
 
        if (num_quals == 0)
                reallocate_qual(MIN_QUALS);
 
        opt = &qual_options[0];
        for (i = 0; (p = qual_options[i].option_name); i++) {
-               n = strlen(p);
-               if (strncmp(s, p, n) == 0 && s[n] == '=') {
+               unsigned int len = strlen(p);
+               if (strncmp(s, p, len) == 0 && s[len] == '=') {
                        opt = &qual_options[i];
-                       s += n + 1;
+                       s += len + 1;
                        break;
                }
        }
@@ -555,6 +531,7 @@ qualify(const char *s)
        if (!copy)
                die_out_of_memory();
        for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) {
+               int n;
                if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) {
                        unsigned pers;
                        for (pers = 0; pers < SUPPORTED_PERSONALITIES; pers++) {
@@ -683,9 +660,8 @@ getrval2(struct tcb *tcp)
 
 #if defined(I386)
 static struct user_regs_struct i386_regs;
-/* Cast suppresses signedness warning (.esp is long, not unsigned long) */
-uint32_t *const i386_esp_ptr = (uint32_t*)&i386_regs.esp;
-# define ARCH_REGS_FOR_GETREGSET i386_regs
+long *const i386_esp_ptr = &i386_regs.esp;
+# define ARCH_REGS_FOR_GETREGS i386_regs
 #elif defined(X86_64) || defined(X32)
 /*
  * On i386, pt_regs and user_regs_struct are the same,
@@ -722,19 +698,43 @@ uint32_t *const i386_esp_ptr = &i386_regs.esp;
 static struct iovec x86_io = {
        .iov_base = &x86_regs_union
 };
+# define ARCH_REGS_FOR_GETREGSET x86_regs_union
+# define ARCH_IOVEC_FOR_GETREGSET x86_io
 #elif defined(IA64)
-bool ia64_ia32mode = 0; /* not static */
+static bool ia64_ia32mode;
 static long ia64_r8, ia64_r10;
 #elif defined(POWERPC)
-struct pt_regs ppc_regs;
+struct pt_regs ppc_regs; /* not static */
+# define ARCH_REGS_FOR_GETREGS ppc_regs
 #elif defined(M68K)
 static long m68k_d0;
 #elif defined(BFIN)
 static long bfin_r0;
 #elif defined(ARM)
 struct pt_regs arm_regs; /* not static */
-# define ARCH_REGS_FOR_GETREGSET arm_regs
+# define ARCH_REGS_FOR_GETREGS arm_regs
 #elif defined(AARCH64)
+struct arm_pt_regs {
+        int uregs[18];
+};
+# define ARM_cpsr       uregs[16]
+# define ARM_pc         uregs[15]
+# define ARM_lr         uregs[14]
+# define ARM_sp         uregs[13]
+# define ARM_ip         uregs[12]
+# define ARM_fp         uregs[11]
+# define ARM_r10        uregs[10]
+# define ARM_r9         uregs[9]
+# define ARM_r8         uregs[8]
+# define ARM_r7         uregs[7]
+# define ARM_r6         uregs[6]
+# define ARM_r5         uregs[5]
+# define ARM_r4         uregs[4]
+# define ARM_r3         uregs[3]
+# define ARM_r2         uregs[2]
+# define ARM_r1         uregs[1]
+# define ARM_r0         uregs[0]
+# define ARM_ORIG_r0    uregs[17]
 static union {
        struct user_pt_regs aarch64_r;
        struct arm_pt_regs  arm_r;
@@ -744,19 +744,21 @@ static union {
 static struct iovec aarch64_io = {
        .iov_base = &arm_regs_union
 };
+# define ARCH_REGS_FOR_GETREGSET arm_regs_union
+# define ARCH_IOVEC_FOR_GETREGSET aarch64_io
 #elif defined(ALPHA)
 static long alpha_r0;
 static long alpha_a3;
 #elif defined(AVR32)
 static struct pt_regs avr32_regs;
+# define ARCH_REGS_FOR_GETREGS avr32_regs
 #elif defined(SPARC) || defined(SPARC64)
 struct pt_regs sparc_regs; /* not static */
-#elif defined(LINUX_MIPSN32)
-static long long mips_a3;
-static long long mips_r2;
+# define ARCH_REGS_FOR_GETREGS sparc_regs
 #elif defined(MIPS)
-static long mips_a3;
-static long mips_r2;
+struct mips_regs mips_regs; /* not static */
+/* PTRACE_GETREGS on MIPS is available since linux v2.6.15. */
+# define ARCH_REGS_FOR_GETREGS mips_regs
 #elif defined(S390) || defined(S390X)
 static long s390_gpr2;
 #elif defined(HPPA)
@@ -768,7 +770,8 @@ static long sh64_r9;
 #elif defined(CRISV10) || defined(CRISV32)
 static long cris_r10;
 #elif defined(TILE)
-struct pt_regs tile_regs;
+struct pt_regs tile_regs; /* not static */
+# define ARCH_REGS_FOR_GETREGS tile_regs
 #elif defined(MICROBLAZE)
 static long microblaze_r3;
 #elif defined(OR1K)
@@ -784,177 +787,180 @@ static struct user_regs_struct arc_regs;
 # define ARCH_REGS_FOR_GETREGSET arc_regs
 #endif
 
+static long get_regs_error;
+
 void
 print_pc(struct tcb *tcp)
 {
-#define PRINTBADPC tprintf(sizeof(long) == 4 ? "[????????] " : \
-                          sizeof(long) == 8 ? "[????????????????] " : \
-                          NULL /* crash */)
+       const char *fmt;
+       const char *bad;
+
+#ifdef current_wordsize
+# define pc_wordsize current_wordsize
+#else
+# define pc_wordsize personality_wordsize[tcp->currpers]
+#endif
+
+       if (pc_wordsize == 4) {
+               fmt = "[%08lx] ";
+               bad = "[????????] ";
+       } else {
+               fmt = "[%016lx] ";
+               bad = "[????????????????] ";
+       }
+
+#undef pc_wordsize
+#define PRINTBADPC tprints(bad)
+
        if (get_regs_error) {
                PRINTBADPC;
                return;
        }
+
 #if defined(I386)
-       tprintf("[%08lx] ", i386_regs.eip);
+       tprintf(fmt, i386_regs.eip);
+#elif defined(X86_64) || defined(X32)
+       if (x86_io.iov_len == sizeof(i386_regs))
+               tprintf(fmt, (unsigned long) i386_regs.eip);
+       else
+               tprintf(fmt, (unsigned long) x86_64_regs.rip);
 #elif defined(S390) || defined(S390X)
        long psw;
        if (upeek(tcp->pid, PT_PSWADDR, &psw) < 0) {
                PRINTBADPC;
                return;
        }
-# ifdef S390
-       tprintf("[%08lx] ", psw);
-# elif S390X
-       tprintf("[%016lx] ", psw);
-# endif
-#elif defined(X86_64) || defined(X32)
-       if (x86_io.iov_len == sizeof(i386_regs)) {
-               tprintf("[%08x] ", (unsigned) i386_regs.eip);
-       } else {
-# if defined(X86_64)
-               tprintf("[%016lx] ", (unsigned long) x86_64_regs.rip);
-# elif defined(X32)
-               /* Note: this truncates 64-bit rip to 32 bits */
-               tprintf("[%08lx] ", (unsigned long) x86_64_regs.rip);
-# endif
-       }
+       tprintf(fmt, psw);
 #elif defined(IA64)
        long ip;
        if (upeek(tcp->pid, PT_B0, &ip) < 0) {
                PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", ip);
+       tprintf(fmt, ip);
 #elif defined(POWERPC)
-       long pc = ppc_regs.nip;
-# ifdef POWERPC64
-       tprintf("[%016lx] ", pc);
-# else
-       tprintf("[%08lx] ", pc);
-# endif
+       tprintf(fmt, ppc_regs.nip);
 #elif defined(M68K)
        long pc;
        if (upeek(tcp->pid, 4*PT_PC, &pc) < 0) {
-               tprints("[????????] ");
+               PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
+       tprintf(fmt, pc);
 #elif defined(ALPHA)
        long pc;
        if (upeek(tcp->pid, REG_PC, &pc) < 0) {
-               tprints("[????????????????] ");
+               PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
+       tprintf(fmt, pc);
 #elif defined(SPARC)
-       tprintf("[%08lx] ", sparc_regs.pc);
+       tprintf(fmt, sparc_regs.pc);
 #elif defined(SPARC64)
-       tprintf("[%08lx] ", sparc_regs.tpc);
+       tprintf(fmt, sparc_regs.tpc);
 #elif defined(HPPA)
        long pc;
        if (upeek(tcp->pid, PT_IAOQ0, &pc) < 0) {
-               tprints("[????????] ");
-               return;
-       }
-       tprintf("[%08lx] ", pc);
-#elif defined(MIPS)
-       long pc;
-       if (upeek(tcp->pid, REG_EPC, &pc) < 0) {
-               tprints("[????????] ");
+               PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
+       tprintf(fmt, pc);
+#elif defined MIPS
+       tprintf(fmt, (unsigned long) mips_REG_EPC);
 #elif defined(SH)
        long pc;
        if (upeek(tcp->pid, 4*REG_PC, &pc) < 0) {
-               tprints("[????????] ");
+               PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
+       tprintf(fmt, pc);
 #elif defined(SH64)
        long pc;
        if (upeek(tcp->pid, REG_PC, &pc) < 0) {
-               tprints("[????????????????] ");
+               PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
-#elif defined(ARM)
-       tprintf("[%08lx] ", arm_regs.ARM_pc);
+       tprintf(fmt, pc);
 #elif defined(AARCH64)
-       /* tprintf("[%016lx] ", aarch64_regs.regs[???]); */
+       if (aarch64_io.iov_len == sizeof(arm_regs))
+               tprintf(fmt, (unsigned long) arm_regs.ARM_pc);
+       else
+               tprintf(fmt, (unsigned long) aarch64_regs.pc);
+#elif defined(ARM)
+       tprintf(fmt, arm_regs.ARM_pc);
 #elif defined(AVR32)
-       tprintf("[%08lx] ", avr32_regs.pc);
+       tprintf(fmt, avr32_regs.pc);
 #elif defined(BFIN)
        long pc;
        if (upeek(tcp->pid, PT_PC, &pc) < 0) {
                PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
+       tprintf(fmt, pc);
 #elif defined(CRISV10)
        long pc;
        if (upeek(tcp->pid, 4*PT_IRP, &pc) < 0) {
                PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
+       tprintf(fmt, pc);
 #elif defined(CRISV32)
        long pc;
        if (upeek(tcp->pid, 4*PT_ERP, &pc) < 0) {
                PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
+       tprintf(fmt, pc);
 #elif defined(TILE)
-# ifdef _LP64
-       tprintf("[%016lx] ", (unsigned long) tile_regs.pc);
-# else
-       tprintf("[%08lx] ", (unsigned long) tile_regs.pc);
-# endif
+       tprintf(fmt, (unsigned long) tile_regs.pc);
 #elif defined(OR1K)
-       tprintf("[%08lx] ", or1k_regs.pc);
+       tprintf(fmt, or1k_regs.pc);
 #elif defined(METAG)
-       tprintf("[%08lx] ", metag_regs.pc);
+       tprintf(fmt, metag_regs.pc);
 #elif defined(XTENSA)
        long pc;
        if (upeek(tcp->pid, REG_PC, &pc) < 0) {
                PRINTBADPC;
                return;
        }
-       tprintf("[%08lx] ", pc);
+       tprintf(fmt, pc);
 #elif defined(ARC)
-       tprintf("[%08lx] ", arc_regs.efa);
+       tprintf(fmt, arc_regs.efa);
+#else
+# warning print_pc is not implemented for this architecture
+       PRINTBADPC;
 #endif /* architecture */
 }
 
-/* Shuffle syscall numbers so that we don't have huge gaps in syscall table.
- * The shuffling should be reversible: shuffle_scno(shuffle_scno(n)) == n.
+/*
+ * Shuffle syscall numbers so that we don't have huge gaps in syscall table.
+ * The shuffling should be an involution: shuffle_scno(shuffle_scno(n)) == n.
  */
 #if defined(ARM) || defined(AARCH64) /* So far only 32-bit ARM needs this */
 static long
 shuffle_scno(unsigned long scno)
 {
-       if (scno <= ARM_LAST_ORDINARY_SYSCALL)
+       if (scno < ARM_FIRST_SHUFFLED_SYSCALL)
                return scno;
 
        /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */
-       if (scno == 0x000ffff0)
-               return ARM_LAST_ORDINARY_SYSCALL+1;
-       if (scno == ARM_LAST_ORDINARY_SYSCALL+1)
+       if (scno == ARM_FIRST_SHUFFLED_SYSCALL)
                return 0x000ffff0;
+       if (scno == 0x000ffff0)
+               return ARM_FIRST_SHUFFLED_SYSCALL;
 
-       /* Is it ARM specific syscall?
-        * Swap with [LAST_ORDINARY+2, LAST_ORDINARY+2 + LAST_SPECIAL] range.
+#define ARM_SECOND_SHUFFLED_SYSCALL (ARM_FIRST_SHUFFLED_SYSCALL + 1)
+       /*
+        * Is it ARM specific syscall?
+        * Swap [0x000f0000, 0x000f0000 + LAST_SPECIAL] range
+        * with [SECOND_SHUFFLED, SECOND_SHUFFLED + LAST_SPECIAL] range.
         */
-       if (scno >= 0x000f0000
-        && scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL
-       ) {
-               return scno - 0x000f0000 + (ARM_LAST_ORDINARY_SYSCALL+2);
+       if (scno >= 0x000f0000 &&
+           scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL) {
+               return scno - 0x000f0000 + ARM_SECOND_SHUFFLED_SYSCALL;
        }
-       if (/* scno >= ARM_LAST_ORDINARY_SYSCALL+2 - always true */ 1
-        && scno <= (ARM_LAST_ORDINARY_SYSCALL+2) + ARM_LAST_SPECIAL_SYSCALL
-       ) {
-               return scno + 0x000f0000 - (ARM_LAST_ORDINARY_SYSCALL+2);
+       if (scno <= ARM_SECOND_SHUFFLED_SYSCALL + ARM_LAST_SPECIAL_SYSCALL) {
+               return scno + 0x000f0000 - ARM_SECOND_SHUFFLED_SYSCALL;
        }
 
        return scno;
@@ -1009,71 +1015,43 @@ static int powerpc_getregs_old(pid_t pid)
 }
 #endif
 
-#ifndef get_regs
-long get_regs_error;
+void
+clear_regs(void)
+{
+       get_regs_error = -1;
+}
 
-#if defined(PTRACE_GETREGSET) && defined(NT_PRSTATUS)
-static void get_regset(pid_t pid)
+#if defined ARCH_REGS_FOR_GETREGSET
+static long
+get_regset(pid_t pid)
 {
-/* constant iovec */
-# if defined(ARM) \
-  || defined(I386) \
-  || defined(METAG) \
-  || defined(OR1K) \
-  || defined(ARC)
+# ifdef ARCH_IOVEC_FOR_GETREGSET
+       /* variable iovec */
+       ARCH_IOVEC_FOR_GETREGSET.iov_len = sizeof(ARCH_REGS_FOR_GETREGSET);
+       return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS,
+                     &ARCH_IOVEC_FOR_GETREGSET);
+# else
+       /* constant iovec */
        static struct iovec io = {
                .iov_base = &ARCH_REGS_FOR_GETREGSET,
                .iov_len = sizeof(ARCH_REGS_FOR_GETREGSET)
        };
-       get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
+       return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
 
-/* variable iovec */
-# elif defined(X86_64) || defined(X32)
-       /* x86_io.iov_base = &x86_regs_union; - already is */
-       x86_io.iov_len = sizeof(x86_regs_union);
-       get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &x86_io);
-# elif defined(AARCH64)
-       /* aarch64_io.iov_base = &arm_regs_union; - already is */
-       aarch64_io.iov_len = sizeof(arm_regs_union);
-       get_regs_error = ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &aarch64_io);
-# else
-#  warning both PTRACE_GETREGSET and NT_PRSTATUS are available but not yet used
 # endif
 }
-#endif /* PTRACE_GETREGSET && NT_PRSTATUS */
+#endif /* ARCH_REGS_FOR_GETREGSET */
 
 void
 get_regs(pid_t pid)
 {
-/* PTRACE_GETREGSET only */
-# if defined(METAG) || defined(OR1K) || defined(X32) || defined(AARCH64) || defined(ARC)
-       get_regset(pid);
-
-/* PTRACE_GETREGS only */
-# elif defined(AVR32)
-       get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &avr32_regs);
-# elif defined(TILE)
-       get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &tile_regs);
-# elif defined(SPARC) || defined(SPARC64)
-       get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&sparc_regs, 0);
-# elif defined(POWERPC)
-       static bool old_kernel = 0;
-       if (old_kernel)
-               goto old;
-       get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, (long) &ppc_regs);
-       if (get_regs_error && errno == EIO) {
-               old_kernel = 1;
- old:
-               get_regs_error = powerpc_getregs_old(pid);
-       }
-
-/* try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS */
-# else
-#  if defined(PTRACE_GETREGSET) && defined(NT_PRSTATUS)
+#ifdef ARCH_REGS_FOR_GETREGSET
+# ifdef X86_64
+       /* Try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS. */
        static int getregset_support;
 
        if (getregset_support >= 0) {
-               get_regset(pid);
+               get_regs_error = get_regset(pid);
                if (getregset_support > 0)
                        return;
                if (get_regs_error >= 0) {
@@ -1084,12 +1062,6 @@ get_regs(pid_t pid)
                        return;
                getregset_support = -1;
        }
-#  endif /* PTRACE_GETREGSET && NT_PRSTATUS */
-#  if defined(ARM)
-       get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &arm_regs);
-#  elif defined(I386)
-       get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &i386_regs);
-#  elif defined(X86_64)
        /* Use old method, with unreliable heuristical detection of 32-bitness. */
        x86_io.iov_len = sizeof(x86_64_regs);
        get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &x86_64_regs);
@@ -1117,12 +1089,34 @@ get_regs(pid_t pid)
                i386_regs.esp = x86_64_regs.rsp;
                /* i386_regs.xss = x86_64_regs.ss; */
        }
-#  else
-#   error unhandled architecture
-#  endif /* ARM || I386 || X86_64 */
+# else /* !X86_64 */
+       /* Assume that PTRACE_GETREGSET works. */
+       get_regs_error = get_regset(pid);
 # endif
+#elif defined ARCH_REGS_FOR_GETREGS
+# if defined SPARC || defined SPARC64
+       /* SPARC systems have the meaning of data and addr reversed */
+       get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&ARCH_REGS_FOR_GETREGS, 0);
+# elif defined POWERPC
+       static bool old_kernel = 0;
+       if (old_kernel)
+               goto old;
+       get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
+       if (get_regs_error && errno == EIO) {
+               old_kernel = 1;
+ old:
+               get_regs_error = powerpc_getregs_old(pid);
+       }
+# else
+       /* Assume that PTRACE_GETREGS works. */
+       get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
+# endif
+
+#else /* !ARCH_REGS_FOR_GETREGSET && !ARCH_REGS_FOR_GETREGS */
+#  warning get_regs is not implemented for this architecture yet
+       get_regs_error = 0;
+#endif
 }
-#endif /* !get_regs */
 
 /* Returns:
  * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
@@ -1220,7 +1214,7 @@ get_scno(struct tcb *tcp)
 #elif defined(POWERPC)
        scno = ppc_regs.gpr[0];
 # ifdef POWERPC64
-       int currpers;
+       unsigned int currpers;
 
        /*
         * Check for 64/32 bit mode.
@@ -1242,7 +1236,7 @@ get_scno(struct tcb *tcp)
 # ifndef __X32_SYSCALL_BIT
 #  define __X32_SYSCALL_BIT    0x40000000
 # endif
-       int currpers;
+       unsigned int currpers;
 # if 1
        /* GETREGSET of NT_PRSTATUS tells us regset size,
         * which unambiguously detects i386.
@@ -1260,8 +1254,22 @@ get_scno(struct tcb *tcp)
                scno = x86_64_regs.orig_rax;
                currpers = 0;
                if (scno & __X32_SYSCALL_BIT) {
-                       scno -= __X32_SYSCALL_BIT;
-                       currpers = 2;
+                       /*
+                        * Syscall number -1 requires special treatment:
+                        * it might be a side effect of SECCOMP_RET_ERRNO
+                        * filtering that sets orig_rax to -1
+                        * in some versions of linux kernel.
+                        * If that is the case, then
+                        * __X32_SYSCALL_BIT logic does not apply.
+                        */
+                       if ((long long) x86_64_regs.orig_rax != -1) {
+                               scno -= __X32_SYSCALL_BIT;
+                               currpers = 2;
+                       } else {
+#  ifdef X32
+                               currpers = 2;
+#  endif
+                       }
                }
        }
 # elif 0
@@ -1375,7 +1383,7 @@ get_scno(struct tcb *tcp)
        if (errno)
                return -1;
        /* EABI syscall convention? */
-       if (scno != 0xef000000) {
+       if ((unsigned long) scno != 0xef000000) {
                /* No, it's OABI */
                if ((scno & 0x0ff00000) != 0x0f900000) {
                        fprintf(stderr, "pid %d unknown syscall trap 0x%08lx\n",
@@ -1395,30 +1403,11 @@ get_scno(struct tcb *tcp)
 #elif defined(M68K)
        if (upeek(tcp->pid, 4*PT_ORIG_D0, &scno) < 0)
                return -1;
-#elif defined(LINUX_MIPSN32)
-       unsigned long long regs[38];
-
-       if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
-               return -1;
-       mips_a3 = regs[REG_A3];
-       mips_r2 = regs[REG_V0];
-
-       scno = mips_r2;
-       if (!SCNO_IN_RANGE(scno)) {
-               if (mips_a3 == 0 || mips_a3 == -1) {
-                       if (debug_flag)
-                               fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
-                       return 0;
-               }
-       }
 #elif defined(MIPS)
-       if (upeek(tcp->pid, REG_A3, &mips_a3) < 0)
-               return -1;
-       if (upeek(tcp->pid, REG_V0, &scno) < 0)
-               return -1;
+       scno = mips_REG_V0;
 
        if (!SCNO_IN_RANGE(scno)) {
-               if (mips_a3 == 0 || mips_a3 == -1) {
+               if (mips_REG_A3 == 0 || mips_REG_A3 == (uint64_t) -1) {
                        if (debug_flag)
                                fprintf(stderr, "stray syscall exit: v0 = %ld\n", scno);
                        return 0;
@@ -1530,7 +1519,7 @@ get_scno(struct tcb *tcp)
        if (upeek(tcp->pid, 4*PT_R9, &scno) < 0)
                return -1;
 #elif defined(TILE)
-       int currpers;
+       unsigned int currpers;
        scno = tile_regs.regs[10];
 # ifdef __tilepro__
        currpers = 1;
@@ -1575,159 +1564,51 @@ get_scno(struct tcb *tcp)
        return 1;
 }
 
-/* Called at each syscall entry.
- * Returns:
- * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
- * 1: ok, continue in trace_syscall_entering().
- * other: error, trace_syscall_entering() should print error indicator
- *    ("????" etc) and bail out.
+/*
+ * Cannot rely on __kernel_[u]long_t being defined,
+ * it is quite a recent feature of <asm/posix_types.h>.
  */
-static int
-syscall_fixup_on_sysenter(struct tcb *tcp)
-{
-       /* A common case of "not a syscall entry" is post-execve SIGTRAP */
-#if defined(I386)
-       if (i386_regs.eax != -ENOSYS) {
-               if (debug_flag)
-                       fprintf(stderr, "not a syscall entry (eax = %ld)\n", i386_regs.eax);
-               return 0;
-       }
-#elif defined(X86_64) || defined(X32)
-       {
-               long rax;
-               if (x86_io.iov_len == sizeof(i386_regs)) {
-                       /* Sign extend from 32 bits */
-                       rax = (int32_t)i386_regs.eax;
-               } else {
-                       /* Note: in X32 build, this truncates 64 to 32 bits */
-                       rax = x86_64_regs.rax;
-               }
-               if (rax != -ENOSYS) {
-                       if (debug_flag)
-                               fprintf(stderr, "not a syscall entry (rax = %ld)\n", rax);
-                       return 0;
-               }
-       }
-#elif defined(M68K)
-       /* TODO? Eliminate upeek's in arches below like we did in x86 */
-       if (upeek(tcp->pid, 4*PT_D0, &m68k_d0) < 0)
-               return -1;
-       if (m68k_d0 != -ENOSYS) {
-               if (debug_flag)
-                       fprintf(stderr, "not a syscall entry (d0 = %ld)\n", m68k_d0);
-               return 0;
-       }
-#elif defined(IA64)
-       if (upeek(tcp->pid, PT_R10, &ia64_r10) < 0)
-               return -1;
-       if (upeek(tcp->pid, PT_R8, &ia64_r8) < 0)
-               return -1;
-       if (ia64_ia32mode && ia64_r8 != -ENOSYS) {
-               if (debug_flag)
-                       fprintf(stderr, "not a syscall entry (r8 = %ld)\n", ia64_r8);
-               return 0;
-       }
-#elif defined(CRISV10) || defined(CRISV32)
-       if (upeek(tcp->pid, 4*PT_R10, &cris_r10) < 0)
-               return -1;
-       if (cris_r10 != -ENOSYS) {
-               if (debug_flag)
-                       fprintf(stderr, "not a syscall entry (r10 = %ld)\n", cris_r10);
-               return 0;
-       }
-#elif defined(MICROBLAZE)
-       if (upeek(tcp->pid, 3 * 4, &microblaze_r3) < 0)
-               return -1;
-       if (microblaze_r3 != -ENOSYS) {
-               if (debug_flag)
-                       fprintf(stderr, "not a syscall entry (r3 = %ld)\n", microblaze_r3);
-               return 0;
-       }
-#endif
-       return 1;
-}
-
-static void
-internal_fork(struct tcb *tcp)
-{
-#if defined S390 || defined S390X || defined CRISV10 || defined CRISV32
-# define ARG_FLAGS     1
+#ifdef __kernel_long_t
+typedef __kernel_long_t kernel_long_t;
+typedef __kernel_ulong_t kernel_ulong_t;
 #else
-# define ARG_FLAGS     0
-#endif
-#ifndef CLONE_UNTRACED
-# define CLONE_UNTRACED        0x00800000
+# ifdef X32
+typedef long long kernel_long_t;
+typedef unsigned long long kernel_ulong_t;
+# else
+typedef long kernel_long_t;
+typedef unsigned long kernel_ulong_t;
+# endif
 #endif
-       if ((ptrace_setoptions
-           & (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
-          == (PTRACE_O_TRACECLONE | PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK))
-               return;
-
-       if (!followfork)
-               return;
 
-       if (entering(tcp)) {
-               /*
-                * We won't see the new child if clone is called with
-                * CLONE_UNTRACED, so we keep the same logic with that option
-                * and don't trace it.
-                */
-               if ((tcp->s_ent->sys_func == sys_clone)
-                && (tcp->u_arg[ARG_FLAGS] & CLONE_UNTRACED)
-               )
-                       return;
-               setbpt(tcp);
-       } else {
-               if (tcp->flags & TCB_BPTSET)
-                       clearbpt(tcp);
-       }
-}
-
-#if defined(TCB_WAITEXECVE)
-static void
-internal_exec(struct tcb *tcp)
+/*
+ * Check the syscall return value register value for whether it is
+ * a negated errno code indicating an error, or a success return value.
+ */
+static inline bool
+is_negated_errno(kernel_ulong_t val)
 {
-       /* Maybe we have post-execve SIGTRAP suppressed? */
-       if (ptrace_setoptions & PTRACE_O_TRACEEXEC)
-               return; /* yes, no need to do anything */
+       /* Linux kernel defines MAX_ERRNO to 4095. */
+       kernel_ulong_t max = -(kernel_long_t) 4095;
 
-       if (exiting(tcp) && syserror(tcp))
-               /* Error in execve, no post-execve SIGTRAP expected */
-               tcp->flags &= ~TCB_WAITEXECVE;
-       else
-               tcp->flags |= TCB_WAITEXECVE;
-}
-#endif
-
-static void
-syscall_fixup_for_fork_exec(struct tcb *tcp)
-{
+#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
+       if (current_wordsize < sizeof(val)) {
+               val = (uint32_t) val;
+               max = (uint32_t) max;
+       }
+#elif defined X32
        /*
-        * We must always trace a few critical system calls in order to
-        * correctly support following forks in the presence of tracing
-        * qualifiers.
+        * current_wordsize is 4 even in personality 0 (native X32)
+        * but truncation _must not_ be done in it.
+        * can't check current_wordsize here!
         */
-       int (*func)();
-
-       func = tcp->s_ent->sys_func;
-
-       if (   sys_fork == func
-           || sys_clone == func
-          ) {
-               internal_fork(tcp);
-               return;
-       }
-
-#if defined(TCB_WAITEXECVE)
-       if (   sys_execve == func
-# if defined(SPARC) || defined(SPARC64)
-           || sys_execv == func
-# endif
-          ) {
-               internal_exec(tcp);
-               return;
+       if (current_personality != 0) {
+               val = (uint32_t) val;
+               max = (uint32_t) max;
        }
 #endif
+
+       return val >= max;
 }
 
 /* Return -1 on error or 1 on success (never 0!) */
@@ -1784,34 +1665,35 @@ get_syscall_args(struct tcb *tcp)
                        tcp->u_arg[i] &= 0xffffffff;
                }
        }
-#elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64)
-       /* N32 and N64 both use up to six registers.  */
-       unsigned long long regs[38];
-
-       if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
-               return -1;
-
-       for (i = 0; i < nargs; ++i) {
-               tcp->u_arg[i] = regs[REG_A0 + i];
-# if defined(LINUX_MIPSN32)
-               tcp->ext_arg[i] = regs[REG_A0 + i];
-# endif
-       }
-#elif defined(MIPS)
+#elif defined LINUX_MIPSN64
+       (void)i;
+       (void)nargs;
+       tcp->u_arg[0] = mips_REG_A0;
+       tcp->u_arg[1] = mips_REG_A1;
+       tcp->u_arg[2] = mips_REG_A2;
+       tcp->u_arg[3] = mips_REG_A3;
+       tcp->u_arg[4] = mips_REG_A4;
+       tcp->u_arg[5] = mips_REG_A5;
+#elif defined LINUX_MIPSN32
+       (void)i;
+       (void)nargs;
+       tcp->u_arg[0] = tcp->ext_arg[0] = mips_REG_A0;
+       tcp->u_arg[1] = tcp->ext_arg[1] = mips_REG_A1;
+       tcp->u_arg[2] = tcp->ext_arg[2] = mips_REG_A2;
+       tcp->u_arg[3] = tcp->ext_arg[3] = mips_REG_A3;
+       tcp->u_arg[4] = tcp->ext_arg[4] = mips_REG_A4;
+       tcp->u_arg[5] = tcp->ext_arg[5] = mips_REG_A5;
+#elif defined LINUX_MIPSO32
+       (void)i;
+       (void)nargs;
+       tcp->u_arg[0] = mips_REG_A0;
+       tcp->u_arg[1] = mips_REG_A1;
+       tcp->u_arg[2] = mips_REG_A2;
+       tcp->u_arg[3] = mips_REG_A3;
        if (nargs > 4) {
-               long sp;
-
-               if (upeek(tcp->pid, REG_SP, &sp) < 0)
-                       return -1;
-               for (i = 0; i < 4; ++i)
-                       if (upeek(tcp->pid, REG_A0 + i, &tcp->u_arg[i]) < 0)
-                               return -1;
-               umoven(tcp, sp + 16, (nargs - 4) * sizeof(tcp->u_arg[0]),
+               umoven(tcp, mips_REG_SP + 4 * 4,
+                      (nargs - 4) * sizeof(tcp->u_arg[0]),
                       (char *)(tcp->u_arg + 4));
-       } else {
-               for (i = 0; i < nargs; ++i)
-                       if (upeek(tcp->pid, REG_A0 + i, &tcp->u_arg[i]) < 0)
-                               return -1;
        }
 #elif defined(POWERPC)
        (void)i;
@@ -1963,24 +1845,11 @@ trace_syscall_entering(struct tcb *tcp)
 {
        int res, scno_good;
 
-#if defined TCB_WAITEXECVE
-       if (tcp->flags & TCB_WAITEXECVE) {
-               /* This is the post-execve SIGTRAP. */
-               tcp->flags &= ~TCB_WAITEXECVE;
-               return 0;
-       }
-#endif
-
        scno_good = res = (get_regs_error ? -1 : get_scno(tcp));
        if (res == 0)
                return res;
-       if (res == 1) {
-               res = syscall_fixup_on_sysenter(tcp);
-               if (res == 0)
-                       return res;
-               if (res == 1)
-                       res = get_syscall_args(tcp);
-       }
+       if (res == 1)
+               res = get_syscall_args(tcp);
 
        if (res != 1) {
                printleader(tcp);
@@ -2023,9 +1892,6 @@ trace_syscall_entering(struct tcb *tcp)
        }
 #endif
 
-       if (need_fork_exec_workarounds)
-               syscall_fixup_for_fork_exec(tcp);
-
        if (!(tcp->qual_flg & QUAL_TRACE)
         || (tracing_paths && !pathtrace_match(tcp))
        ) {
@@ -2040,6 +1906,13 @@ trace_syscall_entering(struct tcb *tcp)
                goto ret;
        }
 
+#ifdef USE_LIBUNWIND
+       if (stack_trace_enabled) {
+               if (tcp->s_ent->sys_flags & STACKTRACE_CAPTURE_ON_ENTER)
+                       unwind_capture_stacktrace(tcp);
+       }
+#endif
+
        printleader(tcp);
        if (tcp->qual_flg & UNDEFINED_SCNO)
                tprintf("%s(", undefined_scno_name(tcp));
@@ -2067,20 +1940,14 @@ trace_syscall_entering(struct tcb *tcp)
 static int
 get_syscall_result(struct tcb *tcp)
 {
-#if defined(S390) || defined(S390X)
+#if defined ARCH_REGS_FOR_GETREGSET || defined ARCH_REGS_FOR_GETREGS
+       /* already done by get_regs */
+#elif defined(S390) || defined(S390X)
        if (upeek(tcp->pid, PT_GPR2, &s390_gpr2) < 0)
                return -1;
-#elif defined(POWERPC)
-       /* already done by get_regs */
-#elif defined(AVR32)
-       /* already done by get_regs */
 #elif defined(BFIN)
        if (upeek(tcp->pid, PT_R0, &bfin_r0) < 0)
                return -1;
-#elif defined(I386)
-       /* already done by get_regs */
-#elif defined(X86_64) || defined(X32)
-       /* already done by get_regs */
 #elif defined(IA64)
 #      define IA64_PSR_IS      ((long)1 << 34)
        long psr;
@@ -2090,38 +1957,14 @@ get_syscall_result(struct tcb *tcp)
                return -1;
        if (upeek(tcp->pid, PT_R10, &ia64_r10) < 0)
                return -1;
-#elif defined(ARM)
-       /* already done by get_regs */
-#elif defined(AARCH64)
-       /* register reading already done by get_regs */
-
-       /* Used to do this, but we did it on syscall entry already: */
-       /* We are in 64-bit mode (personality 1) if register struct is aarch64_regs,
-        * else it's personality 0.
-        */
-       /*update_personality(tcp, aarch64_io.iov_len == sizeof(aarch64_regs));*/
 #elif defined(M68K)
        if (upeek(tcp->pid, 4*PT_D0, &m68k_d0) < 0)
                return -1;
-#elif defined(LINUX_MIPSN32)
-       unsigned long long regs[38];
-
-       if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long) &regs) < 0)
-               return -1;
-       mips_a3 = regs[REG_A3];
-       mips_r2 = regs[REG_V0];
-#elif defined(MIPS)
-       if (upeek(tcp->pid, REG_A3, &mips_a3) < 0)
-               return -1;
-       if (upeek(tcp->pid, REG_V0, &mips_r2) < 0)
-               return -1;
 #elif defined(ALPHA)
        if (upeek(tcp->pid, REG_A3, &alpha_a3) < 0)
                return -1;
        if (upeek(tcp->pid, REG_R0, &alpha_r0) < 0)
                return -1;
-#elif defined(SPARC) || defined(SPARC64)
-       /* already done by get_regs */
 #elif defined(HPPA)
        if (upeek(tcp->pid, PT_GR28, &hppa_r28) < 0)
                return -1;
@@ -2136,76 +1979,18 @@ get_syscall_result(struct tcb *tcp)
 #elif defined(CRISV10) || defined(CRISV32)
        if (upeek(tcp->pid, 4*PT_R10, &cris_r10) < 0)
                return -1;
-#elif defined(TILE)
-       /* already done by get_regs */
 #elif defined(MICROBLAZE)
        if (upeek(tcp->pid, 3 * 4, &microblaze_r3) < 0)
                return -1;
-#elif defined(OR1K)
-       /* already done by get_regs */
-#elif defined(METAG)
-       /* already done by get_regs */
 #elif defined(XTENSA)
        if (upeek(tcp->pid, REG_A_BASE + 2, &xtensa_a2) < 0)
                return -1;
-#elif defined(ARC)
-       /* already done by get_regs */
+#else
+# error get_syscall_result is not implemented for this architecture
 #endif
        return 1;
 }
 
-/* Called at each syscall exit */
-static void
-syscall_fixup_on_sysexit(struct tcb *tcp)
-{
-#if defined(S390) || defined(S390X)
-       if ((tcp->flags & TCB_WAITEXECVE)
-                && (s390_gpr2 == -ENOSYS || s390_gpr2 == tcp->scno)) {
-               /*
-                * Return from execve.
-                * Fake a return value of zero.  We leave the TCB_WAITEXECVE
-                * flag set for the post-execve SIGTRAP to see and reset.
-                */
-               s390_gpr2 = 0;
-       }
-#endif
-}
-
-/*
- * Check the syscall return value register value for whether it is
- * a negated errno code indicating an error, or a success return value.
- */
-static inline int
-is_negated_errno(unsigned long int val)
-{
-       unsigned long int max = -(long int) nerrnos;
-#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
-       if (current_wordsize < sizeof(val)) {
-               val = (unsigned int) val;
-               max = (unsigned int) max;
-       }
-#endif
-       return val > max;
-}
-
-#if defined(X32)
-static inline int
-is_negated_errno_x32(unsigned long long val)
-{
-       unsigned long long max = -(long long) nerrnos;
-       /*
-        * current_wordsize is 4 even in personality 0 (native X32)
-        * but truncation _must not_ be done in it.
-        * can't check current_wordsize here!
-        */
-       if (current_personality != 0) {
-               val = (uint32_t) val;
-               max = (uint32_t) max;
-       }
-       return val > max;
-}
-#endif
-
 /* Returns:
  * 1: ok, continue in trace_syscall_exiting().
  * -1: error, trace_syscall_exiting() should print error indicator
@@ -2235,40 +2020,29 @@ get_error(struct tcb *tcp)
        else {
                tcp->u_rval = i386_regs.eax;
        }
-#elif defined(X86_64)
-       long rax;
-       if (x86_io.iov_len == sizeof(i386_regs)) {
-               /* Sign extend from 32 bits */
-               rax = (int32_t)i386_regs.eax;
-       } else {
-               rax = x86_64_regs.rax;
-       }
-       if (check_errno && is_negated_errno(rax)) {
-               tcp->u_rval = -1;
-               u_error = -rax;
-       }
-       else {
-               tcp->u_rval = rax;
-       }
-#elif defined(X32)
-       /* In X32, return value is 64-bit (llseek uses one).
+#elif defined(X86_64) || defined(X32)
+       /*
+        * In X32, return value is 64-bit (llseek uses one).
         * Using merely "long rax" would not work.
         */
-       long long rax;
+       kernel_long_t rax;
+
        if (x86_io.iov_len == sizeof(i386_regs)) {
                /* Sign extend from 32 bits */
-               rax = (int32_t)i386_regs.eax;
+               rax = (int32_t) i386_regs.eax;
        } else {
                rax = x86_64_regs.rax;
        }
-       /* Careful: is_negated_errno() works only on longs */
-       if (check_errno && is_negated_errno_x32(rax)) {
+       if (check_errno && is_negated_errno(rax)) {
                tcp->u_rval = -1;
                u_error = -rax;
        }
        else {
-               tcp->u_rval = rax; /* truncating */
+               tcp->u_rval = rax;
+# ifdef X32
+               /* tcp->u_rval contains a truncated value */
                tcp->u_lrval = rax;
+# endif
        }
 #elif defined(IA64)
        if (ia64_ia32mode) {
@@ -2291,14 +2065,14 @@ get_error(struct tcb *tcp)
                }
        }
 #elif defined(MIPS)
-       if (check_errno && mips_a3) {
+       if (check_errno && mips_REG_A3) {
                tcp->u_rval = -1;
-               u_error = mips_r2;
+               u_error = mips_REG_V0;
        } else {
-               tcp->u_rval = mips_r2;
-# if defined(LINUX_MIPSN32)
-               tcp->u_lrval = mips_r2;
+# if defined LINUX_MIPSN32
+               tcp->u_lrval = mips_REG_V0;
 # endif
+               tcp->u_rval = mips_REG_V0;
        }
 #elif defined(POWERPC)
        if (check_errno && (ppc_regs.ccr & 0x10000000)) {
@@ -2483,11 +2257,21 @@ dumpio(struct tcb *tcp)
                if (func == sys_read ||
                    func == sys_pread ||
                    func == sys_recv ||
-                   func == sys_recvfrom)
+                   func == sys_recvfrom) {
                        dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
-               else if (func == sys_readv)
+                       return;
+               } else if (func == sys_readv) {
                        dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
-               return;
+                       return;
+#if HAVE_SENDMSG
+               } else if (func == sys_recvmsg) {
+                       dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
+                       return;
+               } else if (func == sys_recvmmsg) {
+                       dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
+                       return;
+#endif
+               }
        }
        if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
                if (func == sys_write ||
@@ -2497,7 +2281,12 @@ dumpio(struct tcb *tcp)
                        dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
                else if (func == sys_writev)
                        dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
-               return;
+#if HAVE_SENDMSG
+               else if (func == sys_sendmsg)
+                       dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
+               else if (func == sys_sendmmsg)
+                       dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
+#endif
        }
 }
 
@@ -2513,15 +2302,19 @@ trace_syscall_exiting(struct tcb *tcp)
        if (Tflag || cflag)
                gettimeofday(&tv, NULL);
 
+#ifdef USE_LIBUNWIND
+       if (stack_trace_enabled) {
+               if (tcp->s_ent->sys_flags & STACKTRACE_INVALIDATE_CACHE)
+                       unwind_cache_invalidate(tcp);
+       }
+#endif
+
 #if SUPPORTED_PERSONALITIES > 1
        update_personality(tcp, tcp->currpers);
 #endif
        res = (get_regs_error ? -1 : get_syscall_result(tcp));
        if (res == 1) {
-               syscall_fixup_on_sysexit(tcp); /* never fails */
                get_error(tcp); /* never fails */
-               if (need_fork_exec_workarounds)
-                       syscall_fixup_for_fork_exec(tcp);
                if (filtered(tcp) || hide_log_until_execve)
                        goto ret;
        }
@@ -2644,13 +2437,12 @@ trace_syscall_exiting(struct tcb *tcp)
                        tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
                        break;
                default:
-                       if (u_error < 0)
-                               tprintf("= -1 E??? (errno %ld)", u_error);
-                       else if (u_error < nerrnos)
+                       if ((unsigned long) u_error < nerrnos
+                           && errnoent[u_error])
                                tprintf("= -1 %s (%s)", errnoent[u_error],
                                        strerror(u_error));
                        else
-                               tprintf("= -1 ERRNO_%ld (%s)", u_error,
+                               tprintf("= -1 ERRNO_%lu (%s)", u_error,
                                        strerror(u_error));
                        break;
                }
@@ -2663,7 +2455,13 @@ trace_syscall_exiting(struct tcb *tcp)
                else {
                        switch (sys_res & RVAL_MASK) {
                        case RVAL_HEX:
-                               tprintf("= %#lx", tcp->u_rval);
+#if SUPPORTED_PERSONALITIES > 1
+                               if (current_wordsize < sizeof(long))
+                                       tprintf("= %#x",
+                                               (unsigned int) tcp->u_rval);
+                               else
+#endif
+                                       tprintf("= %#lx", tcp->u_rval);
                                break;
                        case RVAL_OCTAL:
                                tprintf("= %#lo", tcp->u_rval);
@@ -2674,6 +2472,14 @@ trace_syscall_exiting(struct tcb *tcp)
                        case RVAL_DECIMAL:
                                tprintf("= %ld", tcp->u_rval);
                                break;
+                       case RVAL_FD:
+                               if (show_fd_path) {
+                                       tprints("= ");
+                                       printfd(tcp, tcp->u_rval);
+                               }
+                               else
+                                       tprintf("= %ld", tcp->u_rval);
+                               break;
 #if defined(LINUX_MIPSN32) || defined(X32)
                        /*
                        case RVAL_LHEX: