]> granicus.if.org Git - strace/blobdiff - filter_qualify.c
mmap_cache: add function to enable mmap_cache
[strace] / filter_qualify.c
index 7d9045b43e0bbaade674e7a70117450440331dea..49f0d612046384aef2ef28461d56c33fed6a05e0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2016 Dmitry V. Levin <ldv@altlinux.org>
- * Copyright (c) 2016-2017 The strace developers.
+ * Copyright (c) 2016-2018 The strace developers.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -83,7 +83,7 @@ parse_inject_token(const char *const token, struct inject_opts *const fopts,
                   const bool fault_tokens_only)
 {
        const char *val;
-       int intval;
+       kernel_long_t intval;
 
        if ((val = STR_STRIP_PREFIX(token, "when=")) != token) {
                /*
@@ -129,9 +129,23 @@ parse_inject_token(const char *const token, struct inject_opts *const fopts,
                   && (val = STR_STRIP_PREFIX(token, "retval=")) != token) {
                if (fopts->data.flags & INJECT_F_RETVAL)
                        return false;
-               intval = string_to_uint(val);
+               intval = string_to_kulong(val);
                if (intval < 0)
                        return false;
+
+#if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG && !HAVE_ARCH_DEDICATED_ERR_REG
+               if ((int) intval != intval)
+                       error_msg("Injected return value %" PRI_kld " will be"
+                                 " clipped to %d in compat personality",
+                                 intval, (int) intval);
+
+               if ((int) intval < 0 && (int) intval >= -MAX_ERRNO_VALUE)
+                       error_msg("Inadvertent injection of error %d is"
+                                 " possible in compat personality for"
+                                 " retval=%" PRI_kld,
+                                 -(int) intval, intval);
+#endif
+
                fopts->data.rval = intval;
                fopts->data.flags |= INJECT_F_RETVAL;
        } else if (!fault_tokens_only
@@ -150,19 +164,20 @@ parse_inject_token(const char *const token, struct inject_opts *const fopts,
        return true;
 }
 
-static char *
+static const char *
 parse_inject_expression(char *const str,
                        struct inject_opts *const fopts,
                        const bool fault_tokens_only)
 {
+       if (str[0] == '\0' || str[0] == ':')
+               return "";
+
        char *saveptr = NULL;
-       char *name = NULL;
+       const char *name = strtok_r(str, ":", &saveptr);
 
-       for (char *token = strtok_r(str, ":", &saveptr);
-            token; token = strtok_r(NULL, ":", &saveptr)) {
-               if (!name)
-                       name = token;
-               else if (!parse_inject_token(token, fopts, fault_tokens_only))
+       char *token;
+       while ((token = strtok_r(NULL, ":", &saveptr))) {
+               if (!parse_inject_token(token, fopts, fault_tokens_only))
                        return NULL;
        }
 
@@ -235,10 +250,17 @@ qualify_inject_common(const char *const str,
                .step = 1
        };
        char *copy = xstrdup(str);
-       char *name = parse_inject_expression(copy, &opts, fault_tokens_only);
+       const char *name =
+               parse_inject_expression(copy, &opts, fault_tokens_only);
        if (!name)
                error_msg_and_die("invalid %s '%s'", description, str);
 
+       struct number_set *tmp_set =
+               alloc_number_set_array(SUPPORTED_PERSONALITIES);
+       qualify_syscall_tokens(name, tmp_set);
+
+       free(copy);
+
        /* If neither of retval, error, or signal is specified, then ... */
        if (!opts.data.flags) {
                if (fault_tokens_only) {
@@ -251,12 +273,6 @@ qualify_inject_common(const char *const str,
                }
        }
 
-       struct number_set *tmp_set =
-               alloc_number_set_array(SUPPORTED_PERSONALITIES);
-       qualify_syscall_tokens(name, tmp_set);
-
-       free(copy);
-
        /*
         * Initialize inject_vec according to tmp_set.
         * Merge tmp_set into inject_set.