perf lock contention: Check --max-stack option
authorNamhyung Kim <namhyung@kernel.org>
Fri, 28 Oct 2022 18:01:26 +0000 (11:01 -0700)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 31 Oct 2022 14:07:34 +0000 (11:07 -0300)
The --max-stack option is used to allocate the BPF stack map and stack
trace array in the userspace.  Check the value properly before using.
Practically it cannot be greater than the sysctl_perf_event_max_stack.

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20221028180128.3311491-3-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-lock.c

index 6652071..6f79175 100644 (file)
@@ -24,6 +24,7 @@
 #include "util/data.h"
 #include "util/string2.h"
 #include "util/map.h"
+#include "util/util.h"
 
 #include <sys/types.h>
 #include <sys/prctl.h>
@@ -1858,6 +1859,29 @@ static int parse_map_entry(const struct option *opt, const char *str,
        return 0;
 }
 
+static int parse_max_stack(const struct option *opt, const char *str,
+                          int unset __maybe_unused)
+{
+       unsigned long *len = (unsigned long *)opt->value;
+       long val;
+       char *endptr;
+
+       errno = 0;
+       val = strtol(str, &endptr, 0);
+       if (*endptr != '\0' || errno != 0) {
+               pr_err("invalid max stack depth: %s\n", str);
+               return -1;
+       }
+
+       if (val < 0 || val > sysctl__max_stack()) {
+               pr_err("invalid max stack depth: %ld\n", val);
+               return -1;
+       }
+
+       *len = val;
+       return 0;
+}
+
 int cmd_lock(int argc, const char **argv)
 {
        const struct option lock_options[] = {
@@ -1913,9 +1937,9 @@ int cmd_lock(int argc, const char **argv)
                   "Trace on existing thread id (exclusive to --pid)"),
        OPT_CALLBACK(0, "map-nr-entries", &bpf_map_entries, "num",
                     "Max number of BPF map entries", parse_map_entry),
-       OPT_INTEGER(0, "max-stack", &max_stack_depth,
-                   "Set the maximum stack depth when collecting lock contention, "
-                   "Default: " __stringify(CONTENTION_STACK_DEPTH)),
+       OPT_CALLBACK(0, "max-stack", &max_stack_depth, "num",
+                    "Set the maximum stack depth when collecting lopck contention, "
+                    "Default: " __stringify(CONTENTION_STACK_DEPTH), parse_max_stack),
        OPT_INTEGER(0, "stack-skip", &stack_skip,
                    "Set the number of stack depth to skip when finding a lock caller, "
                    "Default: " __stringify(CONTENTION_STACK_SKIP)),