From: Nikolay Amiantov <ab@fmap.me>
To: Miklos Szeredi <miklos@szeredi.hu>, Matthew Wilcox <willy@infradead.org>
Cc: fuse-devel@lists.sourceforge.net,
linux-fsdevel <linux-fsdevel@vger.kernel.org>,
Amir Goldstein <amir73il@gmail.com>,
fuse-devel@lists.linux.dev, linux-mm <linux-mm@kvack.org>
Subject: Re: [fuse-devel] Debugging a stale kernel cache during file growth
Date: Thu, 16 Apr 2026 19:41:37 +0700 [thread overview]
Message-ID: <59ab54f6-680e-456e-91f4-0a26889844ef@fmap.me> (raw)
In-Reply-To: <CAJfpegvxF7F+XKFKokSH4eOgCA0V2RNm6B54MS9nr9wG=U66OA@mail.gmail.com>
[-- Attachment #1.1: Type: text/plain, Size: 1336 bytes --]
On 4/16/26 19:12, Miklos Szeredi wrote:
> I wonder if we could clear PG_uptodate on the page which had its zero
> bytes exposed by the i_size increase?
I've actually tried that first. The idea was to get or create a new page
on the EOF boundary, lock it and poison it with an uptodate reset if we
need to. But this resulted in an instantaneous EIO in my test. If I
undestand correctly, this is because of another race condition:
* A fresh page gets created and read by FUSE; uptodate is true;
* The page is unlocked on return from `fuse_read_folio`;
* Simultaneously, we run `getattr`. The page gets locked, uptodate is
reset, the page is unlocked;
* Now back from `fuse_read_folio`, `filemap_read_folio` gets this page,
waits on `folio_wait_locked_killable` (waiting for the getattr to reset
uptodate), and then checks `folio_test_uptodate`;
* The page is !uptodate, so an EIO is returned.
So it effectively results in inability to have a successful `read` when
a `getattr` for a growing file happens simultaneously.
Finally, if I understand correctly, this also leaves a (much smaller)
theoretical race condition in `filemap_read` between checking uptodate
and getting the current inode size.
Attached is the patch with this attempt; please check that it does what
you meant in case I misunderstood.
Cheers,
Nikolay.
[-- Attachment #1.2: Type: text/html, Size: 1901 bytes --]
[-- Attachment #2: 0001-fuse-fix-stale-page-cache-data-race-on-file-growth.patch --]
[-- Type: text/x-patch, Size: 1830 bytes --]
From 512194b982fd0edbc1dcaa50fafad75b1be26d42 Mon Sep 17 00:00:00 2001
From: Nikolay Amiantov <ab@fmap.me>
Date: Wed, 15 Apr 2026 07:28:19 +0000
Subject: [PATCH] fuse: fix stale page cache data race on file growth
---
fs/fuse/inode.c | 36 ++++++++++++++++++++++++++++++++++--
1 file changed, 34 insertions(+), 2 deletions(-)
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 735abf426a06..20741869ac2f 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -334,10 +334,42 @@ void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
* extend local i_size without keeping userspace server in sync. So,
* attr->size coming from server can be stale. We cannot trust it.
*/
- if (!(cache_mask & STATX_SIZE))
- i_size_write(inode, attr->size);
+ if (!(cache_mask & STATX_SIZE)) {
+ if (S_ISREG(inode->i_mode) && attr->size > oldsize) {
+ struct folio *folio;
+ pgoff_t index = oldsize >> PAGE_SHIFT;
+
+ spin_unlock(&fi->lock);
+ folio = __filemap_get_folio(inode->i_mapping, index,
+ FGP_LOCK | FGP_CREAT,
+ mapping_gfp_mask(inode->i_mapping));
+ if (!IS_ERR(folio)) {
+ spin_lock(&fi->lock);
+ if (!test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
+ folio_clear_uptodate(folio);
+ i_size_write(inode, attr->size);
+ }
+ spin_unlock(&fi->lock);
+
+ folio_unlock(folio);
+ folio_put(folio);
+ goto size_updated;
+ }
+ spin_lock(&fi->lock);
+ /*
+ * Folio alloc failed (ENOMEM). Recheck in case a
+ * write/truncate started while we dropped the lock.
+ */
+ if (!test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state))
+ i_size_write(inode, attr->size);
+ } else {
+ i_size_write(inode, attr->size);
+ }
+ }
spin_unlock(&fi->lock);
+size_updated:
+
if (!cache_mask && S_ISREG(inode->i_mode)) {
bool inval = false;
--
2.47.0
next prev parent reply other threads:[~2026-04-16 12:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <898a4e10-6193-4671-b3b1-7c7bc562a671@fmap.me>
[not found] ` <CAOQ4uxjoS-PvnZ2poh0bx0C6ocTYwuEpfV0q5md15SjS620OMg@mail.gmail.com>
2026-04-16 12:12 ` Miklos Szeredi
2026-04-16 12:41 ` Nikolay Amiantov [this message]
2026-04-16 12:49 ` Nikolay Amiantov
2026-04-16 23:19 ` Matthew Wilcox
2026-04-17 6:24 ` Nikolay Amiantov
2026-04-16 22:54 ` Matthew Wilcox
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=59ab54f6-680e-456e-91f4-0a26889844ef@fmap.me \
--to=ab@fmap.me \
--cc=amir73il@gmail.com \
--cc=fuse-devel@lists.linux.dev \
--cc=fuse-devel@lists.sourceforge.net \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=miklos@szeredi.hu \
--cc=willy@infradead.org \
/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