57 #define ROUNDUP(x, y) ((((x) + ((y)-1)) / (y)) * (y))
68 static char *AllocArgument(
size_t arg_len);
69 static char *AllocAndSetArgument(
const char *arg);
70 static char *AllocAndSetOption(
const char *arg);
72 static void ArgumentsInit(
struct Arguments *args,
unsigned capacity);
73 static void ArgumentsCleanup(
struct Arguments *args);
74 static void ArgumentsAdd(
struct Arguments *args,
char *value);
75 static void ArgumentsAddOptionAndArgument(
struct Arguments *args,
const char *opt,
const char *arg);
76 static void InitEal(
void);
78 static void ConfigSetIface(
DPDKIfaceConfig *iconf,
const char *entry_str);
79 static int ConfigSetThreads(
DPDKIfaceConfig *iconf,
const char *entry_str);
80 static int ConfigSetRxQueues(
DPDKIfaceConfig *iconf, uint16_t nb_queues);
81 static int ConfigSetTxQueues(
DPDKIfaceConfig *iconf, uint16_t nb_queues);
82 static int ConfigSetMempoolSize(
DPDKIfaceConfig *iconf, intmax_t entry_int);
83 static int ConfigSetMempoolCacheSize(
DPDKIfaceConfig *iconf,
const char *entry_str);
84 static int ConfigSetRxDescriptors(
DPDKIfaceConfig *iconf, intmax_t entry_int);
85 static int ConfigSetTxDescriptors(
DPDKIfaceConfig *iconf, intmax_t entry_int);
87 static bool ConfigSetPromiscuousMode(
DPDKIfaceConfig *iconf,
int entry_bool);
89 static int ConfigSetChecksumChecks(
DPDKIfaceConfig *iconf,
int entry_bool);
90 static int ConfigSetChecksumOffload(
DPDKIfaceConfig *iconf,
int entry_bool);
91 static int ConfigSetCopyIface(
DPDKIfaceConfig *iconf,
const char *entry_str);
92 static int ConfigSetCopyMode(
DPDKIfaceConfig *iconf,
const char *entry_str);
93 static int ConfigSetCopyIfaceSettings(
DPDKIfaceConfig *iconf,
const char *iface,
const char *mode);
99 const struct rte_eth_dev_info *dev_info,
struct rte_eth_conf *port_conf);
100 static int DeviceConfigureQueues(
DPDKIfaceConfig *iconf,
const struct rte_eth_dev_info *dev_info,
101 const struct rte_eth_conf *port_conf);
105 static void *ParseDpdkConfigAndConfigureDevice(
const char *iface);
106 static void DPDKDerefConfig(
void *conf);
108 #define DPDK_CONFIG_DEFAULT_THREADS "auto"
109 #define DPDK_CONFIG_DEFAULT_INTERRUPT_MODE false
110 #define DPDK_CONFIG_DEFAULT_MEMPOOL_SIZE 65535
111 #define DPDK_CONFIG_DEFAULT_MEMPOOL_CACHE_SIZE "auto"
112 #define DPDK_CONFIG_DEFAULT_RX_DESCRIPTORS 1024
113 #define DPDK_CONFIG_DEFAULT_TX_DESCRIPTORS 1024
114 #define DPDK_CONFIG_DEFAULT_RSS_HASH_FUNCTIONS RTE_ETH_RSS_IP
115 #define DPDK_CONFIG_DEFAULT_MTU 1500
116 #define DPDK_CONFIG_DEFAULT_PROMISCUOUS_MODE 1
117 #define DPDK_CONFIG_DEFAULT_MULTICAST_MODE 1
118 #define DPDK_CONFIG_DEFAULT_CHECKSUM_VALIDATION 1
119 #define DPDK_CONFIG_DEFAULT_CHECKSUM_VALIDATION_OFFLOAD 1
120 #define DPDK_CONFIG_DEFAULT_VLAN_STRIP 0
121 #define DPDK_CONFIG_DEFAULT_COPY_MODE "none"
122 #define DPDK_CONFIG_DEFAULT_COPY_INTERFACE "none"
126 .irq_mode =
"interrupt-mode",
127 .promisc =
"promisc",
128 .multicast =
"multicast",
129 .checksum_checks =
"checksum-checks",
130 .checksum_checks_offload =
"checksum-checks-offload",
132 .vlan_strip_offload =
"vlan-strip-offload",
133 .rss_hf =
"rss-hash-functions",
134 .mempool_size =
"mempool-size",
135 .mempool_cache_size =
"mempool-cache-size",
136 .rx_descriptors =
"rx-descriptors",
137 .tx_descriptors =
"tx-descriptors",
138 .copy_mode =
"copy-mode",
139 .copy_iface =
"copy-iface",
142 static int GreatestDivisorUpTo(uint32_t num, uint32_t max_num)
144 for (
int i = max_num; i >= 2; i--) {
152 static char *AllocArgument(
size_t arg_len)
158 ptr = (
char *)
SCCalloc(arg_len,
sizeof(
char));
160 FatalError(
"Could not allocate memory for an argument");
170 static char *AllocAndSetArgument(
const char *arg)
174 FatalError(
"Passed argument is NULL in DPDK config initialization");
177 size_t arg_len = strlen(arg);
179 ptr = AllocArgument(arg_len);
180 strlcpy(ptr, arg, arg_len + 1);
184 static char *AllocAndSetOption(
const char *arg)
188 FatalError(
"Passed option is NULL in DPDK config initialization");
191 size_t arg_len = strlen(arg);
192 uint8_t is_long_arg = arg_len > 1;
193 const char *dash_prefix = is_long_arg ?
"--" :
"-";
194 size_t full_len = arg_len + strlen(dash_prefix);
196 ptr = AllocArgument(full_len);
197 strlcpy(ptr, dash_prefix, strlen(dash_prefix) + 1);
198 strlcat(ptr, arg, full_len + 1);
202 static void ArgumentsInit(
struct Arguments *args,
unsigned capacity)
205 args->argv =
SCCalloc(capacity,
sizeof(*args->argv));
206 if (args->argv == NULL)
207 FatalError(
"Could not allocate memory for Arguments structure");
209 args->capacity = capacity;
214 static void ArgumentsCleanup(
struct Arguments *args)
217 for (
int i = 0; i < args->argc; i++) {
218 if (args->argv[i] != NULL) {
220 args->argv[i] = NULL;
230 static void ArgumentsAdd(
struct Arguments *args,
char *value)
233 if (args->argc + 1 > args->capacity)
234 FatalError(
"No capacity for more arguments (Max: %" PRIu32
")", EAL_ARGS);
236 args->argv[args->argc++] = value;
240 static void ArgumentsAddOptionAndArgument(
struct Arguments *args,
const char *opt,
const char *arg)
246 option = AllocAndSetOption(opt);
247 ArgumentsAdd(args, option);
250 if (arg == NULL || arg[0] ==
'\0')
253 argument = AllocAndSetArgument(arg);
254 ArgumentsAdd(args, argument);
258 static void InitEal(
void)
264 struct Arguments args;
267 if (eal_params == NULL) {
268 FatalError(
"DPDK EAL parameters not found in the config");
271 ArgumentsInit(&args, EAL_ARGS);
272 ArgumentsAdd(&args, AllocAndSetArgument(
"suricata"));
276 const char *key = param->
name;
279 ArgumentsAddOptionAndArgument(&args, key, (
const char *)val->
val);
283 ArgumentsAddOptionAndArgument(&args, param->
name, param->
val);
287 eal_argv =
SCCalloc(args.argc,
sizeof(*args.argv));
288 if (eal_argv == NULL) {
289 FatalError(
"Failed to allocate memory for the array of DPDK EAL arguments");
291 memcpy(eal_argv, args.argv, args.argc *
sizeof(*args.argv));
293 rte_log_set_global_level(RTE_LOG_WARNING);
294 retval = rte_eal_init(args.argc, eal_argv);
296 ArgumentsCleanup(&args);
300 FatalError(
"DPDK EAL initialization error: %s", rte_strerror(-retval));
304 static void DPDKDerefConfig(
void *conf)
310 if (iconf->pkt_mempool != NULL) {
311 rte_mempool_free(iconf->pkt_mempool);
325 FatalError(
"Could not allocate memory for DPDKIfaceConfig");
327 ptr->pkt_mempool = NULL;
328 ptr->out_port_id = -1;
331 ptr->DerefFunc = DPDKDerefConfig;
338 static void ConfigSetIface(
DPDKIfaceConfig *iconf,
const char *entry_str)
343 if (entry_str == NULL || entry_str[0] ==
'\0')
344 FatalError(
"Interface name in DPDK config is NULL or empty");
346 retval = rte_eth_dev_get_port_by_name(entry_str, &iconf->port_id);
348 FatalError(
"%s: interface not found: %s", entry_str, rte_strerror(-retval));
350 strlcpy(iconf->iface, entry_str,
sizeof(iconf->iface));
354 static int ConfigSetThreads(
DPDKIfaceConfig *iconf,
const char *entry_str)
357 static int32_t remaining_auto_cpus = -1;
359 SCLogError(
"DPDK runmode requires configured thread affinity");
365 SCLogError(
"Specify worker-cpu-set list in the threading section");
370 SCLogError(
"Specify management-cpu-set list in the threading section");
376 "\"all\" specified in worker CPU cores affinity, excluding management threads");
377 UtilAffinityCpusExclude(wtaf, mtaf);
381 if (sched_cpus == 0) {
382 SCLogError(
"No worker CPU cores with configured affinity were configured");
384 }
else if (UtilAffinityCpusOverlap(wtaf, mtaf) != 0) {
385 SCLogWarning(
"Worker threads should not overlap with management threads in the CPU core "
386 "affinity configuration");
390 if (active_runmode && !strcmp(
"single", active_runmode)) {
395 if (entry_str == NULL) {
396 SCLogError(
"Number of threads for interface \"%s\" not specified", iconf->iface);
400 if (strcmp(entry_str,
"auto") == 0) {
402 if (iconf->threads == 0) {
403 SCLogError(
"Not enough worker CPU cores with affinity were configured");
407 if (remaining_auto_cpus > 0) {
409 remaining_auto_cpus--;
410 }
else if (remaining_auto_cpus == -1) {
412 if (remaining_auto_cpus > 0) {
414 remaining_auto_cpus--;
417 SCLogConfig(
"%s: auto-assigned %u threads", iconf->iface, iconf->threads);
422 SCLogError(
"Threads entry for interface %s contain non-numerical characters - \"%s\"",
423 iconf->iface, entry_str);
427 if (iconf->threads <= 0) {
428 SCLogError(
"%s: positive number of threads required", iconf->iface);
435 static bool ConfigSetInterruptMode(
DPDKIfaceConfig *iconf,
bool enable)
444 static int ConfigSetRxQueues(
DPDKIfaceConfig *iconf, uint16_t nb_queues)
447 iconf->nb_rx_queues = nb_queues;
448 if (iconf->nb_rx_queues < 1) {
449 SCLogError(
"%s: positive number of RX queues is required", iconf->iface);
456 static int ConfigSetTxQueues(
DPDKIfaceConfig *iconf, uint16_t nb_queues)
459 iconf->nb_tx_queues = nb_queues;
460 if (iconf->nb_tx_queues < 1) {
461 SCLogError(
"%s: positive number of TX queues is required", iconf->iface);
468 static int ConfigSetMempoolSize(
DPDKIfaceConfig *iconf, intmax_t entry_int)
471 if (entry_int <= 0) {
472 SCLogError(
"%s: positive memory pool size is required", iconf->iface);
474 }
else if (entry_int > UINT32_MAX) {
475 SCLogError(
"%s: memory pool size cannot exceed %" PRIu32, iconf->iface, UINT32_MAX);
479 iconf->mempool_size = entry_int;
483 static int ConfigSetMempoolCacheSize(
DPDKIfaceConfig *iconf,
const char *entry_str)
486 if (entry_str == NULL || entry_str[0] ==
'\0' || strcmp(entry_str,
"auto") == 0) {
491 if (iconf->mempool_size == 0) {
492 SCLogError(
"%s: cannot calculate mempool cache size of a mempool with size %d",
493 iconf->iface, iconf->mempool_size);
497 uint32_t max_cache_size =
MIN(RTE_MEMPOOL_CACHE_MAX_SIZE, iconf->mempool_size / 1.5);
498 iconf->mempool_cache_size = GreatestDivisorUpTo(iconf->mempool_size, max_cache_size);
503 SCLogError(
"%s: mempool cache size entry contain non-numerical characters - \"%s\"",
504 iconf->iface, entry_str);
508 if (iconf->mempool_cache_size <= 0 || iconf->mempool_cache_size > RTE_MEMPOOL_CACHE_MAX_SIZE) {
509 SCLogError(
"%s: mempool cache size requires a positive number smaller than %" PRIu32,
510 iconf->iface, RTE_MEMPOOL_CACHE_MAX_SIZE);
517 static int ConfigSetRxDescriptors(
DPDKIfaceConfig *iconf, intmax_t entry_int)
520 if (entry_int <= 0) {
521 SCLogError(
"%s: positive number of RX descriptors is required", iconf->iface);
523 }
else if (entry_int > UINT16_MAX) {
524 SCLogError(
"%s: number of RX descriptors cannot exceed %" PRIu16, iconf->iface, UINT16_MAX);
528 iconf->nb_rx_desc = entry_int;
532 static int ConfigSetTxDescriptors(
DPDKIfaceConfig *iconf, intmax_t entry_int)
535 if (entry_int <= 0) {
536 SCLogError(
"%s: positive number of TX descriptors is required", iconf->iface);
538 }
else if (entry_int > UINT16_MAX) {
539 SCLogError(
"%s: number of TX descriptors cannot exceed %" PRIu16, iconf->iface, UINT16_MAX);
543 iconf->nb_tx_desc = entry_int;
547 static int ConfigSetRSSHashFunctions(
DPDKIfaceConfig *iconf,
const char *entry_str)
550 if (entry_str == NULL || entry_str[0] ==
'\0' || strcmp(entry_str,
"auto") == 0) {
551 iconf->rss_hf = DPDK_CONFIG_DEFAULT_RSS_HASH_FUNCTIONS;
556 SCLogError(
"%s: RSS hash functions entry contain non-numerical characters - \"%s\"",
557 iconf->iface, entry_str);
567 if (entry_int < RTE_ETHER_MIN_MTU || entry_int > RTE_ETHER_MAX_JUMBO_FRAME_LEN) {
568 SCLogError(
"%s: MTU size can only be between %" PRIu32
" and %" PRIu32, iconf->iface,
569 RTE_ETHER_MIN_MTU, RTE_ETHER_MAX_JUMBO_FRAME_LEN);
573 iconf->mtu = entry_int;
577 static bool ConfigSetPromiscuousMode(
DPDKIfaceConfig *iconf,
int entry_bool)
595 static int ConfigSetChecksumChecks(
DPDKIfaceConfig *iconf,
int entry_bool)
604 static int ConfigSetChecksumOffload(
DPDKIfaceConfig *iconf,
int entry_bool)
616 iconf->vlan_strip_enabled = entry_bool;
620 static int ConfigSetCopyIface(
DPDKIfaceConfig *iconf,
const char *entry_str)
625 if (entry_str == NULL || entry_str[0] ==
'\0' || strcmp(entry_str,
"none") == 0) {
626 iconf->out_iface = NULL;
630 retval = rte_eth_dev_get_port_by_name(entry_str, &iconf->out_port_id);
632 SCLogError(
"%s: copy interface (%s) not found: %s", iconf->iface, entry_str,
633 rte_strerror(-retval));
637 iconf->out_iface = entry_str;
641 static int ConfigSetCopyMode(
DPDKIfaceConfig *iconf,
const char *entry_str)
644 if (entry_str == NULL) {
645 SCLogWarning(
"%s: no copy mode specified, changing to %s ", iconf->iface,
646 DPDK_CONFIG_DEFAULT_COPY_MODE);
647 entry_str = DPDK_CONFIG_DEFAULT_COPY_MODE;
650 if (strcmp(entry_str,
"none") != 0 && strcmp(entry_str,
"tap") != 0 &&
651 strcmp(entry_str,
"ips") != 0) {
652 SCLogWarning(
"%s: copy mode \"%s\" is not one of the possible values (none|tap|ips). "
654 entry_str, iconf->iface, DPDK_CONFIG_DEFAULT_COPY_MODE);
655 entry_str = DPDK_CONFIG_DEFAULT_COPY_MODE;
658 if (strcmp(entry_str,
"none") == 0) {
660 }
else if (strcmp(entry_str,
"tap") == 0) {
662 }
else if (strcmp(entry_str,
"ips") == 0) {
669 static int ConfigSetCopyIfaceSettings(
DPDKIfaceConfig *iconf,
const char *iface,
const char *mode)
674 retval = ConfigSetCopyIface(iconf, iface);
678 retval = ConfigSetCopyMode(iconf, mode);
683 if (iconf->out_iface != NULL)
684 iconf->out_iface = NULL;
688 if (iconf->out_iface == NULL || strlen(iconf->out_iface) <= 0) {
689 SCLogError(
"%s: copy mode enabled but interface not set", iconf->iface);
702 const char *entry_str = NULL;
703 intmax_t entry_int = 0;
705 const char *copy_iface_str = NULL;
706 const char *copy_mode_str = NULL;
708 ConfigSetIface(iconf, iface);
712 FatalError(
"failed to find DPDK configuration for the interface %s", iconf->iface);
716 ? ConfigSetThreads(iconf, DPDK_CONFIG_DEFAULT_THREADS)
717 : ConfigSetThreads(iconf, entry_str);
724 irq_enable = DPDK_CONFIG_DEFAULT_INTERRUPT_MODE;
726 irq_enable = entry_bool ? true :
false;
728 retval = ConfigSetInterruptMode(iconf, irq_enable);
733 retval = ConfigSetRxQueues(iconf, (uint16_t)iconf->threads);
738 retval = ConfigSetTxQueues(iconf, (uint16_t)iconf->threads);
743 if_root, if_default, dpdk_yaml.
mempool_size, &entry_int) != 1
744 ? ConfigSetMempoolSize(iconf, DPDK_CONFIG_DEFAULT_MEMPOOL_SIZE)
745 : ConfigSetMempoolSize(iconf, entry_int);
751 ? ConfigSetMempoolCacheSize(iconf, DPDK_CONFIG_DEFAULT_MEMPOOL_CACHE_SIZE)
752 : ConfigSetMempoolCacheSize(iconf, entry_str);
758 ? ConfigSetRxDescriptors(iconf, DPDK_CONFIG_DEFAULT_RX_DESCRIPTORS)
759 : ConfigSetRxDescriptors(iconf, entry_int);
765 ? ConfigSetTxDescriptors(iconf, DPDK_CONFIG_DEFAULT_TX_DESCRIPTORS)
766 : ConfigSetTxDescriptors(iconf, entry_int);
771 ? ConfigSetMtu(iconf, DPDK_CONFIG_DEFAULT_MTU)
772 : ConfigSetMtu(iconf, entry_int);
777 ? ConfigSetRSSHashFunctions(iconf, NULL)
778 : ConfigSetRSSHashFunctions(iconf, entry_str);
783 if_root, if_default, dpdk_yaml.
promisc, &entry_bool) != 1
784 ? ConfigSetPromiscuousMode(iconf, DPDK_CONFIG_DEFAULT_PROMISCUOUS_MODE)
785 : ConfigSetPromiscuousMode(iconf, entry_bool);
790 if_root, if_default, dpdk_yaml.
multicast, &entry_bool) != 1
791 ? ConfigSetMulticast(iconf, DPDK_CONFIG_DEFAULT_MULTICAST_MODE)
792 : ConfigSetMulticast(iconf, entry_bool);
798 ? ConfigSetChecksumChecks(iconf, DPDK_CONFIG_DEFAULT_CHECKSUM_VALIDATION)
799 : ConfigSetChecksumChecks(iconf, entry_bool);
805 ? ConfigSetChecksumOffload(
806 iconf, DPDK_CONFIG_DEFAULT_CHECKSUM_VALIDATION_OFFLOAD)
807 : ConfigSetChecksumOffload(iconf, entry_bool);
814 ConfigSetVlanStrip(iconf, DPDK_CONFIG_DEFAULT_VLAN_STRIP);
816 ConfigSetVlanStrip(iconf, entry_bool);
826 if_root, if_default, dpdk_yaml.
copy_iface, ©_iface_str);
832 retval = ConfigSetCopyIfaceSettings(iconf, copy_iface_str, copy_mode_str);
839 static int32_t ConfigValidateThreads(uint16_t iface_threads)
841 static uint32_t total_cpus = 0;
842 total_cpus += iface_threads;
845 SCLogError(
"Specify worker-cpu-set list in the threading section");
849 SCLogError(
"Interfaces requested more cores than configured in the threading section "
850 "(requested %d configured %d",
867 retval = ConfigLoad(iconf, iface);
868 if (retval < 0 || ConfigValidateThreads(iconf->threads) != 0) {
869 iconf->DerefFunc(iconf);
876 static void DeviceSetPMDSpecificRSS(
struct rte_eth_rss_conf *rss_conf,
const char *driver_name)
878 if (strcmp(driver_name,
"net_i40e") == 0)
879 i40eDeviceSetRSSConf(rss_conf);
880 if (strcmp(driver_name,
"net_ice") == 0)
881 iceDeviceSetRSSConf(rss_conf);
882 if (strcmp(driver_name,
"net_ixgbe") == 0)
883 ixgbeDeviceSetRSSHashFunction(&rss_conf->rss_hf);
884 if (strcmp(driver_name,
"net_e1000_igb") == 0)
885 rss_conf->rss_hf = (RTE_ETH_RSS_IPV4 | RTE_ETH_RSS_IPV6 | RTE_ETH_RSS_IPV6_EX);
889 static int GetFirstSetBitPosition(uint64_t bits)
891 for (uint64_t i = 0; i < 64; i++) {
898 static void DumpRSSFlags(
const uint64_t requested,
const uint64_t actual)
903 "RTE_ETH_RSS_IP %sset", ((requested & RTE_ETH_RSS_IP) == RTE_ETH_RSS_IP) ?
"" :
"NOT ");
905 ((requested & RTE_ETH_RSS_TCP) == RTE_ETH_RSS_TCP) ?
"" :
"NOT ");
907 ((requested & RTE_ETH_RSS_UDP) == RTE_ETH_RSS_UDP) ?
"" :
"NOT ");
909 ((requested & RTE_ETH_RSS_SCTP) == RTE_ETH_RSS_SCTP) ?
"" :
"NOT ");
911 ((requested & RTE_ETH_RSS_TUNNEL) == RTE_ETH_RSS_TUNNEL) ?
"" :
"NOT ");
914 SCLogConfig(
"RTE_ETH_RSS_IPV4 (Bit position: %d) %sset",
915 GetFirstSetBitPosition(RTE_ETH_RSS_IPV4), (requested & RTE_ETH_RSS_IPV4) ?
"" :
"NOT ");
916 SCLogConfig(
"RTE_ETH_RSS_FRAG_IPV4 (Bit position: %d) %sset",
917 GetFirstSetBitPosition(RTE_ETH_RSS_FRAG_IPV4),
918 (requested & RTE_ETH_RSS_FRAG_IPV4) ?
"" :
"NOT ");
919 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV4_TCP (Bit position: %d) %sset",
920 GetFirstSetBitPosition(RTE_ETH_RSS_NONFRAG_IPV4_TCP),
921 (requested & RTE_ETH_RSS_NONFRAG_IPV4_TCP) ?
"" :
"NOT ");
922 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV4_UDP (Bit position: %d) %sset",
923 GetFirstSetBitPosition(RTE_ETH_RSS_NONFRAG_IPV4_UDP),
924 (requested & RTE_ETH_RSS_NONFRAG_IPV4_UDP) ?
"" :
"NOT ");
925 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV4_SCTP (Bit position: %d) %sset",
926 GetFirstSetBitPosition(RTE_ETH_RSS_NONFRAG_IPV4_SCTP),
927 (requested & RTE_ETH_RSS_NONFRAG_IPV4_SCTP) ?
"" :
"NOT ");
928 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV4_OTHER (Bit position: %d) %sset",
929 GetFirstSetBitPosition(RTE_ETH_RSS_NONFRAG_IPV4_OTHER),
930 (requested & RTE_ETH_RSS_NONFRAG_IPV4_OTHER) ?
"" :
"NOT ");
931 SCLogConfig(
"RTE_ETH_RSS_IPV6 (Bit position: %d) %sset",
932 GetFirstSetBitPosition(RTE_ETH_RSS_IPV6), (requested & RTE_ETH_RSS_IPV6) ?
"" :
"NOT ");
933 SCLogConfig(
"RTE_ETH_RSS_FRAG_IPV6 (Bit position: %d) %sset",
934 GetFirstSetBitPosition(RTE_ETH_RSS_FRAG_IPV6),
935 (requested & RTE_ETH_RSS_FRAG_IPV6) ?
"" :
"NOT ");
936 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV6_TCP (Bit position: %d) %sset",
937 GetFirstSetBitPosition(RTE_ETH_RSS_NONFRAG_IPV6_TCP),
938 (requested & RTE_ETH_RSS_NONFRAG_IPV6_TCP) ?
"" :
"NOT ");
939 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV6_UDP (Bit position: %d) %sset",
940 GetFirstSetBitPosition(RTE_ETH_RSS_NONFRAG_IPV6_UDP),
941 (requested & RTE_ETH_RSS_NONFRAG_IPV6_UDP) ?
"" :
"NOT ");
942 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV6_SCTP (Bit position: %d) %sset",
943 GetFirstSetBitPosition(RTE_ETH_RSS_NONFRAG_IPV6_SCTP),
944 (requested & RTE_ETH_RSS_NONFRAG_IPV6_SCTP) ?
"" :
"NOT ");
945 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV6_OTHER (Bit position: %d) %sset",
946 GetFirstSetBitPosition(RTE_ETH_RSS_NONFRAG_IPV6_OTHER),
947 (requested & RTE_ETH_RSS_NONFRAG_IPV6_OTHER) ?
"" :
"NOT ");
949 SCLogConfig(
"RTE_ETH_RSS_L2_PAYLOAD (Bit position: %d) %sset",
950 GetFirstSetBitPosition(RTE_ETH_RSS_L2_PAYLOAD),
951 (requested & RTE_ETH_RSS_L2_PAYLOAD) ?
"" :
"NOT ");
952 SCLogConfig(
"RTE_ETH_RSS_IPV6_EX (Bit position: %d) %sset",
953 GetFirstSetBitPosition(RTE_ETH_RSS_IPV6_EX),
954 (requested & RTE_ETH_RSS_IPV6_EX) ?
"" :
"NOT ");
955 SCLogConfig(
"RTE_ETH_RSS_IPV6_TCP_EX (Bit position: %d) %sset",
956 GetFirstSetBitPosition(RTE_ETH_RSS_IPV6_TCP_EX),
957 (requested & RTE_ETH_RSS_IPV6_TCP_EX) ?
"" :
"NOT ");
958 SCLogConfig(
"RTE_ETH_RSS_IPV6_UDP_EX (Bit position: %d) %sset",
959 GetFirstSetBitPosition(RTE_ETH_RSS_IPV6_UDP_EX),
960 (requested & RTE_ETH_RSS_IPV6_UDP_EX) ?
"" :
"NOT ");
962 SCLogConfig(
"RTE_ETH_RSS_PORT (Bit position: %d) %sset",
963 GetFirstSetBitPosition(RTE_ETH_RSS_PORT), (requested & RTE_ETH_RSS_PORT) ?
"" :
"NOT ");
964 SCLogConfig(
"RTE_ETH_RSS_VXLAN (Bit position: %d) %sset",
965 GetFirstSetBitPosition(RTE_ETH_RSS_VXLAN),
966 (requested & RTE_ETH_RSS_VXLAN) ?
"" :
"NOT ");
967 SCLogConfig(
"RTE_ETH_RSS_NVGRE (Bit position: %d) %sset",
968 GetFirstSetBitPosition(RTE_ETH_RSS_NVGRE),
969 (requested & RTE_ETH_RSS_NVGRE) ?
"" :
"NOT ");
970 SCLogConfig(
"RTE_ETH_RSS_GTPU (Bit position: %d) %sset",
971 GetFirstSetBitPosition(RTE_ETH_RSS_GTPU), (requested & RTE_ETH_RSS_GTPU) ?
"" :
"NOT ");
973 SCLogConfig(
"RTE_ETH_RSS_L3_SRC_ONLY (Bit position: %d) %sset",
974 GetFirstSetBitPosition(RTE_ETH_RSS_L3_SRC_ONLY),
975 (requested & RTE_ETH_RSS_L3_SRC_ONLY) ?
"" :
"NOT ");
976 SCLogConfig(
"RTE_ETH_RSS_L3_DST_ONLY (Bit position: %d) %sset",
977 GetFirstSetBitPosition(RTE_ETH_RSS_L3_DST_ONLY),
978 (requested & RTE_ETH_RSS_L3_DST_ONLY) ?
"" :
"NOT ");
979 SCLogConfig(
"RTE_ETH_RSS_L4_SRC_ONLY (Bit position: %d) %sset",
980 GetFirstSetBitPosition(RTE_ETH_RSS_L4_SRC_ONLY),
981 (requested & RTE_ETH_RSS_L4_SRC_ONLY) ?
"" :
"NOT ");
982 SCLogConfig(
"RTE_ETH_RSS_L4_DST_ONLY (Bit position: %d) %sset",
983 GetFirstSetBitPosition(RTE_ETH_RSS_L4_DST_ONLY),
984 (requested & RTE_ETH_RSS_L4_DST_ONLY) ?
"" :
"NOT ");
987 "RTE_ETH_RSS_IP %sset", ((actual & RTE_ETH_RSS_IP) == RTE_ETH_RSS_IP) ?
"" :
"NOT ");
989 "RTE_ETH_RSS_TCP %sset", ((actual & RTE_ETH_RSS_TCP) == RTE_ETH_RSS_TCP) ?
"" :
"NOT ");
991 "RTE_ETH_RSS_UDP %sset", ((actual & RTE_ETH_RSS_UDP) == RTE_ETH_RSS_UDP) ?
"" :
"NOT ");
993 ((actual & RTE_ETH_RSS_SCTP) == RTE_ETH_RSS_SCTP) ?
"" :
"NOT ");
995 ((actual & RTE_ETH_RSS_TUNNEL) == RTE_ETH_RSS_TUNNEL) ?
"" :
"NOT ");
998 SCLogConfig(
"RTE_ETH_RSS_IPV4 %sset", (actual & RTE_ETH_RSS_IPV4) ?
"" :
"NOT ");
999 SCLogConfig(
"RTE_ETH_RSS_FRAG_IPV4 %sset", (actual & RTE_ETH_RSS_FRAG_IPV4) ?
"" :
"NOT ");
1001 (actual & RTE_ETH_RSS_NONFRAG_IPV4_TCP) ?
"" :
"NOT ");
1003 (actual & RTE_ETH_RSS_NONFRAG_IPV4_UDP) ?
"" :
"NOT ");
1004 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV4_SCTP %sset",
1005 (actual & RTE_ETH_RSS_NONFRAG_IPV4_SCTP) ?
"" :
"NOT ");
1006 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV4_OTHER %sset",
1007 (actual & RTE_ETH_RSS_NONFRAG_IPV4_OTHER) ?
"" :
"NOT ");
1008 SCLogConfig(
"RTE_ETH_RSS_IPV6 %sset", (actual & RTE_ETH_RSS_IPV6) ?
"" :
"NOT ");
1009 SCLogConfig(
"RTE_ETH_RSS_FRAG_IPV6 %sset", (actual & RTE_ETH_RSS_FRAG_IPV6) ?
"" :
"NOT ");
1011 (actual & RTE_ETH_RSS_NONFRAG_IPV6_TCP) ?
"" :
"NOT ");
1013 (actual & RTE_ETH_RSS_NONFRAG_IPV6_UDP) ?
"" :
"NOT ");
1014 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV6_SCTP %sset",
1015 (actual & RTE_ETH_RSS_NONFRAG_IPV6_SCTP) ?
"" :
"NOT ");
1016 SCLogConfig(
"RTE_ETH_RSS_NONFRAG_IPV6_OTHER %sset",
1017 (actual & RTE_ETH_RSS_NONFRAG_IPV6_OTHER) ?
"" :
"NOT ");
1019 SCLogConfig(
"RTE_ETH_RSS_L2_PAYLOAD %sset", (actual & RTE_ETH_RSS_L2_PAYLOAD) ?
"" :
"NOT ");
1020 SCLogConfig(
"RTE_ETH_RSS_IPV6_EX %sset", (actual & RTE_ETH_RSS_IPV6_EX) ?
"" :
"NOT ");
1021 SCLogConfig(
"RTE_ETH_RSS_IPV6_TCP_EX %sset", (actual & RTE_ETH_RSS_IPV6_TCP_EX) ?
"" :
"NOT ");
1022 SCLogConfig(
"RTE_ETH_RSS_IPV6_UDP_EX %sset", (actual & RTE_ETH_RSS_IPV6_UDP_EX) ?
"" :
"NOT ");
1024 SCLogConfig(
"RTE_ETH_RSS_PORT %sset", (actual & RTE_ETH_RSS_PORT) ?
"" :
"NOT ");
1025 SCLogConfig(
"RTE_ETH_RSS_VXLAN %sset", (actual & RTE_ETH_RSS_VXLAN) ?
"" :
"NOT ");
1026 SCLogConfig(
"RTE_ETH_RSS_NVGRE %sset", (actual & RTE_ETH_RSS_NVGRE) ?
"" :
"NOT ");
1027 SCLogConfig(
"RTE_ETH_RSS_GTPU %sset", (actual & RTE_ETH_RSS_GTPU) ?
"" :
"NOT ");
1029 SCLogConfig(
"RTE_ETH_RSS_L3_SRC_ONLY %sset", (actual & RTE_ETH_RSS_L3_SRC_ONLY) ?
"" :
"NOT ");
1030 SCLogConfig(
"RTE_ETH_RSS_L3_DST_ONLY %sset", (actual & RTE_ETH_RSS_L3_DST_ONLY) ?
"" :
"NOT ");
1031 SCLogConfig(
"RTE_ETH_RSS_L4_SRC_ONLY %sset", (actual & RTE_ETH_RSS_L4_SRC_ONLY) ?
"" :
"NOT ");
1032 SCLogConfig(
"RTE_ETH_RSS_L4_DST_ONLY %sset", (actual & RTE_ETH_RSS_L4_DST_ONLY) ?
"" :
"NOT ");
1035 static void DumpRXOffloadCapabilities(
const uint64_t rx_offld_capa)
1037 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_VLAN_STRIP - %savailable",
1038 rx_offld_capa & RTE_ETH_RX_OFFLOAD_VLAN_STRIP ?
"" :
"NOT ");
1039 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_IPV4_CKSUM - %savailable",
1040 rx_offld_capa & RTE_ETH_RX_OFFLOAD_IPV4_CKSUM ?
"" :
"NOT ");
1041 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_UDP_CKSUM - %savailable",
1042 rx_offld_capa & RTE_ETH_RX_OFFLOAD_UDP_CKSUM ?
"" :
"NOT ");
1043 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_TCP_CKSUM - %savailable",
1044 rx_offld_capa & RTE_ETH_RX_OFFLOAD_TCP_CKSUM ?
"" :
"NOT ");
1045 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_TCP_LRO - %savailable",
1046 rx_offld_capa & RTE_ETH_RX_OFFLOAD_TCP_LRO ?
"" :
"NOT ");
1047 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_QINQ_STRIP - %savailable",
1048 rx_offld_capa & RTE_ETH_RX_OFFLOAD_QINQ_STRIP ?
"" :
"NOT ");
1049 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_OUTER_IPV4_CKSUM - %savailable",
1050 rx_offld_capa & RTE_ETH_RX_OFFLOAD_OUTER_IPV4_CKSUM ?
"" :
"NOT ");
1051 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_MACSEC_STRIP - %savailable",
1052 rx_offld_capa & RTE_ETH_RX_OFFLOAD_MACSEC_STRIP ?
"" :
"NOT ");
1053 #if RTE_VERSION < RTE_VERSION_NUM(22, 11, 0, 0)
1054 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_HEADER_SPLIT - %savailable",
1055 rx_offld_capa & RTE_ETH_RX_OFFLOAD_HEADER_SPLIT ?
"" :
"NOT ");
1057 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_VLAN_FILTER - %savailable",
1058 rx_offld_capa & RTE_ETH_RX_OFFLOAD_VLAN_FILTER ?
"" :
"NOT ");
1059 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_VLAN_EXTEND - %savailable",
1060 rx_offld_capa & RTE_ETH_RX_OFFLOAD_VLAN_EXTEND ?
"" :
"NOT ");
1061 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_SCATTER - %savailable",
1062 rx_offld_capa & RTE_ETH_RX_OFFLOAD_SCATTER ?
"" :
"NOT ");
1063 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_TIMESTAMP - %savailable",
1064 rx_offld_capa & RTE_ETH_RX_OFFLOAD_TIMESTAMP ?
"" :
"NOT ");
1065 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_SECURITY - %savailable",
1066 rx_offld_capa & RTE_ETH_RX_OFFLOAD_SECURITY ?
"" :
"NOT ");
1067 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_KEEP_CRC - %savailable",
1068 rx_offld_capa & RTE_ETH_RX_OFFLOAD_KEEP_CRC ?
"" :
"NOT ");
1069 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_SCTP_CKSUM - %savailable",
1070 rx_offld_capa & RTE_ETH_RX_OFFLOAD_SCTP_CKSUM ?
"" :
"NOT ");
1071 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_OUTER_UDP_CKSUM - %savailable",
1072 rx_offld_capa & RTE_ETH_RX_OFFLOAD_OUTER_UDP_CKSUM ?
"" :
"NOT ");
1073 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_RSS_HASH - %savailable",
1074 rx_offld_capa & RTE_ETH_RX_OFFLOAD_RSS_HASH ?
"" :
"NOT ");
1075 #if RTE_VERSION >= RTE_VERSION_NUM(20, 11, 0, 0)
1076 SCLogConfig(
"RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT - %savailable",
1077 rx_offld_capa & RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT ?
"" :
"NOT ");
1081 static int DeviceValidateMTU(
const DPDKIfaceConfig *iconf,
const struct rte_eth_dev_info *dev_info)
1084 if (iconf->mtu > dev_info->max_mtu || iconf->mtu < dev_info->min_mtu) {
1086 "Min MTU: %" PRIu16
" Max MTU: %" PRIu16,
1087 iconf->iface, dev_info->min_mtu, dev_info->max_mtu);
1091 #if RTE_VERSION < RTE_VERSION_NUM(21, 11, 0, 0)
1093 if (iconf->mtu > RTE_ETHER_MAX_LEN &&
1094 !(dev_info->rx_offload_capa & DEV_RX_OFFLOAD_JUMBO_FRAME)) {
1095 SCLogError(
"%s: jumbo frames not supported, set MTU to 1500", iconf->iface);
1103 static void DeviceSetMTU(
struct rte_eth_conf *port_conf, uint16_t mtu)
1105 #if RTE_VERSION >= RTE_VERSION_NUM(21, 11, 0, 0)
1106 port_conf->rxmode.mtu = mtu;
1108 port_conf->rxmode.max_rx_pkt_len = mtu;
1109 if (mtu > RTE_ETHER_MAX_LEN) {
1110 port_conf->rxmode.offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
1120 static int32_t DeviceSetSocketID(uint16_t port_id, int32_t *socket_id)
1123 int retval = rte_eth_dev_socket_id(port_id);
1124 *socket_id = retval;
1126 #if RTE_VERSION >= RTE_VERSION_NUM(22, 11, 0, 0) // DPDK API changed since 22.11
1127 retval = -rte_errno;
1129 if (retval == SOCKET_ID_ANY)
1136 static void PortConfSetInterruptMode(
const DPDKIfaceConfig *iconf,
struct rte_eth_conf *port_conf)
1138 SCLogConfig(
"%s: interrupt mode is %s", iconf->iface,
1141 port_conf->intr_conf.rxq = 1;
1145 const struct rte_eth_dev_info *dev_info,
struct rte_eth_conf *port_conf)
1147 if (dev_info->rx_offload_capa & RTE_ETH_RX_OFFLOAD_RSS_HASH) {
1148 if (iconf->nb_rx_queues > 1) {
1149 SCLogConfig(
"%s: RSS enabled for %d queues", iconf->iface, iconf->nb_rx_queues);
1150 port_conf->rx_adv_conf.rss_conf = (
struct rte_eth_rss_conf){
1151 .rss_key = RSS_HKEY,
1152 .rss_key_len = RSS_HKEY_LEN,
1153 .rss_hf = iconf->rss_hf,
1156 const char *dev_driver = dev_info->driver_name;
1157 if (strcmp(dev_info->driver_name,
"net_bonding") == 0) {
1158 dev_driver = BondingDeviceDriverGet(iconf->port_id);
1161 DeviceSetPMDSpecificRSS(&port_conf->rx_adv_conf.rss_conf, dev_driver);
1163 uint64_t rss_hf_tmp =
1164 port_conf->rx_adv_conf.rss_conf.rss_hf & dev_info->flow_type_rss_offloads;
1165 if (port_conf->rx_adv_conf.rss_conf.rss_hf != rss_hf_tmp) {
1166 DumpRSSFlags(port_conf->rx_adv_conf.rss_conf.rss_hf, rss_hf_tmp);
1168 SCLogWarning(
"%s: modified RSS hash function based on hardware support: "
1169 "requested:%#" PRIx64
", configured:%#" PRIx64,
1170 iconf->iface, port_conf->rx_adv_conf.rss_conf.rss_hf, rss_hf_tmp);
1171 port_conf->rx_adv_conf.rss_conf.rss_hf = rss_hf_tmp;
1173 port_conf->rxmode.mq_mode = RTE_ETH_MQ_RX_RSS;
1176 port_conf->rx_adv_conf.rss_conf.rss_key = NULL;
1177 port_conf->rx_adv_conf.rss_conf.rss_hf = 0;
1180 SCLogConfig(
"%s: RSS not supported", iconf->iface);
1185 const struct rte_eth_dev_info *dev_info,
struct rte_eth_conf *port_conf)
1188 SCLogConfig(
"%s: checksum validation disabled", iconf->iface);
1189 }
else if ((dev_info->rx_offload_capa & RTE_ETH_RX_OFFLOAD_CHECKSUM) ==
1190 RTE_ETH_RX_OFFLOAD_CHECKSUM) {
1193 SCLogConfig(
"%s: IP, TCP and UDP checksum validation offloaded", iconf->iface);
1194 port_conf->rxmode.offloads |= RTE_ETH_RX_OFFLOAD_CHECKSUM;
1197 SCLogConfig(
"%s: checksum validation enabled (but can be offloaded)", iconf->iface);
1203 const struct rte_eth_dev_info *dev_info,
struct rte_eth_conf *port_conf)
1205 if (iconf->vlan_strip_enabled) {
1206 if (dev_info->rx_offload_capa & RTE_ETH_RX_OFFLOAD_VLAN_STRIP) {
1207 port_conf->rxmode.offloads |= RTE_ETH_RX_OFFLOAD_VLAN_STRIP;
1208 SCLogConfig(
"%s: hardware VLAN stripping enabled", iconf->iface);
1210 SCLogWarning(
"%s: hardware VLAN stripping enabled but not supported, disabling",
1217 const struct rte_eth_dev_info *dev_info,
struct rte_eth_conf *port_conf)
1219 DumpRXOffloadCapabilities(dev_info->rx_offload_capa);
1220 *port_conf = (
struct rte_eth_conf){
1222 .mq_mode = RTE_ETH_MQ_RX_NONE,
1226 .mq_mode = RTE_ETH_MQ_TX_NONE,
1231 PortConfSetInterruptMode(iconf, port_conf);
1234 PortConfSetRSSConf(iconf, dev_info, port_conf);
1235 PortConfSetChsumOffload(iconf, dev_info, port_conf);
1236 DeviceSetMTU(port_conf, iconf->mtu);
1237 PortConfSetVlanOffload(iconf, dev_info, port_conf);
1239 if (dev_info->tx_offload_capa & RTE_ETH_TX_OFFLOAD_MBUF_FAST_FREE) {
1240 port_conf->txmode.offloads |= RTE_ETH_TX_OFFLOAD_MBUF_FAST_FREE;
1244 static int DeviceConfigureQueues(
DPDKIfaceConfig *iconf,
const struct rte_eth_dev_info *dev_info,
1245 const struct rte_eth_conf *port_conf)
1251 struct rte_eth_rxconf rxq_conf;
1252 struct rte_eth_txconf txq_conf;
1254 char mempool_name[64];
1255 snprintf(mempool_name, 64,
"mempool_%.20s", iconf->iface);
1257 mtu_size = iconf->mtu + RTE_ETHER_CRC_LEN + RTE_ETHER_HDR_LEN + 4;
1258 mbuf_size = ROUNDUP(mtu_size, 1024) + RTE_PKTMBUF_HEADROOM;
1259 SCLogConfig(
"%s: creating packet mbuf pool %s of size %d, cache size %d, mbuf size %d",
1260 iconf->iface, mempool_name, iconf->mempool_size, iconf->mempool_cache_size, mbuf_size);
1262 iconf->pkt_mempool = rte_pktmbuf_pool_create(mempool_name, iconf->mempool_size,
1263 iconf->mempool_cache_size, 0, mbuf_size, (
int)iconf->socket_id);
1264 if (iconf->pkt_mempool == NULL) {
1265 retval = -rte_errno;
1266 SCLogError(
"%s: rte_pktmbuf_pool_create failed with code %d (mempool: %s): %s",
1267 iconf->iface, rte_errno, mempool_name, rte_strerror(rte_errno));
1271 for (uint16_t queue_id = 0; queue_id < iconf->nb_rx_queues; queue_id++) {
1272 rxq_conf = dev_info->default_rxconf;
1273 rxq_conf.offloads = port_conf->rxmode.offloads;
1274 rxq_conf.rx_thresh.hthresh = 0;
1275 rxq_conf.rx_thresh.pthresh = 0;
1276 rxq_conf.rx_thresh.wthresh = 0;
1277 rxq_conf.rx_free_thresh = 0;
1278 rxq_conf.rx_drop_en = 0;
1279 SCLogConfig(
"%s: setting up RX queue %d: rx_desc: %u offloads: 0x%" PRIx64
1280 " hthresh: %" PRIu8
" pthresh: %" PRIu8
" wthresh: %" PRIu8
1281 " free_thresh: %" PRIu16
" drop_en: %" PRIu8,
1282 iconf->iface, queue_id, iconf->nb_rx_desc, rxq_conf.offloads,
1283 rxq_conf.rx_thresh.hthresh, rxq_conf.rx_thresh.pthresh, rxq_conf.rx_thresh.wthresh,
1284 rxq_conf.rx_free_thresh, rxq_conf.rx_drop_en);
1286 retval = rte_eth_rx_queue_setup(iconf->port_id, queue_id, iconf->nb_rx_desc,
1287 iconf->socket_id, &rxq_conf, iconf->pkt_mempool);
1289 rte_mempool_free(iconf->pkt_mempool);
1290 SCLogError(
"%s: failed to setup RX queue %u: %s", iconf->iface, queue_id,
1291 rte_strerror(-retval));
1296 for (uint16_t queue_id = 0; queue_id < iconf->nb_tx_queues; queue_id++) {
1297 txq_conf = dev_info->default_txconf;
1298 txq_conf.offloads = port_conf->txmode.offloads;
1299 SCLogConfig(
"%s: setting up TX queue %d: tx_desc: %" PRIu16
" tx: offloads: 0x%" PRIx64
1300 " hthresh: %" PRIu8
" pthresh: %" PRIu8
" wthresh: %" PRIu8
1301 " tx_free_thresh: %" PRIu16
" tx_rs_thresh: %" PRIu16
1302 " txq_deferred_start: %" PRIu8,
1303 iconf->iface, queue_id, iconf->nb_tx_desc, txq_conf.offloads,
1304 txq_conf.tx_thresh.hthresh, txq_conf.tx_thresh.pthresh, txq_conf.tx_thresh.wthresh,
1305 txq_conf.tx_free_thresh, txq_conf.tx_rs_thresh, txq_conf.tx_deferred_start);
1306 retval = rte_eth_tx_queue_setup(
1307 iconf->port_id, queue_id, iconf->nb_tx_desc, iconf->socket_id, &txq_conf);
1309 rte_mempool_free(iconf->pkt_mempool);
1310 SCLogError(
"%s: failed to setup TX queue %u: %s", iconf->iface, queue_id,
1311 rte_strerror(-retval));
1324 ConfigInit(&out_iconf);
1325 if (out_iconf == NULL) {
1326 FatalError(
"Copy interface of the interface \"%s\" is NULL", iconf->iface);
1329 retval = ConfigLoad(out_iconf, iconf->out_iface);
1331 SCLogError(
"%s: fail to load config of interface", iconf->out_iface);
1332 out_iconf->DerefFunc(out_iconf);
1336 if (iconf->nb_rx_queues != out_iconf->nb_tx_queues) {
1338 SCLogError(
"%s: configured %d RX queues but copy interface %s has %d TX queues"
1339 " - number of queues must be equal",
1340 iconf->iface, iconf->nb_rx_queues, out_iconf->iface, out_iconf->nb_tx_queues);
1341 out_iconf->DerefFunc(out_iconf);
1343 }
else if (iconf->mtu != out_iconf->mtu) {
1344 SCLogError(
"%s: configured MTU of %d but copy interface %s has MTU set to %d"
1345 " - MTU must be equal",
1346 iconf->iface, iconf->mtu, out_iconf->iface, out_iconf->mtu);
1347 out_iconf->DerefFunc(out_iconf);
1349 }
else if (iconf->copy_mode != out_iconf->copy_mode) {
1350 SCLogError(
"%s: copy modes of interfaces %s and %s are not equal", iconf->iface,
1351 iconf->iface, out_iconf->iface);
1352 out_iconf->DerefFunc(out_iconf);
1354 }
else if (strcmp(iconf->iface, out_iconf->out_iface) != 0) {
1356 SCLogError(
"%s: copy interface of %s is not set to %s", iconf->iface, out_iconf->iface,
1358 out_iconf->DerefFunc(out_iconf);
1362 out_iconf->DerefFunc(out_iconf);
1369 if (iconf->out_iface != NULL) {
1370 if (!rte_eth_dev_is_valid_port(iconf->out_port_id)) {
1371 SCLogError(
"%s: retrieved copy interface port ID \"%d\" is invalid or the device is "
1373 iconf->iface, iconf->out_port_id);
1376 int32_t out_port_socket_id;
1377 int retval = DeviceSetSocketID(iconf->out_port_id, &out_port_socket_id);
1379 SCLogError(
"%s: invalid socket id: %s", iconf->out_iface, rte_strerror(-retval));
1383 if (iconf->socket_id != out_port_socket_id) {
1385 "%s: out iface %s is not on the same NUMA node (%s - NUMA %d, %s - NUMA %d)",
1386 iconf->iface, iconf->out_iface, iconf->iface, iconf->socket_id,
1387 iconf->out_iface, out_port_socket_id);
1390 retval = DeviceValidateOutIfaceConfig(iconf);
1397 SCLogInfo(
"%s: DPDK IPS mode activated: %s->%s", iconf->iface, iconf->iface,
1400 SCLogInfo(
"%s: DPDK TAP mode activated: %s->%s", iconf->iface, iconf->iface,
1414 static int32_t DeviceVerifyPostConfigure(
1415 const DPDKIfaceConfig *iconf,
const struct rte_eth_dev_info *dev_info)
1418 struct rte_eth_dev_info post_conf_dev_info = { 0 };
1419 int32_t ret = rte_eth_dev_info_get(iconf->port_id, &post_conf_dev_info);
1421 SCLogError(
"%s: getting device info failed: %s", iconf->iface, rte_strerror(-ret));
1425 if (dev_info->flow_type_rss_offloads != post_conf_dev_info.flow_type_rss_offloads ||
1426 dev_info->rx_offload_capa != post_conf_dev_info.rx_offload_capa ||
1427 dev_info->tx_offload_capa != post_conf_dev_info.tx_offload_capa ||
1428 dev_info->max_rx_queues != post_conf_dev_info.max_rx_queues ||
1429 dev_info->max_tx_queues != post_conf_dev_info.max_tx_queues ||
1430 dev_info->max_mtu != post_conf_dev_info.max_mtu) {
1431 SCLogWarning(
"%s: device information severely changed after configuration, reconfiguring",
1436 if (strcmp(dev_info->driver_name,
"net_bonding") == 0) {
1437 ret = BondingAllDevicesSameDriver(iconf->port_id);
1439 SCLogError(
"%s: bond port uses port with different DPDK drivers", iconf->iface);
1450 if (!rte_eth_dev_is_valid_port(iconf->port_id)) {
1451 SCLogError(
"%s: retrieved port ID \"%d\" is invalid or the device is not attached ",
1452 iconf->iface, iconf->port_id);
1456 int32_t retval = DeviceSetSocketID(iconf->port_id, &iconf->socket_id);
1458 SCLogError(
"%s: invalid socket id: %s", iconf->iface, rte_strerror(-retval));
1462 struct rte_eth_dev_info dev_info = { 0 };
1463 retval = rte_eth_dev_info_get(iconf->port_id, &dev_info);
1465 SCLogError(
"%s: getting device info failed: %s", iconf->iface, rte_strerror(-retval));
1469 if (iconf->nb_rx_queues > dev_info.max_rx_queues) {
1470 SCLogError(
"%s: configured RX queues %u is higher than device maximum (%" PRIu16
")",
1471 iconf->iface, iconf->nb_rx_queues, dev_info.max_rx_queues);
1475 if (iconf->nb_tx_queues > dev_info.max_tx_queues) {
1476 SCLogError(
"%s: configured TX queues %u is higher than device maximum (%" PRIu16
")",
1477 iconf->iface, iconf->nb_tx_queues, dev_info.max_tx_queues);
1481 retval = DeviceValidateMTU(iconf, &dev_info);
1485 struct rte_eth_conf port_conf = { 0 };
1486 DeviceInitPortConf(iconf, &dev_info, &port_conf);
1487 if (port_conf.rxmode.offloads & RTE_ETH_RX_OFFLOAD_CHECKSUM) {
1492 retval = rte_eth_dev_configure(
1493 iconf->port_id, iconf->nb_rx_queues, iconf->nb_tx_queues, &port_conf);
1495 SCLogError(
"%s: failed to configure the device: %s", iconf->iface, rte_strerror(-retval));
1499 retval = DeviceVerifyPostConfigure(iconf, &dev_info);
1503 uint16_t tmp_nb_rx_desc = iconf->nb_rx_desc;
1504 uint16_t tmp_nb_tx_desc = iconf->nb_tx_desc;
1505 retval = rte_eth_dev_adjust_nb_rx_tx_desc(
1506 iconf->port_id, &iconf->nb_rx_desc, &iconf->nb_tx_desc);
1508 SCLogError(
"%s: failed to adjust device queue descriptors: %s", iconf->iface,
1509 rte_strerror(-retval));
1511 }
else if (tmp_nb_rx_desc != iconf->nb_rx_desc || tmp_nb_tx_desc != iconf->nb_tx_desc) {
1512 SCLogWarning(
"%s: device queue descriptors adjusted (RX: from %u to %u, TX: from %u to %u)",
1513 iconf->iface, tmp_nb_rx_desc, iconf->nb_rx_desc, tmp_nb_tx_desc, iconf->nb_tx_desc);
1516 retval = iconf->flags &
DPDK_MULTICAST ? rte_eth_allmulticast_enable(iconf->port_id)
1517 : rte_eth_allmulticast_disable(iconf->port_id);
1518 if (retval == -ENOTSUP) {
1519 retval = rte_eth_allmulticast_get(iconf->port_id);
1523 SCLogWarning(
"%s: cannot configure allmulticast, the port is %sin allmulticast mode",
1524 iconf->iface, retval == 1 ?
"" :
"not ");
1525 }
else if (retval < 0) {
1526 SCLogError(
"%s: failed to get multicast mode: %s", iconf->iface, rte_strerror(-retval));
1529 }
else if (retval < 0) {
1530 SCLogError(
"%s: error when changing multicast setting: %s", iconf->iface,
1531 rte_strerror(-retval));
1535 retval = iconf->flags &
DPDK_PROMISC ? rte_eth_promiscuous_enable(iconf->port_id)
1536 : rte_eth_promiscuous_disable(iconf->port_id);
1537 if (retval == -ENOTSUP) {
1538 retval = rte_eth_promiscuous_get(iconf->port_id);
1541 SCLogError(
"%s: cannot configure promiscuous mode, the port is in %spromiscuous mode",
1542 iconf->iface, retval == 1 ?
"" :
"non-");
1544 }
else if (retval < 0) {
1546 "%s: failed to get promiscuous mode: %s", iconf->iface, rte_strerror(-retval));
1549 }
else if (retval < 0) {
1550 SCLogError(
"%s: error when changing promiscuous setting: %s", iconf->iface,
1551 rte_strerror(-retval));
1556 SCLogConfig(
"%s: setting MTU to %d", iconf->iface, iconf->mtu);
1557 retval = rte_eth_dev_set_mtu(iconf->port_id, iconf->mtu);
1558 if (retval == -ENOTSUP) {
1560 retval = rte_eth_dev_get_mtu(iconf->port_id, &iconf->mtu);
1562 SCLogError(
"%s: failed to retrieve MTU: %s", iconf->iface, rte_strerror(-retval));
1566 "%s: changing MTU is not supported, current MTU: %u", iconf->iface, iconf->mtu);
1567 }
else if (retval < 0) {
1569 "%s: failed to set MTU to %u: %s", iconf->iface, iconf->mtu, rte_strerror(-retval));
1573 retval = DeviceConfigureQueues(iconf, &dev_info, &port_conf);
1578 retval = DeviceConfigureIPS(iconf);
1586 static void *ParseDpdkConfigAndConfigureDevice(
const char *iface)
1590 if (iconf == NULL) {
1591 FatalError(
"DPDK configuration could not be parsed");
1594 retval = DeviceConfigure(iconf);
1595 if (retval == -EAGAIN) {
1597 retval = DeviceConfigure(iconf);
1601 iconf->DerefFunc(iconf);
1602 if (rte_eal_cleanup() != 0)
1603 FatalError(
"EAL cleanup failed: %s", rte_strerror(-retval));
1605 if (retval == -ENOMEM) {
1606 FatalError(
"%s: memory allocation failed - consider"
1607 "%s freeing up some memory.",
1609 rte_eal_has_hugepages() != 0 ?
" increasing the number of hugepages or" :
"");
1611 FatalError(
"%s: failed to configure", iface);
1620 iconf->workers_sync =
SCCalloc(1,
sizeof(*iconf->workers_sync));
1621 if (iconf->workers_sync == NULL) {
1622 FatalError(
"Failed to allocate memory for workers_sync");
1625 iconf->workers_sync->worker_cnt = iconf->threads;
1629 if (ldev_instance == NULL) {
1630 FatalError(
"Device %s is not registered as a live device", iface);
1632 ldev_instance->dpdk_vars.pkt_mp = iconf->pkt_mempool;
1649 static int DPDKConfigGetThreadsCount(
void *conf)
1655 return dpdk_conf->threads;
1660 static int DPDKRunModeIsIPS(
void)
1663 const char dpdk_node_query[] =
"dpdk.interfaces";
1665 if (dpdk_node == NULL) {
1666 FatalError(
"Unable to get %s configuration node", dpdk_node_query);
1669 const char default_iface[] =
"default";
1672 bool has_ips =
false;
1673 bool has_ids =
false;
1674 for (
int ldev = 0; ldev < nlive; ldev++) {
1676 if (live_dev == NULL)
1677 FatalError(
"Unable to get device id %d from LiveDevice list", ldev);
1680 if (if_root == NULL) {
1681 if (if_default == NULL)
1682 FatalError(
"Unable to get %s or %s interface", live_dev, default_iface);
1684 if_root = if_default;
1687 const char *copymodestr = NULL;
1688 const char *copyifacestr = NULL;
1691 if (strcmp(copymodestr,
"ips") == 0) {
1700 if (has_ids && has_ips) {
1701 FatalError(
"Copy-mode of interface %s mixes with the previously set copy-modes "
1702 "(only IDS/TAP and IPS copy-mode combinations are allowed in DPDK",
1710 static int DPDKRunModeEnableIPS(
void)
1712 int r = DPDKRunModeIsIPS();
1728 "Workers DPDK mode, each thread does all"
1729 " tasks from acquisition to logging",
1754 SCLogDebug(
"RunModeIdsDpdkWorkers initialised");