]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
fsnotify: disable pre-content and permission events by default
authorAmir Goldstein <amir73il@gmail.com>
Mon, 3 Feb 2025 22:32:05 +0000 (23:32 +0100)
committerChristian Brauner <brauner@kernel.org>
Fri, 7 Feb 2025 09:27:27 +0000 (10:27 +0100)
After introducing pre-content events, we had a regression related to
disabling huge faults on files that should never have pre-content events
enabled.

This happened because the default f_mode of allocated files (0) does
not disable pre-content events.

Pre-content events are disabled in file_set_fsnotify_mode_by_watchers()
but internal files may not get to call this helper.

Initialize f_mode to disable permission and pre-content events for all
files and if needed they will be enabled for the callers of
file_set_fsnotify_mode_by_watchers().

Fixes: 20bf82a898b6 ("mm: don't allow huge faults for files with pre content watches")
Reported-by: Alex Williamson <alex.williamson@redhat.com>
Closes: https://lore.kernel.org/linux-fsdevel/20250131121703.1e4d00a7.alex.williamson@redhat.com/
Tested-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Link: https://lore.kernel.org/r/20250203223205.861346-4-amir73il@gmail.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/file_table.c

index 35b93da6c5cb1db2c6937162f2fb04faee0c0328..5c00dc38558daf6cc8cd2062add8ca6771b296cb 100644 (file)
@@ -194,6 +194,11 @@ static int init_file(struct file *f, int flags, const struct cred *cred)
         * refcount bumps we should reinitialize the reused file first.
         */
        file_ref_init(&f->f_ref, 1);
+       /*
+        * Disable permission and pre-content events for all files by default.
+        * They may be enabled later by file_set_fsnotify_mode_from_watchers().
+        */
+       file_set_fsnotify_mode(f, FMODE_NONOTIFY_PERM);
        return 0;
 }