Skip to content

Commit

Permalink
pimd: Prevent crash of pim when auto-rp's socket is not initialized
Browse files Browse the repository at this point in the history
If the socket associated with the auto-rp fails to initialize then
the memory for the auto-rp is just dropped on the floor.  Additionally
any type of attempt at using the feature will just cause pimd to crash,
when the pointer is derefed.  Since it is derefed all over the place
without checking.

Clearly if you cannot bind/use the socket let's allow continuation.

Fixes: #17540
Signed-off-by: Donald Sharp <[email protected]>
  • Loading branch information
donaldsharp committed Dec 4, 2024
1 parent 267dc19 commit 37b8819
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pimd/pim_autorp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1508,12 +1508,14 @@ void pim_autorp_init(struct pim_instance *pim)
autorp->discovery_holdtime = DEFAULT_AUTORP_DISCOVERY_HOLDTIME;
cand_addrsel_clear(&(autorp->mapping_agent_addrsel));

pim->autorp = autorp;

if (!pim_autorp_socket_enable(autorp)) {
zlog_warn("%s: AutoRP failed to initialize", __func__);
zlog_warn("%s: AutoRP failed to initialize, feature will not work correctly",
__func__);
return;
}

pim->autorp = autorp;
if (PIM_DEBUG_AUTORP)
zlog_debug("%s: AutoRP Initialized", __func__);

Expand Down

0 comments on commit 37b8819

Please sign in to comment.