rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Matthew Maurer <matthew.r.maurer@gmail.com>
To: Neal Gompa <ngompa@fedoraproject.org>
Cc: rust-for-linux@vger.kernel.org, Miguel Ojeda <ojeda@kernel.org>,
	 Quentin Monnet <qmo@kernel.org>,
	bpf@vger.kernel.org,
	 "Justin M. Forbes" <jforbes@fedoraproject.org>,
	Davide Cavalca <dcavalca@fedoraproject.org>,
	 Janne Grunau <jannau@fedoraproject.org>,
	Hector Martin <marcan@fedoraproject.org>,
	 Asahi Linux <asahi@lists.linux.dev>
Subject: Re: Weird failure with bpftool when building 6.11-rc4 with clang+rust+lto
Date: Tue, 20 Aug 2024 09:48:24 -0700	[thread overview]
Message-ID: <CAM22NNBrXSUbrpFAKv8jrREKTBYx_aW0cibtDE5AZ_kTijUrPA@mail.gmail.com> (raw)
In-Reply-To: <CAEg-Je8=t_cXKsWL0XSx3vF1gsArSWpychfbEf+yjM6wVz3Mjw@mail.gmail.com>

Sorry that this isn't a solution, but I can tell you some background:

Linux currently relies on the `--lang_exclude` flag to `pahole` to
filter Rust debugging information out of the output BTF. This is done
because various downstream tools (for example, bpftool) do not handle
Rust types correctly. The `--lang_exclude` flag works by checking the
language flag on the compilation unit the type is referenced in. Once
LTO is enabled however, things can migrate from one compilation unit
to another, leading to C code having Rust code and types referenced
inside them. The resulting type will be considered C-language type by
`pahole`, but is actually a Rust type. Even if you fixed bpftool,
without additional patches/hacks, once the kernel boots it would
likely fail to parse its own BTF debugging information, and disable
BPF loading.

The most confusing part to me here is that I only encountered this
issue with x-lang LTO enabled, which is not available in the kernel
you're building from. If this is happening without x-lang LTO enabled,
it likely means that there's another way for debug symbols to leak
across CUs during LTO. That's where I'd start looking - use `pahole`
to dump the contents of `vmlinux.o` and see if you can find a
C-language CU referencing a Rust type. Then, try to figure out how
that's possible. With x-lang LTO it was obvious, inlining caused a
bunch of issues.

The last possibility I can think of is that somehow in your build
configuration `pahole` is not being invoked with the `--lang_exclude`
flag when building `vmlinux`. I don't know why that would be, but it
might be worth double checking.

On Tue, Aug 20, 2024 at 5:13 AM Neal Gompa <ngompa@fedoraproject.org> wrote:
>
> Hey all,
>
> While working on enabling Rust in the Fedora kernel[1], we've managed
> to get the setup almost completely working, but we have a build
> failure with the clang+lto build variant[2][3].
>
> Based on the build failure log[4][5], it looks like there's some
> random mixing of Rust inside of C code or something of the sort (which
> obviously would be invalid).
>
> Can someone help with this?
>
> Thanks in advance and best regards,
>
> [1]: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/3295
> [2]: https://s3.amazonaws.com/arr-cki-prod-trusted-artifacts/index.html?prefix=trusted-artifacts/1419488480/build_x86_64/7618803903/artifacts/
> [3]: https://s3.amazonaws.com/arr-cki-prod-trusted-artifacts/index.html?prefix=trusted-artifacts/1419488480/build_aarch64/7618803917/artifacts/
> [4]: https://s3.amazonaws.com/arr-cki-prod-trusted-artifacts/trusted-artifacts/1419488480/build_x86_64/7618803903/artifacts/build-failure.log
> [5]: https://s3.amazonaws.com/arr-cki-prod-trusted-artifacts/trusted-artifacts/1419488480/build_aarch64/7618803917/artifacts/build-failure.log
>
>
> --
> Neal Gompa (FAS: ngompa)
>

  reply	other threads:[~2024-08-20 16:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-20 12:02 Weird failure with bpftool when building 6.11-rc4 with clang+rust+lto Neal Gompa
2024-08-20 16:48 ` Matthew Maurer [this message]
2024-08-23 21:45   ` Neal Gompa
2024-08-31 11:25     ` Neal Gompa

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=CAM22NNBrXSUbrpFAKv8jrREKTBYx_aW0cibtDE5AZ_kTijUrPA@mail.gmail.com \
    --to=matthew.r.maurer@gmail.com \
    --cc=asahi@lists.linux.dev \
    --cc=bpf@vger.kernel.org \
    --cc=dcavalca@fedoraproject.org \
    --cc=jannau@fedoraproject.org \
    --cc=jforbes@fedoraproject.org \
    --cc=marcan@fedoraproject.org \
    --cc=ngompa@fedoraproject.org \
    --cc=ojeda@kernel.org \
    --cc=qmo@kernel.org \
    --cc=rust-for-linux@vger.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 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).