* [PATCH] net/bnxt: fix crash caused by error recovery
@ 2021-11-19 3:50 Somnath Kotur
2021-11-19 6:07 ` Ajit Khaparde
0 siblings, 1 reply; 2+ messages in thread
From: Somnath Kotur @ 2021-11-19 3:50 UTC (permalink / raw)
To: dev; +Cc: ferruh.yigit, Somnath Kotur, Ajit Khaparde
bnxt_stop_rxtx() does not stop data path processing as intended
as it does not update the recently introduced fast-path pointers
'(struct rte_eth_fp_ops)->rx_pkt_burst'. Since both the burst routines
only use the fast-path pointer, the real burst routines get invoked
instead of the dummy ones set by bnxt_stop_rxtx() leading to crashes
in the data path (e.g. dereferencing freed structures)
Fix the segfault by updating the fast-path pointer as well
Fixes: c87d435a4d79 ("ethdev: copy fast-path API into separate structure")
Signed-off-by: Somnath Kotur <somnath.kotur@broadcom.com>
Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
---
drivers/net/bnxt/bnxt_cpr.c | 9 +++++++++
drivers/net/bnxt/bnxt_ethdev.c | 7 ++++++-
2 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/drivers/net/bnxt/bnxt_cpr.c b/drivers/net/bnxt/bnxt_cpr.c
index 6bb70d516e..a43b22a8f8 100644
--- a/drivers/net/bnxt/bnxt_cpr.c
+++ b/drivers/net/bnxt/bnxt_cpr.c
@@ -387,4 +387,13 @@ void bnxt_stop_rxtx(struct bnxt *bp)
{
bp->eth_dev->rx_pkt_burst = &bnxt_dummy_recv_pkts;
bp->eth_dev->tx_pkt_burst = &bnxt_dummy_xmit_pkts;
+
+ rte_eth_fp_ops[bp->eth_dev->data->port_id].rx_pkt_burst =
+ bp->eth_dev->rx_pkt_burst;
+ rte_eth_fp_ops[bp->eth_dev->data->port_id].tx_pkt_burst =
+ bp->eth_dev->tx_pkt_burst;
+ rte_mb();
+
+ /* Allow time for threads to exit the real burst functions. */
+ rte_delay_ms(100);
}
diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c
index 4413b5d72e..c1bdf9a921 100644
--- a/drivers/net/bnxt/bnxt_ethdev.c
+++ b/drivers/net/bnxt/bnxt_ethdev.c
@@ -4323,6 +4323,8 @@ static void bnxt_dev_recover(void *arg)
/* Clear Error flag so that device re-init should happen */
bp->flags &= ~BNXT_FLAG_FATAL_ERROR;
+ PMD_DRV_LOG(INFO, "Port: %u Starting recovery...\n",
+ bp->eth_dev->data->port_id);
rc = bnxt_check_fw_ready(bp);
if (rc)
@@ -4347,7 +4349,8 @@ static void bnxt_dev_recover(void *arg)
if (rc)
goto err_start;
- PMD_DRV_LOG(INFO, "Recovered from FW reset\n");
+ PMD_DRV_LOG(INFO, "Port: %u Recovered from FW reset\n",
+ bp->eth_dev->data->port_id);
pthread_mutex_unlock(&bp->err_recovery_lock);
return;
@@ -4372,6 +4375,8 @@ void bnxt_dev_reset_and_resume(void *arg)
int rc;
bnxt_dev_cleanup(bp);
+ PMD_DRV_LOG(INFO, "Port: %u Finished bnxt_dev_cleanup\n",
+ bp->eth_dev->data->port_id);
bnxt_wait_for_device_shutdown(bp);
--
2.28.0.497.g54e85e7
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] net/bnxt: fix crash caused by error recovery
2021-11-19 3:50 [PATCH] net/bnxt: fix crash caused by error recovery Somnath Kotur
@ 2021-11-19 6:07 ` Ajit Khaparde
0 siblings, 0 replies; 2+ messages in thread
From: Ajit Khaparde @ 2021-11-19 6:07 UTC (permalink / raw)
To: Somnath Kotur; +Cc: dpdk-dev, Ferruh Yigit
On Thu, Nov 18, 2021 at 7:57 PM Somnath Kotur
<somnath.kotur@broadcom.com> wrote:
>
> bnxt_stop_rxtx() does not stop data path processing as intended
> as it does not update the recently introduced fast-path pointers
> '(struct rte_eth_fp_ops)->rx_pkt_burst'. Since both the burst routines
> only use the fast-path pointer, the real burst routines get invoked
> instead of the dummy ones set by bnxt_stop_rxtx() leading to crashes
> in the data path (e.g. dereferencing freed structures)
>
> Fix the segfault by updating the fast-path pointer as well
>
> Fixes: c87d435a4d79 ("ethdev: copy fast-path API into separate structure")
>
> Signed-off-by: Somnath Kotur <somnath.kotur@broadcom.com>
> Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
Patch applied to dpdk-next-net-brcm.
> ---
> drivers/net/bnxt/bnxt_cpr.c | 9 +++++++++
> drivers/net/bnxt/bnxt_ethdev.c | 7 ++++++-
> 2 files changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/bnxt/bnxt_cpr.c b/drivers/net/bnxt/bnxt_cpr.c
> index 6bb70d516e..a43b22a8f8 100644
> --- a/drivers/net/bnxt/bnxt_cpr.c
> +++ b/drivers/net/bnxt/bnxt_cpr.c
> @@ -387,4 +387,13 @@ void bnxt_stop_rxtx(struct bnxt *bp)
> {
> bp->eth_dev->rx_pkt_burst = &bnxt_dummy_recv_pkts;
> bp->eth_dev->tx_pkt_burst = &bnxt_dummy_xmit_pkts;
> +
> + rte_eth_fp_ops[bp->eth_dev->data->port_id].rx_pkt_burst =
> + bp->eth_dev->rx_pkt_burst;
> + rte_eth_fp_ops[bp->eth_dev->data->port_id].tx_pkt_burst =
> + bp->eth_dev->tx_pkt_burst;
> + rte_mb();
> +
> + /* Allow time for threads to exit the real burst functions. */
> + rte_delay_ms(100);
> }
> diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c
> index 4413b5d72e..c1bdf9a921 100644
> --- a/drivers/net/bnxt/bnxt_ethdev.c
> +++ b/drivers/net/bnxt/bnxt_ethdev.c
> @@ -4323,6 +4323,8 @@ static void bnxt_dev_recover(void *arg)
>
> /* Clear Error flag so that device re-init should happen */
> bp->flags &= ~BNXT_FLAG_FATAL_ERROR;
> + PMD_DRV_LOG(INFO, "Port: %u Starting recovery...\n",
> + bp->eth_dev->data->port_id);
>
> rc = bnxt_check_fw_ready(bp);
> if (rc)
> @@ -4347,7 +4349,8 @@ static void bnxt_dev_recover(void *arg)
> if (rc)
> goto err_start;
>
> - PMD_DRV_LOG(INFO, "Recovered from FW reset\n");
> + PMD_DRV_LOG(INFO, "Port: %u Recovered from FW reset\n",
> + bp->eth_dev->data->port_id);
> pthread_mutex_unlock(&bp->err_recovery_lock);
>
> return;
> @@ -4372,6 +4375,8 @@ void bnxt_dev_reset_and_resume(void *arg)
> int rc;
>
> bnxt_dev_cleanup(bp);
> + PMD_DRV_LOG(INFO, "Port: %u Finished bnxt_dev_cleanup\n",
> + bp->eth_dev->data->port_id);
>
> bnxt_wait_for_device_shutdown(bp);
>
> --
> 2.28.0.497.g54e85e7
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-11-19 6:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-19 3:50 [PATCH] net/bnxt: fix crash caused by error recovery Somnath Kotur
2021-11-19 6:07 ` Ajit Khaparde
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).