eal: fix crash when allocating memory on a control thread tmp_20211026
authorIlyes Ben Hamouda <ilyes.ben_hamouda@6wind.com>
Tue, 17 Aug 2021 12:49:09 +0000 (14:49 +0200)
committerOlivier Matz <olivier.matz@6wind.com>
Tue, 26 Oct 2021 09:35:57 +0000 (11:35 +0200)
By using rte_malloc(), the choice of a numa socket
in case of SOCKET_ID_ANY is 0. This may lead to control
thread crash in alloc_seg() when numa node 0 is not used.

Let's choose the first numa socket where memory is available.

Note:
malloc_get_numa_socket is no longer small(contains a loop).
Hence, inline keyword was removed.

PR=74909
Fixes: b94580d6887e ("malloc: avoid unknown socket id")
Signed-off-by: Ilyes Ben Hamouda <ilyes.ben_hamouda@6wind.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
lib/eal/common/malloc_heap.c
lib/eal/common/malloc_heap.h

index ee400f3..054d92b 100644 (file)
@@ -694,6 +694,24 @@ alloc_unlock:
        return ret;
 }
 
+static unsigned
+malloc_get_numa_socket(void)
+{
+       const struct internal_config *internal_conf =
+               eal_get_internal_configuration();
+       unsigned socket_id = rte_socket_id();
+
+       if (socket_id != (unsigned)SOCKET_ID_ANY)
+               return socket_id;
+
+       /* return first id where memory is available, otherwise 0 */
+       for (socket_id = 0; socket_id < RTE_MAX_NUMA_NODES; ++socket_id)
+               if (internal_conf->socket_mem[socket_id] != 0)
+                       return socket_id;
+
+       return 0;
+}
+
 void *
 malloc_heap_alloc(const char *type, size_t size, int socket_arg,
                unsigned int flags, size_t align, size_t bound, bool contig)
index 3a6ec6e..3a29d02 100644 (file)
@@ -33,17 +33,6 @@ struct malloc_heap {
        char name[RTE_HEAP_NAME_MAX_LEN];
 } __rte_cache_aligned;
 
-static inline unsigned
-malloc_get_numa_socket(void)
-{
-       unsigned socket_id = rte_socket_id();
-
-       if (socket_id == (unsigned)SOCKET_ID_ANY)
-               return 0;
-
-       return socket_id;
-}
-
 void *
 malloc_heap_alloc(const char *type, size_t size, int socket, unsigned int flags,
                size_t align, size_t bound, bool contig);