blob: 00fbd5b245c996400d40e8fd41ddea814af8998a [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>
Amy Griffis73241cc2005-11-03 16:00:25 +000016#include <linux/audit.h>
Robert Love0eeca282005-07-12 17:06:03 -040017
18/*
Nick Pigginc32ccd82006-03-25 03:07:09 -080019 * fsnotify_d_instantiate - instantiate a dentry for inode
20 * Called with dcache_lock held.
21 */
22static inline void fsnotify_d_instantiate(struct dentry *entry,
23 struct inode *inode)
24{
25 inotify_d_instantiate(entry, inode);
26}
27
28/*
29 * fsnotify_d_move - entry has been moved
30 * Called with dcache_lock and entry->d_lock held.
31 */
32static inline void fsnotify_d_move(struct dentry *entry)
33{
34 inotify_d_move(entry);
35}
36
37/*
Robert Love0eeca282005-07-12 17:06:03 -040038 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
39 */
40static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir,
41 const char *old_name, const char *new_name,
Al Viro5a190ae2007-06-07 12:19:32 -040042 int isdir, struct inode *target, struct dentry *moved)
Robert Love0eeca282005-07-12 17:06:03 -040043{
Al Viro5a190ae2007-06-07 12:19:32 -040044 struct inode *source = moved->d_inode;
Robert Love0eeca282005-07-12 17:06:03 -040045 u32 cookie = inotify_get_cookie();
46
47 if (old_dir == new_dir)
48 inode_dir_notify(old_dir, DN_RENAME);
49 else {
50 inode_dir_notify(old_dir, DN_DELETE);
51 inode_dir_notify(new_dir, DN_CREATE);
52 }
53
54 if (isdir)
55 isdir = IN_ISDIR;
Amy Griffis7c297722006-06-01 13:11:01 -070056 inotify_inode_queue_event(old_dir, IN_MOVED_FROM|isdir,cookie,old_name,
57 source);
58 inotify_inode_queue_event(new_dir, IN_MOVED_TO|isdir, cookie, new_name,
59 source);
John McCutchan75449532005-08-01 11:00:45 -040060
61 if (target) {
Amy Griffis7c297722006-06-01 13:11:01 -070062 inotify_inode_queue_event(target, IN_DELETE_SELF, 0, NULL, NULL);
John McCutchan75449532005-08-01 11:00:45 -040063 inotify_inode_is_dead(target);
64 }
John McCutchan89204c42005-08-15 12:13:28 -040065
66 if (source) {
Amy Griffis7c297722006-06-01 13:11:01 -070067 inotify_inode_queue_event(source, IN_MOVE_SELF, 0, NULL, NULL);
John McCutchan89204c42005-08-15 12:13:28 -040068 }
Al Viro5a190ae2007-06-07 12:19:32 -040069 audit_inode_child(new_name, moved, new_dir);
Robert Love0eeca282005-07-12 17:06:03 -040070}
71
72/*
John McCutchan7a91bf72005-08-08 13:52:16 -040073 * fsnotify_nameremove - a filename was removed from a directory
74 */
75static inline void fsnotify_nameremove(struct dentry *dentry, int isdir)
76{
77 if (isdir)
78 isdir = IN_ISDIR;
79 dnotify_parent(dentry, DN_DELETE);
80 inotify_dentry_parent_queue_event(dentry, IN_DELETE|isdir, 0, dentry->d_name.name);
81}
82
83/*
84 * fsnotify_inoderemove - an inode is going away
85 */
86static inline void fsnotify_inoderemove(struct inode *inode)
87{
Amy Griffis7c297722006-06-01 13:11:01 -070088 inotify_inode_queue_event(inode, IN_DELETE_SELF, 0, NULL, NULL);
John McCutchan7a91bf72005-08-08 13:52:16 -040089 inotify_inode_is_dead(inode);
90}
91
92/*
Jan Karaece95912008-02-06 01:37:13 -080093 * fsnotify_link_count - inode's link count changed
94 */
95static inline void fsnotify_link_count(struct inode *inode)
96{
97 inotify_inode_queue_event(inode, IN_ATTRIB, 0, NULL, NULL);
98}
99
100/*
Robert Love0eeca282005-07-12 17:06:03 -0400101 * fsnotify_create - 'name' was linked in
102 */
Amy Griffisf38aa942005-11-03 15:57:06 +0000103static inline void fsnotify_create(struct inode *inode, struct dentry *dentry)
Robert Love0eeca282005-07-12 17:06:03 -0400104{
105 inode_dir_notify(inode, DN_CREATE);
Amy Griffis7c297722006-06-01 13:11:01 -0700106 inotify_inode_queue_event(inode, IN_CREATE, 0, dentry->d_name.name,
107 dentry->d_inode);
Al Viro5a190ae2007-06-07 12:19:32 -0400108 audit_inode_child(dentry->d_name.name, dentry, inode);
Robert Love0eeca282005-07-12 17:06:03 -0400109}
110
111/*
Jan Karaece95912008-02-06 01:37:13 -0800112 * fsnotify_link - new hardlink in 'inode' directory
113 * Note: We have to pass also the linked inode ptr as some filesystems leave
114 * new_dentry->d_inode NULL and instantiate inode pointer later
115 */
116static inline void fsnotify_link(struct inode *dir, struct inode *inode, struct dentry *new_dentry)
117{
118 inode_dir_notify(dir, DN_CREATE);
119 inotify_inode_queue_event(dir, IN_CREATE, 0, new_dentry->d_name.name,
120 inode);
121 fsnotify_link_count(inode);
122 audit_inode_child(new_dentry->d_name.name, new_dentry, dir);
123}
124
125/*
Robert Love0eeca282005-07-12 17:06:03 -0400126 * fsnotify_mkdir - directory 'name' was created
127 */
Amy Griffisf38aa942005-11-03 15:57:06 +0000128static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry)
Robert Love0eeca282005-07-12 17:06:03 -0400129{
130 inode_dir_notify(inode, DN_CREATE);
Amy Griffisf38aa942005-11-03 15:57:06 +0000131 inotify_inode_queue_event(inode, IN_CREATE | IN_ISDIR, 0,
Amy Griffis7c297722006-06-01 13:11:01 -0700132 dentry->d_name.name, dentry->d_inode);
Al Viro5a190ae2007-06-07 12:19:32 -0400133 audit_inode_child(dentry->d_name.name, dentry, inode);
Robert Love0eeca282005-07-12 17:06:03 -0400134}
135
136/*
137 * fsnotify_access - file was read
138 */
139static inline void fsnotify_access(struct dentry *dentry)
140{
141 struct inode *inode = dentry->d_inode;
142 u32 mask = IN_ACCESS;
143
144 if (S_ISDIR(inode->i_mode))
145 mask |= IN_ISDIR;
146
147 dnotify_parent(dentry, DN_ACCESS);
148 inotify_dentry_parent_queue_event(dentry, mask, 0, dentry->d_name.name);
Amy Griffis7c297722006-06-01 13:11:01 -0700149 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Robert Love0eeca282005-07-12 17:06:03 -0400150}
151
152/*
153 * fsnotify_modify - file was modified
154 */
155static inline void fsnotify_modify(struct dentry *dentry)
156{
157 struct inode *inode = dentry->d_inode;
158 u32 mask = IN_MODIFY;
159
160 if (S_ISDIR(inode->i_mode))
161 mask |= IN_ISDIR;
162
163 dnotify_parent(dentry, DN_MODIFY);
164 inotify_dentry_parent_queue_event(dentry, mask, 0, dentry->d_name.name);
Amy Griffis7c297722006-06-01 13:11:01 -0700165 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Robert Love0eeca282005-07-12 17:06:03 -0400166}
167
168/*
169 * fsnotify_open - file was opened
170 */
171static inline void fsnotify_open(struct dentry *dentry)
172{
173 struct inode *inode = dentry->d_inode;
174 u32 mask = IN_OPEN;
175
176 if (S_ISDIR(inode->i_mode))
177 mask |= IN_ISDIR;
178
Robert Love0eeca282005-07-12 17:06:03 -0400179 inotify_dentry_parent_queue_event(dentry, mask, 0, dentry->d_name.name);
Amy Griffis7c297722006-06-01 13:11:01 -0700180 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Robert Love0eeca282005-07-12 17:06:03 -0400181}
182
183/*
184 * fsnotify_close - file was closed
185 */
186static inline void fsnotify_close(struct file *file)
187{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800188 struct dentry *dentry = file->f_path.dentry;
Robert Love0eeca282005-07-12 17:06:03 -0400189 struct inode *inode = dentry->d_inode;
190 const char *name = dentry->d_name.name;
Al Viroaeb5d722008-09-02 15:28:45 -0400191 fmode_t mode = file->f_mode;
Robert Love0eeca282005-07-12 17:06:03 -0400192 u32 mask = (mode & FMODE_WRITE) ? IN_CLOSE_WRITE : IN_CLOSE_NOWRITE;
193
194 if (S_ISDIR(inode->i_mode))
195 mask |= IN_ISDIR;
196
197 inotify_dentry_parent_queue_event(dentry, mask, 0, name);
Amy Griffis7c297722006-06-01 13:11:01 -0700198 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Robert Love0eeca282005-07-12 17:06:03 -0400199}
200
201/*
202 * fsnotify_xattr - extended attributes were changed
203 */
204static inline void fsnotify_xattr(struct dentry *dentry)
205{
206 struct inode *inode = dentry->d_inode;
207 u32 mask = IN_ATTRIB;
208
209 if (S_ISDIR(inode->i_mode))
210 mask |= IN_ISDIR;
211
212 inotify_dentry_parent_queue_event(dentry, mask, 0, dentry->d_name.name);
Amy Griffis7c297722006-06-01 13:11:01 -0700213 inotify_inode_queue_event(inode, mask, 0, NULL, NULL);
Robert Love0eeca282005-07-12 17:06:03 -0400214}
215
216/*
217 * fsnotify_change - notify_change event. file was modified and/or metadata
218 * was changed.
219 */
220static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
221{
222 struct inode *inode = dentry->d_inode;
223 int dn_mask = 0;
224 u32 in_mask = 0;
225
226 if (ia_valid & ATTR_UID) {
227 in_mask |= IN_ATTRIB;
228 dn_mask |= DN_ATTRIB;
229 }
230 if (ia_valid & ATTR_GID) {
231 in_mask |= IN_ATTRIB;
232 dn_mask |= DN_ATTRIB;
233 }
234 if (ia_valid & ATTR_SIZE) {
235 in_mask |= IN_MODIFY;
236 dn_mask |= DN_MODIFY;
237 }
238 /* both times implies a utime(s) call */
239 if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
240 {
241 in_mask |= IN_ATTRIB;
242 dn_mask |= DN_ATTRIB;
243 } else if (ia_valid & ATTR_ATIME) {
244 in_mask |= IN_ACCESS;
245 dn_mask |= DN_ACCESS;
246 } else if (ia_valid & ATTR_MTIME) {
247 in_mask |= IN_MODIFY;
248 dn_mask |= DN_MODIFY;
249 }
250 if (ia_valid & ATTR_MODE) {
251 in_mask |= IN_ATTRIB;
252 dn_mask |= DN_ATTRIB;
253 }
254
255 if (dn_mask)
256 dnotify_parent(dentry, dn_mask);
257 if (in_mask) {
258 if (S_ISDIR(inode->i_mode))
259 in_mask |= IN_ISDIR;
Amy Griffis7c297722006-06-01 13:11:01 -0700260 inotify_inode_queue_event(inode, in_mask, 0, NULL, NULL);
Robert Love0eeca282005-07-12 17:06:03 -0400261 inotify_dentry_parent_queue_event(dentry, in_mask, 0,
262 dentry->d_name.name);
263 }
264}
265
266#ifdef CONFIG_INOTIFY /* inotify helpers */
267
268/*
269 * fsnotify_oldname_init - save off the old filename before we change it
270 */
271static inline const char *fsnotify_oldname_init(const char *name)
272{
273 return kstrdup(name, GFP_KERNEL);
274}
275
276/*
277 * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init
278 */
279static inline void fsnotify_oldname_free(const char *old_name)
280{
281 kfree(old_name);
282}
283
284#else /* CONFIG_INOTIFY */
285
286static inline const char *fsnotify_oldname_init(const char *name)
287{
288 return NULL;
289}
290
291static inline void fsnotify_oldname_free(const char *old_name)
292{
293}
294
295#endif /* ! CONFIG_INOTIFY */
296
Robert Love0eeca282005-07-12 17:06:03 -0400297#endif /* _LINUX_FS_NOTIFY_H */