]> granicus.if.org Git - strace/blobdiff - util.c
tests: check decoding of netlink smc_diag_msg attributes
[strace] / util.c
diff --git a/util.c b/util.c
index 2b4178ca620349bcfbb7cd9f59c1a5ec66ede172..2ccfe4fe32438199a43936872d8478c68010e305 100644 (file)
--- a/util.c
+++ b/util.c
@@ -6,6 +6,7 @@
  * Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
  *                     Linux for s390 port by D.J. Barrow
  *                    <barrow_dj@mail.yahoo.com,djbarrow@de.ibm.com>
+ * Copyright (c) 1999-2017 The strace developers.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
 # include <sys/xattr.h>
 #endif
 #include <sys/uio.h>
+#include <asm/unistd.h>
 
+#include "scno.h"
 #include "regs.h"
 #include "ptrace.h"
 
 int
-string_to_uint(const char *str)
+string_to_uint_ex(const char *const str, char **const endptr,
+                 const unsigned int max_val, const char *const accepted_ending)
 {
-       char *error;
-       long value;
+       char *end;
+       long val;
 
        if (!*str)
                return -1;
+
        errno = 0;
-       value = strtol(str, &error, 10);
-       if (errno || *error || value < 0 || (long)(int)value != value)
+       val = strtol(str, &end, 10);
+
+       if (str == end || val < 0 || (unsigned long) val > max_val
+           || (val == LONG_MAX && errno == ERANGE))
                return -1;
-       return (int)value;
+
+       if (*end && (!accepted_ending || !strchr(accepted_ending, *end)))
+               return -1;
+
+       if (endptr)
+               *endptr = end;
+
+       return (int) val;
+}
+
+int
+string_to_uint(const char *const str)
+{
+       return string_to_uint_upto(str, INT_MAX);
 }
 
 int
@@ -120,33 +140,6 @@ tv_mul(struct timeval *tv, const struct timeval *a, int n)
        tv->tv_usec %= 1000000;
 }
 
-const char *
-xlookup64(const struct xlat *xlat, const uint64_t val)
-{
-       for (; xlat->str != NULL; xlat++)
-               if (xlat->val == val)
-                       return xlat->str;
-       return NULL;
-}
-
-static int
-xlat_bsearch_compare(const void *a, const void *b)
-{
-       const unsigned int val1 = (const unsigned long) a;
-       const unsigned int val2 = ((const struct xlat *) b)->val;
-       return (val1 > val2) ? 1 : (val1 < val2) ? -1 : 0;
-}
-
-const char *
-xlat_search(const struct xlat *xlat, const size_t nmemb, const unsigned int val)
-{
-       const struct xlat *e =
-               bsearch((const void*) (const unsigned long) val,
-                       xlat, nmemb, sizeof(*xlat), xlat_bsearch_compare);
-
-       return e ? e->str : NULL;
-}
-
 #if !defined HAVE_STPCPY
 char *
 stpcpy(char *dst, const char *src)
@@ -171,7 +164,7 @@ int
 next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits)
 {
        const unsigned endian = 1;
-       int little_endian = *(char*)&endian;
+       int little_endian = *(char *) (void *) &endian;
 
        const uint8_t *array = bit_array;
        unsigned pos = cur_bit / 8;
@@ -204,29 +197,6 @@ next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits)
                pos++;
        }
 }
-/*
- * Print entry in struct xlat table, if there.
- */
-void
-printxvals(const unsigned int val, const char *dflt, const struct xlat *xlat, ...)
-{
-       va_list args;
-
-       va_start(args, xlat);
-       for (; xlat; xlat = va_arg(args, const struct xlat *)) {
-               const char *str = xlookup(xlat, val);
-
-               if (str) {
-                       tprints(str);
-                       va_end(args);
-                       return;
-               }
-       }
-       /* No hits -- print raw # instead. */
-       tprintf("%#x /* %s */", val, dflt);
-
-       va_end(args);
-}
 
 /*
  * Fetch 64bit argument at position arg_no and
@@ -235,48 +205,40 @@ printxvals(const unsigned int val, const char *dflt, const struct xlat *xlat, ..
 int
 getllval(struct tcb *tcp, unsigned long long *val, int arg_no)
 {
-#if SIZEOF_LONG > 4 && SIZEOF_LONG == SIZEOF_LONG_LONG
-# if SUPPORTED_PERSONALITIES > 1
-#  ifdef X86_64
-       if (current_personality != 1) {
-#  else
-       if (current_wordsize > 4) {
-#  endif
-# endif
-               *val = tcp->u_arg[arg_no];
-               arg_no++;
-# if SUPPORTED_PERSONALITIES > 1
-       } else {
+#if SIZEOF_KERNEL_LONG_T > 4
+# ifndef current_klongsize
+       if (current_klongsize < SIZEOF_KERNEL_LONG_T) {
 #  if defined(AARCH64) || defined(POWERPC64)
                /* Align arg_no to the next even number. */
                arg_no = (arg_no + 1) & 0xe;
 #  endif /* AARCH64 || POWERPC64 */
-               *val = LONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1]);
+               *val = ULONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1]);
                arg_no += 2;
-       }
-# endif /* SUPPORTED_PERSONALITIES > 1 */
-#elif SIZEOF_LONG > 4
-#  error Unsupported configuration: SIZEOF_LONG > 4 && SIZEOF_LONG_LONG > SIZEOF_LONG
-#elif defined LINUX_MIPSN32
-       *val = tcp->ext_arg[arg_no];
-       arg_no++;
-#elif defined X32
-       if (current_personality == 0) {
-               *val = tcp->ext_arg[arg_no];
+       } else
+# endif /* !current_klongsize */
+       {
+               *val = tcp->u_arg[arg_no];
                arg_no++;
-       } else {
-               *val = LONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1]);
-               arg_no += 2;
        }
