mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 06:43:16 +00:00
zebra: fix iptable install heap UAF
My previous patch to fix a memory leak, caused by not properly freeing the iptable iface list on stream parse failure, created/exposed a heap use after free because we were not doing a deep copy Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
This commit is contained in:
parent
3b1c9f84c6
commit
592af4cc0a
@ -652,12 +652,22 @@ static void *pbr_iptable_alloc_intern(void *arg)
|
||||
{
|
||||
struct zebra_pbr_iptable *zpi;
|
||||
struct zebra_pbr_iptable *new;
|
||||
struct listnode *ln;
|
||||
char *ifname;
|
||||
|
||||
zpi = (struct zebra_pbr_iptable *)arg;
|
||||
|
||||
new = XCALLOC(MTYPE_TMP, sizeof(struct zebra_pbr_iptable));
|
||||
|
||||
/* Deep structure copy */
|
||||
memcpy(new, zpi, sizeof(*zpi));
|
||||
new->interface_name_list = list_new();
|
||||
|
||||
if (zpi->interface_name_list) {
|
||||
for (ALL_LIST_ELEMENTS_RO(zpi->interface_name_list, ln, ifname))
|
||||
listnode_add(new->interface_name_list,
|
||||
XSTRDUP(MTYPE_PBR_IPTABLE_IFNAME, ifname));
|
||||
}
|
||||
|
||||
return new;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user