lkml.org 
[lkml]   [2021]   [Dec]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    From
    Date
    SubjectRe: [PATCH 1/8] perf/kprobe: Add support to create multiple probes
    On Wed, Dec 1, 2021 at 1:32 PM Jiri Olsa <jolsa@redhat.com> wrote:
    >
    > On Tue, Nov 30, 2021 at 10:53:58PM -0800, Andrii Nakryiko wrote:
    > > On Wed, Nov 24, 2021 at 12:41 AM Jiri Olsa <jolsa@redhat.com> wrote:
    > > >
    > > > Adding support to create multiple probes within single perf event.
    > > > This way we can associate single bpf program with multiple kprobes,
    > > > because bpf program gets associated with the perf event.
    > > >
    > > > The perf_event_attr is not extended, current fields for kprobe
    > > > attachment are used for multi attachment.
    > >
    > > I'm a bit concerned with complicating perf_event_attr further to
    > > support this multi-attach. For BPF, at least, we now have
    > > bpf_perf_link and corresponding BPF_LINK_CREATE command in bpf()
    > > syscall which allows much simpler and cleaner API to do this. Libbpf
    > > will actually pick bpf_link-based attachment if kernel supports it. I
    > > think we should better do bpf_link-based approach from the get go.
    > >
    > > Another thing I'd like you to keep in mind and think about is BPF
    > > cookie. Currently kprobe/uprobe/tracepoint allow to associate
    > > arbitrary user-provided u64 value which will be accessible from BPF
    > > program with bpf_get_attach_cookie(). With multi-attach kprobes this
    > > because extremely crucial feature to support, otherwise it's both
    > > expensive, inconvenient and complicated to be able to distinguish
    > > between different instances of the same multi-attach kprobe
    > > invocation. So with that, what would be the interface to specify these
    > > BPF cookies for this multi-attach kprobe, if we are going through
    > > perf_event_attr. Probably picking yet another unused field and
    > > union-izing it with a pointer. It will work, but makes the interface
    > > even more overloaded. While for LINK_CREATE we can just add another
    > > pointer to a u64[] with the same size as number of kfunc names and
    > > offsets.
    >
    > I'm not sure we could bypass perf event easily.. perhaps introduce
    > BPF_PROG_TYPE_RAW_KPROBE as we did for tracepoints or just new
    > type for multi kprobe attachment like BPF_PROG_TYPE_MULTI_KPROBE
    > that might be that way we'd have full control over the API

    Sure, new type works.

    >
    > >
    > > But other than that, I'm super happy that you are working on these
    > > complicated multi-attach capabilities! It would be great to benchmark
    > > one-by-one attachment vs multi-attach to the same set of kprobes once
    > > you arrive at the final implementation.
    >
    > I have the change for bpftrace to use this and even though there's
    > some speed up, it's not as substantial as for trampolines
    >
    > looks like we 'only' got rid of the multiple perf syscall overheads,
    > compared to rcu syncs timeouts like we eliminated for trampolines

    if it's just eliminating a pretty small overhead of multiple syscalls,
    then it would be quite disappointing to add a bunch of complexity just
    for that. Are there any reasons we can't use the same low-level ftrace
    batch attach API to speed this up considerably? I assume it's only
    possible if kprobe is attached at the beginning of the function (not
    sure how kretprobe is treated here), so we can either say that this
    new kprobe prog type can only be attached at the beginning of each
    function and enforce that (probably would be totally reasonable
    assumption as that's what's happening most frequently in practice).
    Worst case, should be possible to split all requested attach targets
    into two groups, one fast at function entry and all the rest.

    Am I too far off on this one? There might be some more complications
    that I don't see.

    >
    > I'll make full benchmarks once we have some final solution
    >
    > jirka
    >

    \
     
     \ /
      Last update: 2021-12-07 04:16    [W:4.819 / U:0.176 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site