mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 05:13:18 +00:00
can: j1939: transport: j1939_xtp_rx_dat_one(): compare own packets to detect corruptions
Since the stack relays on receiving own packets, it was overwriting own transmit buffer from received packets. At least theoretically, the received echo buffer can be corrupt or changed and the session partner can request to resend previous data. In this case we will re-send bad data. With this patch we will stop to overwrite own TX buffer and use it for sanity checking. Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de> Link: https://lore.kernel.org/r/20200807105200.26441-6-o.rempel@pengutronix.de Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
840835c928
commit
e052d05402
@ -1792,7 +1792,20 @@ static void j1939_xtp_rx_dat_one(struct j1939_session *session,
|
||||
}
|
||||
|
||||
tpdat = se_skb->data;
|
||||
memcpy(&tpdat[offset], &dat[1], nbytes);
|
||||
if (!session->transmission) {
|
||||
memcpy(&tpdat[offset], &dat[1], nbytes);
|
||||
} else {
|
||||
int err;
|
||||
|
||||
err = memcmp(&tpdat[offset], &dat[1], nbytes);
|
||||
if (err)
|
||||
netdev_err_once(priv->ndev,
|
||||
"%s: 0x%p: Data of RX-looped back packet (%*ph) doesn't match TX data (%*ph)!\n",
|
||||
__func__, session,
|
||||
nbytes, &dat[1],
|
||||
nbytes, &tpdat[offset]);
|
||||
}
|
||||
|
||||
if (packet == session->pkt.rx)
|
||||
session->pkt.rx++;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user