From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5783EC433E6 for ; Tue, 1 Sep 2020 23:58:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 254C7206DD for ; Tue, 1 Sep 2020 23:58:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726512AbgIAX6l (ORCPT ); Tue, 1 Sep 2020 19:58:41 -0400 Received: from mail104.syd.optusnet.com.au ([211.29.132.246]:41610 "EHLO mail104.syd.optusnet.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725949AbgIAX6k (ORCPT ); Tue, 1 Sep 2020 19:58:40 -0400 Received: from dread.disaster.area (pa49-195-191-192.pa.nsw.optusnet.com.au [49.195.191.192]) by mail104.syd.optusnet.com.au (Postfix) with ESMTPS id 273CA8239EA; Wed, 2 Sep 2020 09:58:32 +1000 (AEST) Received: from dave by dread.disaster.area with local (Exim 4.92.3) (envelope-from ) id 1kDGAY-0007OE-Vq; Wed, 02 Sep 2020 09:58:30 +1000 Date: Wed, 2 Sep 2020 09:58:30 +1000 From: Dave Chinner To: Josef Bacik Cc: Johannes Thumshirn , David Sterba , "linux-btrfs @ vger . kernel . org" , Filipe Manana , Christoph Hellwig , Linux FS Devel Subject: Re: [RFC PATCH] btrfs: don't call btrfs_sync_file from iomap context Message-ID: <20200901235830.GI12096@dread.disaster.area> References: <20200901130644.12655-1-johannes.thumshirn@wdc.com> <42efa646-73cd-d884-1c9c-dd889294bde2@toxicpanda.com> <20200901214613.GH12096@dread.disaster.area> <551b2801-d626-9bd7-7cb2-9d20674c06bf@toxicpanda.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <551b2801-d626-9bd7-7cb2-9d20674c06bf@toxicpanda.com> X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.3 cv=XJ9OtjpE c=1 sm=1 tr=0 cx=a_idp_d a=vvDRHhr1aDYKXl+H6jx2TA==:117 a=vvDRHhr1aDYKXl+H6jx2TA==:17 a=kj9zAlcOel0A:10 a=reM5J-MqmosA:10 a=dfLDlhdaAAAA:20 a=JF9118EUAAAA:8 a=7-415B0cAAAA:8 a=7n1AnNH-CuFnmmWNeWYA:9 a=KVO0SpxJj8YM-94j:21 a=8y0LEHwoeZQ-BbQx:21 a=CjuIK1q_8ugA:10 a=xVlTc564ipvMDusKsbsT:22 a=biEYGPWJfzWAr4FL6Ov7:22 Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org On Tue, Sep 01, 2020 at 06:19:17PM -0400, Josef Bacik wrote: > On 9/1/20 5:46 PM, Dave Chinner wrote: > > On Tue, Sep 01, 2020 at 11:11:58AM -0400, Josef Bacik wrote: > > > On 9/1/20 9:06 AM, Johannes Thumshirn wrote: > > > > This happens because iomap_dio_complete() calls into generic_write_sync() > > > > if we have the data-sync flag set. But as we're still under the > > > > inode_lock() from btrfs_file_write_iter() we will deadlock once > > > > btrfs_sync_file() tries to acquire the inode_lock(). > > > > > > > > Calling into generic_write_sync() is not needed as __btrfs_direct_write() > > > > already takes care of persisting the data on disk. We can temporarily drop > > > > the IOCB_DSYNC flag before calling into __btrfs_direct_write() so the > > > > iomap code won't try to call into the sync routines as well. > > > > > > > > References: https://github.com/btrfs/fstests/issues/12 > > > > Fixes: da4d7c1b4c45 ("btrfs: switch to iomap for direct IO") > > > > Signed-off-by: Johannes Thumshirn > > > > --- > > > > fs/btrfs/file.c | 5 ++++- > > > > 1 file changed, 4 insertions(+), 1 deletion(-) > > > > > > > > diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c > > > > index b62679382799..c75c0f2a5f72 100644 > > > > --- a/fs/btrfs/file.c > > > > +++ b/fs/btrfs/file.c > > > > @@ -2023,6 +2023,7 @@ static ssize_t btrfs_file_write_iter(struct kiocb *iocb, > > > > atomic_inc(&BTRFS_I(inode)->sync_writers); > > > > if (iocb->ki_flags & IOCB_DIRECT) { > > > > + iocb->ki_flags &= ~IOCB_DSYNC; > > > > num_written = __btrfs_direct_write(iocb, from); > > > > } else { > > > > num_written = btrfs_buffered_write(iocb, from); > > > > @@ -2046,8 +2047,10 @@ static ssize_t btrfs_file_write_iter(struct kiocb *iocb, > > > > if (num_written > 0) > > > > num_written = generic_write_sync(iocb, num_written); > > > > - if (sync) > > > > + if (sync) { > > > > + iocb->ki_flags |= IOCB_DSYNC; > > > > atomic_dec(&BTRFS_I(inode)->sync_writers); > > > > + } > > > > out: > > > > current->backing_dev_info = NULL; > > > > return num_written ? num_written : err; > > > > > > > > > > Christoph, I feel like this is broken. > > > > No, it isn't broken, it's just a -different design- to the old > > direct IO path. It was done this way done by design because the old > > way of requiring separate paths for calling generic_write_sync() for > > sync and AIO is .... nasty, and doesn't allow for optimisation of > > IO completion functionality that may be wholly dependent on > > submission time inode state. > > > > e.g. moving the O_DSYNC completion out of the context of the > > IOMAP_F_DIRTY submission context means we can't reliably do FUA > > writes to avoid calls to generic_write_sync() completely. > > Compromising that functionality is going to cause major performance > > regressions for high performance enterprise databases using O_DSYNC > > AIO+DIO... > > > > > Xfs and ext4 get away with this for > > > different reasons, > > > > No, they "don't get away with it", this is how it was designed to > > work. > > > > Didn't mean this as a slight, just saying this is why it works fine for you > guys and doesn't work for us. Because when we first were looking at this we > couldn't understand how it didn't blow up for you and it did blow up for us. > I'm providing context, not saying you guys are broken or doing it wrong. > > > > ext4 doesn't take the inode_lock() at all in fsync, and > > > xfs takes the ILOCK instead of the IOLOCK, so it's fine. However btrfs uses > > > inode_lock() in ->fsync (not for the IO, just for the logging part). A long > > > time ago I specifically pushed the inode locking down into ->fsync() > > > handlers to give us this sort of control. > > > > > > I'm not 100% on the iomap stuff, but the fix seems like we need to move the > > > generic_write_sync() out of iomap_dio_complete() completely, and the callers > > > do their own thing, much like the normal generic_file_write_iter() does. > > > > That effectively breaks O_DSYNC AIO and requires us to reintroduce > > all the nasty code that the old direct IO path required both the > > infrastructure and the filesystems to handle it. That's really not > > acceptible solution to an internal btrfs locking issue... > > > > > And then I'd like to add a WARN_ON(lockdep_is_held()) in vfs_fsync_range() > > > so we can avoid this sort of thing in the future. What do you think? > > > > That's not going to work, either. There are filesystems that call > > vfs_fsync_range() directly from under the inode_lock(). For example, > > the fallocate() path in gfs2. And it's called under the ext4 and XFS > > MMAPLOCK from the dax page fault path, which is the page fault > > equivalent of the inode_lock(). IOWs, if you know that you aren't > > going to take inode locks in your ->fsync() method, there's nothing > > that says you cannot call vfs_fsync_range() while holding those > > inode locks. > > I converted ->fsync to not have the i_mutex taken before calling _years_ ago > > 02c24a82187d5a628c68edfe71ae60dc135cd178 > > and part of what I did was update the locking document around it. So in my > head, the locking rules were "No VFS locks held on entry". Obviously that's > not true today, but if we're going to change the assumptions around these > things then we really ought to > > 1) Make sure they're true for _all_ file systems. > 2) Document it when it's changed. > > Ok so iomap was designed assuming it was safe to take the inode_lock() > before calling ->fsync. No, I did not say that. Stop trying to put your words in my mouth, Josef. The iomap design simply assumes that ->fsync can run without needing to hold the same locks as IO submission requires. iomap requires a ->fsync implementation that doesn't take the inode_lock() if the inode_lock() is used to serialise IO submission. i.e. iomap separates IO exclusion from -internal inode state serialisation-. This design assumption means DIO submission can safely -flush dirty data-, invalidate the page cache, sync the inode/journal to stable storage, etc all while holding the IO exclusion lock to ensure submission won't race with other metadata modification operations like truncate, holepunch, etc. IOWs, iomap expects the inode_lock() to work as an -IO submission exclusion lock-, not as an inode _state protection_ lock. Yes, this means iomap has a different IO locking model to the original direct and bufferhead based buffered IO paths. However, these architectural changes are required to replace bufferhead based locking, implement the physical storage exclusion DAX requires, close mmap vs hole punch races, etc. In practice, this means all the inode state in XFS (and ext4) are protected by internal inode locks rather than the inode_lock(). As such, they they do not require the inode_lock() to be able to write back dirty data or modify inode state or flush inode state to stable storage. Put simply: converting a filesystem to use iomap is not a "change the filesystem interfacing code and it will work" modification. We ask that filesystems are modified to conform to the iomap IO exclusion model; adding special cases for every potential locking and mapping quirk every different filesystem has is part of what turned the old direct IO code into an unmaintainable nightmare. > That's fine, but this is kind of a bad way to find > out. We really shouldn't have generic helper's that have different generic > locking rules based on which file system uses them. We certainly can change the rules for new infrastructure. Indeed, we had to change the rules to support DAX. The whole point of the iomap infrastructure was that it enabled us to use code that already worked for DAX (the XFS code) in multiple filesystems. And as people have realised that the DIO via iomap is much faster than the old DIO code and is a much more efficient way of doing large buffered IO, other filesystems have started to use it. However.... > Because then we end up > with situations like this, where suddenly we're having to come up with some > weird solution because the generic thing only works for a subset of file > systems. Thanks, .... we've always said "you need to change the filesystem code to use iomap". This is simply a reflection on the fact that iomap has different rules and constraints to the old code and so it's not a direct plug in replacement. There are no short cuts here... Cheers, Dave. -- Dave Chinner david@fromorbit.com