Commit 44d041b7 authored by He Zhe's avatar He Zhe Committed by Arnaldo Carvalho de Melo
Browse files

libperf: Add NULL pointer check for cpu_map iteration and NULL assignment for all_cpus.



A NULL pointer may be passed to perf_cpu_map__cpu and then cause a
crash, such as the one commit cb71f7d4 ("libperf: Setup initial
evlist::all_cpus value") fix.

Signed-off-by: default avatarHe Zhe <zhe.he@windriver.com>
Acked-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Kyle Meyer <meyerk@hpe.com>
Link: http://lore.kernel.org/lkml/1583665157-349023-1-git-send-email-zhe.he@windriver.com


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 23cbb41c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -247,7 +247,7 @@ out:

int perf_cpu_map__cpu(const struct perf_cpu_map *cpus, int idx)
{
	if (idx < cpus->nr)
	if (cpus && idx < cpus->nr)
		return cpus->map[idx];

	return -1;
+1 −0
Original line number Diff line number Diff line
@@ -125,6 +125,7 @@ void perf_evlist__exit(struct perf_evlist *evlist)
	perf_cpu_map__put(evlist->cpus);
	perf_thread_map__put(evlist->threads);
	evlist->cpus = NULL;
	evlist->all_cpus = NULL;
	evlist->threads = NULL;
	fdarray__exit(&evlist->pollfd);
}