Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp472052pxf; Thu, 8 Apr 2021 06:56:47 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwz3wRE5TGUlVJRwM56EKzR6sH/l4mjsCjee9jbFP/apYMZJEj1XfZ4lkZntqRyqdqfac3B X-Received: by 2002:a05:6402:151a:: with SMTP id f26mr11625522edw.43.1617890206768; Thu, 08 Apr 2021 06:56:46 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1617890206; cv=none; d=google.com; s=arc-20160816; b=HGPOSLNoWUK9GIGcas6zpBU7jI6ZbfVA3gGpn6TF5AQsXlzMFctEE+B+2JIAvCJXYu UM2YdeS2IpATL6kp3E1pe7xHKPq7oEWtL3wZItw2Qg0lEojVJ2Di/v7JtOIgLkiCI9TM aPSsAuksilGL3eEfKy35bYuoF0HBhBrWE/nEWgWeDV9rqogbALg1wrC12apFbCMFiIr+ k1Tz5F93RWZ2m8iil161/qFiXjVDM3mA6X3Ovl07M7O1tJ9tMpqHy8K6o+M32b55NY6L mPYKevvoGE2AivybhLoVIfUBQMZKPf1Q8AsOn3v7WNJ2bVqcdhK+AYn7PasxTGU6MxI0 Fynw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=ZGBievVREv4weYQHqSh0Nz1Bl4tx2Zbxo2ebvD55FFA=; b=l686gUhlOidRb+l9uzoeBk9cKu4KDsvv6zTS11DvkxpBRFAjJv1R+lzuJvGDBoxEN5 mOnu0qss1YCglmA+vc8t4VBlNPzYFxcOtjYdZF4vunfELljkkscV6HFLcYO0t5kvMAz9 4sYWI2Sfjvb2BGYn9aDb8UuPU26qLIo1pY7ZDk4Ipg2NTopSqJSHgGGAjhHCYfl/rWgq REmXT0UWqSAX89zmiWMoPXrJ9uDZDFCzE3VYN/57KrLVregIDtRCJZELZ5V0NIwBshmQ 7PT+WB2ddDIlmWMHQkir8pQiDX0RN1wiPQBbtAIgc9EzUNJ1VaaV5aMV7CX9RW0WCHP2 nDWg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id u4si3762495ejn.119.2021.04.08.06.56.18; Thu, 08 Apr 2021 06:56:46 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230467AbhDHN4Q (ORCPT + 99 others); Thu, 8 Apr 2021 09:56:16 -0400 Received: from mx2.suse.de ([195.135.220.15]:58276 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230322AbhDHN4Q (ORCPT ); Thu, 8 Apr 2021 09:56:16 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 4DA0AB032; Thu, 8 Apr 2021 13:56:04 +0000 (UTC) Received: by quack2.suse.cz (Postfix, from userid 1000) id F11DD1F2B77; Thu, 8 Apr 2021 15:56:03 +0200 (CEST) Date: Thu, 8 Apr 2021 15:56:03 +0200 From: Jan Kara To: Zhang Yi Cc: linux-ext4@vger.kernel.org, tytso@mit.edu, adilger.kernel@dilger.ca, jack@suse.cz, yukuai3@huawei.com Subject: Re: [PATCH 3/3] ext4: add rcu to prevent use after free when umount filesystem Message-ID: <20210408135603.GD3271@quack2.suse.cz> References: <20210408113618.1033785-1-yi.zhang@huawei.com> <20210408113618.1033785-4-yi.zhang@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210408113618.1033785-4-yi.zhang@huawei.com> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Thu 08-04-21 19:36:18, Zhang Yi wrote: > There is a race between bdev_try_to_free_page() and > jbd2_journal_destroy() that could end up triggering a use after free > issue about journal. > > drop cache umount filesystem > bdev_try_to_free_page() > get journal > jbd2_journal_try_to_free_buffers() ext4_put_super() > kfree(journal) > access journal <-- lead to UAF > > The above race also could happens between the bdev_try_to_free_page() > and the error path of ext4_fill_super(). This patch avoid this race by > add rcu protection around accessing sbi->s_journal in > bdev_try_to_free_page() and destroy the journal after an rcu grace > period. > > Signed-off-by: Zhang Yi OK, I see the problem. But cannot the use-after-free happen even for the superblock itself (e.g., EXT4_SB(sb)->s_journal dereference)? I don't see anything preventing that as blkdev_releasepage() just shamelessly does: super = BDEV_I(page->mapping->host)->bdev.bd_super without making sure the sb cannot go away the instant we load a pointer to it. Or am I missing something Ted? If I'm right, we'd need some careful sprinkling of RCU, READ_ONCE(), and careful superblock reference grabbing to make bdev_try_to_free_page() safe against concurrent kill_block_super()... Honza > --- > fs/ext4/super.c | 33 ++++++++++++++++++++++++--------- > fs/jbd2/journal.c | 30 +++++++++++++++++++++++++++--- > include/linux/jbd2.h | 11 ++++++++++- > 3 files changed, 61 insertions(+), 13 deletions(-) > > diff --git a/fs/ext4/super.c b/fs/ext4/super.c > index 02ba47a5bc70..6bbaadc5357b 100644 > --- a/fs/ext4/super.c > +++ b/fs/ext4/super.c > @@ -1150,6 +1150,21 @@ static inline void ext4_quota_off_umount(struct super_block *sb) > } > #endif > > +static int ext4_journal_release(struct ext4_sb_info *sbi) > +{ > + journal_t *journal = sbi->s_journal; > + int ret; > + > + ret = jbd2_journal_release(journal); > + sbi->s_journal = NULL; > + /* > + * Call rcu to prevent racing with bdev_try_to_free_page() > + * accessing the journal at the same time. > + */ > + call_rcu(&journal->j_rcu, jbd2_journal_release_rcu); > + return ret; > +} > + > static void ext4_put_super(struct super_block *sb) > { > struct ext4_sb_info *sbi = EXT4_SB(sb); > @@ -1174,11 +1189,9 @@ static void ext4_put_super(struct super_block *sb) > > if (sbi->s_journal) { > aborted = is_journal_aborted(sbi->s_journal); > - err = jbd2_journal_destroy(sbi->s_journal); > - sbi->s_journal = NULL; > - if ((err < 0) && !aborted) { > + err = ext4_journal_release(sbi); > + if ((err < 0) && !aborted) > ext4_abort(sb, -err, "Couldn't clean up the journal"); > - } > } > > ext4_es_unregister_shrinker(sbi); > @@ -1449,14 +1462,18 @@ static int ext4_nfs_commit_metadata(struct inode *inode) > static int bdev_try_to_free_page(struct super_block *sb, struct page *page, > gfp_t wait) > { > - journal_t *journal = EXT4_SB(sb)->s_journal; > + journal_t *journal; > int ret = 0; > > WARN_ON(PageChecked(page)); > if (!page_has_buffers(page)) > return 0; > + > + rcu_read_lock(); > + journal = READ_ONCE(EXT4_SB(sb)->s_journal); > if (journal) > ret = jbd2_journal_try_to_free_buffers(journal, page); > + rcu_read_unlock(); > if (!ret) > return try_to_free_buffers(page); > return 0; > @@ -5146,10 +5163,8 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) > ext4_xattr_destroy_cache(sbi->s_ea_block_cache); > sbi->s_ea_block_cache = NULL; > > - if (sbi->s_journal) { > - jbd2_journal_destroy(sbi->s_journal); > - sbi->s_journal = NULL; > - } > + if (sbi->s_journal) > + ext4_journal_release(sbi); > failed_mount3a: > ext4_es_unregister_shrinker(sbi); > failed_mount3: > diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c > index 2dc944442802..071caaaa9de1 100644 > --- a/fs/jbd2/journal.c > +++ b/fs/jbd2/journal.c > @@ -76,6 +76,8 @@ EXPORT_SYMBOL(jbd2_journal_check_available_features); > EXPORT_SYMBOL(jbd2_journal_set_features); > EXPORT_SYMBOL(jbd2_journal_load); > EXPORT_SYMBOL(jbd2_journal_destroy); > +EXPORT_SYMBOL(jbd2_journal_release); > +EXPORT_SYMBOL(jbd2_journal_release_rcu); > EXPORT_SYMBOL(jbd2_journal_abort); > EXPORT_SYMBOL(jbd2_journal_errno); > EXPORT_SYMBOL(jbd2_journal_ack_err); > @@ -1951,14 +1953,14 @@ int jbd2_journal_load(journal_t *journal) > } > > /** > - * jbd2_journal_destroy() - Release a journal_t structure. > + * jbd2_journal_release() - Release a journal_t structure. > * @journal: Journal to act on. > * > * Release a journal_t structure once it is no longer in use by the > * journaled object. > * Return <0 if we couldn't clean up the journal. > */ > -int jbd2_journal_destroy(journal_t *journal) > +int jbd2_journal_release(journal_t *journal) > { > int err = 0; > > @@ -2021,11 +2023,33 @@ int jbd2_journal_destroy(journal_t *journal) > crypto_free_shash(journal->j_chksum_driver); > kfree(journal->j_fc_wbuf); > kfree(journal->j_wbuf); > - kfree(journal); > > return err; > } > > +/** > + * jbd2_journal_release_rcu() - Free a journal_t structure. > + * @rcu: rcu list node relate to the journal want to free. > + * > + * Freeing a journal_t structure after a rcu grace period. > + */ > +void jbd2_journal_release_rcu(struct rcu_head *rcu) > +{ > + kfree(container_of(rcu, journal_t, j_rcu)); > +} > + > +/** > + * jbd2_journal_destroy() - Release and free a journal_t structure. > + * @journal: Journal to act on. > + * > + * Release and free a journal_t structure once it is no longer in use > + * by the journaled object. > + */ > +void jbd2_journal_destroy(journal_t *journal) > +{ > + jbd2_journal_release(journal); > + kfree(journal); > +} > > /** > * jbd2_journal_check_used_features() - Check if features specified are used. > diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h > index 99d3cd051ac3..39a8d04596a2 100644 > --- a/include/linux/jbd2.h > +++ b/include/linux/jbd2.h > @@ -1238,6 +1238,13 @@ struct journal_s > */ > __u32 j_csum_seed; > > + /** > + * @j_rcu: > + * > + * Prevent racing between accessing and destroy at the same time. > + */ > + struct rcu_head j_rcu; > + > #ifdef CONFIG_DEBUG_LOCK_ALLOC > /** > * @j_trans_commit_map: > @@ -1509,7 +1516,9 @@ extern int jbd2_journal_set_features > extern void jbd2_journal_clear_features > (journal_t *, unsigned long, unsigned long, unsigned long); > extern int jbd2_journal_load (journal_t *journal); > -extern int jbd2_journal_destroy (journal_t *); > +extern void jbd2_journal_destroy (journal_t *); > +extern int jbd2_journal_release (journal_t *); > +extern void jbd2_journal_release_rcu (struct rcu_head *rcu); > extern int jbd2_journal_recover (journal_t *journal); > extern int jbd2_journal_wipe (journal_t *, int); > extern int jbd2_journal_skip_recovery (journal_t *); > -- > 2.25.4 > -- Jan Kara SUSE Labs, CR