* [PATCH] net/mlx5: fix flow null ops seg fault
@ 2025-02-14 10:05 Kevin Traynor
2025-02-18 11:04 ` Dariusz Sosnowski
0 siblings, 1 reply; 2+ messages in thread
From: Kevin Traynor @ 2025-02-14 10:05 UTC (permalink / raw)
To: dev; +Cc: dsosnowski, mkashani, rasland, orika, Kevin Traynor, stable
flow null driver ops may get selected and try to call .list_create
causing a seg fault.
Full details and back traces in bugzilla.
Add a null ops implementation for .list_create.
Bugzilla ID: 1661
Fixes: e38776c36c8a ("net/mlx5: introduce HWS for non-template flow API")
Cc: stable@dpdk.org
Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
---
drivers/net/mlx5/mlx5_flow.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c
index a2ee237841..3fbe89a9d4 100644
--- a/drivers/net/mlx5/mlx5_flow.c
+++ b/drivers/net/mlx5/mlx5_flow.c
@@ -4032,4 +4032,18 @@ mlx5_flow_validate_item_nsh(struct rte_eth_dev *dev,
}
+static uintptr_t
+flow_null_list_create(struct rte_eth_dev *dev __rte_unused,
+ enum mlx5_flow_type type __rte_unused,
+ const struct rte_flow_attr *attr __rte_unused,
+ const struct rte_flow_item items[] __rte_unused,
+ const struct rte_flow_action actions[] __rte_unused,
+ bool external __rte_unused,
+ struct rte_flow_error *error)
+{
+ rte_flow_error_set(error, ENOTSUP,
+ RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
+ return 0;
+}
+
static int
flow_null_validate(struct rte_eth_dev *dev __rte_unused,
@@ -4151,4 +4165,5 @@ flow_null_counter_query(struct rte_eth_dev *dev,
/* Void driver to protect from null pointer reference. */
const struct mlx5_flow_driver_ops mlx5_flow_null_drv_ops = {
+ .list_create = flow_null_list_create,
.validate = flow_null_validate,
.prepare = flow_null_prepare,
--
2.48.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* RE: [PATCH] net/mlx5: fix flow null ops seg fault
2025-02-14 10:05 [PATCH] net/mlx5: fix flow null ops seg fault Kevin Traynor
@ 2025-02-18 11:04 ` Dariusz Sosnowski
0 siblings, 0 replies; 2+ messages in thread
From: Dariusz Sosnowski @ 2025-02-18 11:04 UTC (permalink / raw)
To: Kevin Traynor, dev; +Cc: Maayan Kashani, Raslan Darawsheh, Ori Kam, stable
> -----Original Message-----
> From: Kevin Traynor <ktraynor@redhat.com>
> Sent: Friday, February 14, 2025 11:06
> To: dev@dpdk.org
> Cc: Dariusz Sosnowski <dsosnowski@nvidia.com>; Maayan Kashani
> <mkashani@nvidia.com>; Raslan Darawsheh <rasland@nvidia.com>; Ori Kam
> <orika@nvidia.com>; Kevin Traynor <ktraynor@redhat.com>; stable@dpdk.org
> Subject: [PATCH] net/mlx5: fix flow null ops seg fault
>
> External email: Use caution opening links or attachments
>
>
> flow null driver ops may get selected and try to call .list_create causing a seg fault.
>
> Full details and back traces in bugzilla.
>
> Add a null ops implementation for .list_create.
>
> Bugzilla ID: 1661
> Fixes: e38776c36c8a ("net/mlx5: introduce HWS for non-template flow API")
> Cc: stable@dpdk.org
>
> Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
For segfault fix:
Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>
Regarding why null ops where selected here, let's continue on Bugzilla.
Best regards,
Dariusz Sosnowski
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-02-18 11:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-14 10:05 [PATCH] net/mlx5: fix flow null ops seg fault Kevin Traynor
2025-02-18 11:04 ` Dariusz Sosnowski
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).