contigmem: fix buffer overrun on unload
authorAlan Carew <alan.carew@intel.com>
Tue, 14 Oct 2014 12:18:36 +0000 (13:18 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 20 Oct 2014 21:50:35 +0000 (23:50 +0200)
commitf2c4afab581cf7e9be5ff65ec2d3afe92cd4a726
tree8dd5b7b3278744bdc839c701069e758c187b9f65
parent06cada9fc6f0de50c10a27d55615299d1ac906e0
contigmem: fix buffer overrun on unload

The maximum mount contiguous memory regions for FreeBSD is limited by
RTE_CONTIGMEM_MAX_NUM_BUFS, a pointer to each region is stored in
static void * contigmem_buffers[RTE_CONTIGMEM_MAX_NUM_BUFS]

A user can specify a greater amount via hw.contigmem.num_buffers,
while the allocation logic will prevent this allocation from occuring the logic
in contigmem_unload() will attempt to free hw.contigmem.num_buffers and an
overrun occurs.

This patch limits the freeing to a maximum of RTE_CONTIGMEM_MAX_NUM_BUFS.

Signed-off-by: Alan Carew <alan.carew@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
lib/librte_eal/bsdapp/contigmem/contigmem.c