inotify: show inotify mask flags in proc fdinfo
authorAmir Goldstein <amir73il@gmail.com>
Fri, 22 Apr 2022 12:03:12 +0000 (15:03 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Jun 2022 14:53:48 +0000 (16:53 +0200)
[ Upstream commit a32e697cda27679a0327ae2cafdad8c7170f548f ]

The inotify mask flags IN_ONESHOT and IN_EXCL_UNLINK are not "internal
to kernel" and should be exposed in procfs fdinfo so CRIU can restore
them.

Fixes: 6933599697c9 ("inotify: hide internal kernel bits from fdinfo")
Link: https://lore.kernel.org/r/20220422120327.3459282-2-amir73il@gmail.com
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/notify/fdinfo.c
fs/notify/inotify/inotify.h
fs/notify/inotify/inotify_user.c

index 517f88c1dbe5f65508e5a26df70b95e814ab323b..c62a87ee3b000057e7883c0496b1e455b0daacf6 100644 (file)
@@ -83,16 +83,9 @@ static void inotify_fdinfo(struct seq_file *m, struct fsnotify_mark *mark)
        inode_mark = container_of(mark, struct inotify_inode_mark, fsn_mark);
        inode = igrab(mark->connector->inode);
        if (inode) {
-               /*
-                * IN_ALL_EVENTS represents all of the mask bits
-                * that we expose to userspace.  There is at
-                * least one bit (FS_EVENT_ON_CHILD) which is
-                * used only internally to the kernel.
-                */
-               u32 mask = mark->mask & IN_ALL_EVENTS;
-               seq_printf(m, "inotify wd:%x ino:%lx sdev:%x mask:%x ignored_mask:%x ",
+               seq_printf(m, "inotify wd:%x ino:%lx sdev:%x mask:%x ignored_mask:0 ",
                           inode_mark->wd, inode->i_ino, inode->i_sb->s_dev,
-                          mask, mark->ignored_mask);
+                          inotify_mark_user_mask(mark));
                show_mark_fhandle(m, inode);
                seq_putc(m, '\n');
                iput(inode);
index c00d2caca8948662a06bfd715187d8640c774b3b..63050e25c84d5e12ba41a653793c0eb912a82349 100644 (file)
@@ -21,6 +21,18 @@ static inline struct inotify_event_info *INOTIFY_E(struct fsnotify_event *fse)
        return container_of(fse, struct inotify_event_info, fse);
 }
 
+/*
+ * INOTIFY_USER_FLAGS represents all of the mask bits that we expose to
+ * userspace.  There is at least one bit (FS_EVENT_ON_CHILD) which is
+ * used only internally to the kernel.
+ */
+#define INOTIFY_USER_MASK (IN_ALL_EVENTS | IN_ONESHOT | IN_EXCL_UNLINK)
+
+static inline __u32 inotify_mark_user_mask(struct fsnotify_mark *fsn_mark)
+{
+       return fsn_mark->mask & INOTIFY_USER_MASK;
+}
+
 extern void inotify_ignored_and_remove_idr(struct fsnotify_mark *fsn_mark,
                                           struct fsnotify_group *group);
 extern int inotify_handle_event(struct fsnotify_group *group,
index 7cc7d3fb1862fcb557933e63ec66361cf8bcfb7a..2393956542bcdb1ee9328f26ed5525c82b2fbd79 100644 (file)
@@ -95,7 +95,7 @@ static inline __u32 inotify_arg_to_mask(u32 arg)
        mask = (FS_IN_IGNORED | FS_EVENT_ON_CHILD | FS_UNMOUNT);
 
        /* mask off the flags used to open the fd */
-       mask |= (arg & (IN_ALL_EVENTS | IN_ONESHOT | IN_EXCL_UNLINK));
+       mask |= (arg & INOTIFY_USER_MASK);
 
        return mask;
 }