bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Desouza, Ederson" <ederson.desouza@intel.com>
To: "Lobakin, Alexandr" <alexandr.lobakin@intel.com>,
	"john.fastabend@gmail.com" <john.fastabend@gmail.com>
Cc: "Kubiak, Marcin" <marcin.kubiak@intel.com>,
	"xdp-hints@xdp-project.net" <xdp-hints@xdp-project.net>,
	"Swiatkowski, Michal" <michal.swiatkowski@intel.com>,
	"bpf@vger.kernel.org" <bpf@vger.kernel.org>
Subject: Re: [[RFC xdp-hints] 00/16] XDP hints and AF_XDP support
Date: Fri, 13 Aug 2021 22:04:06 +0000	[thread overview]
Message-ID: <6e1457498fb2ab8752859a275cf672d85bb36c7d.camel@intel.com> (raw)
In-Reply-To: <610b26a97231f_10ef420863@john-XPS-13-9370.notmuch>

On Wed, 2021-08-04 at 16:45 -0700, John Fastabend wrote:
> Alexander Lobakin wrote:
> > From: John Fastabend <john.fastabend@gmail.com>
> > Date: Tue, 03 Aug 2021 08:23:36 -0700
> > 
> > > Alexander Lobakin wrote:
> > > > From: Ederson de Souza <ederson.desouza@intel.com>
> > > > Date: Mon,  2 Aug 2021 18:03:15 -0700
> > > > 
> > > > > While there's some work going on different aspects of the XDP hints, I'd like
> > > > > to present and ask for comments on this patch series.
> > > > > 
> > > > > XDP hints/metadata is a way for the driver to transmit information regarding a
> > > > > specific XDP frame along with the frame. Following current discussions and
> > > > > based on top of Saeed's early patches, this series provides the XDP hints with
> > > > > one (or two, depending on how you view it) use case: RX/TX timestamps for the
> > > > > igc driver.
> > > > > 
> > > > > Keeping with Saeed's patches, to enable XDP hints usage, one has to first
> > > > > enable it with bpftool like:
> > > > > 
> > > > >   bpftool net xdp set dev <iface> md_btf on
> > > > > 
> > > > > > From the driver perspective, support for XDP hints is achieved by:
> > > > > 
> > > > >  - Adding support for XDP_SETUP_MD_BTF operation, where it can register the BTF.
> > > > > 
> > > > >  - Adding support for XDP_QUERY_MD_BTF so user space can retrieve the BTF id.
> 
> Its still unclear to me why BTF id is being passed around.

So, from the user space, the application can retrieve the BTF layout
and correctly get the offset of the fields inside the metadata.

