can: bcm: check for null sk before deferencing it via the call to sock_net
authorColin Ian King <colin.king@canonical.com>
Fri, 8 Sep 2017 15:02:35 +0000 (16:02 +0100)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Thu, 19 Oct 2017 11:05:53 +0000 (13:05 +0200)
commit62c04647c6f44fa3d5d0c077133da0aa1cbbc34c
treeca5e5a25d5f15253d5ab5bdf23cfef4a9411e01e
parentfb5b91d61bebc24686ffc379138fd67808b1a1e6
can: bcm: check for null sk before deferencing it via the call to sock_net

The assignment of net via call sock_net will dereference sk. This
is performed before a sanity null check on sk, so there could be
a potential null dereference on the sock_net call if sk is null.
Fix this by assigning net after the sk null check. Also replace
the sk == NULL with the more usual !sk idiom.

Detected by CoverityScan CID#1431862 ("Dereference before null check")

Fixes: 384317ef4187 ("can: network namespace support for CAN_BCM protocol")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
net/can/bcm.c