Linux CAN drivers development
 help / color / mirror / Atom feed
From: Lee Jones <lee@kernel.org>
To: Oliver Hartkopp <socketcan@hartkopp.net>
Cc: linux-can@vger.kernel.org
Subject: Re: [PATCH v2] can: bcm: prevent thrtimer UAF in rx path by checking RX_NO_AUTOTIMER
Date: Wed, 20 May 2026 14:40:32 +0100	[thread overview]
Message-ID: <20260520134032.GA2767592@google.com> (raw)
In-Reply-To: <442a92c9-5810-4fcd-ab05-5b0acd0f345c@hartkopp.net>

On Wed, 20 May 2026, Oliver Hartkopp wrote:

> 
> 
> On 20.05.26 14:49, Lee Jones wrote:
> > On Wed, 20 May 2026, Lee Jones wrote:
> > 
> > > On Tue, 19 May 2026, Oliver Hartkopp wrote:
> > > 
> > > > From: Lee Jones <lee@kernel.org>
> > > > 
> > > > Commit f1b4e32aca08 ("can: bcm: use call_rcu() instead of costly
> > > > synchronize_rcu()") removed the synchronize_rcu() call from
> > > > bcm_delete_rx_op() and introduced the RX_NO_AUTOTIMER flag to prevent
> > > > timers from being rearmed during deletion.  However, it only applied
> > > > this check to op->timer via bcm_rx_starttimer().
> > > > 
> > > > It missed the fact that op->thrtimer can also be rearmed by an
> > > > in-flight bcm_rx_handler() (which runs as an RCU reader) via
> > > > bcm_rx_update_and_send().  This allows op->thrtimer to be queued after
> > > > bcm_remove_op() has already cancelled it, leading to a use-after-free
> > > > when the timer fires on the deferred-freed struct bcm_op.
> > > > 
> > > > Address the omission by checking the RX_NO_AUTOTIMER flag
> > > > in bcm_rx_update_and_send() before starting op->thrtimer, effectively
> > > > preventing it from being rearmed concurrently with teardown.
> > > > 
> > > > [Hartkopp] Added the setting of RX_NO_AUTOTIMER also to bcm_release() before
> > > > removing the CAN filters following the bcm_delete_rx_op() approach.
> > > > 
> > > > Additionally WRITE_ONCE()/READ_ONCE() macros have been introduced for
> > > > the changes of RX_NO_AUTOTIMER at rx op removal time to prevent a
> > > > potential code reordering of RX_NO_AUTOTIMER setting after CAN filter removal.
> > > > 
> > > > Signed-off-by: Lee Jones <lee@kernel.org>
> > > > Co-developed-by: Oliver Hartkopp <socketcan@hartkopp.net>
> > > 
> > > You did?  Can you add a note saying what you changed please?
> > 
> > FYI, did you also see the second swing I took at this:
> > 
> > https://lore.kernel.org/r/20260520080523.2513957-1-lee@kernel.org
> 
> Yes, and I answered to your patch.
> 
> Is there some lag in the e-mail communication right now?
> 
> That's why I also wondered why you sent a patch one day after my v2
> proposal.

Right.  I only saw your proposal today.

I've been working the alternative since Jakub NACKed the first submission.

-- 
Lee Jones

  reply	other threads:[~2026-05-20 13:40 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-19 11:38 [PATCH v2] can: bcm: prevent thrtimer UAF in rx path by checking RX_NO_AUTOTIMER Oliver Hartkopp
2026-05-20 12:47 ` Lee Jones
2026-05-20 12:49   ` Lee Jones
2026-05-20 13:03     ` Oliver Hartkopp
2026-05-20 13:40       ` Lee Jones [this message]
2026-05-20 14:06         ` Lee Jones
2026-05-20 15:23           ` Oliver Hartkopp
2026-05-20 16:13             ` Lee Jones
2026-05-20 18:00               ` Oliver Hartkopp
2026-05-21 11:07                 ` Lee Jones
2026-05-21 11:35                   ` Oliver Hartkopp
2026-05-21 13:51                     ` Lee Jones
2026-05-21 17:57                       ` Oliver Hartkopp
2026-05-20 12:59   ` Oliver Hartkopp

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=20260520134032.GA2767592@google.com \
    --to=lee@kernel.org \
    --cc=linux-can@vger.kernel.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox