]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit335a07dc7ad4797205d3803ba2c191760f9293f7
treeca5e5a25d5f15253d5ab5bdf23cfef4a9411e01e
parentd2144bed8b5f1144659414f29b578427478b1458
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: d0c46da0168a ("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