qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 5/5] qmp: Added qemu-ebpf-rss-path command.


From: Markus Armbruster
Subject: Re: [PATCH 5/5] qmp: Added qemu-ebpf-rss-path command.
Date: Thu, 02 Sep 2021 18:06:58 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)

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

> On Mon, Aug 30, 2021 at 11:14 AM Markus Armbruster <armbru@redhat.com> wrote:
>>
>> Yuri Benditovich <yuri.benditovich@daynix.com> writes:
>>
>> > On Mon, Aug 30, 2021 at 9:10 AM Markus Armbruster <armbru@redhat.com> 
>> > wrote:
>> >>
>> >> Yuri Benditovich <yuri.benditovich@daynix.com> writes:
>> >>
>> >> > On Tue, Aug 24, 2021 at 9:41 AM Markus Armbruster <armbru@redhat.com> 
>> >> > wrote:
>> >> >>
>> >> >> Andrew Melnichenko <andrew@daynix.com> writes:
>> >> >>
>> >> >> > Hi,
>> >> >> >
>> >> >> >> The helper may or may not be installed at the path compiled into 
>> >> >> >> QEMU.
>> >> >> >>
>> >> >> > Yes, so the helper will not be called - QEMU will try to initiate 
>> >> >> > eBPF RSS
>> >> >> > or use "in-qemu" RSS.
>> >> >>
>> >> >> My point is: the proposed command's mission is to help the management
>> >> >> application run the right helper.  However, its advice is *unreliable*.
>> >> >> It may point to the wrong helper, or to nothing at all.  The right
>> >> >> helper may still exist elsewhere.
>> >> >
>> >> > Hi Markus,
>> >> > Indeed the intention of this command is to return the proper helper.
>> >> > Especially in the case of RSS helper this is *reliable* advice and it
>> >> > points to the helper that was built together with QEMU, i.e. with the
>> >> > same headers.

In my testing, the patch fails at providing reliable advice.

I did a "git fetch https://github.com/daynix/qemu HelperEBPFv3", rebased
the result to master, build the thing, ran qemu-system-x86_64 right from
the build tree, tried query-helper-paths and got

    {"return": [
        {"name": "qemu-bridge-helper",
         "path": "/work/armbru/tmp/inst-qemu/libexec/qemu-bridge-helper"},
        {"name": "qemu-pr-helper",
         "path": "/work/armbru/tmp/inst-qemu/libexec/qemu-pr-helper"},
        {"name": "qemu-ebpf-rss-helper",
         "path": "/work/armbru/qemu/bld-x86/qemu-ebpf-rss-helper"}]}

Ther first two are bogus.  /work/armbru/tmp/inst-qemu/... is where "make
install" would put things.  I last ran "make install" almost three
months ago.

The last one is accurate in this particular scenario.  More on why
below.

It won't be in a deployment where the actual installation paths do not
match the ones we told configure at build time.  Yes, people do that.
Please read my entire reply before you comment on this paragraph.

>> >> > This was discussed earlier, for example in
>> >> > https://lists.nongnu.org/archive/html/qemu-devel/2021-06/msg02248.html
>> >> >
>> >> >>
>> >> >> I suspect you're trying to address the problem at the wrong level.
>> >> >
>> >> > What is the proper solution for the problem from your point of view?
>> >>
>> >> I'll explain in more detail, but first I'd like you to answer my
>> >> question below.
>> >>
>> >> >> Similar versioning issues exist with other helpers.  We've been doing
>> >> >> fine without QEMU providing unreliable advice on where they might sit 
>> >> >> in
>> >> >> the file system.  What makes this one different?
>> >> >
>> >> > This one is required to be *fully synchronized* with the existing build 
>> >> > of QEMU.
>> >> > Other helpers are probably less restrictive and do not have common
>> >> > structures definitions with the QEMU, otherwise they would face the
>> >> > same problem.
>> >> >
>> >> >>
>> >> >> >> What happens when you use the wrong helper?
>> >> >
>> >> > Our intention is that libvirt should never use the wrong RSS helper.
>> >> > But it does not have any ability to check which helper is compatible
>> >> > with the QEMU.
>> >> > QEMU can easily recognize the correct one.
>> >>
>> >> You did not actually answer my question :)
>> >>
>> >> So let's try again: if libvirt does use the wrong RSS helper, how does
>> >> the system behave?
>> >
>> > The receive-side scaling may work incorrectly, i.e. finally may move
>> > incoming packets to a virtqueue different than expected one.
>>
>> Then I'm confused about the purpose of "the stamp" mentioned below.  Can
>> you enlighten me?
>
> The stamp is a string (common for qemu executable and RSS helper
> executable during build) that qemu can later retrieve from the helper
> in run-time and ensure this helper is fully compatible with this build
> of qemu (in terms of eBPF operation). The helper is built with the
> same C headers (related to ebpf operation) as the qemu, the qemu is
> able to receive file descriptors created by the helper (of ebpf
> program and ebpf data structure's maps) from libvirt and deal with
> them as if it has created them.

query-helper-paths looks for the helper a number of locations, and
reports the first one.  This is fundamentally unrealiable.

For qemu-ebpf-rss-helper, it additionally searches for a stamp symbol in
the ELF symbol table.  That's what makes it reliable in the sense of
"won't report crap".  It's still unreliable in the sense of "may not
find the helper", see above.

Searching the ELF symbol table requires ELF.  I suspect your meson.build
doesn't reflect that.

It also requires the symbol table to be present.  Statically linked
programs don't have one, if I remember correctly.

>> >> >> >>
>> >> >> > UB - in most cases, eBPF program will work with wrong configurations.
>> >> >> > That's why the stamp was added.
>> >> >> >
>> >> >> > query-helper-paths checks the stamp only for RSS helper.
>> >> >>
>> >> >> I have no idea what you're talking about :)
>> >> >>
>> >> >> My best guess is that you're trying to tell me that attempting to work
>> >> >> with the wrong helper will fail cleanly due to some stamp check.  That
>> >> >> would be nice.

Looks like my best guess was correct.

Let's take a step back.

Management applications run qemu-system-FOO and helpers.  They know
where to find qemu-system-FOO.  It stands to reason that they also know
where to find the matching helpers.  I fail to see why they need help
from qemu-system-FOO via QMP.  Even if they need help, qemu-system-FOO
can't give it, because it cannot know for sure.  It is wherever the
system administrator / distro put it.

When the system administrator / distro put stuff in unusual places, they
get to configure the programs that use it.  In this case, that's the
management application.

How QEMU may be able to help is refuse to run with the wrong helper.

If qemu-system-FOO talks directly to the helper, you can have the helper
present the stamp for qemu-system-FOO to accept or reject.  Or vice
versa, doesn't matter.

Or you can provide means for the management application to retrieve a
stamp from all programs involved, so it can fail unless they match.
There are much easier ways for that than searching through ELF symbol
tables.  Have a command line option to print it.  For qemu-system-FOO,
you can also have a QMP command to query it.




reply via email to

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