File perf-env-do-not-return-pointers-to-local-variables.patch of Package perf
49
1
From: Arnaldo Carvalho de Melo <acme@redhat.com>
2
Date: Mon, 2 Mar 2020 11:23:03 -0300
3
Subject: perf env: Do not return pointers to local variables
4
Git-commit: ebcb9464a2ae3a547e97de476575c82ece0e93e2
5
References: git-fixes
6
7
It is possible to return a pointer to a local variable when looking up
8
the architecture name for the running system and no normalization is
9
done on that value, i.e. we may end up returning the uts.machine local
10
variable.
11
12
While this doesn't happen on most arches, as normalization takes place,
13
lets fix this by making that a static variable and optimize it a bit by
14
not always running uname(), only the first time.
15
16
Noticed in fedora rawhide running with:
17
18
[perfbuilder@a5ff49d6e6e4 ~]$ gcc --version
19
gcc (GCC) 10.0.1 20200216 (Red Hat 10.0.1-0.8)
20
21
Reported-by: Jiri Olsa <jolsa@kernel.org>
22
Cc: Adrian Hunter <adrian.hunter@intel.com>
23
Cc: Namhyung Kim <namhyung@kernel.org>
24
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
25
Acked-by: Tony Jones <tonyj@suse.de>
26
---
27
tools/perf/util/env.c | 4 ++--
28
1 file changed, 2 insertions(+), 2 deletions(-)
29
30
diff --git a/tools/perf/util/env.c b/tools/perf/util/env.c
31
index 6242a9215df7..4154f944f474 100644
32
--- a/tools/perf/util/env.c
33
+++ b/tools/perf/util/env.c
34
35
36
const char *perf_env__arch(struct perf_env *env)
37
{
38
- struct utsname uts;
39
char *arch_name;
40
41
if (!env || !env->arch) { /* Assume local operation */
42
- if (uname(&uts) < 0)
43
+ static struct utsname uts = { .machine[0] = '\0', };
44
+ if (uts.machine[0] == '\0' && uname(&uts) < 0)
45
return NULL;
46
arch_name = uts.machine;
47
} else
48
49