Page MenuHomeFreeBSD

fusefs: fix an interaction between copy_file_range and mmap
ClosedPublic

Authored by asomers on Jan 13 2024, 10:43 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 27, 4:21 AM
Unknown Object (File)
Mon, Apr 20, 2:10 AM
Unknown Object (File)
Sun, Apr 12, 3:50 PM
Unknown Object (File)
Mar 20 2026, 5:16 AM
Unknown Object (File)
Mar 9 2026, 9:46 PM
Unknown Object (File)
Mar 9 2026, 1:04 PM
Unknown Object (File)
Mar 8 2026, 7:43 AM
Unknown Object (File)
Mar 1 2026, 7:03 PM
Subscribers

Details

Summary

If a copy_file_range operation tries to read from a page that was
previously written via mmap, that page must be flushed first.

MFC after: 2 weeks

Test Plan

two test cases added to the fusefs test suite

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sys/fs/fuse/fuse_vnops.c
912

Indent is strange.

I suggest to use (newly added) vnode_pager_clear_sync() instead, I do not think that possible optimization of flushing a range is significant there.

  • Use vnode_pager_clean_sync
This revision is now accepted and ready to land.Jan 15 2024, 9:53 PM