Re: [PATCH 0/4] perf intel-pt: Fix the pipe mode (v1)

From: James Clark
Date: Fri Jan 27 2023 - 09:42:37 EST




On 27/01/2023 07:22, Adrian Hunter wrote:
> On 27/01/23 02:19, Namhyung Kim wrote:
>> Hello,
>>
>> I found some problems in Intel-PT and auxtrace in general with pipe.
>> In the past it used to work with pipe, but recent code fails.
>
> Pipe mode is a problem for Intel PT and possibly other auxtrace users.

Just some info from my side: For Arm Coresight we ended up deprecating
pipe mode, then not supporting it altogether. First was when we added an
optional step to peek through all of the data to help with an edge case.
Then we added a requirement to receive a HW_ID packet before decoding
which necessitated the peek. You can't peek in pipe mode because you
need to be able to seek, so it's not supported at all anymore.

For Arm SPE I never tested it with piped data. I suppose I could add a
test at some point, but I don't really see the usecase.

James

> Essentially the auxtrace buffers do not behave like the regular perf
> event buffers. That is because the head and tail are updated by
> software, but in the auxtrace case the data is written by hardware.
> So the head and tail do not get updated as data is written. In the
> Intel PT case, the head and tail are updated only when the trace is
> disabled by software, for example:
> - full-trace, system wide : when buffer passes watermark
> - full-trace, not system-wide : when buffer passes watermark or
> context switches
> - snapshot mode : as above but also when a snapshot is made
> - sample mode : as above but also when a sample is made
>
> That means finished-round ordering doesn't work. An auxtrace buffer
> can turn up that has data that extends back in time, possibly to the
> very beginning of tracing.
>
> For a perf.data file, that problem is solved by going through the trace
> and queuing up the auxtrace buffers in advance.
>
> For pipe mode, the order of events and timestamps can presumably
> be messed up.
>
> For Intel PT, it is a bit of a surprise that there is not
> validation to error out in pipe mode.
>
> At the least, a warning is needed, and the above explanation needs
> to be added to the documentation.
>
>> As it
>> also touches the generic code, other auxtrace users like ARM SPE will
>> be affected too. I added a test case to verify it works with pipes.
>>
>> At last, I can run this command without a problem.
>>
>> $ perf record -o- -e intel_pt// true | perf inject -b | perf report -i- --itrace=i1000
>>
>> The code is available at 'perf/auxtrace-pipe-v1' branch in
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/namhyung/linux-perf.git
>>
>> Thanks,
>> Namhyung
>>
>> Namhyung Kim (4):
>> perf inject: Use perf_data__read() for auxtrace
>> perf intel-pt: Do not try to queue auxtrace data on pipe
>> perf session: Avoid calling lseek(2) for pipe
>> perf test: Add pipe mode test to the Intel PT test suite
>>
>> tools/perf/builtin-inject.c | 6 +++---
>> tools/perf/tests/shell/test_intel_pt.sh | 17 +++++++++++++++++
>> tools/perf/util/auxtrace.c | 3 +++
>> tools/perf/util/session.c | 9 +++++++--
>> 4 files changed, 30 insertions(+), 5 deletions(-)
>>
>>
>> base-commit: 5670ebf54bd26482f57a094c53bdc562c106e0a9
>> prerequisite-patch-id: 4ccdf9c974a3909075051f4ffe498faecab7567b
>