From: Masami Hiramatsu <mhiramat@kernel.org>
To: Jiri Olsa <jolsa@redhat.com>
Cc: Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Steven Rostedt <rostedt@goodmis.org>,
netdev@vger.kernel.org, bpf@vger.kernel.org,
lkml <linux-kernel@vger.kernel.org>,
Ingo Molnar <mingo@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Martin KaFai Lau <kafai@fb.com>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Song Liu <songliubraving@fb.com>, Yonghong Song <yhs@fb.com>,
John Fastabend <john.fastabend@gmail.com>,
KP Singh <kpsingh@chromium.org>,
Ravi Bangoria <ravi.bangoria@amd.com>
Subject: Re: [PATCH 1/8] perf/kprobe: Add support to create multiple probes
Date: Mon, 29 Nov 2021 10:43:09 +0900 [thread overview]
Message-ID: <20211129104309.35b5cf2aa7108b0811470b3e@kernel.org> (raw)
In-Reply-To: <YaQD5d7Uc6GCvNbe@krava>
On Sun, 28 Nov 2021 23:34:13 +0100
Jiri Olsa <jolsa@redhat.com> wrote:
>
> > > + if (!tk_old) {
> > > + ret = -EINVAL;
> > > + goto error;
> > > + }
> > > +
> > > + /* Append to existing event */
> > > + ret = trace_probe_append(&tk->tp, &tk_old->tp);
> > > + if (ret)
> > > + goto error;
> > > +
> > > + /* Register k*probe */
> > > + ret = __register_trace_kprobe(tk);
> > > + if (ret)
> > > + goto error;
> >
> > If "appended" probe failed to register, it must be "unlinked" from
> > the first one and goto error to free the trace_kprobe.
> >
> > if (ret) {
> > trace_probe_unlink(&tk->tp);
> > goto error;
> > }
> >
> > See append_trace_kprobe() for details.
>
> so there's goto error jumping to:
>
> error:
> free_trace_kprobe(tk);
>
> that calls:
> trace_probe_cleanup
> -> trace_probe_unlink
>
> that should do it, right?
Ah, OK. Clean up all the kprobe events in this function. Then it's good.
>
> >
> > > +
> > > + return trace_probe_event_call(&tk->tp);
> > > + }
> > > +
> > > init_trace_event_call(tk);
> > >
> > > ptype = trace_kprobe_is_return(tk) ?
> > > @@ -1841,6 +1868,8 @@ create_local_trace_kprobe(char *func, void *addr, unsigned long offs,
> > >
> > > void destroy_local_trace_kprobe(struct trace_event_call *event_call)
> > > {
> > > + struct trace_probe_event *event;
> > > + struct trace_probe *pos, *tmp;
> > > struct trace_kprobe *tk;
> > >
> > > tk = trace_kprobe_primary_from_call(event_call);
> > > @@ -1852,9 +1881,15 @@ void destroy_local_trace_kprobe(struct trace_event_call *event_call)
> > > return;
> > > }
> > >
> > > - __unregister_trace_kprobe(tk);
> > > + event = tk->tp.event;
> > > + list_for_each_entry_safe(pos, tmp, &event->probes, list) {
> > > + list_for_each_entry_safe(pos, tmp, &event->probes, list) {
> > > + list_del_init(&pos->list);
> > > + __unregister_trace_kprobe(tk);
> > > + __free_trace_kprobe(tk);
> > > + }
> > >
> > > - free_trace_kprobe(tk);
> > > + trace_probe_event_free(event);
> >
> > Actually, each probe already allocated the trace_probe events (which are not
> > used if it is appended). Thus you have to use trace_probe_unlink(&tk->tp) in
> > the above loop.
> >
> > list_for_each_entry_safe(pos, tmp, &event->probes, list) {
> > list_for_each_entry_safe(pos, tmp, &event->probes, list) {
> > __unregister_trace_kprobe(tk);
> > trace_probe_unlink(&tk->tp); /* This will call trace_probe_event_free() internally */
> > free_trace_kprobe(tk);
> > }
>
> so calling trace_probe_event_free inside this loop is a problem,
> because the loop iterates that trace_probe_event's probes list,
> and last probe removed will trigger trace_probe_event_free, that
> will free the list we iterate.. and we go down ;-)
Oops, right. So in this case, you are looping on the all probes
on an event, so event is referred outside of loop.
OK, I got it.
In the ftrace kprobe-event, this loop cursor is done by dynevent,
so this problem doesn't occur. But the BPF is only using the
trace_event, thus this special routine is needed.
Could you add such comment on your loop?
Thank you,
>
> so that's why I added new free function '__free_trace_kprobe'
> that frees everything as free_trace_kprobe, but does not call
> trace_probe_unlink
>
> event = tk->tp.event;
> list_for_each_entry_safe(pos, tmp, &event->probes, list) {
> list_for_each_entry_safe(pos, tmp, &event->probes, list) {
> list_del_init(&pos->list);
> __unregister_trace_kprobe(tk);
> __free_trace_kprobe(tk);
> }
>
> trace_probe_event_free(event);
>
> and there's trace_probe_event_free(event) to make the final free
>
> thanks,
> jirka
>
--
Masami Hiramatsu <mhiramat@kernel.org>
next prev parent reply other threads:[~2021-11-29 1:48 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-24 8:41 [RFC 0/8] perf/bpf: Add batch support for [ku]probes attach Jiri Olsa
2021-11-24 8:41 ` [PATCH 1/8] perf/kprobe: Add support to create multiple probes Jiri Olsa
2021-11-28 13:49 ` Masami Hiramatsu
2021-11-28 22:34 ` Jiri Olsa
2021-11-29 1:43 ` Masami Hiramatsu [this message]
2021-12-01 6:53 ` Andrii Nakryiko
2021-12-01 6:55 ` Andrii Nakryiko
2021-12-01 21:32 ` Jiri Olsa
2021-12-02 5:10 ` Alexei Starovoitov
2021-12-07 3:15 ` Andrii Nakryiko
2021-12-08 13:50 ` Jiri Olsa
2021-12-10 12:42 ` Jiri Olsa
2021-12-10 18:28 ` Andrii Nakryiko
2021-11-24 8:41 ` [PATCH 2/8] perf/uprobe: " Jiri Olsa
2021-11-24 8:41 ` [PATCH 3/8] libbpf: Add libbpf__kallsyms_parse function Jiri Olsa
2021-11-24 8:41 ` [PATCH 4/8] libbpf: Add struct perf_event_open_args Jiri Olsa
2021-11-24 8:41 ` [PATCH 5/8] libbpf: Add support to attach multiple [ku]probes Jiri Olsa
2021-11-24 8:41 ` [PATCH 6/8] libbpf: Add support for k[ret]probe.multi program section Jiri Olsa
2021-11-24 8:41 ` [PATCH 7/8] selftest/bpf: Add kprobe multi attach test Jiri Olsa
2021-11-24 8:41 ` [PATCH 8/8] selftest/bpf: Add uprobe " Jiri Olsa
2021-11-28 10:34 ` [RFC 0/8] perf/bpf: Add batch support for [ku]probes attach 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=20211129104309.35b5cf2aa7108b0811470b3e@kernel.org \
--to=mhiramat@kernel.org \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@kernel.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=john.fastabend@gmail.com \
--cc=jolsa@redhat.com \
--cc=kafai@fb.com \
--cc=kpsingh@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mingo@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=ravi.bangoria@amd.com \
--cc=rostedt@goodmis.org \
--cc=songliubraving@fb.com \
--cc=yhs@fb.com \
/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;
as well as URLs for NNTP newsgroup(s).