From: Jens Axboe <[email protected]>
To: Dan Carpenter <[email protected]>
Cc: Dmitry Vyukov <[email protected]>,
syzbot <[email protected]>,
Al Viro <[email protected]>,
[email protected],
linux-fsdevel <[email protected]>,
Borislav Petkov <[email protected]>, "H. Peter Anvin" <[email protected]>,
LKML <[email protected]>,
Ingo Molnar <[email protected]>,
Peter Zijlstra <[email protected]>,
syzkaller-bugs <[email protected]>,
Thomas Gleixner <[email protected]>,
[email protected], the arch/x86 maintainers <[email protected]>
Subject: Re: KASAN: use-after-free Read in percpu_ref_switch_to_atomic_rcu
Date: Fri, 6 Mar 2020 07:57:07 -0700 [thread overview]
Message-ID: <[email protected]> (raw)
In-Reply-To: <20200306143552.GC19839@kadam>
On 3/6/20 7:35 AM, Dan Carpenter wrote:
>
> There a bunch of similar bugs. It's seems a common anti-pattern.
>
> block/blk-cgroup.c:85 blkg_free() warn: freeing 'blkg' which has percpu_ref_exit()
> block/blk-core.c:558 blk_alloc_queue_node() warn: freeing 'q' which has percpu_ref_exit()
> drivers/md/md.c:5528 md_free() warn: freeing 'mddev' which has percpu_ref_exit()
> drivers/target/target_core_transport.c:583 transport_free_session() warn: freeing 'se_sess' which has percpu_ref_exit()
> fs/aio.c:592 free_ioctx() warn: freeing 'ctx' which has percpu_ref_exit()
> fs/aio.c:806 ioctx_alloc() warn: freeing 'ctx' which has percpu_ref_exit()
> fs/io_uring.c:6115 io_sqe_files_unregister() warn: freeing 'data' which has percpu_ref_exit()
> fs/io_uring.c:6431 io_sqe_files_register() warn: freeing 'ctx->file_data' which has percpu_ref_exit()
> fs/io_uring.c:7134 io_ring_ctx_free() warn: freeing 'ctx' which has percpu_ref_exit()
> kernel/cgroup/cgroup.c:4948 css_free_rwork_fn() warn: freeing 'css' which has percpu_ref_exit()
> mm/backing-dev.c:615 cgwb_create() warn: freeing 'wb' which has percpu_ref_exit()
The file table io_uring issue is using the ref in a funky way, switching
in and out of atomic if we need to quiesce it. That's different from
other use cases, that just use it as a "normal" reference. Hence for the
funky use case, you can potentially have a switch in progress when you
exit the ref. You really want to wait for that, the easiest solution is
to punt the exit + free to an RCU callback, if there's nothing else you
need to handle once the switch is done.
So I would not be so quick to assume that similar patterns (exit + free)
have similar issues.
--
Jens Axboe
next prev parent reply other threads:[~2020-03-06 14:57 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <[email protected]>
2020-03-04 7:59 ` KASAN: use-after-free Read in percpu_ref_switch_to_atomic_rcu Dmitry Vyukov
2020-03-04 14:40 ` Jens Axboe
2020-03-06 14:35 ` Dan Carpenter
2020-03-06 14:57 ` Jens Axboe [this message]
2020-03-06 14:57 ` Jann Horn
2020-03-06 15:34 ` Jens Axboe
2020-03-06 15:36 ` Jann Horn
2020-03-06 16:44 ` Paul E. McKenney
2020-03-06 17:00 ` Jens Axboe
2020-03-06 17:08 ` Jens Axboe
2020-03-06 17:19 ` Paul E. McKenney
2020-03-06 17:21 ` Jens Axboe
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 \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/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