File perf-map-fix-off-by-one-in-strncpy-size-argument.patch of Package perf
56
1
From: disconnect3d <dominik.b.czarnota@gmail.com>
2
Date: Mon, 9 Mar 2020 11:48:53 +0100
3
Subject: perf map: Fix off by one in strncpy() size argument
4
Git-commit: db2c549407d4a76563c579e4768f7d6d32afefba
5
Patch-mainline: v5.6
6
References: git-fixes
7
8
This patch fixes an off-by-one error in strncpy size argument in
9
tools/perf/util/map.c. The issue is that in:
10
11
strncmp(filename, "/system/lib/", 11)
12
13
the passed string literal: "/system/lib/" has 12 bytes (without the NULL
14
byte) and the passed size argument is 11. As a result, the logic won't
15
match the ending "/" byte and will pass filepaths that are stored in
16
other directories e.g. "/system/libmalicious/bin" or just
17
"/system/libmalicious".
18
19
This functionality seems to be present only on Android. I assume the
20
/system/ directory is only writable by the root user, so I don't think
21
this bug has much (or any) security impact.
22
23
Fixes: eca818369996 ("perf tools: Add automatic remapping of Android libraries")
24
Signed-off-by: disconnect3d <dominik.b.czarnota@gmail.com>
25
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
26
Cc: Changbin Du <changbin.du@intel.com>
27
Cc: Jiri Olsa <jolsa@redhat.com>
28
Cc: John Keeping <john@metanate.com>
29
Cc: Mark Rutland <mark.rutland@arm.com>
30
Cc: Michael Lentine <mlentine@google.com>
31
Cc: Namhyung Kim <namhyung@kernel.org>
32
Cc: Peter Zijlstra <peterz@infradead.org>
33
Cc: Song Liu <songliubraving@fb.com>
34
Cc: Stephane Eranian <eranian@google.com>
35
Link: http://lore.kernel.org/lkml/20200309104855.3775-1-dominik.b.czarnota@gmail.com
36
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
37
Signed-off-by: Tony Jones <tonyj@suse.de>
38
---
39
tools/perf/util/map.c | 2 +-
40
1 file changed, 1 insertion(+), 1 deletion(-)
41
42
diff --git a/tools/perf/util/map.c b/tools/perf/util/map.c
43
index 95428511300d..b342f744b1fc 100644
44
--- a/tools/perf/util/map.c
45
+++ b/tools/perf/util/map.c
46
47
return true;
48
}
49
50
- if (!strncmp(filename, "/system/lib/", 11)) {
51
+ if (!strncmp(filename, "/system/lib/", 12)) {
52
char *ndk, *app;
53
const char *arch;
54
size_t ndk_length;
55
56