fsnotify.h 7.5 KB
Newer Older
R
Robert Love 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef _LINUX_FS_NOTIFY_H
#define _LINUX_FS_NOTIFY_H

/*
 * include/linux/fsnotify.h - generic hooks for filesystem notification, to
 * reduce in-source duplication from both dnotify and inotify.
 *
 * We don't compile any of this away in some complicated menagerie of ifdefs.
 * Instead, we rely on the code inside to optimize away as needed.
 *
 * (C) Copyright 2005 Robert Love
 */

14
#include <linux/fsnotify_backend.h>
15
#include <linux/audit.h>
16
#include <linux/slab.h>
R
Robert Love 已提交
17

18 19 20 21
/*
 * fsnotify_d_instantiate - instantiate a dentry for inode
 * Called with dcache_lock held.
 */
22 23
static inline void fsnotify_d_instantiate(struct dentry *dentry,
					  struct inode *inode)
24
{
25
	__fsnotify_d_instantiate(dentry, inode);
26 27
}

E
Eric Paris 已提交
28
/* Notify this dentry's parent about a child's events. */
29
static inline void fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask)
E
Eric Paris 已提交
30
{
31 32
	if (!dentry)
		dentry = path->dentry;
33

34
	__fsnotify_parent(path, dentry, mask);
E
Eric Paris 已提交
35 36
}

37
/*
38 39
 * fsnotify_d_move - dentry has been moved
 * Called with dcache_lock and dentry->d_lock held.
40
 */
41
static inline void fsnotify_d_move(struct dentry *dentry)
42
{
E
Eric Paris 已提交
43
	/*
44 45
	 * On move we need to update dentry->d_flags to indicate if the new parent
	 * cares about events from this dentry.
E
Eric Paris 已提交
46
	 */
47
	__fsnotify_update_dcache_flags(dentry);
48 49
}

50 51 52 53 54
/*
 * fsnotify_link_count - inode's link count changed
 */
static inline void fsnotify_link_count(struct inode *inode)
{
55
	fsnotify(inode, FS_ATTRIB, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
56 57
}

R
Robert Love 已提交
58 59 60 61
/*
 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
 */
static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir,
62
				 const char *old_name,
63
				 int isdir, struct inode *target, struct dentry *moved)
R
Robert Love 已提交
64
{
65
	struct inode *source = moved->d_inode;
66
	u32 fs_cookie = fsnotify_get_cookie();
67 68
	__u32 old_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_FROM);
	__u32 new_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_TO);
69
	const char *new_name = moved->d_name.name;
R
Robert Love 已提交
70

71 72
	if (old_dir == new_dir)
		old_dir_mask |= FS_DN_RENAME;
R
Robert Love 已提交
73

74 75 76 77 78
	if (isdir) {
		old_dir_mask |= FS_IN_ISDIR;
		new_dir_mask |= FS_IN_ISDIR;
	}

79 80
	fsnotify(old_dir, old_dir_mask, old_dir, FSNOTIFY_EVENT_INODE, old_name, fs_cookie);
	fsnotify(new_dir, new_dir_mask, new_dir, FSNOTIFY_EVENT_INODE, new_name, fs_cookie);
81

82
	if (target)
83
		fsnotify_link_count(target);
84

85
	if (source)
86
		fsnotify(source, FS_MOVE_SELF, moved->d_inode, FSNOTIFY_EVENT_INODE, NULL, 0);
87
	audit_inode_child(moved, new_dir);
R
Robert Love 已提交
88 89
}

90 91 92 93 94 95 96 97
/*
 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
 */
static inline void fsnotify_inode_delete(struct inode *inode)
{
	__fsnotify_inode_delete(inode);
}

98 99 100 101 102
/*
 * fsnotify_nameremove - a filename was removed from a directory
 */
static inline void fsnotify_nameremove(struct dentry *dentry, int isdir)
{
103 104
	__u32 mask = FS_DELETE;

105
	if (isdir)
106
		mask |= FS_IN_ISDIR;
E
Eric Paris 已提交
107

108
	fsnotify_parent(NULL, dentry, mask);
109 110 111 112 113 114 115
}

/*
 * fsnotify_inoderemove - an inode is going away
 */
