blob: 01755909ce8167fade2220fb503435652bd71c44 [file] [log] [blame]
Robert Love0eeca282005-07-12 17:06:03 -04001#ifndef _LINUX_FS_NOTIFY_H
2#define _LINUX_FS_NOTIFY_H
3
4/*
5 * include/linux/fsnotify.h - generic hooks for filesystem notification, to
6 * reduce in-source duplication from both dnotify and inotify.
7 *
8 * We don't compile any of this away in some complicated menagerie of ifdefs.
9 * Instead, we rely on the code inside to optimize away as needed.
10 *
11 * (C) Copyright 2005 Robert Love
12 */
13
Robert Love0eeca282005-07-12 17:06:03 -040014#include <linux/dnotify.h>
15#include <linux/inotify.h>
Eric Paris90586522009-05-21 17:01:20 -040016#include <linux/fsnotify_backend.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000017#include <linux/audit.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Robert Love0eeca282005-07-12 17:06:03 -040019
20/*
Nick Pigginc32ccd82006-03-25 03:07:09 -080021 * fsnotify_d_instantiate - instantiate a dentry for inode
22 * Called with dcache_lock held.
23 */
24static inline void fsnotify_d_instantiate(struct dentry *entry,
25 struct inode *inode)
26{
Eric Parisc28f7e52009-05-21 17:01:29 -040027 __fsnotify_d_instantiate(entry, inode);
28
Nick Pigginc32ccd82006-03-25 03:07:09 -080029 inotify_d_instantiate(entry, inode);
30}
31
Eric Parisc28f7e52009-05-21 17:01:29 -040032/* Notify this dentry's parent about a child's events. */
33static inline void fsnotify_parent(struct dentry *dentry, __u32 mask)
34{
35 __fsnotify_parent(dentry, mask);
36
37 inotify_dentry_parent_queue_event(dentry, mask, 0, dentry->d_name.name);
38}
39
Nick Pigginc32ccd82006-03-25 03:07:09 -080040/*
41 * fsnotify_d_move - entry has been moved
42 * Called with dcache_lock and entry->d_lock held.
43 */
44static inline void fsnotify_d_move(struct dentry *entry)
45{
Eric Parisc28f7e52009-05-21 17:01:29 -040046 /*
47 * On move we need to update entry->d_flags to indicate if the new parent
48 * cares about events from this entry.
49 */
50 __fsnotify_update_dcache_flags(entry);
51
Nick Pigginc32ccd82006-03-25 03:07:09 -080052 inotify_d_move(entry);
53}
54
55/*
Eric Paris90586522009-05-21 17:01:20 -040056 * fsnotify_link_count - inode's link count changed
57 */
58static inline void fsnotify_link_count(struct inode *inode)
59{
60 inotify_inode_queue_event(inode, IN_ATTRIB, 0, NULL, NULL);
61
Eric Paris47882c62009-05-21 17:01:47 -040062 fsnotify(inode, FS_ATTRIB, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Eric Paris90586522009-05-21 17:01:20 -040063}
64
65/*
Robert Love0eeca282005-07-12 17:06:03 -040066 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
67 */
68static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir,
Al Viro123df292009-12-25 04:57:57 -050069 const char *old_name,
Al Viro5a190ae2007-06-07 12:19:32 -040070 int isdir, struct inode *target, struct dentry *moved)
Robert Love0eeca282005-07-12 17:06:03 -040071{
Al Viro5a190ae2007-06-07 12:19:32 -040072 struct inode *source = moved->d_inode;
Eric Paris47882c62009-05-21 17:01:47 -040073 u32 in_cookie = inotify_get_cookie();
74 u32 fs_cookie = fsnotify_get_cookie();
Eric Parisff52cc22009-06-11 11:09:47 -040075 __u32 old_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_FROM);
76 __u32 new_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_TO);
Al Viro123df292009-12-25 04:57:57 -050077 const char *new_name = moved->d_name.name;
Robert Love0eeca282005-07-12 17:06:03 -040078
Eric Parisff52cc22009-06-11 11:09:47 -040079 if (old_dir == new_dir)
80 old_dir_mask |= FS_DN_RENAME;
Robert Love0eeca282005-07-12 17:06:03 -040081
Eric Paris90586522009-05-21 17:01:20 -040082 if (isdir) {
Robert Love0eeca282005-07-12 17:06:03 -040083 isdir = IN_ISDIR;
Eric Paris90586522009-05-21 17:01:20 -040084 old_dir_mask |= FS_IN_ISDIR;
85 new_dir_mask |= FS_IN_ISDIR;
86 }
87
Eric Paris47882c62009-05-21 17:01:47 -040088 inotify_inode_queue_event(old_dir, IN_MOVED_FROM|isdir, in_cookie, old_name,
Amy Griffis7c297722006-06-01 13:11:01 -070089 source);
Eric Paris47882c62009-05-21 17:01:47 -040090 inotify_inode_queue_event(new_dir, IN_MOVED_TO|isdir, in_cookie, new_name,
Amy Griffis7c297722006-06-01 13:11:01 -070091 source);
John McCutchan75449532005-08-01 11:00:45 -040092
Eric Paris47882c62009-05-21 17:01:47 -040093 fsnotify(old_dir, old_dir_mask, old_dir, FSNOTIFY_EVENT_INODE, old_name, fs_cookie);
94 fsnotify(new_dir, new_dir_mask, new_dir, FSNOTIFY_EVENT_INODE, new_name, fs_cookie);
Eric Paris90586522009-05-21 17:01:20 -040095
John McCutchan75449532005-08-01 11:00:45 -040096 if (target) {
Amy Griffis7c297722006-06-01 13:11:01 -070097 inotify_inode_queue_event(target, IN_DELETE_SELF, 0, NULL, NULL);
John McCutchan75449532005-08-01 11:00:45 -040098 inotify_inode_is_dead(target);
Eric Paris90586522009-05-21 17:01:20 -040099
100 /* this is really a link_count change not a removal */
101 fsnotify_link_count(target);
John McCutchan75449532005-08-01 11:00:45 -0400102 }
John McCutchan89204c42005-08-15 12:13:28 -0400103
104 if (source) {
Amy Griffis7c297722006-06-01 13:11:01 -0700105 inotify_inode_queue_event(source, IN_MOVE_SELF, 0, NULL, NULL);
Eric Paris47882c62009-05-21 17:01:47 -0400106 fsnotify(source, FS_MOVE_SELF, moved->d_inode, FSNOTIFY_EVENT_INODE, NULL, 0);
John McCutchan89204c42005-08-15 12:13:28 -0400107 }
Al Virocccc6bb2009-12-25 05:07:33 -0500108 audit_inode_child(moved, new_dir);
Robert Love0eeca282005-07-12 17:06:03 -0400109}
110
111/*
Eric Paris3be25f42009-05-21 17:01:26 -0400112 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
113 */
114static inline void fsnotify_inode_delete(struct inode *inode)
115{
116 __fsnotify_inode_delete(inode);
117}
118
119/*
John McCutchan7a91bf72005-08-08 13:52:16 -0400120 * fsnotify_nameremove - a filename was removed from a directory
121 */
122static inline void fsnotify_nameremove(struct dentry *dentry, int isdir)
123{
Eric Paris90586522009-05-21 17:01:20 -0400124 __u32 mask = FS_DELETE;
125
John McCutchan7a91bf72005-08-08 13:52:16 -0400126 if (isdir)
Eric Paris90586522009-05-21 17:01:20 -0400127 mask |= FS_IN_ISDIR;
Eric Parisc28f7e52009-05-21 17:01:29 -0400128
129 fsnotify_parent(dentry, mask);
John McCutchan7a91bf72005-08-08 13:52:16 -0400130}
131
132/*
133 * fsnotify_inoderemove - an inode is going away
134 */
135static inline void fsnotify_inoderemove(struct inode *inode)
136{
Amy Griffis7c297722006-06-01 13:11:01 -0700137 inotify_inode_queue_event(inode, IN_DELETE_SELF, 0, NULL, NULL);
John McCutchan7a91bf72005-08-08 13:52:16 -0400138 inotify_inode_is_dead(inode);
John McCutchan7a91bf72005-08-08 13:52:16 -0400139
Eric Paris47882c62009-05-21 17:01:47 -0400140 fsnotify(inode, FS_DELETE_SELF, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Eric Paris3be25f42009-05-21 17:01:26 -0400141 __fsnotify_inode_delete(inode);
Jan Karaece95912008-02-06 01:37:13 -0800142}
143
144/*
Robert Love0eeca282005-07-12 17:06:03 -0400145 * fsnotify_create - 'name' was linked in
146 */
Amy Griffisf38aa942005-11-03 15:57:06 +0000147static inline void fsnotify_create(struct inode *inode, struct dentry *dentry)
Robert Love0eeca282005-07-12 17:06:03 -0400148{
Amy Griffis7c297722006-06-01 13:11:01 -0700149 inotify_inode_queue_event(inode, IN_CREATE, 0, dentry->d_name.name,
150 dentry->d_inode);
Al Virocccc6bb2009-12-25 05:07:33 -0500151 audit_inode_child(dentry, inode);
Eric Paris90586522009-05-21 17:01:20 -0400152
Eric Paris47882c62009-05-21 17:01:47 -0400153 fsnotify(inode, FS_CREATE, dentry->d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400154}
155
156/*
Jan Karaece95912008-02-06 01:37:13 -0800157 * fsnotify_link - new hardlink in 'inode' directory
158 * Note: We have to pass also the linked inode ptr as some filesystems leave
159 * new_dentry->d_inode NULL and instantiate inode pointer later
160 */
161static inline void fsnotify_link(struct inode *dir, struct inode *inode, struct dentry *new_dentry)
162{
Jan Karaece95912008-02-06 01:37:13 -0800163 inotify_inode_queue_event(dir, IN_CREATE, 0, new_dentry->d_name.name,
164 inode);
165 fsnotify_link_count(inode);
Al Virocccc6bb2009-12-25 05:07:33 -0500166 audit_inode_child(new_dentry, dir);
Eric Paris90586522009-05-21 17:01:20 -0400167
Eric Paris47882c62009-05-21 17:01:47 -0400168 fsnotify(dir, FS_CREATE, inode, FSNOTIFY_EVENT_INODE, new_dentry->d_name.name, 0);
Jan Karaece95912008-02-06 01:37:13 -0800169}
170
171/*
Robert Love0eeca282005-07-12 17:06:03 -0400172 * fsnotify_mkdir - directory 'name' was created
173 */
Amy Griffisf38aa942005-11-03 15:57:06 +0000174static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry)
Robert Love0eeca282005-07-12 17:06:03 -0400175{
Eric Paris90586522009-05-21 17:01:20 -0400176 __u32 mask = (FS_CREATE | FS_IN_ISDIR);
177 struct inode *d_inode = dentry->d_inode;
178
Eric Paris90586522009-05-21 17:01:20 -0400179 inotify_inode_queue_event(inode, mask, 0, dentry->d_name.name, d_inode);
Al Virocccc6bb2009-12-25 05:07:33 -0500180 audit_inode_child(dentry, inode);
Eric Paris90586522009-05-21 17:01:20 -0400181
Eric Paris47882c62009-05-21 17:01:47 -0400182 fsnotify(inode, mask, d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400183}
184
185/*
186 * fsnotify_access - file was read
187 */
188static inline void fsnotify_access(struct dentry *dentry)
189{
190 struct inode *inode = dentry->d_inode;
Eric Paris90586522009-05-21 17:01:20 -0400191 __u32 mask = FS_ACCESS;
Robert Love0eeca282005-07-12 17:06:03 -0400192
193 if (S_ISDIR(inode->i_mode))
Eric Paris90586522009-05-21 17:01:20 -0400194 mask |= FS_IN_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400195
Amy Griffis7c297722006-06-01 13:11:01 -0700196 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Eric Paris90586522009-05-21 17:01:20 -0400197
Eric Parisc28f7e52009-05-21 17:01:29 -0400198 fsnotify_parent(dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400199 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400200}
201
202/*
203 * fsnotify_modify - file was modified
204 */
205static inline void fsnotify_modify(struct dentry *dentry)
206{
207 struct inode *inode = dentry->d_inode;
Eric Paris90586522009-05-21 17:01:20 -0400208 __u32 mask = FS_MODIFY;
Robert Love0eeca282005-07-12 17:06:03 -0400209
210 if (S_ISDIR(inode->i_mode))
Eric Paris90586522009-05-21 17:01:20 -0400211 mask |= FS_IN_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400212
Amy Griffis7c297722006-06-01 13:11:01 -0700213 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Eric Paris90586522009-05-21 17:01:20 -0400214
Eric Parisc28f7e52009-05-21 17:01:29 -0400215 fsnotify_parent(dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400216 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400217}
218
219/*
220 * fsnotify_open - file was opened
221 */
222static inline void fsnotify_open(struct dentry *dentry)
223{
224 struct inode *inode = dentry->d_inode;
Eric Paris90586522009-05-21 17:01:20 -0400225 __u32 mask = FS_OPEN;
Robert Love0eeca282005-07-12 17:06:03 -0400226
227 if (S_ISDIR(inode->i_mode))
Eric Paris90586522009-05-21 17:01:20 -0400228 mask |= FS_IN_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400229
Amy Griffis7c297722006-06-01 13:11:01 -0700230 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Eric Paris90586522009-05-21 17:01:20 -0400231
Eric Parisc28f7e52009-05-21 17:01:29 -0400232 fsnotify_parent(dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400233 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400234}
235
236/*
237 * fsnotify_close - file was closed
238 */
239static inline void fsnotify_close(struct file *file)
240{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800241 struct dentry *dentry = file->f_path.dentry;
Robert Love0eeca282005-07-12 17:06:03 -0400242 struct inode *inode = dentry->d_inode;
Al Viroaeb5d722008-09-02 15:28:45 -0400243 fmode_t mode = file->f_mode;
Eric Paris90586522009-05-21 17:01:20 -0400244 __u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE;
Robert Love0eeca282005-07-12 17:06:03 -0400245
246 if (S_ISDIR(inode->i_mode))
Eric Paris90586522009-05-21 17:01:20 -0400247 mask |= FS_IN_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400248
Amy Griffis7c297722006-06-01 13:11:01 -0700249 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Eric Paris90586522009-05-21 17:01:20 -0400250
Eric Parisc28f7e52009-05-21 17:01:29 -0400251 fsnotify_parent(dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400252 fsnotify(inode, mask, file, FSNOTIFY_EVENT_FILE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400253}
254
255/*
256 * fsnotify_xattr - extended attributes were changed
257 */
258static inline void fsnotify_xattr(struct dentry *dentry)
259{
260 struct inode *inode = dentry->d_inode;
Eric Paris90586522009-05-21 17:01:20 -0400261 __u32 mask = FS_ATTRIB;
Robert Love0eeca282005-07-12 17:06:03 -0400262
263 if (S_ISDIR(inode->i_mode))
Eric Paris90586522009-05-21 17:01:20 -0400264 mask |= FS_IN_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400265
Amy Griffis7c297722006-06-01 13:11:01 -0700266 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Eric Paris90586522009-05-21 17:01:20 -0400267
Eric Parisc28f7e52009-05-21 17:01:29 -0400268 fsnotify_parent(dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400269 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400270}
271
272/*
273 * fsnotify_change - notify_change event. file was modified and/or metadata
274 * was changed.
275 */
276static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
277{
278 struct inode *inode = dentry->d_inode;
Eric Paris3c5119c2009-05-21 17:01:33 -0400279 __u32 mask = 0;
Robert Love0eeca282005-07-12 17:06:03 -0400280
Eric Paris3c5119c2009-05-21 17:01:33 -0400281 if (ia_valid & ATTR_UID)
282 mask |= FS_ATTRIB;
283 if (ia_valid & ATTR_GID)
284 mask |= FS_ATTRIB;
285 if (ia_valid & ATTR_SIZE)
286 mask |= FS_MODIFY;
287
Robert Love0eeca282005-07-12 17:06:03 -0400288 /* both times implies a utime(s) call */
289 if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
Eric Paris3c5119c2009-05-21 17:01:33 -0400290 mask |= FS_ATTRIB;
291 else if (ia_valid & ATTR_ATIME)
292 mask |= FS_ACCESS;
293 else if (ia_valid & ATTR_MTIME)
294 mask |= FS_MODIFY;
Robert Love0eeca282005-07-12 17:06:03 -0400295
Eric Paris3c5119c2009-05-21 17:01:33 -0400296 if (ia_valid & ATTR_MODE)
297 mask |= FS_ATTRIB;
298
299 if (mask) {
Robert Love0eeca282005-07-12 17:06:03 -0400300 if (S_ISDIR(inode->i_mode))
Eric Paris3c5119c2009-05-21 17:01:33 -0400301 mask |= FS_IN_ISDIR;
302 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Eric Parisc28f7e52009-05-21 17:01:29 -0400303
Eric Paris3c5119c2009-05-21 17:01:33 -0400304 fsnotify_parent(dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400305 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400306 }
307}
308
Eric Paris90586522009-05-21 17:01:20 -0400309#if defined(CONFIG_INOTIFY) || defined(CONFIG_FSNOTIFY) /* notify helpers */
Robert Love0eeca282005-07-12 17:06:03 -0400310
311/*
312 * fsnotify_oldname_init - save off the old filename before we change it
313 */
314static inline const char *fsnotify_oldname_init(const char *name)
315{
316 return kstrdup(name, GFP_KERNEL);
317}
318
319/*
320 * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init
321 */
322static inline void fsnotify_oldname_free(const char *old_name)
323{
324 kfree(old_name);
325}
326
Eric Paris90586522009-05-21 17:01:20 -0400327#else /* CONFIG_INOTIFY || CONFIG_FSNOTIFY */
Robert Love0eeca282005-07-12 17:06:03 -0400328
329static inline const char *fsnotify_oldname_init(const char *name)
330{
331 return NULL;
332}
333
334static inline void fsnotify_oldname_free(const char *old_name)
335{
336}
337
338#endif /* ! CONFIG_INOTIFY */
339
Robert Love0eeca282005-07-12 17:06:03 -0400340#endif /* _LINUX_FS_NOTIFY_H */