netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Patch net] can: initialize skbcnt in j1939_tp_tx_dat_new()
@ 2020-10-08  6:18 Cong Wang
  2020-10-08 17:34 ` Jakub Kicinski
  0 siblings, 1 reply; 6+ messages in thread
From: Cong Wang @ 2020-10-08  6:18 UTC (permalink / raw)
  To: netdev
  Cc: Cong Wang, syzbot+3f3837e61a48d32b495f, Robin van der Gracht,
	Oleksij Rempel, Pengutronix Kernel Team, Oliver Hartkopp,
	Marc Kleine-Budde

This fixes an uninit-value warning:
BUG: KMSAN: uninit-value in can_receive+0x26b/0x630 net/can/af_can.c:650

Reported-and-tested-by: syzbot+3f3837e61a48d32b495f@syzkaller.appspotmail.com
Fixes: 9d71dd0c7009 ("can: add support of SAE J1939 protocol")
Cc: Robin van der Gracht <robin@protonic.nl>
Cc: Oleksij Rempel <linux@rempel-privat.de>
Cc: Pengutronix Kernel Team <kernel@pengutronix.de>
Cc: Oliver Hartkopp <socketcan@hartkopp.net>
Cc: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
---
 net/can/j1939/transport.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/can/j1939/transport.c b/net/can/j1939/transport.c
index 0cec4152f979..88cf1062e1e9 100644
--- a/net/can/j1939/transport.c
+++ b/net/can/j1939/transport.c
@@ -580,6 +580,7 @@ sk_buff *j1939_tp_tx_dat_new(struct j1939_priv *priv,
 	skb->dev = priv->ndev;
 	can_skb_reserve(skb);
 	can_skb_prv(skb)->ifindex = priv->ndev->ifindex;
+	can_skb_prv(skb)->skbcnt = 0;
 	/* reserve CAN header */
 	skb_reserve(skb, offsetof(struct can_frame, data));
 
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-10-09  6:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-08  6:18 [Patch net] can: initialize skbcnt in j1939_tp_tx_dat_new() Cong Wang
2020-10-08 17:34 ` Jakub Kicinski
2020-10-08 20:02   ` Cong Wang
2020-10-08 21:47   ` Marc Kleine-Budde
2020-10-08 22:26     ` Jakub Kicinski
2020-10-09  6:15       ` Marc Kleine-Budde

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).