]> git.droids-corp.org - dpdk.git/commitdiff
eal: prevent different primary/secondary process versions
authorAnatoly Burakov <anatoly.burakov@intel.com>
Fri, 5 Jul 2019 17:26:27 +0000 (18:26 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Sat, 6 Jul 2019 08:32:40 +0000 (10:32 +0200)
Currently, nothing stops DPDK to attempt to run primary and
secondary processes while having different versions. This
can lead to all sorts of weird behavior and makes it harder
to maintain compatibility without breaking ABI every once
in a while.

Fix it by explicitly disallowing running different DPDK
versions as primary and secondary processes.

Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
Acked-by: David Marchand <david.marchand@redhat.com>
lib/librte_eal/common/eal_common_mcfg.c
lib/librte_eal/common/eal_memcfg.h
lib/librte_eal/freebsd/eal/eal.c
lib/librte_eal/linux/eal/eal.c

index fe8d2b726840ebc99dce9c19ab5ec5b89a20d107..1825d90838b6c68773ab336a93bccd84a1b720e1 100644 (file)
@@ -4,6 +4,7 @@
 
 #include <rte_config.h>
 #include <rte_eal_memconfig.h>
+#include <rte_version.h>
 
 #include "eal_internal_cfg.h"
 #include "eal_memcfg.h"
@@ -31,6 +32,18 @@ eal_mcfg_wait_complete(void)
                rte_pause();
 }
 
+int
+eal_mcfg_check_version(void)
+{
+       struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
+
+       /* check if version from memconfig matches compiled in macro */
+       if (mcfg->version != RTE_VERSION)
+               return -1;
+
+       return 0;
+}
+
 void
 eal_mcfg_update_internal(void)
 {
@@ -47,6 +60,8 @@ eal_mcfg_update_from_internal(void)
 
        mcfg->legacy_mem = internal_config.legacy_mem;
        mcfg->single_file_segments = internal_config.single_file_segments;
+       /* record current DPDK version */
+       mcfg->version = RTE_VERSION;
 }
 
 void
index 573233896ebb84880e4d2df49e81f564d786c429..030f903adc0c333ffc4b1c1f77e2d8ead438ada1 100644 (file)
@@ -19,6 +19,8 @@
  */
 struct rte_mem_config {
        volatile uint32_t magic;   /**< Magic number - sanity check. */
+       uint32_t version;
+       /**< Prevent secondary processes using different DPDK versions. */
 
        /* memory topology */
        uint32_t nchannel;    /**< Number of channels (0 if unknown). */
@@ -81,6 +83,10 @@ eal_mcfg_update_from_internal(void);
 void
 eal_mcfg_wait_complete(void);
 
+/* check if DPDK version of current process matches one stored in the config */
+int
+eal_mcfg_check_version(void);
+
 /* set mem config as complete */
 void
 eal_mcfg_complete(void);
index 3bd1a04f73ca16c88e1945e0195659ee7e75dc20..13ca1202cbaa9f0be6b49416b5007e9dabef6173 100644 (file)
@@ -385,6 +385,10 @@ rte_config_init(void)
                if (rte_eal_config_attach() < 0)
                        return -1;
                eal_mcfg_wait_complete();
+               if (eal_mcfg_check_version() < 0) {
+                       RTE_LOG(ERR, EAL, "Primary and secondary process DPDK version mismatch\n");
+                       return -1;
+               }
                if (rte_eal_config_reattach() < 0)
                        return -1;
                eal_mcfg_update_internal();
index f7cb90a41bdcfe61a6be4ef5824914906c81ab51..2e5499f9b4319218382b39c9a9fb90027967f73a 100644 (file)
@@ -489,6 +489,10 @@ rte_config_init(void)
                if (rte_eal_config_attach() < 0)
                        return -1;
                eal_mcfg_wait_complete();
+               if (eal_mcfg_check_version() < 0) {
+                       RTE_LOG(ERR, EAL, "Primary and secondary process DPDK version mismatch\n");
+                       return -1;
+               }
                if (rte_eal_config_reattach() < 0)
                        return -1;
                eal_mcfg_update_internal();