[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <49f993a6-d45a-71cf-3ade-e65f88088af7@stressinduktion.org>
Date: Wed, 19 Apr 2017 14:25:55 +0200
From: Hannes Frederic Sowa <hannes@...essinduktion.org>
To: Jesper Dangaard Brouer <brouer@...hat.com>,
Daniel Borkmann <borkmann@...earbox.net>,
Alexei Starovoitov <alexei.starovoitov@...il.com>,
Alexei Starovoitov <ast@...com>
Cc: "netdev@...r.kernel.org" <netdev@...r.kernel.org>,
"xdp-newbies@...r.kernel.org" <xdp-newbies@...r.kernel.org>,
John Fastabend <john.fastabend@...il.com>
Subject: Re: XDP question: best API for returning/setting egress port?
Hi,
On 18.04.2017 21:58, Jesper Dangaard Brouer wrote:
>
> As I argued in NetConf presentation[1] (from slide #9) we need a port
> mapping table (instead of using ifindex'es). Both for supporting
> other "port" types than net_devices (think sockets), and for
> sandboxing what XDP can bypass.
>
> I want to create a new XDP action called XDP_REDIRECT, that instruct
> XDP to send the xdp_buff to another "port" (get translated into a
> net_device, or something else depending on internal port type).
>
> Looking at the userspace/eBPF interface, I'm wondering what is the
> best API for "returning" this port number from eBPF?
>
> The options I see is:
>
> 1) Split-up the u32 action code, and e.g let the high-16-bit be the
> port number and lower-16bit the (existing) action verdict.
>
> Pros: Simple API
> Cons: Number of ports limited to 64K
>
> 2) Extend both xdp_buff + xdp_md to contain a (u32) port number, allow
> eBPF to update xdp_md->port.
>
> Pros: Larger number of ports.
> Cons: This require some ebpf translation steps between xdp_buff <-> xdp_md.
> (see xdp_convert_ctx_access)
>
> 3) Extend only xdp_buff and create bpf_helper that set port in xdp_buff.
>
> Pros: Hides impl details, and allows helper to give eBPF code feedback
> (on e.g. if port doesn't exist any longer)
> Cons: Helper function call likely slower?
>
>
> (Cc'ed xdp-newbies as end-users might have an opinion on UAPI?)
I am not sure how the socket interface should look like, it seems to be
too far away to me right now.
Regarding having stable ifindexes, I wonder if we could do something:
int ifindexes_in_use_by_ebpf_program[] __section("ifindex") = {
1,2,3,8,9,10 };
and we can make sure that the ifindexes automatically stay stable for
the lifetime while the ebpf program is loaded?
Bye,
Hannes
Powered by blists - more mailing lists