bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Eelco Chaudron" <echaudro@redhat.com>
To: "Toke Høiland-Jørgensen" <toke@redhat.com>
Cc: "Andrii Nakryiko" <andrii.nakryiko@gmail.com>,
	bpf <bpf@vger.kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	Networking <netdev@vger.kernel.org>,
	"Alexei Starovoitov" <ast@kernel.org>,
	"Daniel Borkmann" <daniel@iogearbox.net>,
	"Martin Lau" <kafai@fb.com>, "Song Liu" <songliubraving@fb.com>,
	"Yonghong Song" <yhs@fb.com>, "Andrii Nakryiko" <andriin@fb.com>
Subject: Re: [PATCH bpf-next] libbpf: Add support for dynamic program attach target
Date: Thu, 13 Feb 2020 15:41:06 +0100	[thread overview]
Message-ID: <62B507DD-104D-4006-9FF0-204AD23B1505@redhat.com> (raw)
In-Reply-To: <871rqziicm.fsf@toke.dk>



On 12 Feb 2020, at 22:52, Toke Høiland-Jørgensen wrote:

> Andrii Nakryiko <andrii.nakryiko@gmail.com> writes:
>
>> On Wed, Feb 12, 2020 at 5:05 AM Toke Høiland-Jørgensen 
>> <toke@redhat.com> wrote:
>>>
>>> Eelco Chaudron <echaudro@redhat.com> writes:
>>>
>>>> Currently when you want to attach a trace program to a bpf program
>>>> the section name needs to match the tracepoint/function semantics.
>>>>
>>>> However the addition of the bpf_program__set_attach_target() API
>>>> allows you to specify the tracepoint/function dynamically.
>>>>
>>>> The call flow would look something like this:
>>>>
>>>>   xdp_fd = bpf_prog_get_fd_by_id(id);
>>>>   trace_obj = bpf_object__open_file("func.o", NULL);
>>>>   prog = bpf_object__find_program_by_title(trace_obj,
>>>>                                            "fentry/myfunc");
>>>>   bpf_program__set_attach_target(prog, xdp_fd,
>>>>                                  "fentry/xdpfilt_blk_all");
>>>
>>> I think it would be better to have the attach type as a separate arg
>>> instead of encoding it in the function name. I.e., rather:
>>>
>>>    bpf_program__set_attach_target(prog, xdp_fd,
>>>                                   "xdpfilt_blk_all", 
>>> BPF_TRACE_FENTRY);
>>
>> I agree about not specifying section name prefix (e.g., fentry/). But
>> disagree that expected attach type (BPF_TRACE_FENTRY) should be part
>> of this API. We already have bpf_program__set_expected_attach_type()
>> API, no need to duplicate it here.
>
> Ah yes, forgot about that; just keeping that and making this function
> name only is fine with me :)

Toke/Andrii,

Thanks for the feedback, will send out a v2 soon.

//Eelco


  reply	other threads:[~2020-02-13 14:41 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-12 12:31 [PATCH bpf-next] libbpf: Add support for dynamic program attach target Eelco Chaudron
2020-02-12 13:05 ` Toke Høiland-Jørgensen
2020-02-12 17:35   ` Andrii Nakryiko
2020-02-12 21:52     ` Toke Høiland-Jørgensen
2020-02-13 14:41       ` Eelco Chaudron [this message]
2020-02-12 17:34 ` Andrii Nakryiko
2020-02-12 17:56   ` Song Liu
2020-02-12 18:14     ` Andrii Nakryiko
2020-02-12 18:28       ` Song Liu
2020-02-12 18:34         ` Andrii Nakryiko
2020-02-12 18:40           ` Song Liu

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=62B507DD-104D-4006-9FF0-204AD23B1505@redhat.com \
    --to=echaudro@redhat.com \
    --cc=andrii.nakryiko@gmail.com \
    --cc=andriin@fb.com \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=kafai@fb.com \
    --cc=netdev@vger.kernel.org \
    --cc=songliubraving@fb.com \
    --cc=toke@redhat.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).