]> git.baikalelectronics.ru Git - kernel.git/commit
perf script: Check session->header.env.arch before using it
authorSong Liu <songliubraving@fb.com>
Mon, 4 Oct 2021 05:32:38 +0000 (22:32 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 2 Nov 2021 18:46:15 +0000 (19:46 +0100)
commit1c304c641414340bd204991a286c017bb78f58e5
tree699f579065de2d23dbe2fe0477354edeecf0ec53
parent1ab3e080cc6a720b3c1a22a3d57d71ba8c6480b9
perf script: Check session->header.env.arch before using it

commit 4e574b6905d2d47882d4f37044643f8de20fa649 upstream.

When perf.data is not written cleanly, we would like to process existing
data as much as possible (please see f_header.data.size == 0 condition
in perf_session__read_header). However, perf.data with partial data may
crash perf. Specifically, we see crash in 'perf script' for NULL
session->header.env.arch.

Fix this by checking session->header.env.arch before using it to determine
native_arch. Also split the if condition so it is easier to read.

Committer notes:

If it is a pipe, we already assume is a native arch, so no need to check
session->header.env.arch.

Signed-off-by: Song Liu <songliubraving@fb.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: kernel-team@fb.com
Cc: stable@vger.kernel.org
Link: http://lore.kernel.org/lkml/20211004053238.514936-1-songliubraving@fb.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
tools/perf/builtin-script.c