All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Oliver Hartkopp" <socketcan@hartkopp.net>
Cc: "Oleksij Rempel" <o.rempel@pengutronix.de>,
	linux-can@vger.kernel.org,
	"Marc Kleine-Budde" <mkl@pengutronix.de>,
	"Oliver Hartkopp" <socketcan@hartkopp.net>,
	"Vincent Mailhol" <mailhol@kernel.org>
Subject: Re: [PATCH v14 06/11] can: bcm: extend bcm_tx_lock usage for data and timer updates
Date: Tue, 14 Jul 2026 11:49:01 +0000	[thread overview]
Message-ID: <20260714114902.0D9341F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260714-bcm_fixes-v14-6-867a4be60a61@hartkopp.net>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [High] Preexisting TOCTOU race in `bcm_can_tx` causes CAN frame sequence corruption and skipped frames when an operation is updated concurrently.
--

--- Patch [6]: [PATCH v14 06/11] can: bcm: extend bcm_tx_lock usage for data and timer updates ---
commit 2415d37e8cc6682239aca2edf2ea4608c5e64f24
Author: Oliver Hartkopp <socketcan@hartkopp.net>

can: bcm: extend bcm_tx_lock usage for data and timer updates

This commit stages new CAN frame content into a dynamically allocated
buffer to validate before acquiring the lock, and updates timer variables
under lock to fix a torn 64-bit ktime_t read on 32-bit platforms.

> diff --git a/net/can/bcm.c b/net/can/bcm.c
> index 940cd9df1cca3..d5ca5ca472f1f 100644
> --- a/net/can/bcm.c
> +++ b/net/can/bcm.c

[ ... ]

> @@ -1052,36 +1094,38 @@ static int bcm_tx_setup(struct bcm_msg_head *msg_head, struct msghdr *msg,
>  					err = -EINVAL;
>  			}
>  
> -			if (err < 0)
> +			if (err < 0) {
> +				kfree(new_frames);
>  				return err;
> +			}
>  
>  			if (msg_head->flags & TX_CP_CAN_ID) {
>  				/* copy can_id into frame */
>  				cf->can_id = msg_head->can_id;
>  			}
>  		}
> +
> +		spin_lock_bh(&op->bcm_tx_lock);
> +
> +		/* update CAN frames content */
> +		memcpy(op->frames, new_frames, msg_head->nframes * op->cfsiz);
> +
>  		op->flags = msg_head->flags;
>  
> -		/* only lock for unlikely count/nframes/currframe changes */
>  		if (op->nframes != msg_head->nframes ||
> -		    op->flags & TX_RESET_MULTI_IDX ||
> -		    op->flags & SETTIMER) {
> -
> -			spin_lock_bh(&op->bcm_tx_lock);
>  
> -			if (op->nframes != msg_head->nframes ||
> -			    op->flags & TX_RESET_MULTI_IDX) {
> -				/* potentially update changed nframes */
> -				op->nframes = msg_head->nframes;
> -				/* restart multiple frame transmission */
> -				op->currframe = 0;
> -			}
> +		    op->flags & TX_RESET_MULTI_IDX) {
> +			/* potentially update changed nframes */
> +			op->nframes = msg_head->nframes;
> +			/* restart multiple frame transmission */
> +			op->currframe = 0;
> +		}

[Severity: High]
This is a pre-existing issue, but does bcm_can_tx in net/can/bcm.c have a 
race condition with TX_RESET_MULTI_IDX that corrupts the sequence state?

When bcm_can_tx is called by the timer, it reads op->currframe under
op->bcm_tx_lock, drops the lock to send the frame, and reacquires the lock
to update the sequence state:

CPU1 (Timer context in bcm_can_tx)
    spin_lock_bh(&op->bcm_tx_lock);
    // reads currframe
    spin_unlock_bh(&op->bcm_tx_lock);
    
    can_send(skb, 1);

If a concurrent sendmsg triggers bcm_tx_setup while the lock is dropped:

CPU2 (User context in bcm_tx_setup)
    spin_lock_bh(&op->bcm_tx_lock);
    if (op->flags & TX_RESET_MULTI_IDX)
        op->currframe = 0;
    if (op->flags & SETTIMER)
        op->count = msg_head->count;
    spin_unlock_bh(&op->bcm_tx_lock);

Then CPU1 resumes and unconditionally increments the state:

CPU1 (Resuming in bcm_can_tx)
    spin_lock_bh(&op->bcm_tx_lock);
    op->currframe++; 
    if (op->count > 0)
        op->count--;
    spin_unlock_bh(&op->bcm_tx_lock);

Could this unconditional increment change the newly reset currframe from 0
to 1, causing frame 0 of the new sequence to be skipped? Also, wouldn't
this incorrectly decrement the new op->count limit?

>  
> -			if (op->flags & SETTIMER)
> -				op->count = msg_head->count;
> +		if (op->flags & SETTIMER)
> +			op->count = msg_head->count;
>  
> -			spin_unlock_bh(&op->bcm_tx_lock);
> -		}
> +		spin_unlock_bh(&op->bcm_tx_lock);
>  
> -		kfree(new_frames);

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260714-bcm_fixes-v14-0-867a4be60a61@hartkopp.net?part=6

  reply	other threads:[~2026-07-14 11:49 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-14 11:30 [PATCH v14 00/11] can: bcm: collected fixes Oliver Hartkopp
2026-07-14 11:30 ` Oliver Hartkopp via B4 Relay
2026-07-14 11:30 ` [PATCH v14 01/11] can: bcm: defer rx_op deallocation to workqueue to fix thrtimer UAF Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:57   ` sashiko-bot
2026-07-14 11:30 ` [PATCH v14 02/11] can: bcm: fix lockless bound/ifindex race and silent RX_SETUP failure Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:51   ` sashiko-bot
2026-07-14 11:30 ` [PATCH v14 03/11] can: bcm: add locking when updating filter and timer values Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:52   ` sashiko-bot
2026-07-14 11:30 ` [PATCH v14 04/11] can: bcm: fix CAN frame rx/tx statistics Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:45   ` sashiko-bot
2026-07-14 11:30 ` [PATCH v14 05/11] can: bcm: add missing rcu list annotations and operations Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:40   ` sashiko-bot
2026-07-14 11:30 ` [PATCH v14 06/11] can: bcm: extend bcm_tx_lock usage for data and timer updates Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:49   ` sashiko-bot [this message]
2026-07-14 11:30 ` [PATCH v14 07/11] can: bcm: validate frame length in bcm_rx_setup() for RTR replies Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:30 ` [PATCH v14 08/11] can: bcm: add missing device refcount for CAN filter removal Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:30 ` [PATCH v14 09/11] can: bcm: fix stale rx/tx ops after device removal Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:30 ` [PATCH v14 10/11] can: bcm: fix data race on rx_stamp/rx_ifindex in bcm_rx_handler() Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay
2026-07-14 11:30 ` [PATCH v14 11/11] can: bcm: track a single source interface for ANYDEV timeout/throttle ops Oliver Hartkopp
2026-07-14 11:30   ` Oliver Hartkopp via B4 Relay

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260714114902.0D9341F000E9@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=linux-can@vger.kernel.org \
    --cc=mailhol@kernel.org \
    --cc=mkl@pengutronix.de \
    --cc=o.rempel@pengutronix.de \
    --cc=sashiko-reviews@lists.linux.dev \
    --cc=socketcan@hartkopp.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.