forked from OISF/suricata
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dpdk/rss: add rte_flow_rss support for mlx5
mlx5 driver uses only one generic rte_flow rss rule to match all traffic Ticket: 7337
- Loading branch information
Adam Kiripolsky
authored and
Adam Kiripolsky
committed
Dec 19, 2024
1 parent
fb3193b
commit 711cd9c
Showing
5 changed files
with
119 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* Copyright (C) 2024 Open Information Security Foundation | ||
* | ||
* You can copy, redistribute or modify this Program under the terms of | ||
* the GNU General Public License version 2 as published by the Free | ||
* Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* version 2 along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
/** | ||
* \defgroup dpdk DPDK NVIDIA mlx5 driver helpers functions | ||
* | ||
* @{ | ||
*/ | ||
|
||
/** | ||
* \file | ||
* | ||
* \author Adam Kiripolsky <adam.kiripolsky@cesnet.cz> | ||
* | ||
* DPDK driver's helper functions | ||
* | ||
*/ | ||
|
||
#include "util-debug.h" | ||
#include "util-dpdk.h" | ||
#include "util-dpdk-bonding.h" | ||
#include "util-dpdk-mlx5.h" | ||
#include "util-dpdk-rss.h" | ||
|
||
#ifdef HAVE_DPDK | ||
|
||
#define MLX5_RSS_HKEY_LEN 40 | ||
|
||
int mlx5DeviceSetRSS(int port_id, int nb_rx_queues, char *port_name) | ||
{ | ||
uint16_t queues[RTE_MAX_QUEUES_PER_PORT]; | ||
struct rte_flow_error flush_error = { 0 }; | ||
struct rte_eth_rss_conf rss_conf = { | ||
.rss_key = RSS_HKEY, | ||
.rss_key_len = MLX5_RSS_HKEY_LEN, | ||
}; | ||
|
||
if (nb_rx_queues < 1) { | ||
FatalError("The number of queues for RSS configuration must be " | ||
"configured with a positive number"); | ||
} | ||
|
||
struct rte_flow_action_rss rss_action_conf = DeviceInitRSSAction( | ||
rss_conf, nb_rx_queues, queues, RTE_ETH_HASH_FUNCTION_TOEPLITZ, true); | ||
|
||
int retval = DeviceCreateRSSFlowGeneric(port_id, port_name, rss_action_conf); | ||
if (retval != 0) { | ||
retval = rte_flow_flush(port_id, &flush_error); | ||
if (retval != 0) { | ||
SCLogError("Unable to flush rte_flow rules of %s: %s Flush error msg: %s", port_name, | ||
rte_strerror(-retval), flush_error.message); | ||
} | ||
return retval; | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
#endif /* HAVE_DPDK */ | ||
/** | ||
* @} | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* Copyright (C) 2024 Open Information Security Foundation | ||
* | ||
* You can copy, redistribute or modify this Program under the terms of | ||
* the GNU General Public License version 2 as published by the Free | ||
* Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* version 2 along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
/** | ||
* \file | ||
* | ||
* \author Adam Kiripolsky <adam.kiripolsky@cesnet.cz> | ||
*/ | ||
|
||
#ifndef UTIL_DPDK_MLX5_H | ||
#define UTIL_DPDK_MLX5_H | ||
|
||
#include "suricata-common.h" | ||
|
||
#ifdef HAVE_DPDK | ||
|
||
int mlx5DeviceSetRSS(int port_id, int nb_rx_queues, char *port_name); | ||
|
||
#endif /* HAVE_DPDK */ | ||
|
||
#endif /* UTIL_DPDK_MLX5_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters