On Mon, Dec 02, 2024 at 10:26:14AM -0500, Brian Foster wrote: > On Sat, Nov 30, 2024 at 09:39:29PM +0800, Long Li wrote: > > When performing fsstress test with this patch set, there is a very low probability of > > encountering an issue where isize is less than ioend->io_offset in iomap_add_to_ioend. > > After investigation, this was found to be caused by concurrent with truncate operations. > > Consider a scenario with 4K block size and a file size of 12K. > > > > //write back [8K, 12K] //truncate file to 4K > > ---------------------- ---------------------- > > iomap_writepage_map xfs_setattr_size folio is locked here > > iomap_writepage_handle_eof > > truncate_setsize > > i_size_write(inode, newsize) //update inode size to 4K truncate_setsize() is supposed to invalidate whole pages beyond EOF before completing, yes? /** * truncate_setsize - update inode and pagecache for a new file size * @inode: inode * @newsize: new file size * * truncate_setsize updates i_size and performs pagecache truncation (if * necessary) to @newsize. It will be typically be called from the filesystem's * setattr function when ATTR_SIZE is passed in. * * Must be called with a lock serializing truncates and writes (generally * i_rwsem but e.g. xfs uses a different lock) and before all filesystem * specific block truncation has been performed. */ void truncate_setsize(struct inode *inode, loff_t newsize) { loff_t oldsize = inode->i_size; i_size_write(inode, newsize); if (newsize > oldsize) pagecache_isize_extended(inode, oldsize, newsize); truncate_pagecache(inode, newsize); } EXPORT_SYMBOL(truncate_setsize); Note that this says "serialising truncates and writes" - the emphasis needs to be placed on "writes" here, not "writeback". The comment about XFS is also stale - it uses the i_rwsem here like all other filesystems now. The issue demonstrated above is -write back- racing against truncate_setsize(), not writes. And -write back- is only serialised against truncate_pagecache() by folio locks and state, not inode locks. hence any change to the inode size in truncate can and will race with writeback in progress. Hence writeback needs to be able to handle folios end up beyond EOF at any time during writeback. i.e. once we have a folio locked in writeback and we've checked against i_size_read() for validity, it needs to be considered a valid offset all the way through to IO completion. > > iomap_writepage_map_blocks > > iomap_add_to_ioend > > < iszie < ioend->io_offset> > > <iszie = 4K, ioend->io_offset=8K> Ah, so the bug fix adds a new call to i_size_read() in the IO submission path? I suspect that is the underlying problem leading to the observed behaviour.... > > > > It appears that in extreme cases, folios beyond EOF might be written back, > > resulting in situations where isize is less than pos. In such cases, > > maybe we should not trim the io_size further. > > > > Hmm.. it might be wise to characterize this further to determine whether > there are potentially larger problems to address before committing to > anything. For example, assuming truncate acquires ilock and does > xfs_itruncate_extents() and whatnot before this ioend submits/completes, I don't think xfs_itruncate_extents() is the concern here - that happens after the page cache and writeback has been sorted out and the ILOCK has been taken and the page cache state should have already been sorted out. truncate_setsize() does that for us; it guarantees that all writeback in the truncate down range has been completed and the page cache invalidated. We hold the MMAP_LOCK (filemap_invalidate_lock()) so no new pages can be instantiated over the range whilst we are running xfs_itruncate_extents(). hence once truncate_setsize() returns, we are guaranteed that there will be no IO in progress or can be started over the range we are removing. Really, the issue is that writeback mappings have to be able to handle the range being mapped suddenly appear to be beyond EOF. This behaviour is a longstanding writeback constraint, and is what iomap_writepage_handle_eof() is attempting to handle. We handle this by only sampling i_size_read() whilst we have the folio locked and can determine the action we should take with that folio (i.e. nothing, partial zeroing, or skip altogether). Once we've made the decision that the folio is within EOF and taken action on it (i.e. moved the folio to writeback state), we cannot then resample the inode size because a truncate may have started and changed the inode size. We have to complete the mapping of the folio to disk blocks - the disk block mapping is guaranteed to be valid for the life of the IO because the folio is locked and under writeback - and submit the IO so that truncate_pagecache() will unblock and invalidate the folio when the IO completes. Hence writeback vs truncate serialisation is really dependent on only sampling the inode size -once- whilst the dirty folio we are writing back is locked. I suspect that we can store and pass the sampled inode size through the block mapping and ioend management code so it is constant for the entire folio IO submission process, but whether we can do that and still fix the orginal issue that we are trying to fix is not something I've considered at this point.... > does anything in that submission or completion path detect and handle > this scenario gracefully? What if the ioend happens to be unwritten > post-eof preallocation and completion wants to convert blocks that might > no longer exist in the file..? That can't happen because writeback must complete before truncate_setsize() will be allowed to remove the pages from the cache before xfs_itruncate_extents() can run. -Dave. -- Dave Chinner david@xxxxxxxxxxxxx