qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [RFC PATCH v2 0/5] eBPF RSS support for virtio-net


From: Toke Høiland-Jørgensen
Subject: Re: [RFC PATCH v2 0/5] eBPF RSS support for virtio-net
Date: Fri, 04 Dec 2020 11:09:04 +0100

Yuri Benditovich <yuri.benditovich@daynix.com> writes:

> On Wed, Dec 2, 2020 at 4:18 PM Toke Høiland-Jørgensen <toke@redhat.com>
> wrote:
>
>> Jason Wang <jasowang@redhat.com> writes:
>>
>> > On 2020/11/19 下午7:13, Andrew Melnychenko wrote:
>> >> This set of patches introduces the usage of eBPF for packet steering
>> >> and RSS hash calculation:
>> >> * RSS(Receive Side Scaling) is used to distribute network packets to
>> >> guest virtqueues by calculating packet hash
>> >> * Additionally adding support for the usage of RSS with vhost
>> >>
>> >> The eBPF works on kernels 5.8+
>> >> On earlier kerneld it fails to load and the RSS feature is reported
>> >> only without vhost and implemented in 'in-qemu' software.
>> >>
>> >> Implementation notes:
>> >> Linux TAP TUNSETSTEERINGEBPF ioctl was used to set the eBPF program.
>> >> Added libbpf dependency and eBPF support.
>> >> The eBPF program is part of the qemu and presented as an array
>> >> of BPF ELF file data.
>> >> The compilation of eBPF is not part of QEMU build and can be done
>> >> using provided Makefile.ebpf(need to adjust 'linuxhdrs').
>> >> Added changes to virtio-net and vhost, primary eBPF RSS is used.
>> >> 'in-qemu' RSS used in the case of hash population and as a fallback
>> option.
>> >> For vhost, the hash population feature is not reported to the guest.
>> >>
>> >> Please also see the documentation in PATCH 5/5.
>> >>
>> >> I am sending those patches as RFC to initiate the discussions and get
>> >> feedback on the following points:
>> >> * Fallback when eBPF is not supported by the kernel
>> >> * Live migration to the kernel that doesn't have eBPF support
>> >> * Integration with current QEMU build
>> >> * Additional usage for eBPF for packet filtering
>> >>
>> >> Known issues:
>> >> * hash population not supported by eBPF RSS: 'in-qemu' RSS used
>> >> as a fallback, also, hash population feature is not reported to guests
>> >> with vhost.
>> >> * big-endian BPF support: for now, eBPF isn't supported on
>> >> big-endian systems. Can be added in future if required.
>> >> * huge .h file with eBPF binary. The size of .h file containing
>> >> eBPF binary is currently ~5K lines, because the binary is built with
>> debug information.
>> >> The binary without debug/BTF info can't be loaded by libbpf.
>> >> We're looking for possibilities to reduce the size of the .h files.
>> >
>> >
>> > Adding Toke for sharing more idea from eBPF side.
>> >
>> > We had some discussion on the eBPF issues:
>> >
>> > 1) Whether or not to use libbpf. Toke strongly suggest to use libbpf
>> > 2) Whether or not to use BTF. Toke confirmed that if we don't access any
>> > skb metadata, BTF is not strictly required for CO-RE. But it might still
>> > useful for e.g debugging.
>> > 3) About the huge (5K lines, see patch #2 Toke). Toke confirmed that we
>> > can strip debug symbols, but Yuri found some sections can't be stripped,
>> > we can keep discussing here.
>>
>> I just tried simply running 'strip' on a sample trivial XDP program,
>> which brought its size down from ~5k to ~1k and preserved the BTF
>> information without me having to do anything.
>>
>
> With our eBPF code the numbers are slightly different:
> The code size without BTF: 7.5K (built without '-g')
> Built with '-g': 45K
> Stripped: 19K
> The difference between 7.5 and 19K still seems significant, especially when
> we do not use any kernel structures and do not need these BTF sections

That does seem like a lot of BTF information. Did you confirm (with
objdump) that it's the .BTF* sections that take up these extra 12k? Do
you have some really complicated data structures in the file or
something? Got a link to the source somewhere that isn't a web mailing
list archive? :)

In any case, while I do think it smells a little of premature
optimisation, you can of course strip the BTF information until you need
it. Having it around makes debugging easier (bpftool will expand your
map structures for you when dumping maps, and that sort of thing), but
it's not really essential if you don't need CO-RE.

> This is only reason to prefer non-libbpf option for this specific eBPF

You can still use libbpf without BTF. It's using BTF without libbpf that
tends to not work so well...

>> As a side note, though, instead of embedding the BPF program into a .h,
>> you could simply ship it as a .o and load it from the file system. We do
>> that with xdp-tools and install the bpf object files into /usr/$LIB/bpf/.
>>
>
> Yes, we've discussed this option and decided to go with embedding the BPF
> https://lists.gnu.org/archive/html/qemu-devel/2020-11/msg02157.html

Right, okay. I'll note, though, that if your concern is that the BPF
code should always match the rest of the code base, omitting the
compilation if there's no Clang present seems like it could lead to
problems :)

Also, if you do go the embedded-bytecode route, you may want to have a
look at the upstream 'skeleton' concept. It takes a BPF object file and
automatically generates a header file that gives you direct access to
maps, programs and global data in C. There are some examples in
selftests/bpf on how to use it, but you basically just run
'bpftool gen skeleton mybpf.o'.

-Toke




reply via email to

[Prev in Thread] Current Thread [Next in Thread]