From: Yang Jihong <yangjihong1@huawei.com>
To: Ian Rogers <irogers@google.com>
Cc: <peterz@infradead.org>, <mingo@redhat.com>, <acme@kernel.org>,
<mark.rutland@arm.com>, <alexander.shishkin@linux.intel.com>,
<jolsa@kernel.org>, <namhyung@kernel.org>,
<adrian.hunter@intel.com>, <kan.liang@linux.intel.com>,
<linux-perf-users@vger.kernel.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] perf top & record: Fix segfault when default cycles event is not supported
Date: Thu, 15 Jun 2023 09:54:49 +0800 [thread overview]
Message-ID: <668a6159-b7a8-ed25-d8fa-5584a4c04d37@huawei.com> (raw)
In-Reply-To: <CAP-5=fVOXjjcusjv858SOGrnNgE2w2sb7zS=0sZUpdFfR1T_GA@mail.gmail.com>
Hello,
On 2023/6/15 6:03, Ian Rogers wrote:
> On Wed, Jun 14, 2023 at 9:18 AM Ian Rogers <irogers@google.com> wrote:
>>
>> On Wed, Jun 14, 2023 at 8:18 AM Yang Jihong <yangjihong1@huawei.com> wrote:
>>>
>>> The perf-record and perf-top call parse_event() to add a cycles event to
>>> an empty evlist. For the system that does not support hardware cycles
>>> event, such as QEMU, the evlist is empty due to the following code process:
>>>
>>> parse_event(evlist, "cycles:P" or ""cycles:Pu")
>>> parse_events(evlist, "cycles:P")
>>> __parse_events
>>> ...
>>> ret = parse_events__scanner(str, &parse_state);
>>> // ret = 0
>>> ...
>>> ret2 = parse_events__sort_events_and_fix_groups()
>>> if (ret2 < 0)
>>> return ret;
>>> // The cycles event is not supported, here ret2 = -EINVAL,
>>> // Here return 0.
>>> ...
>>> evlist__splice_list_tail(evlist)
>>> // The code here does not execute to, so the evlist is still empty.
>>>
>>> A null pointer occurs when the content in the evlist is accessed later.
>>>
>>> Before:
>>>
>>> # perf list hw
>>>
>>> List of pre-defined events (to be used in -e or -M):
>>>
>>> # perf record true
>>> libperf: Miscounted nr_mmaps 0 vs 1
>>> WARNING: No sample_id_all support, falling back to unordered processing
>>> perf: Segmentation fault
>>> Obtained 1 stack frames.
>>> [0xc5beff]
>>> Segmentation fault
>>>
>>> Solution:
>>> If cycles event is not supported, try to fall back to cpu-clock event.
>>>
>>> After:
>>> # perf record true
>>> [ perf record: Woken up 1 times to write data ]
>>> [ perf record: Captured and wrote 0.006 MB perf.data ]
>>> #
>>>
>>> Fixes: 7b100989b4f6 ("perf evlist: Remove __evlist__add_default")
>>> Signed-off-by: Yang Jihong <yangjihong1@huawei.com>
>>
>> Thanks, useful addition. The cpu-clock fall back wasn't present before
>> 7b100989b4f6 so is the fixes tag correct?
>
> Hmm... it should be coming from evsel__fallback:
> https://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git/tree/tools/perf/util/evsel.c?h=tmp.perf-tools-next#n2840
> so we shouldn't duplicate that logic. The question is why we're not
> doing the fallback.
>
Yes, it's a bit of the same logic as evsel__fallback, or we can call
evlist__add_default() as before, simply create an evsel of hardware
cycles and add it directly to evlist.
Please confirm whether this solution is feasible. If it is feasible, I
will send a v2 version.
Thanks,
Yang
next prev parent reply other threads:[~2023-06-15 1:55 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-14 15:16 Yang Jihong
2023-06-14 16:18 ` Ian Rogers
2023-06-14 22:03 ` Ian Rogers
2023-06-15 1:54 ` Yang Jihong [this message]
2023-06-15 2:04 ` Ian Rogers
2023-06-15 6:57 ` Yang Jihong
2023-06-15 11:46 ` Yang Jihong
2023-06-27 18:32 ` Ian Rogers
2023-06-28 2:55 ` Yang Jihong
2023-06-15 1:43 ` Yang Jihong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=668a6159-b7a8-ed25-d8fa-5584a4c04d37@huawei.com \
--to=yangjihong1@huawei.com \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=irogers@google.com \
--cc=jolsa@kernel.org \
--cc=kan.liang@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®