public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: "zhangyi (F)" <yi.zhang@huawei.com>
Cc: linux-ext4@vger.kernel.org, tytso@mit.edu, jack@suse.cz,
	adilger.kernel@dilger.ca
Subject: Re: [PATCH v4] ext4: fix potential use after free in system zone via remount with noblock_validity
Date: Thu, 15 Aug 2019 11:35:42 +0200	[thread overview]
Message-ID: <20190815093542.GA14313@quack2.suse.cz> (raw)
In-Reply-To: <20190815081631.19437-1-yi.zhang@huawei.com>

On Thu 15-08-19 16:16:31, zhangyi (F) wrote:
> Remount process will release system zone which was allocated before if
> "noblock_validity" is specified. If we mount an ext4 file system to two
> mountpoints with default mount options, and then remount one of them
> with "noblock_validity", it may trigger a use after free problem when
> someone accessing the other one.
> 
>  # mount /dev/sda foo
>  # mount /dev/sda bar
> 
> User access mountpoint "foo"   |   Remount mountpoint "bar"
>                                |
> ext4_map_blocks()              |   ext4_remount()
> check_block_validity()         |   ext4_setup_system_zone()
> ext4_data_block_valid()        |   ext4_release_system_zone()
>                                |   free system_blks rb nodes
> access system_blks rb nodes    |
> trigger use after free         |
> 
> This problem can also be reproduced by one mountpint, At the same time,
> add_system_zone() can get called during remount as well so there can be
> racing ext4_data_block_valid() reading the rbtree at the same time.
> 
> This patch add RCU to protect system zone from releasing or building
> when doing a remount which inverse current "noblock_validity" mount
> option. It assign the rbtree after the whole tree was complete and
> do actual freeing after rcu grace period, avoid any intermediate state.
> 
> Signed-off-by: zhangyi (F) <yi.zhang@huawei.com>
> ---
> Changes since v3:
>  - add comments before ext4_setup_system_zone() and
>    ext4_release_system_zone() to explain why we need to serializes update
>    sbi->system_blks pointer.
>  - Fix block validity checking logic changes in v3.

Thanks for the patch! The patch looks good. Just some language fixes in the
new comments below.  You can add:

Reviewed-by: Jan Kara <jack@suse.cz>

> +/*
> + * Build system zone rbtree which is used for block validity checking.
> + *
> + * Note that system_blks pointer should be serializes updated at remount
> + * time even under sb->s_umount semaphore protection, due to it can be
> + * racing with ext4_data_block_valid() reading the system_blks rbtree at
> + * the same time.

I'd rephrase this paragraph a bit to be easier to understand:

The update of system_blks pointer in this function is protected by
sb->s_umount semaphore. However we have to be careful as we can be racing
with ext4_data_block_valid() calls reading system_blks rbtree protected
only by RCU. That's why we first build the rbtree and then swap it in place.

> -/* Called when the filesystem is unmounted */
> +/*
> + * Called when the filesystem is unmounted or when remounting it with
> + * noblock_validity specified.
> + *
> + * Note that system_blks pointer should be serializes updated and do
> + * the actual freeing after the RCU grace period at remount time even
> + * under sb->s_umount semaphore protection, due to it can be racing with
> + * ext4_data_block_valid() reading the system_blks rbtree at the same
> + * time.
> + */

Similarly here I'd phrase the last paragraph as:

The update of system_blks pointer in this function is protected by
sb->s_umount semaphore. However we have to be careful as we can be racing
with ext4_data_block_valid() calls reading system_blks rbtree protected
only by RCU. So we first clear the system_blks pointer and then free the
rbtree only after RCU grace period expires.

								Honza
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

  reply	other threads:[~2019-08-15  9:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-15  8:16 [PATCH v4] ext4: fix potential use after free in system zone via remount with noblock_validity zhangyi (F)
2019-08-15  9:35 ` Jan Kara [this message]
2019-08-15 11:33   ` zhangyi (F)

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=20190815093542.GA14313@quack2.suse.cz \
    --to=jack@suse.cz \
    --cc=adilger.kernel@dilger.ca \
    --cc=linux-ext4@vger.kernel.org \
    --cc=tytso@mit.edu \
    --cc=yi.zhang@huawei.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