]> git.baikalelectronics.ru Git - kernel.git/commit
tipc: fix use-after-free in tipc_nametbl_stop
authorJon Maloy <jon.maloy@ericsson.com>
Tue, 17 Apr 2018 19:25:42 +0000 (21:25 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 18 Apr 2018 17:48:43 +0000 (13:48 -0400)
commitdd12421d54d5ac223f410ca7a0fde90e86c04579
tree721fdcebea9f57a945c6b9caeed564b39d1d97a7
parent79f1ef2804a87dcea7ae69ada60fb4bbe2248099
tipc: fix use-after-free in tipc_nametbl_stop

When we delete a service item in tipc_nametbl_stop() we loop over
all service ranges in the service's RB tree, and for each service
range we loop over its pertaining publications while calling
tipc_service_remove_publ() for each of them.

However, tipc_service_remove_publ() has the side effect that it also
removes the comprising service range item when there are no publications
left. This leads to a "use-after-free" access when the inner loop
continues to the next iteration, since the range item holding the list
we are looping no longer exists.

We fix this by moving the delete of the service range item outside
the said function. Instead, we now let the two functions calling it
test if the list is empty and perform the removal when that is the
case.

Reported-by: syzbot+d64b64afc55660106556@syzkaller.appspotmail.com
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/name_table.c