> 
> > > > > 
> > > > >  - Adding the relevant data to the metadata area of the XDP frame.
> > > > > 
> > > > >     - One of this relevant data is the BTF id of the BTF in use.
> > > > > 
> > > > > In order to make use of the BPF CO-RE mechanism, this series makes the driver
> > > > > name of the struct for the XDP hints be called `xdp_hints___<driver_name>` (in
> > > > > this series, as I'm using igc driver, it becomes `xdp_hints___igc`). This
> > > > > should help BPF programs, as they can simply refer to the struct as `xdp_hints`.
> > > > > 
> > > > > A common issue is how to standardize the names of the fields in the BTF. Here,
> > > > > a series of macros is provided on the `include/net/xdp.h`, that goes by
> > > > > `XDP_GENERIC_` prefixes. In there, the `btf_id` field was added, that needs
> > > > > to be strategically positioned at the end of the struct. Also added are the
> > > > > `rx_timestamp` and  `tx_timestamp` fields, as I believe they're generic as
> > > > > well. The macros also provide `u32` and `u64` types. Besides, I also ended
> > > > > up adding a `valid_map` field. It should help whoever is using the XDP hints
> > > > > to be sure of what is valid in that hints. It also makes the driver life
> > > > > simple, as it just uses a single struct and validates fields as it fills
> > > > > them.
> > > > > 
> > > > > The BPF sample `xdp_sample_pkts` was modified to demonstrate the usage of XDP
> > > > > hints on BPF programs. It's a very simple example, but it shows some nice
> > > > > things about it. For instance, instead of getting the struct somehow before,
> > > > > it uses CO-RE to simply name the XDP hint field it's interested in and
> > > > > read it using `BPF_CORE_READ`. (I also tried to use `bpf_core_field_exists` to
> > > > > make it even more dynamic, but couldn't get to build it. I mention why in the
> > > > > example.)
> > > > > 
> > > > > Also, as much of my interest lies in the user space side, the one using
> > > > > AF_XDP, to support it a few additional things were done.
> > > > > 
> > > > > Firstly, a new "driver info" is provided, to be obtained via
> > > > > `ioctl(SIOCETHTOOL)`: "xdp_headroom". This is how much XDP headroom is
> > > > > required by the driver. While not really important for the RX path (as the
> > > > > driver already applies that headroom to the XDP frame), it's
> > > > > important for the TX path, as here, it's the application responsibility to
> > > > > factor in the XDP headroom area. (Note that the TX timestamp is obtained from
> > > > > the XDP frame of the transmitted packet, when that frame goes back to the
> > > > > completion queue.)
> > > > > 
> > > > > A series of helpers was also added to libbpf to help manage this headroom
> > > > > area. They go by the prefix " xsk_umem__adjust_", to adjust consumer and
> > > > > producer data and metadata.
> > > > > 
> > > > > In order to read the XDP hints from the memory, another series of helpers was
> > > > > added. They read the BTF from the BTF id, and create a hashmap of the offsets
> > > > > and sizes of the fields, that is then used to actually retrieve the data.
> > > > > 
> > > > > I modified the "xdpsock" example to show the use of XDP hints on the AF_XDP
> > > > > world, along with the proposed API.
> > > > > 
> > > > > Finally, I know that Michal and Alexandr (and probably others that I don't
> > > > > know) are working in this same front. This RFC is not to race any other work,
> > > > > instead I hope it can help in the discussion of the best solution for the
> > > > > XDP hints and I truly think it brings value, specifically for the AF_XDP
> > > > > usages.
> > > > 
> > > > XDP Hints have been discussed on Netdev 0x15, and we kinda
> > > > established the optimal way for doing it. This RFC's approach
> > > > is not actual anymore.
> > > 
> > > Its great it was discussed, but you need to also summarize it
> > > on the list. Give us the conclusion, who came to it, and why
> > > its better then this proposal or whats wrong with this proposal.
> > > Not everyone was in the discussion and here we
> > > have a concrete proposal _with_ code. You can't just out of hand
> > > throw it out based on a conference discussion.
> > 
> > The conclusion was:
> >  * no need to register BTF from drivers themselves, they can be
> >    obtained through sysfs interface;
> 
> This would put the BTF info in '/sys/kernel/btf/driver_name' correct?
> Likely good enough for static configs, but this will only work
> for static hardware? Dynamic changes would need another mechanism
> to learn BTF? My view on this is if you reprogram the hardware that
> tooling should also give you a BTF file so its not a kernel
> problem. Think P4 compiler spits out a firmware image and BTF file.
> 
> >  * the verifier has nothing to do with Hints and stuff, BTF ID
> >    just gets passed along with the other XDP Prog setup flags;
> 
> Its not clear why the BTF ID needs to be passed at all. Can
> someone elaborate? What would XDP do with the ID?
> 
> I get on redirect you don't know the xdp hints layout from
> where the program came from? Do you plan to write programs
> like this,
> 
>   if (btf_id == 0xfoo) { do something }
>   else if (btf_id == 0xe00) { do other thing}
> 
> Other way is to sanitize meta data on input program. But,
> OK assume you want to pivot on btf_id.  What does passing
> the BTF ID down with the XDP prog setup have to do with the
> above? A driver can probably just get its own BTF_ID and
> no need to pass it down via XDP prog setup.
> 
> 
> >  * no if-else ladders or loops when preparing a metadata, only
> >    a couple of paths to satisfy generic needs (first of all)
> >    and some sort of extended structure if needed;
> 
> Not sure I follow. I assume here the "hints" are put into the
> metadata as a first iteration. If this is correct I expect
> with BTF info and normal CO-RE logic nothing new should be needed.
> 
> If you want to put the metadata in a page somewhere else then
> you need some way to patch code to point at that. A map would
> work here. But, I think best approach is to first use the
> metadata space.
> 
> >  * the first two users of the feature will be veth and cpumap.
> 
> Sure, I think its sufficient to have a BPF program use the
> hints. Getting the connection into veth/cpumap seems like
> extra, step 2 after a base driver supports putting hints in
> the metadata block.
> 
> > 
> > This greatly simplifies the code and the hotpath.
> 
> Sure I suspect for a first iteration "all" thats needed is a
> driver/hardware to populate the metadata with hints and
> expose a BTF file for the BPF program can use.
> 
> > 
> > It was decided by Jesper, Toke, Lorenzo, Michal, me, and several
> > more attendees (sorree if I forgot someone).
> 
> Great.
> 
> > 
> > > > You could just write to me and request write perms on our open
> > > > GitHub repo (which was mentioned here several times) for Hints
> > > > to do things if not together, then in one place at least.
> > > > I'll be off for two weeks since next Monday, Michal could get
> > > > you into things if you decide to join after than point
> > > > (if at all).
> > > 
> > > I'll review code thats posted on the list. Please
> > > do the same or give us a _reason_ to skip it. It has a nice commit
> > > message that on the face looks like a reasonable starting point
> > > even if I have a few issues with the aproach in a couple spots.
> > 
> > There's almost nothing to review for me because I saw most of this
> > code because we were working on it, and it's available in my open
> > GitHub repo.
> 
> OK. It looks to me that a feature flag to enable/disable
> hints is going to be useful? If this has overhead in the
> driver to do the copy or overhead on the bus to push the
> data around then we want to turn it on/off. An ethtool feature
> flag would be sufficient.
> 
> > I mean, AF_XDP parts are new, that's for sure, but firstly we need
> > to stop {doing,rushing} things somewhere in the closets. For now,
> > we have THREE almost identical implementations of XDP Hints even
> > inside Intel, and they were born just because everyone was doing
> > something without any discussion or whatever, and I see no good
> > in such a fragmentation.
> > At least, that was the reason why XDP Hints mailing list and
> > XDP Hints workshop topic were created.
> 
> My only objection is, off-list discussions need to land eventually
> on the list as well. If someone submits a series of patches we
> can't/shouldn't tell them its already been decided in some other
> private discussion without providing the conclusions of that
> discussion giving the sender a chance to debate it. I think above
> summary in the initial reply would have been sufficient and I
> wouldn't have even commented on it. And by giving the summary
> now its clear to me as well whats being worked on.
> 
> Thanks,
> John
> 
> > 
> > For sure, anyone is free to do whatever he wants, but I believe
> > letting us firstly finish the things discussed and established
> > and then starting to expand them to support AF_XDP and whatnot
> > can prevent wasting a lot of everyone's time and resources, and
> > keeping on reinventing the wheel again and again doesn't help
> > there. At all.
> > 
> > > Time to get coffee on my side.
> > 
> > I'm a tea man[iac], meh.
> > 
> > > Thanks,
> > > John
> > 
> > Thanks,
> > Al
> > 
> > > > 
> > > > Thanks,
> > > > Al
> 
> 


      reply	other threads:[~2021-08-13 22:04 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-03  1:03 [[RFC xdp-hints] 00/16] XDP hints and AF_XDP support Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 01/16] bpf: add btf register/unregister API Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 02/16] net/core: XDP metadata BTF netlink API Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 03/16] tools/bpf: Query XDP metadata BTF ID Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 04/16] tools/bpf: Add xdp set command for md btf Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 05/16] igc: Fix race condition in PTP Tx code Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 06/16] igc: Retrieve the TX timestamp directly (instead of in a interrupt) Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 07/16] igc: Add support for multiple in-flight TX timestamps Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 08/16] igc: Use irq safe locks for timestamping Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 09/16] net/xdp: Support for generic XDP hints Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 10/16] igc: XDP packet RX timestamp Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 11/16] igc: XDP packet TX timestamp Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 12/16] ethtool,igc: Add "xdp_headroom" driver info Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 13/16] libbpf: Helpers to access XDP frame metadata Ederson de Souza
