lkml.org 
[lkml]   [2021]   [Oct]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH net] can: j1939: j1939_xtp_rx_dat_one(): cancel session if receive TP.DT with error length
On Thu, Sep 30, 2021 at 11:33:20AM +0800, Zhang Changzhong wrote:
> According to SAE-J1939-21, the data length of TP.DT must be 8 bytes, so
> cancel session when receive unexpected TP.DT message.
>
> Fixes: 9d71dd0c7009 ("can: add support of SAE J1939 protocol")
> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>

Acked-by: Oleksij Rempel <o.rempel@pengutronix.de>

Thank you!

> ---
> net/can/j1939/transport.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/net/can/j1939/transport.c b/net/can/j1939/transport.c
> index bb5c4b8..eedaeaf 100644
> --- a/net/can/j1939/transport.c
> +++ b/net/can/j1939/transport.c
> @@ -1789,6 +1789,7 @@ static void j1939_xtp_rx_dpo(struct j1939_priv *priv, struct sk_buff *skb,
> static void j1939_xtp_rx_dat_one(struct j1939_session *session,
> struct sk_buff *skb)
> {
> + enum j1939_xtp_abort abort = J1939_XTP_ABORT_FAULT;
> struct j1939_priv *priv = session->priv;
> struct j1939_sk_buff_cb *skcb, *se_skcb;
> struct sk_buff *se_skb = NULL;
> @@ -1803,9 +1804,11 @@ static void j1939_xtp_rx_dat_one(struct j1939_session *session,
>
> skcb = j1939_skb_to_cb(skb);
> dat = skb->data;
> - if (skb->len <= 1)
> + if (skb->len != 8) {
> /* makes no sense */
> + abort = J1939_XTP_ABORT_UNEXPECTED_DATA;
> goto out_session_cancel;
> + }
>
> switch (session->last_cmd) {
> case 0xff:
> @@ -1904,7 +1907,7 @@ static void j1939_xtp_rx_dat_one(struct j1939_session *session,
> out_session_cancel:
> kfree_skb(se_skb);
> j1939_session_timers_cancel(session);
> - j1939_session_cancel(session, J1939_XTP_ABORT_FAULT);
> + j1939_session_cancel(session, abort);
> j1939_session_put(session);
> }
>
> --
> 2.9.5
>
>
>

--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |

\
 
 \ /
  Last update: 2021-10-12 13:11    [W:0.111 / U:0.256 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site