diff mbox series

[net-next] v2 net-xdp: netdev attribute to control xdpgeneric skb linearization

Message ID 20200123232054.183436-1-lrizzo@google.com
State Changes Requested
Delegated to: BPF Maintainers
Headers show
Series [net-next] v2 net-xdp: netdev attribute to control xdpgeneric skb linearization | expand

Commit Message

Luigi Rizzo Jan. 23, 2020, 11:20 p.m. UTC
Add a netdevice flag to control skb linearization in generic xdp mode.
Among the various mechanism to control the flag, the sysfs
interface seems sufficiently simple and self-contained.
The attribute can be modified through
	/sys/class/net/<DEVICE>/xdp_linearize
The default is 1 (on)

On a kernel instrumented to grab timestamps around the linearization
code in netif_receive_generic_xdp, and heavy netperf traffic with 1500b
mtu, I see the following times (nanoseconds/pkt)

The receiver generally sees larger packets so the difference is more
significant.

ns/pkt                   RECEIVER                 SENDER

                    p50     p90     p99       p50   p90    p99

LINEARIZATION:    600ns  1090ns  4900ns     149ns 249ns  460ns
NO LINEARIZATION:  40ns    59ns    90ns      40ns  50ns  100ns

Signed-off-by: Luigi Rizzo <lrizzo@google.com>
---
 include/linux/netdevice.h |  3 ++-
 net/core/dev.c            |  5 +++--
 net/core/net-sysfs.c      | 15 +++++++++++++++
 3 files changed, 20 insertions(+), 3 deletions(-)

Comments

