From: Oleg Nesterov <oleg@redhat.com>
To: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>,
linux-perf-users@vger.kernel.org,
Linux Trace Kernel <linux-trace-kernel@vger.kernel.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] perf probe: Show correct error about @symbol for uprobe
Date: Thu, 3 Aug 2023 19:31:06 +0200 [thread overview]
Message-ID: <20230803173106.GA15866@redhat.com> (raw)
In-Reply-To: <20230801225618.06cb86992ae30564e5b87554@kernel.org>
Hi Masami,
On 08/01, Masami Hiramatsu wrote:
>
> Oleg, what do you think about accessing symbols in data section from
> uprobes? Can we access it from user-land IP-relative address?
Sorry, I don't I understand... I don't even understand the context, can't
find the whole thread on lore.kernel.org/lkml. Plus I forgot EVERYTHING
I knew about tracing/uprobes anyway ;)
but when I look at traceprobe_parse_probe_arg() paths it seems to me that
uprobe can fetch the IP-relative address, not sure about the syntax but
perhaps something like xxx=+OFFSET(%ip). The question is how tools/perf
can calculate this OFFSET. But I am sure you understand this all much
better than me.
> > > --- a/tools/perf/util/probe-event.c
> > > +++ b/tools/perf/util/probe-event.c
> > > @@ -2800,13 +2800,18 @@ static void warn_uprobe_event_compat(struct probe_trace_event *tev)
> > > if (!tev->uprobes || tev->nargs == 0 || !buf)
> > > goto out;
> > >
> > > - for (i = 0; i < tev->nargs; i++)
> > > - if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
> > > - pr_warning("Please upgrade your kernel to at least "
> > > - "3.14 to have access to feature %s\n",
> > > + for (i = 0; i < tev->nargs; i++) {
> > > + if (strchr(tev->args[i].value, '@')) {
> > > + pr_warning("%s accesses a variable by symbol name, but that is not supported for user application probe.\n",
> > > + tev->args[i].value);
> > > + break;
IIUC without this change @symbol will trigger the
/* uprobes don't support symbols */
if (!(ctx->flags & TPARG_FL_KERNEL)) {
trace_probe_log_err(ctx->offset, SYM_ON_UPROBE);
return -EINVAL;
}
in parse_probe_arg(), right?
So FWIW the patch looks fine to me, but as you have mentioned tools/perf
could probably (try to) turn @symbol into @+symbol_offset_in_file...
In short, sorry for spam, I can't help ;)
And just in case, I am on PTO till Aug 14, won't be able to read emails
till then.
Oleg.
next prev parent reply other threads:[~2023-08-03 17:32 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-28 14:19 [PATCH] perf probe: Show correct error about @symbol for uprobe Masami Hiramatsu (Google)
2023-08-01 12:55 ` Arnaldo Carvalho de Melo
2023-08-01 13:56 ` Masami Hiramatsu
2023-08-03 17:31 ` Oleg Nesterov [this message]
2023-08-04 8:05 ` Masami Hiramatsu
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=20230803173106.GA15866@redhat.com \
--to=oleg@redhat.com \
--cc=acme@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=mhiramat@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.