]> git.droids-corp.org - dpdk.git/commit
eventdev/eth_tx: fix adapter creation
authorNaga Harish K S V <s.v.naga.harish.k@intel.com>
Thu, 16 Jun 2022 05:14:58 +0000 (10:44 +0530)
committerJerin Jacob <jerinj@marvell.com>
Mon, 20 Jun 2022 18:39:11 +0000 (20:39 +0200)
commit3d6e9dd493784d077b9a214a0937331fa05f8abf
tree7de71e3e115bc720e97908bb06e6eeee706a9ae3
parentbec8901bfe9f691a27e267005621a90efa815d79
eventdev/eth_tx: fix adapter creation

During adapter create, memory is allocated for storing event port
configuration which is freed during adapter free. The following
error is seen during free "EAL: Error: Invalid memory"

The service data pointer storage for txa_service_data_array is
allocated during adapter create with incorrect size which is less
than the required size.
Initialization of this memory causes buffer overflow and result in
metadata overwrite of event port config memory allocated above
and results in the above error message during free.

Allocating the correct size of memory for txa_service_data_array
prevents overwriting other memory areas like event port config
memory.

Fixes: a3bbf2e09756 ("eventdev: add eth Tx adapter implementation")
Cc: stable@dpdk.org
Signed-off-by: Naga Harish K S V <s.v.naga.harish.k@intel.com>
Acked-by: Jay Jayatheerthan <jay.jayatheerthan@intel.com>
lib/eventdev/rte_event_eth_tx_adapter.c