net/gve: fix pointers dereference before null check

Message ID 20221031050516.2289622-1-junfeng.guo@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers
Series net/gve: fix pointers dereference before null check |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-intel-Functional success Functional Testing PASS
ci/iol-aarch64-unit-testing success Testing PASS
ci/github-robot: build fail github build: failed
ci/iol-aarch64-compile-testing success Testing PASS
ci/iol-x86_64-unit-testing success Testing PASS
ci/iol-x86_64-compile-testing success Testing PASS

Commit Message

Junfeng Guo Oct. 31, 2022, 5:05 a.m. UTC
  The pointers 'rxq' and 'txq' are dereferenced before the null check.
Fixed the logic in this patch.

Fixes: 4bec2d0b5572 ("net/gve: support queue operations")

Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
---
 drivers/net/gve/gve_rx.c | 3 ++-
 drivers/net/gve/gve_tx.c | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)
  

Comments

Ferruh Yigit Oct. 31, 2022, 1:40 p.m. UTC | #1
On 10/31/2022 5:05 AM, Junfeng Guo wrote:

> 
> The pointers 'rxq' and 'txq' are dereferenced before the null check.
> Fixed the logic in this patch.
> 
> Fixes: 4bec2d0b5572 ("net/gve: support queue operations")
> 
> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>

Reviewed-by: Ferruh Yigit <ferruh.yigit@amd.com>

Applied to dpdk-next-net/main, thanks.
  

Patch

diff --git a/drivers/net/gve/gve_rx.c b/drivers/net/gve/gve_rx.c
index ea397d68fa..4c5b8c517d 100644
--- a/drivers/net/gve/gve_rx.c
+++ b/drivers/net/gve/gve_rx.c
@@ -150,7 +150,7 @@  gve_rx_burst(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
 static inline void
 gve_reset_rxq(struct gve_rx_queue *rxq)
 {
-	struct rte_mbuf **sw_ring = rxq->sw_ring;
+	struct rte_mbuf **sw_ring;
 	uint32_t size, i;
 
 	if (rxq == NULL) {
@@ -166,6 +166,7 @@  gve_reset_rxq(struct gve_rx_queue *rxq)
 	for (i = 0; i < size; i++)
 		((volatile char *)rxq->rx_data_ring)[i] = 0;
 
+	sw_ring = rxq->sw_ring;
 	for (i = 0; i < rxq->nb_rx_desc; i++)
 		sw_ring[i] = NULL;
 
diff --git a/drivers/net/gve/gve_tx.c b/drivers/net/gve/gve_tx.c
index cd0bdaa2ad..4420a17192 100644
--- a/drivers/net/gve/gve_tx.c
+++ b/drivers/net/gve/gve_tx.c
@@ -463,7 +463,7 @@  gve_tx_burst(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
 static inline void
 gve_reset_txq(struct gve_tx_queue *txq)
 {
-	struct rte_mbuf **sw_ring = txq->sw_ring;
+	struct rte_mbuf **sw_ring;
 	uint32_t size, i;
 
 	if (txq == NULL) {
@@ -475,6 +475,7 @@  gve_reset_txq(struct gve_tx_queue *txq)
 	for (i = 0; i < size; i++)
 		((volatile char *)txq->tx_desc_ring)[i] = 0;
 
+	sw_ring = txq->sw_ring;
 	for (i = 0; i < txq->nb_tx_desc; i++) {
 		sw_ring[i] = NULL;
 		if (txq->is_gqi_qpl) {