]> git.puffer.fish Git - mirror/frr.git/commit
ospfd: Prevent use after free( and crash of ospf ) when no router ospf 14320/head
authorDonald Sharp <sharpd@nvidia.com>
Wed, 30 Aug 2023 14:33:29 +0000 (10:33 -0400)
committerDonatas Abraitis <donatas@opensourcerouting.org>
Thu, 31 Aug 2023 07:02:04 +0000 (10:02 +0300)
commit31333424f148269502e90c9617ce177b058e5760
tree2fe27bc23b725cd040a6ecbfce3ba222ac7c8677
parent1622c2ece2f68e034b43fb037503514c2195aba5
ospfd: Prevent use after free( and crash of ospf ) when no router ospf

Consider this config:

router ospf
  redistribute kernel

Then you issue:

no router ospf

ospf will crash with a use after free.

The problem is that the event's associated with the
ospf pointer were shut off then the ospf_external_delete
was called which rescheduled the event.  Let's just move
event deletion to the end of the no router ospf.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
ospfd/ospfd.c