From: Joseph Qi <joseph.qi@linux.alibaba.com>
To: Karl Mehltretter <kmehltretter@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>
Cc: Mark Fasheh <mark@fasheh.com>, Joel Becker <jlbec@evilplan.org>,
Cen Zhang <zzzccc427@gmail.com>,
ocfs2-devel@lists.linux.dev, linux-kernel@vger.kernel.org,
Sashiko <sashiko-bot@kernel.org>
Subject: Re: [PATCH] ocfs2/cluster: hold a reference on the heartbeat thread
Date: Wed, 23 Sep 2026 10:45:10 +0800 [thread overview]
Message-ID: <e06390dc-fdfb-4bad-85ba-6baf361fac18@linux.alibaba.com> (raw)
In-Reply-To: <20260923010149.14391-1-kmehltretter@gmail.com>
On 9/23/26 9:01 AM, Karl Mehltretter wrote:
> Since commit 688bc88e2046 ("ocfs2/cluster: keep heartbeat local node
> stable"), o2hb_thread() leaves its loop and returns when the local node
> changes, for example after "echo 0 > node/<name>/local". The thread
> was started with kthread_run() and nothing holds a reference to its
> task_struct, so the task is freed once it exits, while reg->hr_task
> still points to it.
>
> Reading the region's pid attribute then reads the freed task, and
> removing the region calls kthread_stop() on it:
>
> BUG: KASAN: slab-use-after-free in o2hb_region_pid_show+0xb3/0xc0
> refcount_t: addition on 0; use-after-free.
> Oops: Oops: 0000 [#1] SMP KASAN NOPTI
> RIP: 0010:kthread_stop+0xb1/0x390
>
> The thread could already return by itself before, when heartbeat start
> was aborted or on an unclean stop, but the local node change makes it
> reachable from userspace at any time.
>
> Create the thread parked, take a reference on it and only then wake it,
Just a wording nit. kthread_create() doesn't leave the thread parked in
the kthread_park() sense. __kthread_parkme() only runs after the first
wake_up_process(), so "parked" here may be a little confused.
> so the reference cannot race with the thread exiting. Drop it with
> kthread_stop_put().
>
> Fixes: 688bc88e2046 ("ocfs2/cluster: keep heartbeat local node stable")
> Reported-by: Sashiko <sashiko-bot@kernel.org>
> Closes: https://sashiko.dev/#/patchset/20260616074931.3774929-1-zzzccc427%40gmail.com
> Assisted-by: LLM
> Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com>
The change looks fine to me.
Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com>
> ---
> Reproduced under QEMU x86_64 with KASAN, using one node over configfs
> and a loop device as the heartbeat region:
>
> echo 0 > cluster/c1/node/n0/local # heartbeat thread returns
> cat cluster/c1/heartbeat/<uuid>/pid # reads the freed task_struct
> rmdir cluster/c1/heartbeat/<uuid> # kthread_stop() on it
>
> With the patch, that sequence, a normal region removal and a start
> interrupted by a signal ran clean on two CPUs, five rounds each, and
> every heartbeat task_struct was freed.
>
> fs/ocfs2/cluster/heartbeat.c | 12 ++++++++----
> 1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/fs/ocfs2/cluster/heartbeat.c b/fs/ocfs2/cluster/heartbeat.c
> index 1c3def99bb076..a4c8ea695f5cf 100644
> --- a/fs/ocfs2/cluster/heartbeat.c
> +++ b/fs/ocfs2/cluster/heartbeat.c
> @@ -1966,18 +1966,22 @@ static ssize_t o2hb_region_dev_store(struct config_item *item,
> atomic_set(®->hr_unsteady_iterations, (live_threshold * 3));
> o2hb_set_region_stopping(reg, false);
>
> - hb_task = kthread_run(o2hb_thread, reg, "o2hb-%s",
> - reg->hr_item.ci_name);
> + hb_task = kthread_create(o2hb_thread, reg, "o2hb-%s",
> + reg->hr_item.ci_name);
> if (IS_ERR(hb_task)) {
> ret = PTR_ERR(hb_task);
> mlog_errno(ret);
> goto out;
> }
> + /* The thread may exit on its own, so pin it before it can run. */
> + get_task_struct(hb_task);
>
> spin_lock(&o2hb_live_lock);
> reg->hr_task = hb_task;
> spin_unlock(&o2hb_live_lock);
>
> + wake_up_process(hb_task);
> +
> ret = wait_event_interruptible(o2hb_steady_queue,
> atomic_read(®->hr_steady_iterations) == 0 ||
> reg->hr_node_deleted);
> @@ -2022,7 +2026,7 @@ static ssize_t o2hb_region_dev_store(struct config_item *item,
> spin_unlock(&o2hb_live_lock);
>
> if (hb_task)
> - kthread_stop(hb_task);
> + kthread_stop_put(hb_task);
>
> o2hb_unmap_slot_data(reg);
>
> @@ -2208,7 +2212,7 @@ static void o2hb_heartbeat_group_drop_item(struct config_group *group,
> spin_unlock(&o2hb_live_lock);
>
> if (hb_task)
> - kthread_stop(hb_task);
> + kthread_stop_put(hb_task);
>
> if (o2hb_global_heartbeat_active()) {
> spin_lock(&o2hb_live_lock);
next prev parent reply other threads:[~2026-09-23 2:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-23 1:01 Karl Mehltretter
2026-09-23 2:45 ` Joseph Qi [this message]
2026-09-23 21:22 ` Andrew Morton
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=e06390dc-fdfb-4bad-85ba-6baf361fac18@linux.alibaba.com \
--to=joseph.qi@linux.alibaba.com \
--cc=akpm@linux-foundation.org \
--cc=jlbec@evilplan.org \
--cc=kmehltretter@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mark@fasheh.com \
--cc=ocfs2-devel@lists.linux.dev \
--cc=sashiko-bot@kernel.org \
--cc=zzzccc427@gmail.com \
/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
all inboxes | Powered by JetHome®