aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2009-12-17 21:24:25 -0500
committerEric Paris <eparis@redhat.com>2010-07-28 09:58:54 -0400
commitecf081d1a73b077916f514f2ec744ded32b88ca1 (patch)
treef1a9892131a297d0f67cb0fd9189e3aac83e2219 /include/linux/fs.h
parent35566087099c3ff8901d65ee98af56347ee66e5a (diff)
vfs: introduce FMODE_NONOTIFY
This is a new f_mode which can only be set by the kernel. It indicates that the fd was opened by fanotify and should not cause future fanotify events. This is needed to prevent fanotify livelock. An example of obvious livelock is from fanotify close events. Process A closes file1 This creates a close event for file1. fanotify opens file1 for Listener X Listener X deals with the event and closes its fd for file1. This creates a close event for file1. fanotify opens file1 for Listener X Listener X deals with the event and closes its fd for file1. This creates a close event for file1. fanotify opens file1 for Listener X Listener X deals with the event and closes its fd for file1. notice a pattern? The fix is to add the FMODE_NONOTIFY bit to the open filp done by the kernel for fanotify. Thus when that file is used it will not generate future events. This patch simply defines the bit. Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 85fe89c4348..50ef4d4c95b 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -90,6 +90,9 @@ struct inodes_stat_t {
90/* Expect random access pattern */ 90/* Expect random access pattern */
91#define FMODE_RANDOM ((__force fmode_t)0x1000) 91#define FMODE_RANDOM ((__force fmode_t)0x1000)
92 92
93/* File was opened by fanotify and shouldn't generate fanotify events */
94#define FMODE_NONOTIFY ((__force fmode_t)8388608)
95
93/* 96/*
94 * The below are the various read and write types that we support. Some of 97 * The below are the various read and write types that we support. Some of
95 * them include behavioral modifiers that send information down to the 98 * them include behavioral modifiers that send information down to the
@@ -2508,7 +2511,8 @@ int proc_nr_files(struct ctl_table *table, int write,
2508int __init get_filesystem_list(char *buf); 2511int __init get_filesystem_list(char *buf);
2509 2512
2510#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE]) 2513#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
2511#define OPEN_FMODE(flag) ((__force fmode_t)((flag + 1) & O_ACCMODE)) 2514#define OPEN_FMODE(flag) ((__force fmode_t)(((flag + 1) & O_ACCMODE) | \
2515 (flag & FMODE_NONOTIFY)))
2512 2516
2513#endif /* __KERNEL__ */ 2517#endif /* __KERNEL__ */
2514#endif /* _LINUX_FS_H */ 2518#endif /* _LINUX_FS_H */