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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 08F76C4332F for ; Wed, 6 Apr 2022 16:12:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237386AbiDFQOm (ORCPT ); Wed, 6 Apr 2022 12:14:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35650 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237354AbiDFQOY (ORCPT ); Wed, 6 Apr 2022 12:14:24 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 366365DA04; Wed, 6 Apr 2022 06:41:07 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id C82B1615E4; Wed, 6 Apr 2022 13:41:06 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B02E5C385A3; Wed, 6 Apr 2022 13:41:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1649252466; bh=BmgZ/1mmISCzEBB5knGB373Rii6dB/CAioOuAHnaKJA=; h=Subject:From:To:Cc:Date:In-Reply-To:References:From; b=JlSFfjYaAB9PLg4Rofz28z7Pvxlm2o7uwTzjQJBHk1qaQ2fjpGZlexGkRtO+CGxqC lBiig24iJqQDbfq21HS92W5sy4K8LteUZMV+s7P3yAHOyqtQWPRT/rI4gDkOdokzOZ b0hWn8YlNYnHRU7RZFTExCRrMxsUhirWFc3wyUpjEUG315qdyf5rhHSxdXWQKJI3Hh zfqV8/1JDs/WWubPcOp65sZTH9P9oFVkiXRls1fs4DyybyWOPUV4cePez0+gu7yR5p gdos7XP19oddCW85Aa9t1cKsVGbatF0tPOt33yiqTWM1UNyJTGLGw+u0ueiaGRGfWs xGrrzRMWuPV4g== Message-ID: Subject: Re: [PATCH v2] ceph: invalidate pages when doing DIO in encrypted inodes From: Jeff Layton To: Xiubo Li , =?ISO-8859-1?Q?Lu=EDs?= Henriques Cc: Ilya Dryomov , ceph-devel@vger.kernel.org, linux-kernel@vger.kernel.org Date: Wed, 06 Apr 2022 09:41:04 -0400 In-Reply-To: <321104e6-36db-c143-a7ba-58f9199e6fb7@redhat.com> References: <20220401133243.1075-1-lhenriques@suse.de> <878rsia391.fsf@brahms.olymp> <6ba91390-83e8-8702-2729-dc432abd3cc5@redhat.com> <87zgky8n0o.fsf@brahms.olymp> <6306fba71325483a1ea22fa73250c8777ea647d7.camel@kernel.org> <321104e6-36db-c143-a7ba-58f9199e6fb7@redhat.com> Content-Type: text/plain; charset="ISO-8859-15" User-Agent: Evolution 3.42.4 (3.42.4-1.fc35) MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2022-04-06 at 21:10 +0800, Xiubo Li wrote: > On 4/6/22 7:48 PM, Jeff Layton wrote: > > On Wed, 2022-04-06 at 12:33 +0100, Luís Henriques wrote: > > > Xiubo Li writes: > > > > > > > On 4/6/22 6:57 PM, Luís Henriques wrote: > > > > > Xiubo Li writes: > > > > > > > > > > > On 4/1/22 9:32 PM, Luís Henriques wrote: > > > > > > > When doing DIO on an encrypted node, we need to invalidate the page cache in > > > > > > > the range being written to, otherwise the cache will include invalid data. > > > > > > > > > > > > > > Signed-off-by: Luís Henriques > > > > > > > --- > > > > > > > fs/ceph/file.c | 11 ++++++++++- > > > > > > > 1 file changed, 10 insertions(+), 1 deletion(-) > > > > > > > > > > > > > > Changes since v1: > > > > > > > - Replaced truncate_inode_pages_range() by invalidate_inode_pages2_range > > > > > > > - Call fscache_invalidate with FSCACHE_INVAL_DIO_WRITE if we're doing DIO > > > > > > > > > > > > > > Note: I'm not really sure this last change is required, it doesn't really > > > > > > > affect generic/647 result, but seems to be the most correct. > > > > > > > > > > > > > > diff --git a/fs/ceph/file.c b/fs/ceph/file.c > > > > > > > index 5072570c2203..b2743c342305 100644 > > > > > > > --- a/fs/ceph/file.c > > > > > > > +++ b/fs/ceph/file.c > > > > > > > @@ -1605,7 +1605,7 @@ ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos, > > > > > > > if (ret < 0) > > > > > > > return ret; > > > > > > > - ceph_fscache_invalidate(inode, false); > > > > > > > + ceph_fscache_invalidate(inode, (iocb->ki_flags & IOCB_DIRECT)); > > > > > > > ret = invalidate_inode_pages2_range(inode->i_mapping, > > > > > > > pos >> PAGE_SHIFT, > > > > > > > (pos + count - 1) >> PAGE_SHIFT); > > > > > > The above has already invalidated the pages, why doesn't it work ? > > > > > I suspect the reason is because later on we loop through the number of > > > > > pages, call copy_page_from_iter() and then ceph_fscrypt_encrypt_pages(). > > > > Checked the 'copy_page_from_iter()', it will do the kmap for the pages but will > > > > kunmap them again later. And they shouldn't update the i_mapping if I didn't > > > > miss something important. > > > > > > > > For 'ceph_fscrypt_encrypt_pages()' it will encrypt/dencrypt the context inplace, > > > > IMO if it needs to map the page and it should also unmap it just like in > > > > 'copy_page_from_iter()'. > > > > > > > > I thought it possibly be when we need to do RMW, it may will update the > > > > i_mapping when reading contents, but I checked the code didn't find any > > > > place is doing this. So I am wondering where tha page caches come from ? If that > > > > page caches really from reading the contents, then we should discard it instead > > > > of flushing it back ? > > > > > > > > BTW, what's the problem without this fixing ? xfstest fails ? > > > Yes, generic/647 fails if you run it with test_dummy_encryption. And I've > > > also checked that the RMW code was never executed in this test. > > > > > > But yeah I have assumed (perhaps wrongly) that the kmap/kunmap could > > > change the inode->i_mapping. > > > > > No, kmap/unmap are all about high memory and 32-bit architectures. Those > > functions are usually no-ops on 64-bit arches. > > Yeah, right. > > So they do nothing here. > > > > In my debugging this seemed to be the case > > > for the O_DIRECT path. That's why I added this extra call here. > > > > > I agree with Xiubo that we really shouldn't need to invalidate multiple > > times. > > > > I guess in this test, we have a DIO write racing with an mmap read > > Probably what's happening is either that we can't invalidate the page > > because it needs to be cleaned, or the mmap read is racing in just after > > the invalidate occurs but before writeback. > > This sounds a possible case. > > > > In any case, it might be interesting to see whether you're getting > > -EBUSY back from the new invalidate_inode_pages2 calls with your patch. > > > If it's really this case maybe this should be retried some where ? > Possibly, or we may need to implement ->launder_folio. Either way, we need to understand what's happening first and then we can figure out a solution for it. -- Jeff Layton