]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
gve: guard XDP xmit NDO on existence of xdp queues
authorJoshua Washington <joshwash@google.com>
Wed, 18 Dec 2024 13:34:12 +0000 (05:34 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 20 Dec 2024 12:49:41 +0000 (12:49 +0000)
In GVE, dedicated XDP queues only exist when an XDP program is installed
and the interface is up. As such, the NDO XDP XMIT callback should
return early if either of these conditions are false.

In the case of no loaded XDP program, priv->num_xdp_queues=0 which can
cause a divide-by-zero error, and in the case of interface down,
num_xdp_queues remains untouched to persist XDP queue count for the next
interface up, but the TX pointer itself would be NULL.

The XDP xmit callback also needs to synchronize with a device
transitioning from open to close. This synchronization will happen via
the GVE_PRIV_FLAGS_NAPI_ENABLED bit along with a synchronize_net() call,
which waits for any RCU critical sections at call-time to complete.

Fixes: 39a7f4aa3e4a ("gve: Add XDP REDIRECT support for GQI-QPL format")
Cc: stable@vger.kernel.org
Signed-off-by: Joshua Washington <joshwash@google.com>
Signed-off-by: Praveen Kaligineedi <pkaligineedi@google.com>
Reviewed-by: Praveen Kaligineedi <pkaligineedi@google.com>
Reviewed-by: Shailend Chand <shailend@google.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/google/gve/gve_main.c
drivers/net/ethernet/google/gve/gve_tx.c

index e171ca248f9af62275b6de656b0904ebe3dec583..5d7b0cc59959c9012f68620fcb85c8dcc5b7941b 100644 (file)
@@ -1899,6 +1899,9 @@ static void gve_turndown(struct gve_priv *priv)
 
        gve_clear_napi_enabled(priv);
        gve_clear_report_stats(priv);
+
+       /* Make sure that all traffic is finished processing. */
+       synchronize_net();
 }
 
 static void gve_turnup(struct gve_priv *priv)
index 83ad278ec91fe7839e2a9433955d5c9a352be535..852f8c7e39d2914d9f842e8da4e1a8f30624640a 100644 (file)
@@ -837,9 +837,12 @@ int gve_xdp_xmit(struct net_device *dev, int n, struct xdp_frame **frames,
        struct gve_tx_ring *tx;
        int i, err = 0, qid;
 
-       if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
+       if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK) || !priv->xdp_prog)
                return -EINVAL;
 
+       if (!gve_get_napi_enabled(priv))
+               return -ENETDOWN;
+
        qid = gve_xdp_tx_queue_id(priv,
                                  smp_processor_id() % priv->num_xdp_queues);