From: Christian Ehrhardt Date: Mon, 21 Mar 2016 14:06:11 +0000 (+0100) Subject: lpm6: fix use after free X-Git-Tag: spdx-start~7241 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;ds=sidebyside;h=768f0e4587d17ba7c34aa47c9799c643c80d2585;p=dpdk.git lpm6: fix use after free In certain autotests lpm->max_rules turned out to be non initialized. That was caused by a failing allocation for lpm->rules_tbl in rte_lpm6_create. It then left the function via goto exit with lpm freed, but still a pointer value being set. In case of an allocation failure it resets lpm to NULL now, to avoid the upper layers operate on that already freed memory. Along that is also makes the RTE_LOG message of the failed allocation unique. Fixes: 5c510e13a9cb ("lpm: add IPv6 support") Signed-off-by: Christian Ehrhardt Acked-by: Stephen Hemminger Acked-by: Olivier Matz --- diff --git a/lib/librte_lpm/rte_lpm6.c b/lib/librte_lpm/rte_lpm6.c index eded7725e8..4c44cd7541 100644 --- a/lib/librte_lpm/rte_lpm6.c +++ b/lib/librte_lpm/rte_lpm6.c @@ -206,8 +206,9 @@ rte_lpm6_create(const char *name, int socket_id, (size_t)rules_size, RTE_CACHE_LINE_SIZE, socket_id); if (lpm->rules_tbl == NULL) { - RTE_LOG(ERR, LPM, "LPM memory allocation failed\n"); + RTE_LOG(ERR, LPM, "LPM rules_tbl allocation failed\n"); rte_free(lpm); + lpm = NULL; rte_free(te); goto exit; }