From: Stanislav Fomichev <sdf@fomichev.me>
To: Andrii Nakryiko <andrii.nakryiko@gmail.com>
Cc: Andrii Nakryiko <andriin@fb.com>, bpf <bpf@vger.kernel.org>,
Networking <netdev@vger.kernel.org>,
Alexei Starovoitov <ast@fb.com>,
Daniel Borkmann <daniel@iogearbox.net>,
Stanislav Fomichev <sdf@google.com>,
Kernel Team <kernel-team@fb.com>
Subject: Re: [PATCH bpf-next] bpftool: fix bpftool build by switching to bpf_object__open_file()
Date: Tue, 8 Oct 2019 08:26:41 -0700 [thread overview]
Message-ID: <20191008152641.GD2096@mini-arch> (raw)
In-Reply-To: <CAEf4BzYh4pN3FPYHRMRwAUFEK0E+wXqLSqjZE3FZEmyhzCwuig@mail.gmail.com>
On 10/07, Andrii Nakryiko wrote:
> -- Andrii
>
> On Mon, Oct 7, 2019 at 2:50 PM Andrii Nakryiko
> <andrii.nakryiko@gmail.com> wrote:
> >
> > On Mon, Oct 7, 2019 at 2:46 PM Stanislav Fomichev <sdf@fomichev.me> wrote:
> > >
> > > On 10/07, Andrii Nakryiko wrote:
> > > > As part of libbpf in 5e61f2707029 ("libbpf: stop enforcing kern_version,
> > > > populate it for users") non-LIBBPF_API __bpf_object__open_xattr() API
> > > > was removed from libbpf.h header. This broke bpftool, which relied on
> > > > that function. This patch fixes the build by switching to newly added
> > > > bpf_object__open_file() which provides the same capabilities, but is
> > > > official and future-proof API.
> > > >
> > > > Fixes: 5e61f2707029 ("libbpf: stop enforcing kern_version, populate it for users")
> > > > Reported-by: Stanislav Fomichev <sdf@google.com>
> > > > Signed-off-by: Andrii Nakryiko <andriin@fb.com>
> > > > ---
> > > > tools/bpf/bpftool/main.c | 4 ++--
> > > > tools/bpf/bpftool/main.h | 2 +-
> > > > tools/bpf/bpftool/prog.c | 22 ++++++++++++----------
> > > > 3 files changed, 15 insertions(+), 13 deletions(-)
> > > >
>
> [...]
>
> > > > --- a/tools/bpf/bpftool/prog.c
> > > > +++ b/tools/bpf/bpftool/prog.c
> > > > @@ -1092,9 +1092,7 @@ static int do_run(int argc, char **argv)
> > > > static int load_with_options(int argc, char **argv, bool first_prog_only)
> > > > {
> > > > struct bpf_object_load_attr load_attr = { 0 };
> > > > - struct bpf_object_open_attr open_attr = {
> > > > - .prog_type = BPF_PROG_TYPE_UNSPEC,
> > > > - };
> > > > + enum bpf_prog_type prog_type = BPF_PROG_TYPE_UNSPEC;
> > > > enum bpf_attach_type expected_attach_type;
> > > > struct map_replace *map_replace = NULL;
>
> [...]
>
> > > >
> > > > bpf_object__for_each_program(pos, obj) {
> > > > - enum bpf_prog_type prog_type = open_attr.prog_type;
> > > > + enum bpf_prog_type prog_type = prog_type;
> > > Are you sure it works that way?
> >
> > Oh, I did this pretty mechanically, didn't notice I'm shadowing. In
> > either case I'd like to avoid shadowing, so I'll rename one of them,
> > good catch!
> >
> > >
> > > $ cat tmp.c
> > > #include <stdio.h>
> > >
> > > int main()
> > > {
> > > int x = 1;
> > > printf("outer x=%d\n", x);
> > >
> > > {
> > > int x = x;
>
> It's amazing `int x = x;` is compiled successfully when there is no x
> in outer scope. And it's also amazing that it's doing the wrong thing
> when there is a shadowed variable in outer scope. I can't imagine the
> case where this will be a meaningful behavior...
Enjoy your daily dose of undefined behavior :-D
> > > printf("inner x=%d\n", x);
> > > }
> > >
> > > return 0;
> > > }
> > >
> > > $ gcc tmp.c && ./a.out
> > > outer x=1
> > > inner x=0
> > >
> > > Other than that:
> > > Reviewed-by: Stanislav Fomichev <sdf@google.com>
> > >
> > > >
> > > > - if (open_attr.prog_type == BPF_PROG_TYPE_UNSPEC) {
> > > > + if (prog_type == BPF_PROG_TYPE_UNSPEC) {
> > > > const char *sec_name = bpf_program__title(pos, false);
> > > >
> > > > err = libbpf_prog_type_by_name(sec_name, &prog_type,
> > > > --
> > > > 2.17.1
> > > >
prev parent reply other threads:[~2019-10-08 15:26 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-07 21:22 [PATCH bpf-next] bpftool: fix bpftool build by switching to bpf_object__open_file() Andrii Nakryiko
2019-10-07 21:46 ` Stanislav Fomichev
2019-10-07 21:50 ` Andrii Nakryiko
2019-10-07 23:00 ` Andrii Nakryiko
2019-10-08 15:26 ` Stanislav Fomichev [this message]
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=20191008152641.GD2096@mini-arch \
--to=sdf@fomichev.me \
--cc=andrii.nakryiko@gmail.com \
--cc=andriin@fb.com \
--cc=ast@fb.com \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=kernel-team@fb.com \
--cc=netdev@vger.kernel.org \
--cc=sdf@google.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 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.