-#else
-# if defined __ARM_EABI__ || \
-     defined LINUX_MIPSO32 || \
-     defined POWERPC || \
-     defined XTENSA
+#else /* SIZEOF_KERNEL_LONG_T == 4 */
+# if defined __ARM_EABI__      \
+  || defined LINUX_MIPSO32     \
+  || defined POWERPC           \
+  || defined XTENSA
        /* Align arg_no to the next even number. */
        arg_no = (arg_no + 1) & 0xe;
-# endif
-       *val = LONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1]);
+# elif defined SH
+       /*
+        * The SH4 ABI does allow long longs in odd-numbered registers, but
+        * does not allow them to be split between registers and memory - and
+        * there are only four argument registers for normal functions.  As a
+        * result, pread, for example, takes an extra padding argument before
+        * the offset.  This was changed late in the 2.4 series (around 2.4.20).
+        */
+       if (arg_no == 3)
+               arg_no++;
+# endif /* __ARM_EABI__ || LINUX_MIPSO32 || POWERPC || XTENSA || SH */
+       *val = ULONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1]);
        arg_no += 2;
 #endif
 
@@ -297,116 +259,19 @@ printllval(struct tcb *tcp, const char *format, int arg_no)
        return arg_no;
 }
 
-/*
- * Interpret `xlat' as an array of flags
- * print the entries whose bits are on in `flags'
- * return # of flags printed.
- */
-void
-addflags(const struct xlat *xlat, uint64_t flags)
-{
-       for (; xlat->str; xlat++) {
-               if (xlat->val && (flags & xlat->val) == xlat->val) {
-                       tprintf("|%s", xlat->str);
-                       flags &= ~xlat->val;
-               }
-       }
-       if (flags) {
-               tprintf("|%#" PRIx64, flags);
-       }
-}
-
-/*
- * Interpret `xlat' as an array of flags.
- * Print to static string the entries whose bits are on in `flags'
- * Return static string.
- */
-const char *
-sprintflags(const char *prefix, const struct xlat *xlat, int flags)
-{
-       static char outstr[1024];
-       char *outptr;
-       int found = 0;
-
-       outptr = stpcpy(outstr, prefix);
-
-       if (flags == 0 && xlat->val == 0 && xlat->str) {
-               strcpy(outptr, xlat->str);
-               return outstr;
-       }
-
-       for (; xlat->str; xlat++) {
-               if (xlat->val && (flags & xlat->val) == xlat->val) {
-                       if (found)
-                               *outptr++ = '|';
-                       outptr = stpcpy(outptr, xlat->str);
-                       found = 1;
-                       flags &= ~xlat->val;
-                       if (!flags)
-                               break;
-               }
-       }
-       if (flags) {
-               if (found)
-                       *outptr++ = '|';
-               outptr += sprintf(outptr, "%#x", flags);
-       }
-
-       return outstr;
-}
-
-int
-printflags(const struct xlat *xlat, int flags, const char *dflt)
-{
-       int n;
-       const char *sep;
-
-       if (flags == 0 && xlat->val == 0 && xlat->str) {
-               tprints(xlat->str);
-               return 1;
-       }
-
-       sep = "";
-       for (n = 0; xlat->str; xlat++) {
-               if (xlat->val && (flags & xlat->val) == xlat->val) {
-                       tprintf("%s%s", sep, xlat->str);
-                       flags &= ~xlat->val;
-                       sep = "|";
-                       n++;
-               }
-       }
-
-       if (n) {
-               if (flags) {
-                       tprintf("%s%#x", sep, flags);
-                       n++;
-               }
-       } else {
-               if (flags) {
-                       tprintf("%#x", flags);
-                       if (dflt)
-                               tprintf(" /* %s */", dflt);
-               } else {
-                       if (dflt)
-                               tprints("0");
-               }
-       }
-
-       return n;
-}
-
 void
-printaddr(const long addr)
+printaddr(const kernel_ulong_t addr)
 {
        if (!addr)
                tprints("NULL");
        else
-               tprintf("%#lx", addr);
+               tprintf("%#" PRI_klx, addr);
 }
 
 #define DEF_PRINTNUM(name, type) \
 bool                                                                   \
-printnum_ ## name(struct tcb *tcp, const long addr, const char *fmt)   \
+printnum_ ## name(struct tcb *const tcp, const kernel_ulong_t addr,    \
+                 const char *const fmt)                                \
 {                                                                      \
        type num;                                                       \
        if (umove_or_printaddr(tcp, addr, &num))                        \
@@ -417,9 +282,23 @@ printnum_ ## name(struct tcb *tcp, const long addr, const char *fmt)       \
        return true;                                                    \
 }
 
+#define DEF_PRINTNUM_ADDR(name, type) \
+bool                                                                   \
+printnum_addr_ ## name(struct tcb *tcp, const kernel_ulong_t addr)     \
+{                                                                      \
+       type num;                                                       \
+       if (umove_or_printaddr(tcp, addr, &num))                        \
+               return false;                                           \
+       tprints("[");                                                   \
+       printaddr(num);                                                 \
+       tprints("]");                                                   \
+       return true;                                                    \
+}
+
 #define DEF_PRINTPAIR(name, type) \
 bool                                                                   \
-printpair_ ## name(struct tcb *tcp, const long addr, const char *fmt)  \
+printpair_ ## name(struct tcb *const tcp, const kernel_ulong_t addr,   \
+                  const char *const fmt)                               \
 {                                                                      \
        type pair[2];                                                   \
        if (umove_or_printaddr(tcp, addr, &pair))                       \
@@ -433,15 +312,17 @@ printpair_ ## name(struct tcb *tcp, const long addr, const char *fmt)     \
 }
 
 DEF_PRINTNUM(int, int)