static inline void fsnotify_inoderemove(struct inode *inode)
{
116
	fsnotify(inode, FS_DELETE_SELF, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
117
	__fsnotify_inode_delete(inode);
118 119
}

R
Robert Love 已提交
120 121 122
/*
 * fsnotify_create - 'name' was linked in
 */
123
static inline void fsnotify_create(struct inode *inode, struct dentry *dentry)
R
Robert Love 已提交
124
{
125
	audit_inode_child(dentry, inode);
126

127
	fsnotify(inode, FS_CREATE, dentry->d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
R
Robert Love 已提交
128 129
}

130 131 132 133 134 135 136 137
/*
 * fsnotify_link - new hardlink in 'inode' directory
 * Note: We have to pass also the linked inode ptr as some filesystems leave
 *   new_dentry->d_inode NULL and instantiate inode pointer later
 */
static inline void fsnotify_link(struct inode *dir, struct inode *inode, struct dentry *new_dentry)
{
	fsnotify_link_count(inode);
138
	audit_inode_child(new_dentry, dir);
139

140
	fsnotify(dir, FS_CREATE, inode, FSNOTIFY_EVENT_INODE, new_dentry->d_name.name, 0);
141 142
}

R
Robert Love 已提交
143 144 145
/*
 * fsnotify_mkdir - directory 'name' was created
 */
146
static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry)
R
Robert Love 已提交
147
{
148 149 150
	__u32 mask = (FS_CREATE | FS_IN_ISDIR);
	struct inode *d_inode = dentry->d_inode;

151
	audit_inode_child(dentry, inode);
152

153
	fsnotify(inode, mask, d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
R
Robert Love 已提交
154 155 156 157 158
}

/*
 * fsnotify_access - file was read
 */
159
static inline void fsnotify_access(struct file *file)
R
Robert Love 已提交
160
{
161 162
	struct path *path = &file->f_path;
	struct inode *inode = path->dentry->d_inode;
163
	__u32 mask = FS_ACCESS;
R
Robert Love 已提交
164 165

	if (S_ISDIR(inode->i_mode))
166
		mask |= FS_IN_ISDIR;
R
Robert Love 已提交
167

E
Eric Paris 已提交
168 169 170 171
	if (!(file->f_mode & FMODE_NONOTIFY)) {
		fsnotify_parent(path, NULL, mask);
		fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
	}
R
Robert Love 已提交
172 173 174 175 176
}

/*
 * fsnotify_modify - file was modified
 */
177
static inline void fsnotify_modify(struct file *file)
R
Robert Love 已提交
178
{
179 180
	struct path *path = &file->f_path;
	struct inode *inode = path->dentry->d_inode;
181
	__u32 mask = FS_MODIFY;
R
Robert Love 已提交
182 183

	if (S_ISDIR(inode->i_mode))
184
		mask |= FS_IN_ISDIR;
R
Robert Love 已提交
185

E
Eric Paris 已提交
186 187 188 189
	if (!(file->f_mode & FMODE_NONOTIFY)) {
		fsnotify_parent(path, NULL, mask);
		fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
	}
R
Robert Love 已提交
190 191 192 193 194
}

/*
 * fsnotify_open - file was opened
 */
195
static inline void fsnotify_open(struct file *file)
R
Robert Love 已提交
196
{
197 198
	struct path *path = &file->f_path;
	struct inode *inode = path->dentry->d_inode;
199
	__u32 mask = FS_OPEN;
R
Robert Love 已提交
200 201

	if (S_ISDIR(inode->i_mode))
202
		mask |= FS_IN_ISDIR;
R
Robert Love 已提交
203

E
Eric Paris 已提交
204 205 206 207
	if (!(file->f_mode & FMODE_NONOTIFY)) {
		fsnotify_parent(path, NULL, mask);
		fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
	}
R
Robert Love 已提交
208 209 210 211 212 213 214
}

/*
 * fsnotify_close - file was closed
 */
static inline void fsnotify_close(struct file *file)
{
215
	struct path *path = &file->f_path;
216
	struct inode *inode = file->f_path.dentry->d_inode;
217
	fmode_t mode = file->f_mode;
218
	__u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE;
R
Robert Love 已提交
219 220

	if (S_ISDIR(inode->i_mode))
221
		mask |= FS_IN_ISDIR;
R
Robert Love 已提交
222

E
Eric Paris 已提交
223 224 225 226
	if (!(file->f_mode & FMODE_NONOTIFY)) {
		fsnotify_parent(path, NULL, mask);
		fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
	}
R
Robert Love 已提交
227 228 229 230 231 232 233 234
}

/*
 * fsnotify_xattr - extended attributes were changed
 */
static inline void fsnotify_xattr(struct dentry *dentry)
{
	struct inode *inode = dentry->d_inode;
235
	__u32 mask = FS_ATTRIB;
R
Robert Love 已提交
236 237

	if (S_ISDIR(inode->i_mode))
238
		mask |= FS_IN_ISDIR;
R
Robert Love 已提交
239

240
	fsnotify_parent(NULL, dentry, mask);
241
	fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
R
Robert Love 已提交
242 243 244 245 246 247 248 249 250
}

/*
 * fsnotify_change - notify_change event.  file was modified and/or metadata
 * was changed.
 */
static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
{
	struct inode *inode = dentry->d_inode;
251 252 253 254 255 256 257 258
	__u32 mask = 0;

	if (ia_valid & ATTR_UID)
		mask |= FS_ATTRIB;
	if (ia_valid & ATTR_GID)
		mask |= FS_ATTRIB;
	if (ia_valid & ATTR_SIZE)
		mask |= FS_MODIFY;
R
Robert Love 已提交
259 260 261

	/* both times implies a utime(s) call */
	if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
262 263 264 265 266 267 268 269
		mask |= FS_ATTRIB;
	else if (ia_valid & ATTR_ATIME)
		mask |= FS_ACCESS;
	else if (ia_valid & ATTR_MTIME)
		mask |= FS_MODIFY;

	if (ia_valid & ATTR_MODE)
		mask |= FS_ATTRIB;
R
Robert Love 已提交
270

271
	if (mask) {
R
Robert Love 已提交
272
		if (S_ISDIR(inode->i_mode))
273
			mask |= FS_IN_ISDIR;
274 275

		fsnotify_parent(NULL, dentry, mask);
276
		fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
R
Robert Love 已提交
277 278 279
	}
}

280
#if defined(CONFIG_FSNOTIFY)	/* notify helpers */
R
Robert Love 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297

/*
 * fsnotify_oldname_init - save off the old filename before we change it
 */
static inline const char *fsnotify_oldname_init(const char *name)
{
	return kstrdup(name, GFP_KERNEL);
}

/*
 * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init
 */
static inline void fsnotify_oldname_free(const char *old_name)
{
	kfree(old_name);
}

298
#else	/* CONFIG_FSNOTIFY */
R
Robert Love 已提交
299 300 301 302 303 304 305 306 307 308

static inline const char *fsnotify_oldname_init(const char *name)
{
	return NULL;
}

static inline void fsnotify_oldname_free(const char *old_name)
{
}

309
#endif	/*  CONFIG_FSNOTIFY */
R
Robert Love 已提交
310 311

#endif	/* _LINUX_FS_NOTIFY_H */