OSDN Git Service

tipc: add NULL pointer check to prevent kernel oops
authorHoang Le <hoang.h.le@dektech.com.au>
Fri, 13 Mar 2020 03:18:03 +0000 (10:18 +0700)
committerDavid S. Miller <davem@davemloft.net>
Sun, 15 Mar 2020 07:07:00 +0000 (00:07 -0700)
commit746a1eda682cb7b5cd22f1b437da2121af64fbfe
tree2cbd7efd493149d7403b5eb8ce615ec63b6c38cf
parente228c5c0882e809e4fb3eafd07ec25ff50f65ac5
tipc: add NULL pointer check to prevent kernel oops

Calling:
tipc_node_link_down()->
   - tipc_node_write_unlock()->tipc_mon_peer_down()
   - tipc_mon_peer_down()
  just after disabling bearer could be caused kernel oops.

Fix this by adding a sanity check to make sure valid memory
access.

Acked-by: Jon Maloy <jmaloy@redhat.com>
Signed-off-by: Hoang Le <hoang.h.le@dektech.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/monitor.c