+DEF_PRINTNUM_ADDR(int, unsigned int)
 DEF_PRINTPAIR(int, int)
 DEF_PRINTNUM(short, short)
 DEF_PRINTNUM(int64, uint64_t)
+DEF_PRINTNUM_ADDR(int64, uint64_t)
 DEF_PRINTPAIR(int64, uint64_t)
 
-#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
+#ifndef current_wordsize
 bool
-printnum_long_int(struct tcb *tcp, const long addr,
-                 const char *fmt_long, const char *fmt_int)
+printnum_long_int(struct tcb *const tcp, const kernel_ulong_t addr,
+                 const char *const fmt_long, const char *const fmt_int)
 {
        if (current_wordsize > sizeof(int)) {
                return printnum_int64(tcp, addr, fmt_long);
@@ -449,81 +330,153 @@ printnum_long_int(struct tcb *tcp, const long addr,
                return printnum_int(tcp, addr, fmt_int);
        }
 }
-#endif
 
-const char *
-sprinttime(time_t t)
+bool
+printnum_addr_long_int(struct tcb *tcp, const kernel_ulong_t addr)
 {
-       struct tm *tmp;
-       static char buf[sizeof(int) * 3 * 6];
+       if (current_wordsize > sizeof(int)) {
+               return printnum_addr_int64(tcp, addr);
+       } else {
+               return printnum_addr_int(tcp, addr);
+       }
+}
+#endif /* !current_wordsize */
 
-       if (t == 0) {
-               strcpy(buf, "0");
-               return buf;
+#ifndef current_klongsize
+bool
+printnum_addr_klong_int(struct tcb *tcp, const kernel_ulong_t addr)
+{
+       if (current_klongsize > sizeof(int)) {
+               return printnum_addr_int64(tcp, addr);
+       } else {
+               return printnum_addr_int(tcp, addr);
        }
-       tmp = localtime(&t);
-       if (tmp)
-               snprintf(buf, sizeof buf, "%02d/%02d/%02d-%02d:%02d:%02d",
-                       tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
-                       tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
-       else
-               snprintf(buf, sizeof buf, "%lu", (unsigned long) t);
+}
+#endif /* !current_klongsize */
+
+/**
+ * Prints time to a (static internal) buffer and returns pointer to it.
+ *
+ * @param sec          Seconds since epoch.
+ * @param part_sec     Amount of second parts since the start of a second.
+ * @param max_part_sec Maximum value of a valid part_sec.
+ * @param width                1 + floor(log10(max_part_sec)).
+ */
+static const char *
+sprinttime_ex(const long long sec, const unsigned long long part_sec,
+             const unsigned int max_part_sec, const int width)
+{
+       static char buf[sizeof(int) * 3 * 6 + sizeof(part_sec) * 3
+                       + sizeof("+0000")];
+
+       if ((sec == 0 && part_sec == 0) || part_sec > max_part_sec)
+               return NULL;
+
+       time_t t = (time_t) sec;
+       struct tm *tmp = (sec == t) ? localtime(&t) : NULL;
+       if (!tmp)
+               return NULL;
+
+       size_t pos = strftime(buf, sizeof(buf), "%FT%T", tmp);
+       if (!pos)
+               return NULL;
+
+       if (part_sec > 0) {
+               int ret = snprintf(buf + pos, sizeof(buf) - pos, ".%0*llu",
+                                  width, part_sec);
+
+               if (ret < 0 || (size_t) ret >= sizeof(buf) - pos)
+                       return NULL;
 
-       return buf;
+               pos += ret;
+       }
+
+       return strftime(buf + pos, sizeof(buf) - pos, "%z", tmp) ? buf : NULL;
+}
+
+const char *
+sprinttime(long long sec)
+{
+       return sprinttime_ex(sec, 0, 0, 0);
+}
+
+const char *
+sprinttime_usec(long long sec, unsigned long long usec)
+{
+       return sprinttime_ex(sec, usec, 999999, 6);
+}
+
+const char *
+sprinttime_nsec(long long sec, unsigned long long nsec)
+{
+       return sprinttime_ex(sec, nsec, 999999999, 9);
 }
 
-static char *
-getfdproto(struct tcb *tcp, int fd, char *buf, unsigned bufsize)
+enum sock_proto
+getfdproto(struct tcb *tcp, int fd)
 {
 #ifdef HAVE_SYS_XATTR_H
+       size_t bufsize = 256;
+       char buf[bufsize];
        ssize_t r;
        char path[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)*3];
 
        if (fd < 0)
-               return NULL;
+               return SOCK_PROTO_UNKNOWN;
 
        sprintf(path, "/proc/%u/fd/%u", tcp->pid, fd);
        r = getxattr(path, "system.sockprotoname", buf, bufsize - 1);
        if (r <= 0)
-               return NULL;
+               return SOCK_PROTO_UNKNOWN;
        else {
                /*
                 * This is a protection for the case when the kernel
                 * side does not append a null byte to the buffer.
                 */
                buf[r] = '\0';
-               return buf;
+
+               return get_proto_by_name(buf);
        }
 #else
-       return NULL;
+       return SOCK_PROTO_UNKNOWN;
 #endif
 }
 
+unsigned long
+getfdinode(struct tcb *tcp, int fd)
+{
+       char path[PATH_MAX + 1];
+
+       if (getfdpath(tcp, fd, path, sizeof(path)) >= 0) {
+               const char *str = STR_STRIP_PREFIX(path, "socket:[");
+
+               if (str != path) {
+                       const size_t str_len = strlen(str);
+                       if (str_len && str[str_len - 1] == ']')
+                               return strtoul(str, NULL, 10);
+               }
+       }
+
+       return 0;
+}
+
 void
 printfd(struct tcb *tcp, int fd)
 {
        char path[PATH_MAX + 1];
        if (show_fd_path && getfdpath(tcp, fd, path, sizeof(path)) >= 0) {
-               static const char socket_prefix[] = "socket:[";
-               const size_t socket_prefix_len = sizeof(socket_prefix) - 1;
-               const size_t path_len = strlen(path);
+               const char *str;
+               size_t len;
+               unsigned long inode;
 
                tprintf("%d<", fd);
-               if (show_fd_path > 1 &&
-                   strncmp(path, socket_prefix, socket_prefix_len) == 0 &&
-                   path[path_len - 1] == ']') {
-                       unsigned long inode =
-                               strtoul(path + socket_prefix_len, NULL, 10);
-
-                       if (!print_sockaddr_by_inode_cached(inode)) {
-                               char buf[256];
-                               const char *proto =
-                                       getfdproto(tcp, fd, buf, sizeof(buf));
-                               if (!print_sockaddr_by_inode(inode, proto))
-                                       tprints(path);
-                       }
-               } else {
-                       print_quoted_string(path, path_len,
+               if (show_fd_path <= 1
+                   || (str = STR_STRIP_PREFIX(path, "socket:[")) == path
+                   || !(len = strlen(str))
+                   || str[len - 1] != ']'
+                   || !(inode = strtoul(str, NULL, 10))
+                   || !print_sockaddr_by_inode(tcp, fd, inode)) {
+                       print_quoted_string(path, strlen(path),
                                            QUOTE_OMIT_LEADING_TRAILING_QUOTES);
                }
                tprints(">");
@@ -560,9 +513,9 @@ string_quote(const char *instr, char *outstr, const unsigned int size,
                eol = 0x100; /* this can never match a char */
 
        usehex = 0;
-       if (xflag > 1)
+       if ((xflag > 1) || (style & QUOTE_FORCE_HEX)) {
                usehex = 1;
-       else if (xflag) {
+       else if (xflag) {
                /* Check for presence of symbol which require
                   to hex-quote the whole string. */
                for (i = 0; i < size; ++i) {
@@ -607,6 +560,9 @@ string_quote(const char *instr, char *outstr, const unsigned int size,
                        /* Check for NUL-terminated string. */
                        if (c == eol)
                                goto asciz_ended;
+                       if ((i == (size - 1)) &&
+                           (style & QUOTE_OMIT_TRAILING_0) && (c == '\0'))
+                               goto asciz_ended;
                        switch (c) {
                                case '\"': case '\\':
                                        *s++ = '\\';
@@ -744,7 +700,7 @@ print_quoted_string(const char *str, unsigned int size,
  * If path length exceeds `n', append `...' to the output.
  */
 void
-printpathn(struct tcb *tcp, long addr, unsigned int n)
+printpathn(struct tcb *const tcp, const kernel_ulong_t addr, unsigned int n)
 {
        char path[PATH_MAX + 1];
        int nul_seen;
@@ -755,13 +711,13 @@ printpathn(struct tcb *tcp, long addr, unsigned int n)
        }
 
        /* Cap path length to the path buffer size */
-       if (n > sizeof path - 1)
-               n = sizeof path - 1;
+       if (n > sizeof(path) - 1)
+               n = sizeof(path) - 1;
 
        /* Fetch one byte more to find out whether path length > n. */
        nul_seen = umovestr(tcp, addr, n + 1, path);
        if (nul_seen < 0)
-               tprintf("%#lx", addr);
+               printaddr(addr);
        else {
                path[n++] = '\0';
                print_quoted_string(path, n, QUOTE_0_TERMINATED);
@@ -771,7 +727,7 @@ printpathn(struct tcb *tcp, long addr, unsigned int n)
 }
 
 void
-printpath(struct tcb *tcp, long addr)
+printpath(struct tcb *const tcp, const kernel_ulong_t addr)
 {
        /* Size must correspond to char path[] size in printpathn */
        printpathn(tcp, addr, PATH_MAX);
@@ -779,16 +735,22 @@ printpath(struct tcb *tcp, long addr)
 
 /*
  * Print string specified by address `addr' and length `len'.
- * If `len' < 0, treat the string as a NUL-terminated string.
- * If string length exceeds `max_strlen', append `...' to the output.
+ * If `user_style' has QUOTE_0_TERMINATED bit set, treat the string
+ * as a NUL-terminated string.
+ * Pass `user_style' on to `string_quote'.
+ * Append `...' to the output if either the string length exceeds `max_strlen',
+ * or QUOTE_0_TERMINATED bit is set and the string length exceeds `len'.
  */
 void
-printstr(struct tcb *tcp, long addr, long len)
+printstr_ex(struct tcb *const tcp, const kernel_ulong_t addr,
+           const kernel_ulong_t len, const unsigned int user_style)
 {
-       static char *str = NULL;
+       static char *str;
        static char *outstr;
+
        unsigned int size;
-       unsigned int style;
+       unsigned int style = user_style;
+       int rc;
        int ellipsis;
 
        if (!addr) {
@@ -797,41 +759,44 @@ printstr(struct tcb *tcp, long addr, long len)
        }
        /* Allocate static buffers if they are not allocated yet. */
        if (!str) {
-               unsigned int outstr_size = 4 * max_strlen + /*for quotes and NUL:*/ 3;
+               const unsigned int outstr_size =
+                       4 * max_strlen + /* for quotes and NUL */ 3;
+               /*
+                * We can assume that outstr_size / 4 == max_strlen
+                * since we have a guarantee that max_strlen <= -1U / 4.
+                */
 
-               if (outstr_size / 4 != max_strlen)
-                       die_out_of_memory();
                str = xmalloc(max_strlen + 1);
                outstr = xmalloc(outstr_size);
        }
 
-       size = max_strlen;
-       if (len == -1) {
-               /*
-                * Treat as a NUL-terminated string: fetch one byte more
-                * because string_quote may look one byte ahead.
-                */
-               if (umovestr(tcp, addr, size + 1, str) < 0) {
-                       tprintf("%#lx", addr);
-                       return;
-               }
-               style = QUOTE_0_TERMINATED;
-       }
-       else {
-               if (size > (unsigned long)len)
-                       size = (unsigned long)len;
-               if (umoven(tcp, addr, size, str) < 0) {
-                       tprintf("%#lx", addr);
-                       return;
-               }
-               style = 0;
+       /* Fetch one byte more because string_quote may look one byte ahead. */
+       size = max_strlen + 1;
+
+       if (size > len)
+               size = len;
+       if (style & QUOTE_0_TERMINATED)
+               rc = umovestr(tcp, addr, size, str);
+       else
+               rc = umoven(tcp, addr, size, str);
+
+       if (rc < 0) {
+               printaddr(addr);
+               return;
        }
 
+       if (size > max_strlen)
+               size = max_strlen;
+       else
+               str[size] = '\xff';
+
        /* If string_quote didn't see NUL and (it was supposed to be ASCIZ str
         * or we were requested to print more than -s NUM chars)...
         */
-       ellipsis = (string_quote(str, outstr, size, style) &&
-                       (len < 0 || (unsigned long) len > max_strlen));
+       ellipsis = string_quote(str, outstr, size, style)
+                  && len
+                  && ((style & QUOTE_0_TERMINATED)
+                      || len > max_strlen);
 
        tprints(outstr);
        if (ellipsis)
@@ -839,9 +804,10 @@ printstr(struct tcb *tcp, long addr, long len)
 }
 
 void
-dumpiov_upto(struct tcb *tcp, int len, long addr, unsigned long data_size)
+dumpiov_upto(struct tcb *const tcp, const int len, const kernel_ulong_t addr,
+            kernel_ulong_t data_size)
 {
-#if SUPPORTED_PERSONALITIES > 1
+#if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
        union {
                struct { uint32_t base; uint32_t len; } *iov32;
                struct { uint64_t base; uint64_t len; } *iov64;
@@ -856,7 +822,7 @@ dumpiov_upto(struct tcb *tcp, int len, long addr, unsigned long data_size)
 #else
        struct iovec *iov;
 #define sizeof_iov sizeof(*iov)
-#define iov_iov_base(i) iov[i].iov_base
+#define iov_iov_base(i) ptr_to_kulong(iov[i].iov_base)
 #define iov_iov_len(i) iov[i].iov_len
 #endif
        int i;
@@ -871,7 +837,7 @@ dumpiov_upto(struct tcb *tcp, int len, long addr, unsigned long data_size)
        }
        if (umoven(tcp, addr, size, iov) >= 0) {
                for (i = 0; i < len; i++) {
-                       unsigned long iov_len = iov_iov_len(i);
+                       kernel_ulong_t iov_len = iov_iov_len(i);
                        if (iov_len > data_size)
                                iov_len = data_size;
                        if (!iov_len)
@@ -879,8 +845,8 @@ dumpiov_upto(struct tcb *tcp, int len, long addr, unsigned long data_size)
                        data_size -= iov_len;
                        /* include the buffer number to make it easy to
                         * match up the trace with the source */
-                       tprintf(" * %lu bytes in buffer %d\n", iov_len, i);
-                       dumpstr(tcp, (long) iov_iov_base(i), iov_len);
+                       tprintf(" * %" PRI_klu " bytes in buffer %d\n", iov_len, i);
+                       dumpstr(tcp, iov_iov_base(i), iov_len);
                }
        }
        free(iov);
@@ -891,7 +857,7 @@ dumpiov_upto(struct tcb *tcp, int len, long addr, unsigned long data_size)
 }
 
 void
-dumpstr(struct tcb *tcp, long addr, int len)
+dumpstr(struct tcb *const tcp, const kernel_ulong_t addr, const int len)
 {
        static int strsize = -1;
        static unsigned char *str;
@@ -936,8 +902,7 @@ dumpstr(struct tcb *tcp, long addr, int len)
                        if (i < len) {
                                *dst++ = "0123456789abcdef"[*src >> 4];
                                *dst++ = "0123456789abcdef"[*src & 0xf];
-                       }
-                       else {
+                       } else {
                                *dst++ = ' ';
                                *dst++ = ' ';
                        }
@@ -962,27 +927,14 @@ dumpstr(struct tcb *tcp, long addr, int len)
        }
 }
 
-#ifdef HAVE_PROCESS_VM_READV
-/* C library supports this, but the kernel might not. */
-static bool process_vm_readv_not_supported = 0;
-#else
+static bool process_vm_readv_not_supported;
 
-/* Need to do this since process_vm_readv() is not yet available in libc.
+#ifndef HAVE_PROCESS_VM_READV
+/*
+ * Need to do this since process_vm_readv() is not yet available in libc.
  * When libc is be updated, only "static bool process_vm_readv_not_supported"
  * line should remain.
  */
-#if !defined(__NR_process_vm_readv)
-# if defined(I386)
-#  define __NR_process_vm_readv  347
-# elif defined(X86_64)
-#  define __NR_process_vm_readv  310
-# elif defined(POWERPC)
-#  define __NR_process_vm_readv  351
-# endif
-#endif
-
-#if defined(__NR_process_vm_readv)
-static bool process_vm_readv_not_supported = 0;
 /* Have to avoid duplicating with the C library headers. */
 static ssize_t strace_process_vm_readv(pid_t pid,
                 const struct iovec *lvec,
@@ -993,23 +945,26 @@ static ssize_t strace_process_vm_readv(pid_t pid,
 {
        return syscall(__NR_process_vm_readv, (long)pid, lvec, liovcnt, rvec, riovcnt, flags);
 }
-#define process_vm_readv strace_process_vm_readv
-#else
-static bool process_vm_readv_not_supported = 1;
-# define process_vm_readv(...) (errno = ENOSYS, -1)
-#endif
-
-#endif /* end of hack */
+# define process_vm_readv strace_process_vm_readv
+#endif /* !HAVE_PROCESS_VM_READV */
 
 static ssize_t
-vm_read_mem(pid_t pid, void *laddr, long raddr, size_t len)
+vm_read_mem(const pid_t pid, void *const laddr,
+           const kernel_ulong_t raddr, const size_t len)
 {
+       const unsigned long truncated_raddr = raddr;
+
+       if (raddr != (kernel_ulong_t) truncated_raddr) {
+               errno = EIO;
+               return -1;
+       }
+
        const struct iovec local = {
                .iov_base = laddr,
                .iov_len = len
        };
        const struct iovec remote = {
-               .iov_base = (void *) raddr,
+               .iov_base = (void *) truncated_raddr,
                .iov_len = len
        };
 
@@ -1021,7 +976,8 @@ vm_read_mem(pid_t pid, void *laddr, long raddr, size_t len)
  * at address `addr' to our space at `our_addr'
  */
 int
-umoven(struct tcb *tcp, long addr, unsigned int len, void *our_addr)
+umoven(struct tcb *const tcp, kernel_ulong_t addr, unsigned int len,
+       void *const our_addr)
 {
        char *laddr = our_addr;
        int pid = tcp->pid;
@@ -1031,9 +987,11 @@ umoven(struct tcb *tcp, long addr, unsigned int len, void *our_addr)
                char x[sizeof(long)];
        } u;
 
-#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
-       if (current_wordsize < sizeof(addr))
-               addr &= (1ul << 8 * current_wordsize) - 1;
+#if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
+       if (current_wordsize < sizeof(addr)
+           && (addr & (~(kernel_ulong_t) -1U))) {
+               return -1;
+       }
 #endif
 
        if (!process_vm_readv_not_supported) {
@@ -1041,7 +999,7 @@ umoven(struct tcb *tcp, long addr, unsigned int len, void *our_addr)
                if ((unsigned int) r == len)
                        return 0;
                if (r >= 0) {
-                       error_msg("umoven: short read (%u < %u) @0x%lx",
+                       error_msg("umoven: short read (%u < %u) @0x%" PRI_klx,
                                  (unsigned int) r, len, addr);
                        return -1;
                }
@@ -1071,7 +1029,7 @@ umoven(struct tcb *tcp, long addr, unsigned int len, void *our_addr)
                n = addr & (sizeof(long) - 1);  /* residue */
                addr &= -sizeof(long);          /* aligned address */
                errno = 0;
-               u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0);
+               u.val = ptrace(PTRACE_PEEKDATA, pid, addr, 0);
                switch (errno) {
                        case 0:
                                break;
@@ -1083,7 +1041,7 @@ umoven(struct tcb *tcp, long addr, unsigned int len, void *our_addr)
                                return -1;
                        default:
                                /* all the rest is strange and should be reported */
-                               perror_msg("umoven: PTRACE_PEEKDATA pid:%d @0x%lx",
+                               perror_msg("umoven: PTRACE_PEEKDATA pid:%d @0x%" PRI_klx,
                                            pid, addr);
                                return -1;
                }
@@ -1096,7 +1054,7 @@ umoven(struct tcb *tcp, long addr, unsigned int len, void *our_addr)
        }
        while (len) {
                errno = 0;
-               u.val = ptrace(PTRACE_PEEKDATA, pid, (char *) addr, 0);
+               u.val = ptrace(PTRACE_PEEKDATA, pid, addr, 0);
                switch (errno) {
                        case 0:
                                break;
@@ -1106,13 +1064,13 @@ umoven(struct tcb *tcp, long addr, unsigned int len, void *our_addr)
                        case EFAULT: case EIO: case EPERM:
                                /* address space is inaccessible */
                                if (nread) {
-                                       perror_msg("umoven: short read (%u < %u) @0x%lx",
+                                       perror_msg("umoven: short read (%u < %u) @0x%" PRI_klx,
                                                   nread, nread + len, addr - nread);
                                }
                                return -1;
                        default:
                                /* all the rest is strange and should be reported */
-                               perror_msg("umoven: PTRACE_PEEKDATA pid:%d @0x%lx",
+                               perror_msg("umoven: PTRACE_PEEKDATA pid:%d @0x%" PRI_klx,
                                            pid, addr);
                                return -1;
                }
@@ -1128,50 +1086,28 @@ umoven(struct tcb *tcp, long addr, unsigned int len, void *our_addr)
 }
 
 int
-umoven_or_printaddr(struct tcb *tcp, const long addr, const unsigned int len,
-                   void *our_addr)
+umoven_or_printaddr(struct tcb *const tcp, const kernel_ulong_t addr,
+                   const unsigned int len, void *const our_addr)
 {
-       if (!addr) {
-               tprints("NULL");
-               return -1;
-       }
-       if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
+       if (!addr || !verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
            umoven(tcp, addr, len, our_addr) < 0) {
-               tprintf("%#lx", addr);
+               printaddr(addr);
                return -1;
        }
        return 0;
 }
 
 int
-umove_ulong_or_printaddr(struct tcb *tcp, const long addr, unsigned long *ptr)
+umoven_or_printaddr_ignore_syserror(struct tcb *const tcp,
+                                   const kernel_ulong_t addr,
+                                   const unsigned int len,
+                                   void *const our_addr)
 {
-       if (current_wordsize < sizeof(*ptr)) {
-               uint32_t val32;
-               int r = umove_or_printaddr(tcp, addr, &val32);
-               if (!r)
-                       *ptr = (unsigned long) val32;
-               return r;
-       }
-       return umove_or_printaddr(tcp, addr, ptr);
-}
-
-int
-umove_ulong_array_or_printaddr(struct tcb *tcp, const long addr,
-                              unsigned long *ptr, size_t n)
-{
-       if (current_wordsize < sizeof(*ptr)) {
-               uint32_t ptr32[n];
-               int r = umove_or_printaddr(tcp, addr, &ptr32);
-               if (!r) {
-                       size_t i;
-
-                       for (i = 0; i < n; ++i)
-                               ptr[i] = (unsigned long) ptr32[i];
-               }
-               return r;
+       if (!addr || !verbose(tcp) || umoven(tcp, addr, len, our_addr) < 0) {
+               printaddr(addr);
+               return -1;
        }
-       return umoven_or_printaddr(tcp, addr, n * sizeof(*ptr), ptr);
+       return 0;
 }
 
 /*
@@ -1187,17 +1123,10 @@ umove_ulong_array_or_printaddr(struct tcb *tcp, const long addr,
  * we never write past laddr[len-1]).
  */
 int
-umovestr(struct tcb *tcp, long addr, unsigned int len, char *laddr)
+umovestr(struct tcb *const tcp, kernel_ulong_t addr, unsigned int len, char *laddr)
 {
-#if SIZEOF_LONG == 4
-       const unsigned long x01010101 = 0x01010101ul;
-       const unsigned long x80808080 = 0x80808080ul;
-#elif SIZEOF_LONG == 8
-       const unsigned long x01010101 = 0x0101010101010101ul;
-       const unsigned long x80808080 = 0x8080808080808080ul;
-#else
-# error SIZEOF_LONG > 8
-#endif
+       const unsigned long x01010101 = (unsigned long) 0x0101010101010101ULL;
+       const unsigned long x80808080 = (unsigned long) 0x8080808080808080ULL;
 
        int pid = tcp->pid;
        unsigned int n, m, nread;
@@ -1206,9 +1135,11 @@ umovestr(struct tcb *tcp, long addr, unsigned int len, char *laddr)
                char x[sizeof(long)];
        } u;
 
-#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
-       if (current_wordsize < sizeof(addr))
-               addr &= (1ul << 8 * current_wordsize) - 1;
+#if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
+       if (current_wordsize < sizeof(addr)
+           && (addr & (~(kernel_ulong_t) -1U))) {
+               return -1;
+       }
 #endif
 
        nread = 0;
@@ -1255,7 +1186,7 @@ umovestr(struct tcb *tcp, long addr, unsigned int len, char *laddr)
                                case EFAULT: case EIO:
                                        /* address space is inaccessible */
                                        if (nread) {
-                                               perror_msg("umovestr: short read (%d < %d) @0x%lx",
+                                               perror_msg("umovestr: short read (%d < %d) @0x%" PRI_klx,
                                                           nread, nread + len, addr - nread);
                                        }
                                        return -1;
@@ -1274,7 +1205,7 @@ umovestr(struct tcb *tcp, long addr, unsigned int len, char *laddr)
                n = addr & (sizeof(long) - 1);  /* residue */
                addr &= -sizeof(long);          /* aligned address */
                errno = 0;
-               u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0);
+               u.val = ptrace(PTRACE_PEEKDATA, pid, addr, 0);
                switch (errno) {
                        case 0:
                                break;
@@ -1286,7 +1217,7 @@ umovestr(struct tcb *tcp, long addr, unsigned int len, char *laddr)
                                return -1;
                        default:
                                /* all the rest is strange and should be reported */
-                               perror_msg("umovestr: PTRACE_PEEKDATA pid:%d @0x%lx",
+                               perror_msg("umovestr: PTRACE_PEEKDATA pid:%d @0x%" PRI_klx,
                                            pid, addr);
                                return -1;
                }
@@ -1303,7 +1234,7 @@ umovestr(struct tcb *tcp, long addr, unsigned int len, char *laddr)
 
        while (len) {
                errno = 0;
-               u.val = ptrace(PTRACE_PEEKDATA, pid, (char *)addr, 0);
+               u.val = ptrace(PTRACE_PEEKDATA, pid, addr, 0);
                switch (errno) {
                        case 0:
                                break;
@@ -1313,13 +1244,13 @@ umovestr(struct tcb *tcp, long addr, unsigned int len, char *laddr)
                        case EFAULT: case EIO: case EPERM:
                                /* address space is inaccessible */
                                if (nread) {
-                                       perror_msg("umovestr: short read (%d < %d) @0x%lx",
+                                       perror_msg("umovestr: short read (%d < %d) @0x%" PRI_klx,
                                                   nread, nread + len, addr - nread);
                                }
                                return -1;
                        default:
                                /* all the rest is strange and should be reported */
-                               perror_msg("umovestr: PTRACE_PEEKDATA pid:%d @0x%lx",
+                               perror_msg("umovestr: PTRACE_PEEKDATA pid:%d @0x%" PRI_klx,
                                           pid, addr);
                                return -1;
                }
@@ -1335,3 +1266,188 @@ umovestr(struct tcb *tcp, long addr, unsigned int len, char *laddr)
        }
        return 0;
 }
+
+/*
+ * Iteratively fetch and print up to nmemb elements of elem_size size
+ * from the array that starts at tracee's address start_addr.
+ *
+ * Array elements are being fetched to the address specified by elem_buf.
+ *
+ * The fetcher callback function specified by umoven_func should follow
+ * the same semantics as umoven_or_printaddr function.
+ *
+ * The printer callback function specified by print_func is expected
+ * to print something; if it returns false, no more iterations will be made.
+ *
+ * The pointer specified by opaque_data is passed to each invocation
+ * of print_func callback function.
+ *
+ * This function prints:
+ * - "NULL", if start_addr is NULL;
+ * - "[]", if nmemb is 0;
+ * - start_addr, if nmemb * elem_size overflows or wraps around;
+ * - nothing, if the first element cannot be fetched
+ *   (if umoven_func returns non-zero), but it is assumed that
+ *   umoven_func has printed the address it failed to fetch data from;
+ * - elements of the array, delimited by ", ", with the array itself
+ *   enclosed with [] brackets.
+ *
+ * If abbrev(tcp) is true, then
+ * - the maximum number of elements printed equals to max_strlen;
+ * - "..." is printed instead of max_strlen+1 element
+ *   and no more iterations will be made.
+ *
+ * This function returns true only if
+ * - umoven_func has been called at least once AND
+ * - umoven_func has not returned false.
+ */
+bool
+print_array(struct tcb *const tcp,
+           const kernel_ulong_t start_addr,
+           const size_t nmemb,
+           void *const elem_buf,
+           const size_t elem_size,
+           int (*const umoven_func)(struct tcb *,
+                                    kernel_ulong_t,
+                                    unsigned int,
+                                    void *),
+           bool (*const print_func)(struct tcb *,
+                                    void *elem_buf,
+                                    size_t elem_size,
+                                    void *opaque_data),
+           void *const opaque_data)
+{
+       if (!start_addr) {
+               tprints("NULL");
+               return false;
+       }
+
+       if (!nmemb) {
+               tprints("[]");
+               return false;
+       }
+
+       const size_t size = nmemb * elem_size;
+       const kernel_ulong_t end_addr = start_addr + size;
+
+       if (end_addr <= start_addr || size / elem_size != nmemb) {
+               printaddr(start_addr);
+               return false;
+       }
+
+       const kernel_ulong_t abbrev_end =
+               (abbrev(tcp) && max_strlen < nmemb) ?
+                       start_addr + elem_size * max_strlen : end_addr;
+       kernel_ulong_t cur;
+
+       for (cur = start_addr; cur < end_addr; cur += elem_size) {
+               if (cur != start_addr)
+                       tprints(", ");
+
+               if (umoven_func(tcp, cur, elem_size, elem_buf))
+                       break;
+
+               if (cur == start_addr)
+                       tprints("[");
+
+               if (cur >= abbrev_end) {
+                       tprints("...");
+                       cur = end_addr;
+                       break;
+               }
+
+               if (!print_func(tcp, elem_buf, elem_size, opaque_data)) {
+                       cur = end_addr;
+                       break;
+               }
+       }
+       if (cur != start_addr)
+               tprints("]");
+
+       return cur >= end_addr;
+}
+
+int
+printargs(struct tcb *tcp)
+{
+       const int n = tcp->s_ent->nargs;
+       int i;
+       for (i = 0; i < n; ++i)
+               tprintf("%s%#" PRI_klx, i ? ", " : "", tcp->u_arg[i]);
+       return RVAL_DECODED;
+}
+
+int
+printargs_u(struct tcb *tcp)
+{
+       const int n = tcp->s_ent->nargs;
+       int i;
+       for (i = 0; i < n; ++i)
+               tprintf("%s%u", i ? ", " : "",
+                       (unsigned int) tcp->u_arg[i]);
+       return RVAL_DECODED;
+}
+
+int
+printargs_d(struct tcb *tcp)
+{
+       const int n = tcp->s_ent->nargs;
+       int i;
+       for (i = 0; i < n; ++i)
+               tprintf("%s%d", i ? ", " : "",
+                       (int) tcp->u_arg[i]);
+       return RVAL_DECODED;
+}
+
+/* Print abnormal high bits of a kernel_ulong_t value. */
+void
+print_abnormal_hi(const kernel_ulong_t val)
+{
+       if (current_klongsize > 4) {
+               const unsigned int hi = (unsigned int) ((uint64_t) val >> 32);
+               if (hi)
+                       tprintf("%#x<<32|", hi);
+       }
+}
+
+#if defined _LARGEFILE64_SOURCE && defined HAVE_OPEN64
+# define open_file open64
+#else
+# define open_file open
+#endif
+
+int
+read_int_from_file(const char *const fname, int *const pvalue)
+{
+       const int fd = open_file(fname, O_RDONLY);
+       if (fd < 0)
+               return -1;
+
+       long lval;
+       char buf[sizeof(lval) * 3];
+       int n = read(fd, buf, sizeof(buf) - 1);
+       int saved_errno = errno;
+       close(fd);
+
+       if (n < 0) {
+               errno = saved_errno;
+               return -1;
+       }
+
+       buf[n] = '\0';
+       char *endptr = 0;
+       errno = 0;
+       lval = strtol(buf, &endptr, 10);
+       if (!endptr || (*endptr && '\n' != *endptr)
+#if INT_MAX < LONG_MAX
+           || lval > INT_MAX || lval < INT_MIN
+#endif
+           || ERANGE == errno) {
+               if (!errno)
+                       errno = EINVAL;
+               return -1;
+       }
+
+       *pvalue = (int) lval;
+       return 0;
+}