Re: [PATCH 3/4] perf cs-etm: Track exception level

From: Leo Yan
Date: Tue May 30 2023 - 09:16:29 EST


On Tue, May 30, 2023 at 10:24:45AM +0100, James Clark wrote:

[...]

> >> -static u8 cs_etm__cpu_mode(struct cs_etm_queue *etmq, u64 address)
> >> +static struct machine *cs_etm__get_machine(struct cs_etm_auxtrace *etm,
> >> + ocsd_ex_level el)
> >> {
> >> - struct machine *machine;
> >> + /*
> >> + * Not perfect, but assume anything in EL1 is the default guest, and
> >> + * everything else is the host. nHVE and pKVM may not work with this
> >> + * assumption. And distinguishing between guest and host userspaces
> >> + * isn't currently supported either. Neither is multiple guest support.
> >> + * All this does is reduce the likeliness of decode errors where we look
> >> + * into the host kernel maps when it should have been the guest maps.
> >> + */
> >
> > What effect does this have if I am running with host only, kernel at
> > EL1, e.g. any platform that is not running an EL2 kernel?
>
> I suppose I didn't think about that case. It looks like you'd have to
> start using --guest-vmlinux instead of --vmlinux to decode. But that's
> probably not what we want.

IIUC, it's not about how to pass kernel image path with options
"--guest-vmlinux" or "--vmlinux".

Let's think a case: Cortex-A53 CPU which doesn't support VHE, or any
Arm CPUs which disable the VHE feature. In this case, the host OS and
guest OS both run in EL1, only the a KVM hypervisor runs in EL2.

You could see with below change, no matter the host OS and guest OS,
both use DEFAULT_GUEST_KERNEL_ID to retrieve the guest machine. At
the end, this change will break perf tool for host OS.

> Is that a standard configuration though? I'm wondering if we need to
> support that out of the box, or needing the extra command line argument
> is ok? It seems like it's hard to make anything just work without the
> user providing extra info.

Essentially, we need more info to make decision if a system runs in host
or guest, if only depend on it's EL1 or other execptions, it's hard to
say it's running in host or guest. We can look into more details:

- If CPU enables VHE, then the host kernel runs in EL2 and the guest
kernel runs in EL1;

- If CPU only enables nVHE (or CPU doesn't support VHE at all), then
both the host kernel and the guest kernel runs in EL1;

I think we need to retrieve more info from /sys/ node or /proc node:

- We need to know if VHE is enabled or not;

- If CPU doesn't enable VHE, then both host and guest kernels run in
EL1, so we need to use extra info to distinguish it's a host kernel
or guest kernel.

To be honest, I don't have answers for above two items. I will think
a bit more and will share back if have any finding.

Thanks,
Leo

> After this change we also wanted to start setting exclude_guest=1 by
> default, so technically this change is only needed when exclude_guest=0.
> Otherwise we could assume it's always the host regardless of the EL. It
> should be quite easy to check what that setting was in this switch
> statement, but it would be temporarily broken in the mean time. And also
> we can only make exclude_guest work with FEAT_TRF (v8.4 onwards)
>
> >
> > Mike
> >
> >
> >> + switch (el) {
> >> + case ocsd_EL1:
> >> + return machines__find_guest(&etm->session->machines,
> >> + DEFAULT_GUEST_KERNEL_ID);
> >> + case ocsd_EL3:
> >> + case ocsd_EL2:
> >> + case ocsd_EL0:
> >> + case ocsd_EL_unknown:
> >> + default:
> >> + return &etm->session->machines.host;
> >> + }
> >> +}
> >>
> >> - machine = &etmq->etm->session->machines.host;
> >> +static u8 cs_etm__cpu_mode(struct cs_etm_queue *etmq, u64 address,
> >> + ocsd_ex_level el)
> >> +{
> >> + struct machine *machine = cs_etm__get_machine(etmq->etm, el);
> >>
> >> if (address >= machine__kernel_start(machine)) {
> >> if (machine__is_host(machine))
> >> @@ -893,10 +919,14 @@ static u8 cs_etm__cpu_mode(struct cs_etm_queue *etmq, u64 address)
> >> } else {
> >> if (machine__is_host(machine))
> >> return PERF_RECORD_MISC_USER;
> >> - else if (perf_guest)
> >> + else {
> >> + /*
> >> + * Can't really happen at the moment because
> >> + * cs_etm__get_machine() will always return
> >> + * machines.host for any non EL1 trace.
> >> + */
> >> return PERF_RECORD_MISC_GUEST_USER;
> >> - else
> >> - return PERF_RECORD_MISC_HYPERVISOR;
> >> + }
> >> }
> >> }
> >>
> >> @@ -913,11 +943,12 @@ static u32 cs_etm__mem_access(struct cs_etm_queue *etmq, u8 trace_chan_id,
> >> if (!etmq)
> >> return 0;
> >>
> >> - cpumode = cs_etm__cpu_mode(etmq, address);
> >> tidq = cs_etm__etmq_get_traceid_queue(etmq, trace_chan_id);
> >> if (!tidq)
> >> return 0;
> >>
> >> + cpumode = cs_etm__cpu_mode(etmq, address, tidq->el);
> >> +
> >> if (!thread__find_map(tidq->thread, cpumode, address, &al))
> >> return 0;
> >>
> >> @@ -1296,9 +1327,10 @@ cs_etm__get_trace(struct cs_etm_queue *etmq)
> >> }
> >>
> >> static void cs_etm__set_thread(struct cs_etm_auxtrace *etm,
> >> - struct cs_etm_traceid_queue *tidq, pid_t tid)
> >> + struct cs_etm_traceid_queue *tidq, pid_t tid,
> >> + ocsd_ex_level el)
> >> {
> >> - struct machine *machine = &etm->session->machines.host;
> >> + struct machine *machine = cs_etm__get_machine(etm, el);
> >>
> >> if (tid != -1) {
> >> thread__zput(tidq->thread);
> >> @@ -1308,10 +1340,12 @@ static void cs_etm__set_thread(struct cs_etm_auxtrace *etm,
> >> /* Couldn't find a known thread */
> >> if (!tidq->thread)
> >> tidq->thread = machine__idle_thread(machine);
> >> +
> >> + tidq->el = el;
> >> }
> >>
> >> -int cs_etm__etmq_set_tid(struct cs_etm_queue *etmq,
> >> - pid_t tid, u8 trace_chan_id)
> >> +int cs_etm__etmq_set_tid_el(struct cs_etm_queue *etmq, pid_t tid, u8 trace_chan_id,
> >> + ocsd_ex_level el)
> >> {
> >> struct cs_etm_traceid_queue *tidq;
> >>
> >> @@ -1319,7 +1353,7 @@ int cs_etm__etmq_set_tid(struct cs_etm_queue *etmq,
> >> if (!tidq)
> >> return -EINVAL;
> >>
> >> - cs_etm__set_thread(etmq->etm, tidq, tid);
> >> + cs_etm__set_thread(etmq->etm, tidq, tid, el);
> >> return 0;
> >> }
> >>
> >> @@ -1389,7 +1423,7 @@ static int cs_etm__synth_instruction_sample(struct cs_etm_queue *etmq,
> >> struct perf_sample sample = {.ip = 0,};
> >>
> >> event->sample.header.type = PERF_RECORD_SAMPLE;
> >> - event->sample.header.misc = cs_etm__cpu_mode(etmq, addr);
> >> + event->sample.header.misc = cs_etm__cpu_mode(etmq, addr, tidq->el);
> >> event->sample.header.size = sizeof(struct perf_event_header);
> >>
> >> /* Set time field based on etm auxtrace config. */
> >> @@ -1448,7 +1482,7 @@ static int cs_etm__synth_branch_sample(struct cs_etm_queue *etmq,
> >> ip = cs_etm__last_executed_instr(tidq->prev_packet);
> >>
> >> event->sample.header.type = PERF_RECORD_SAMPLE;
> >> - event->sample.header.misc = cs_etm__cpu_mode(etmq, ip);
> >> + event->sample.header.misc = cs_etm__cpu_mode(etmq, ip, tidq->prev_el);
> >> event->sample.header.size = sizeof(struct perf_event_header);
> >>
> >> /* Set time field based on etm auxtrace config. */
> >> diff --git a/tools/perf/util/cs-etm.h b/tools/perf/util/cs-etm.h
> >> index 70cac0375b34..88e9b25a8a9f 100644
> >> --- a/tools/perf/util/cs-etm.h
> >> +++ b/tools/perf/util/cs-etm.h
> >> @@ -232,10 +232,11 @@ int cs_etm__process_auxtrace_info(union perf_event *event,
> >> struct perf_event_attr *cs_etm_get_default_config(struct perf_pmu *pmu);
> >>
> >> #ifdef HAVE_CSTRACE_SUPPORT
> >> +#include <opencsd/ocsd_if_types.h>
> >> int cs_etm__get_cpu(u8 trace_chan_id, int *cpu);
> >> int cs_etm__get_pid_fmt(u8 trace_chan_id, u64 *pid_fmt);
> >> -int cs_etm__etmq_set_tid(struct cs_etm_queue *etmq,
> >> - pid_t tid, u8 trace_chan_id);
> >> +int cs_etm__etmq_set_tid_el(struct cs_etm_queue *etmq, pid_t tid, u8 trace_chan_id,
> >> + ocsd_ex_level el);
> >> bool cs_etm__etmq_is_timeless(struct cs_etm_queue *etmq);
> >> void cs_etm__etmq_set_traceid_queue_timestamp(struct cs_etm_queue *etmq,
> >> u8 trace_chan_id);
> >> --
> >> 2.34.1
> >>
> >
> >