|
@@ -26,19 +26,18 @@ static inline void fsnotify_d_instantiate(struct dentry *dentry,
|
|
}
|
|
}
|
|
|
|
|
|
/* Notify this dentry's parent about a child's events. */
|
|
/* Notify this dentry's parent about a child's events. */
|
|
-static inline void fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask)
|
|
|
|
|
|
+static inline void fsnotify_parent(struct file *file, struct dentry *dentry, __u32 mask)
|
|
{
|
|
{
|
|
if (!dentry)
|
|
if (!dentry)
|
|
- dentry = path->dentry;
|
|
|
|
|
|
+ dentry = file->f_path.dentry;
|
|
|
|
|
|
- __fsnotify_parent(path, dentry, mask);
|
|
|
|
|
|
+ __fsnotify_parent(file, dentry, mask);
|
|
}
|
|
}
|
|
|
|
|
|
/* simple call site for access decisions */
|
|
/* simple call site for access decisions */
|
|
static inline int fsnotify_perm(struct file *file, int mask)
|
|
static inline int fsnotify_perm(struct file *file, int mask)
|
|
{
|
|
{
|
|
- struct path *path = &file->f_path;
|
|
|
|
- struct inode *inode = path->dentry->d_inode;
|
|
|
|
|
|
+ struct inode *inode = file->f_path.dentry->d_inode;
|
|
__u32 fsnotify_mask = 0;
|
|
__u32 fsnotify_mask = 0;
|
|
|
|
|
|
if (file->f_mode & FMODE_NONOTIFY)
|
|
if (file->f_mode & FMODE_NONOTIFY)
|
|
@@ -52,7 +51,7 @@ static inline int fsnotify_perm(struct file *file, int mask)
|
|
else
|
|
else
|
|
BUG();
|
|
BUG();
|
|
|
|
|
|
- return fsnotify(inode, fsnotify_mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
|
|
|
|
|
|
+ return fsnotify(inode, fsnotify_mask, file, FSNOTIFY_EVENT_FILE, NULL, 0);
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -187,16 +186,15 @@ static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry)
|
|
*/
|
|
*/
|
|
static inline void fsnotify_access(struct file *file)
|
|
static inline void fsnotify_access(struct file *file)
|
|
{
|
|
{
|
|
- struct path *path = &file->f_path;
|
|
|
|
- struct inode *inode = path->dentry->d_inode;
|
|
|
|
|
|
+ struct inode *inode = file->f_path.dentry->d_inode;
|
|
__u32 mask = FS_ACCESS;
|
|
__u32 mask = FS_ACCESS;
|
|
|
|
|
|
if (S_ISDIR(inode->i_mode))
|
|
if (S_ISDIR(inode->i_mode))
|
|
mask |= FS_IN_ISDIR;
|
|
mask |= FS_IN_ISDIR;
|
|
|
|
|
|
if (!(file->f_mode & FMODE_NONOTIFY)) {
|
|
if (!(file->f_mode & FMODE_NONOTIFY)) {
|
|
- fsnotify_parent(path, NULL, mask);
|
|
|
|
- fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
|
|
|
|
|
|
+ fsnotify_parent(file, NULL, mask);
|
|
|
|
+ fsnotify(inode, mask, file, FSNOTIFY_EVENT_FILE, NULL, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -205,16 +203,15 @@ static inline void fsnotify_access(struct file *file)
|
|
*/
|
|
*/
|
|
static inline void fsnotify_modify(struct file *file)
|
|
static inline void fsnotify_modify(struct file *file)
|
|
{
|
|
{
|
|
- struct path *path = &file->f_path;
|
|
|
|
- struct inode *inode = path->dentry->d_inode;
|
|
|
|
|
|
+ struct inode *inode = file->f_path.dentry->d_inode;
|
|
__u32 mask = FS_MODIFY;
|
|
__u32 mask = FS_MODIFY;
|
|
|
|
|
|
if (S_ISDIR(inode->i_mode))
|
|
if (S_ISDIR(inode->i_mode))
|
|
mask |= FS_IN_ISDIR;
|
|
mask |= FS_IN_ISDIR;
|
|
|
|
|
|
if (!(file->f_mode & FMODE_NONOTIFY)) {
|
|
if (!(file->f_mode & FMODE_NONOTIFY)) {
|
|
- fsnotify_parent(path, NULL, mask);
|
|
|
|
- fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
|
|
|
|
|
|
+ fsnotify_parent(file, NULL, mask);
|
|
|
|
+ fsnotify(inode, mask, file, FSNOTIFY_EVENT_FILE, NULL, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -223,16 +220,15 @@ static inline void fsnotify_modify(struct file *file)
|
|
*/
|
|
*/
|
|
static inline void fsnotify_open(struct file *file)
|
|
static inline void fsnotify_open(struct file *file)
|
|
{
|
|
{
|
|
- struct path *path = &file->f_path;
|
|
|
|
- struct inode *inode = path->dentry->d_inode;
|
|
|
|
|
|
+ struct inode *inode = file->f_path.dentry->d_inode;
|
|
__u32 mask = FS_OPEN;
|
|
__u32 mask = FS_OPEN;
|
|
|
|
|
|
if (S_ISDIR(inode->i_mode))
|
|
if (S_ISDIR(inode->i_mode))
|
|
mask |= FS_IN_ISDIR;
|
|
mask |= FS_IN_ISDIR;
|
|
|
|
|
|
if (!(file->f_mode & FMODE_NONOTIFY)) {
|
|
if (!(file->f_mode & FMODE_NONOTIFY)) {
|
|
- fsnotify_parent(path, NULL, mask);
|
|
|
|
- fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
|
|
|
|
|
|
+ fsnotify_parent(file, NULL, mask);
|
|
|
|
+ fsnotify(inode, mask, file, FSNOTIFY_EVENT_FILE, NULL, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -241,7 +237,6 @@ static inline void fsnotify_open(struct file *file)
|
|
*/
|
|
*/
|
|
static inline void fsnotify_close(struct file *file)
|
|
static inline void fsnotify_close(struct file *file)
|
|
{
|
|
{
|
|
- struct path *path = &file->f_path;
|
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
|
fmode_t mode = file->f_mode;
|
|
fmode_t mode = file->f_mode;
|
|
__u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE;
|
|
__u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE;
|
|
@@ -250,8 +245,8 @@ static inline void fsnotify_close(struct file *file)
|
|
mask |= FS_IN_ISDIR;
|
|
mask |= FS_IN_ISDIR;
|
|
|
|
|
|
if (!(file->f_mode & FMODE_NONOTIFY)) {
|
|
if (!(file->f_mode & FMODE_NONOTIFY)) {
|
|
- fsnotify_parent(path, NULL, mask);
|
|
|
|
- fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
|
|
|
|
|
|
+ fsnotify_parent(file, NULL, mask);
|
|
|
|
+ fsnotify(inode, mask, file, FSNOTIFY_EVENT_FILE, NULL, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|