Daniel Borkmann Jan. 24, 2020, 9:55 a.m. UTC | #1
On 1/24/20 12:20 AM, Luigi Rizzo wrote:
> Add a netdevice flag to control skb linearization in generic xdp mode.
> Among the various mechanism to control the flag, the sysfs
> interface seems sufficiently simple and self-contained.
> The attribute can be modified through
> 	/sys/class/net/<DEVICE>/xdp_linearize
> The default is 1 (on)
> 
> On a kernel instrumented to grab timestamps around the linearization
> code in netif_receive_generic_xdp, and heavy netperf traffic with 1500b
> mtu, I see the following times (nanoseconds/pkt)
> 
> The receiver generally sees larger packets so the difference is more
> significant.
> 
> ns/pkt                   RECEIVER                 SENDER
> 
>                      p50     p90     p99       p50   p90    p99
> 
> LINEARIZATION:    600ns  1090ns  4900ns     149ns 249ns  460ns
> NO LINEARIZATION:  40ns    59ns    90ns      40ns  50ns  100ns
> 
> Signed-off-by: Luigi Rizzo <lrizzo@google.com>
> ---
>   include/linux/netdevice.h |  3 ++-
>   net/core/dev.c            |  5 +++--
>   net/core/net-sysfs.c      | 15 +++++++++++++++
>   3 files changed, 20 insertions(+), 3 deletions(-)
> 
> diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
> index 5ec3537fbdb1..b182f3cb0bf0 100644
> --- a/include/linux/netdevice.h
> +++ b/include/linux/netdevice.h
> @@ -1959,7 +1959,8 @@ struct net_device {
>   
>   	struct netdev_rx_queue	*_rx;
>   	unsigned int		num_rx_queues;
> -	unsigned int		real_num_rx_queues;
> +	unsigned int		real_num_rx_queues:31;
> +	unsigned int		xdp_linearize : 1;
>   
>   	struct bpf_prog __rcu	*xdp_prog;
>   	unsigned long		gro_flush_timeout;
> diff --git a/net/core/dev.c b/net/core/dev.c
> index 4dcc1b390667..13a671e45b61 100644
> --- a/net/core/dev.c
> +++ b/net/core/dev.c
> @@ -4484,8 +4484,8 @@ static u32 netif_receive_generic_xdp(struct sk_buff *skb,
>   	 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
>   	 * native XDP provides, thus we need to do it here as well.
>   	 */
> -	if (skb_is_nonlinear(skb) ||
> -	    skb_headroom(skb) < XDP_PACKET_HEADROOM) {
> +	if (skb->dev->xdp_linearize && (skb_is_nonlinear(skb) ||
> +	    skb_headroom(skb) < XDP_PACKET_HEADROOM)) {
>   		int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
>   		int troom = skb->tail + skb->data_len - skb->end;

I still think in order for this knob to be generally useful, we would need to
provide an equivalent of bpf_skb_pull_data() helper, which in generic XDP would then
pull in more data from non-linear section, and in native XDP would be a "no-op" since
the frame is already linear. Otherwise, as mentioned in previous thread, users would
have no chance to examine headers if they are not pre-pulled by the driver.

> @@ -9756,6 +9756,7 @@ struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
>   	dev->gso_max_segs = GSO_MAX_SEGS;
>   	dev->upper_level = 1;
>   	dev->lower_level = 1;
> +	dev->xdp_linearize = 1;
>   
>   	INIT_LIST_HEAD(&dev->napi_list);
>   	INIT_LIST_HEAD(&dev->unreg_list);
> diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
> index 4c826b8bf9b1..ec59aa296664 100644
> --- a/net/core/net-sysfs.c
> +++ b/net/core/net-sysfs.c
> @@ -442,6 +442,20 @@ static ssize_t proto_down_store(struct device *dev,
>   }
>   NETDEVICE_SHOW_RW(proto_down, fmt_dec);
>   
> +static int change_xdp_linearize(struct net_device *dev, unsigned long val)
> +{
> +	dev->xdp_linearize = !!val;
> +	return 0;
> +}
> +
> +static ssize_t xdp_linearize_store(struct device *dev,
> +				   struct device_attribute *attr,
> +				   const char *buf, size_t len)
> +{
> +	return netdev_store(dev, attr, buf, len, change_xdp_linearize);
> +}
> +NETDEVICE_SHOW_RW(xdp_linearize, fmt_dec);
> +
>   static ssize_t phys_port_id_show(struct device *dev,
>   				 struct device_attribute *attr, char *buf)
>   {
> @@ -536,6 +550,7 @@ static struct attribute *net_class_attrs[] __ro_after_init = {
>   	&dev_attr_phys_port_name.attr,
>   	&dev_attr_phys_switch_id.attr,
>   	&dev_attr_proto_down.attr,
> +	&dev_attr_xdp_linearize.attr,
>   	&dev_attr_carrier_up_count.attr,
>   	&dev_attr_carrier_down_count.attr,
>   	NULL,
>
Jakub Kicinski Jan. 24, 2020, 2:52 p.m. UTC | #2
On Fri, 24 Jan 2020 10:55:19 +0100, Daniel Borkmann wrote:
> > diff --git a/net/core/dev.c b/net/core/dev.c
> > index 4dcc1b390667..13a671e45b61 100644
> > --- a/net/core/dev.c
> > +++ b/net/core/dev.c
> > @@ -4484,8 +4484,8 @@ static u32 netif_receive_generic_xdp(struct sk_buff *skb,
> >   	 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
> >   	 * native XDP provides, thus we need to do it here as well.
> >   	 */
> > -	if (skb_is_nonlinear(skb) ||
> > -	    skb_headroom(skb) < XDP_PACKET_HEADROOM) {
> > +	if (skb->dev->xdp_linearize && (skb_is_nonlinear(skb) ||
> > +	    skb_headroom(skb) < XDP_PACKET_HEADROOM)) {
> >   		int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
> >   		int troom = skb->tail + skb->data_len - skb->end;  
> 
> I still think in order for this knob to be generally useful, we would need to
> provide an equivalent of bpf_skb_pull_data() helper, which in generic XDP would then
> pull in more data from non-linear section, and in native XDP would be a "no-op" since
> the frame is already linear. Otherwise, as mentioned in previous thread, users would
> have no chance to examine headers if they are not pre-pulled by the driver.

Which takes us to the point of the ongoing work to allow multi-buffer
frames in native mode. Sorry if this was already mentioned but this
seems like the other side of the same coin, once we have multi-buffer
semantics in native mode we can likely just replicate them for skbs, no?
Luigi Rizzo Jan. 24, 2020, 2:56 p.m. UTC | #3
On Fri, Jan 24, 2020 at 1:55 AM Daniel Borkmann <daniel@iogearbox.net> wrote:
>
> On 1/24/20 12:20 AM, Luigi Rizzo wrote:
> > Add a netdevice flag to control skb linearization in generic xdp mode.
> > Among the various mechanism to control the flag, the sysfs
> > interface seems sufficiently simple and self-contained.
> > The attribute can be modified through
> >       /sys/class/net/<DEVICE>/xdp_linearize
> > The default is 1 (on)
> >
> > On a kernel instrumented to grab timestamps around the linearization
> > code in netif_receive_generic_xdp, and heavy netperf traffic with 1500b
> > mtu, I see the following times (nanoseconds/pkt)
> >
> > The receiver generally sees larger packets so the difference is more
> > significant.
> >
> > ns/pkt                   RECEIVER                 SENDER
> >
> >                      p50     p90     p99       p50   p90    p99
> >
> > LINEARIZATION:    600ns  1090ns  4900ns     149ns 249ns  460ns
> > NO LINEARIZATION:  40ns    59ns    90ns      40ns  50ns  100ns
> >
> > Signed-off-by: Luigi Rizzo <lrizzo@google.com>
> > ---
> >   include/linux/netdevice.h |  3 ++-
> >   net/core/dev.c            |  5 +++--
> >   net/core/net-sysfs.c      | 15 +++++++++++++++
> >   3 files changed, 20 insertions(+), 3 deletions(-)
> >
> > diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
> > index 5ec3537fbdb1..b182f3cb0bf0 100644
> > --- a/include/linux/netdevice.h
> > +++ b/include/linux/netdevice.h
> > @@ -1959,7 +1959,8 @@ struct net_device {
> >
> >       struct netdev_rx_queue  *_rx;
> >       unsigned int            num_rx_queues;
> > -     unsigned int            real_num_rx_queues;
> > +     unsigned int            real_num_rx_queues:31;
> > +     unsigned int            xdp_linearize : 1;
> >
> >       struct bpf_prog __rcu   *xdp_prog;
> >       unsigned long           gro_flush_timeout;
> > diff --git a/net/core/dev.c b/net/core/dev.c
> > index 4dcc1b390667..13a671e45b61 100644
> > --- a/net/core/dev.c
> > +++ b/net/core/dev.c
> > @@ -4484,8 +4484,8 @@ static u32 netif_receive_generic_xdp(struct sk_buff *skb,
> >        * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
> >        * native XDP provides, thus we need to do it here as well.
> >        */
> > -     if (skb_is_nonlinear(skb) ||
> > -         skb_headroom(skb) < XDP_PACKET_HEADROOM) {
> > +     if (skb->dev->xdp_linearize && (skb_is_nonlinear(skb) ||
> > +         skb_headroom(skb) < XDP_PACKET_HEADROOM)) {
> >               int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
> >               int troom = skb->tail + skb->data_len - skb->end;
>
> I still think in order for this knob to be generally useful, we would need to
> provide an equivalent of bpf_skb_pull_data() helper, which in generic XDP would then
> pull in more data from non-linear section, and in native XDP would be a "no-op" since
> the frame is already linear. Otherwise, as mentioned in previous thread, users would
> have no chance to examine headers if they are not pre-pulled by the driver.

I agree that eventually we should get there. But to be completely general,
we need to remain compatible with older programs that are not aware
of the  new mode of operation. I see three possible ways:
1. make the pullup transparent (triggered in the interpreter or bound
check emitted
  by the jit code);
2. provide a mechanism for programs to specify requirements at load time,
  (defaulting to "full packet, standard headroom").
3. provide a mechanism to identify older programs and always linearize
in those cases

If we have #2, we can actually live without the pullup helper, so that
seems to be a simpler
course of action.

This particular patch basically defers #2 to the operator.

cheers
luigi
Luigi Rizzo Jan. 24, 2020, 3:04 p.m. UTC | #4
On Fri, Jan 24, 2020 at 6:52 AM Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Fri, 24 Jan 2020 10:55:19 +0100, Daniel Borkmann wrote:
> > > diff --git a/net/core/dev.c b/net/core/dev.c
> > > index 4dcc1b390667..13a671e45b61 100644
> > > --- a/net/core/dev.c
> > > +++ b/net/core/dev.c
> > > @@ -4484,8 +4484,8 @@ static u32 netif_receive_generic_xdp(struct sk_buff *skb,
> > >      * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
> > >      * native XDP provides, thus we need to do it here as well.
> > >      */
> > > -   if (skb_is_nonlinear(skb) ||
> > > -       skb_headroom(skb) < XDP_PACKET_HEADROOM) {
> > > +   if (skb->dev->xdp_linearize && (skb_is_nonlinear(skb) ||
> > > +       skb_headroom(skb) < XDP_PACKET_HEADROOM)) {
> > >             int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
> > >             int troom = skb->tail + skb->data_len - skb->end;
> >
> > I still think in order for this knob to be generally useful, we would need to
> > provide an equivalent of bpf_skb_pull_data() helper, which in generic XDP would then
> > pull in more data from non-linear section, and in native XDP would be a "no-op" since
> > the frame is already linear. Otherwise, as mentioned in previous thread, users would
> > have no chance to examine headers if they are not pre-pulled by the driver.
>
> Which takes us to the point of the ongoing work to allow multi-buffer
> frames in native mode. Sorry if this was already mentioned but this
> seems like the other side of the same coin, once we have multi-buffer
> semantics in native mode we can likely just replicate them for skbs, no?

Yes I am aware of that discussion (I posted links to it in some of the
previous messages).
My understanding is that there is no satisfactory solution, and the one effort
I am aware of seems to be "only pass the header".

My feeling is also that by implementing full multi-buffer support we end up
replicating the expensive part of the skb (dmasync, sg handling etc.),
at which point the benefits of a custom solution are largely gone.

cheers
luigi
diff mbox series

Patch

diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 5ec3537fbdb1..b182f3cb0bf0 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1959,7 +1959,8 @@  struct net_device {
 
 	struct netdev_rx_queue	*_rx;
 	unsigned int		num_rx_queues;
-	unsigned int		real_num_rx_queues;
+	unsigned int		real_num_rx_queues:31;
+	unsigned int		xdp_linearize : 1;
 
 	struct bpf_prog __rcu	*xdp_prog;
 	unsigned long		gro_flush_timeout;
diff --git a/net/core/dev.c b/net/core/dev.c
index 4dcc1b390667..13a671e45b61 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -4484,8 +4484,8 @@  static u32 netif_receive_generic_xdp(struct sk_buff *skb,
 	 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
 	 * native XDP provides, thus we need to do it here as well.
 	 */
-	if (skb_is_nonlinear(skb) ||
-	    skb_headroom(skb) < XDP_PACKET_HEADROOM) {
+	if (skb->dev->xdp_linearize && (skb_is_nonlinear(skb) ||
+	    skb_headroom(skb) < XDP_PACKET_HEADROOM)) {
 		int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
 		int troom = skb->tail + skb->data_len - skb->end;
 
@@ -9756,6 +9756,7 @@  struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
 	dev->gso_max_segs = GSO_MAX_SEGS;
 	dev->upper_level = 1;
 	dev->lower_level = 1;
+	dev->xdp_linearize = 1;
 
 	INIT_LIST_HEAD(&dev->napi_list);
 	INIT_LIST_HEAD(&dev->unreg_list);
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
index 4c826b8bf9b1..ec59aa296664 100644
--- a/net/core/net-sysfs.c
+++ b/net/core/net-sysfs.c
@@ -442,6 +442,20 @@  static ssize_t proto_down_store(struct device *dev,
 }
 NETDEVICE_SHOW_RW(proto_down, fmt_dec);
 
+static int change_xdp_linearize(struct net_device *dev, unsigned long val)
+{
+	dev->xdp_linearize = !!val;
+	return 0;
+}
+
+static ssize_t xdp_linearize_store(struct device *dev,
+				   struct device_attribute *attr,
+				   const char *buf, size_t len)
+{
+	return netdev_store(dev, attr, buf, len, change_xdp_linearize);
+}
+NETDEVICE_SHOW_RW(xdp_linearize, fmt_dec);
+
 static ssize_t phys_port_id_show(struct device *dev,
 				 struct device_attribute *attr, char *buf)
 {
@@ -536,6 +550,7 @@  static struct attribute *net_class_attrs[] __ro_after_init = {
 	&dev_attr_phys_port_name.attr,
 	&dev_attr_phys_switch_id.attr,
 	&dev_attr_proto_down.attr,
+	&dev_attr_xdp_linearize.attr,
 	&dev_attr_carrier_up_count.attr,
 	&dev_attr_carrier_down_count.attr,
 	NULL,