2021-08-06 22:59   ` Andrii Nakryiko
2021-08-19 11:47     ` Toke Høiland-Jørgensen
2021-08-03  1:03 ` [[RFC xdp-hints] 14/16] libbpf: Helpers to access XDP hints based on BTF definitions Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 15/16] samples/bpf: XDP hints AF_XDP example Ederson de Souza
2021-08-03  1:03 ` [[RFC xdp-hints] 16/16] samples/bpf: Show XDP hints usage Ederson de Souza
2021-08-06 23:14   ` Andrii Nakryiko
2021-08-03  9:12 ` [[RFC xdp-hints] 00/16] XDP hints and AF_XDP support Alexander Lobakin
2021-08-03 15:23   ` John Fastabend
2021-08-04 15:15     ` Alexander Lobakin
2021-08-04 23:45       ` John Fastabend
2021-08-13 22:04         ` Desouza, Ederson [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=6e1457498fb2ab8752859a275cf672d85bb36c7d.camel@intel.com \
    --to=ederson.desouza@intel.com \
    --cc=alexandr.lobakin@intel.com \
    --cc=bpf@vger.kernel.org \
    --cc=john.fastabend@gmail.com \
    --cc=marcin.kubiak@intel.com \
    --cc=michal.swiatkowski@intel.com \
    --cc=xdp-hints@xdp-project.net \
    /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).