fsnotify.h 8.3 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>
17
#include <linux/bug.h>
R
Robert Love 已提交
18

19 20 21
/*
 * fsnotify_d_instantiate - instantiate a dentry for inode
 */
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 int fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask)
E
Eric Paris 已提交
30
{
31
	if (!dentry)
32
		dentry = path->dentry;
33

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

37 38 39
/* simple call site for access decisions */
static inline int fsnotify_perm(struct file *file, int mask)
{
40 41
	struct path *path = &file->f_path;
	struct inode *inode = path->dentry->d_inode;
42
	__u32 fsnotify_mask = 0;
43
	int ret;
44 45 46 47 48 49 50

	if (file->f_mode & FMODE_NONOTIFY)
		return 0;
	if (!(mask & (MAY_READ | MAY_OPEN)))
		return 0;
	if (mask & MAY_OPEN)
		fsnotify_mask = FS_OPEN_PERM;
51 52 53 54
	else if (mask & MAY_READ)
		fsnotify_mask = FS_ACCESS_PERM;
	else
		BUG();
55

56 57 58 59
	ret = fsnotify_parent(path, NULL, fsnotify_mask);
	if (ret)
		return ret;

60
	return fsnotify(inode, fsnotify_mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
61 62
}

63
/*
64
 * fsnotify_d_move - dentry has been moved
65
 */
66
static inline void fsnotify_d_move(struct dentry *dentry)
67
{
E
Eric Paris 已提交
68
	/*
69 70
	 * On move we need to update dentry->d_flags to indicate if the new parent
	 * cares about events from this dentry.
E
Eric Paris 已提交
71
	 */
72
	__fsnotify_update_dcache_flags(dentry);
73 74
}

75 76 77 78 79
/*
 * fsnotify_link_count - inode's link count changed
 */
static inline void fsnotify_link_count(struct inode *inode)
{
80
	fsnotify(inode, FS_ATTRIB, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
81 82
}

R
Robert Love 已提交
83 84 85 86
/*
 * 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,
87
				 const unsigned char *old_name,
88
				 int isdir, struct inode *target, struct dentry *moved)
R
Robert Love 已提交
89
{
90
	struct inode *source = moved->d_inode;
91
	u32 fs_cookie = fsnotify_get_cookie();
92 93
	__u32 old_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_FROM);
	__u32 new_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_TO);
94
	const unsigned char *new_name = moved->d_name.name;
R
Robert Love 已提交
95

96 97
	if (old_dir == new_dir)
		old_dir_mask |= FS_DN_RENAME;
R
Robert Love 已提交
98

99
	if (isdir) {
100 101
		old_dir_mask |= FS_ISDIR;
		new_dir_mask |= FS_ISDIR;
102 103
	}

104 105
	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);
106

107
	if (target)
108
		fsnotify_link_count(target);
109

110
	if (source)
111
		fsnotify(source, FS_MOVE_SELF, moved->d_inode, FSNOTIFY_EVENT_INODE, NULL, 0);
112
	audit_inode_child(moved, new_dir);
R
Robert Love 已提交
113 114
}

115 116 117 118 119 120 121 122
/*
 * 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);
}

123 124 125 126 127 128 129 130
/*
 * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed
 */
static inline void fsnotify_vfsmount_delete(struct vfsmount *mnt)
{
	__fsnotify_vfsmount_delete(mnt);
}

131 132 133 134 135
/*
 * fsnotify_nameremove - a filename was removed from a directory
 */
static inline void fsnotify_nameremove(struct dentry *dentry, int isdir)
{
136 137
	__u32 mask = FS_DELETE;

138
	if (isdir)
139
		mask |= FS_ISDIR;
E
Eric Paris 已提交
140

141
	fsnotify_parent(NULL, dentry, mask);
142 143 144 145 146 147 148
}

/*
 * fsnotify_inoderemove - an inode is going away
 */
static inline void fsnotify_inoderemove(struct inode *inode)
{
149
	fsnotify(inode, FS_DELETE_SELF, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
150
	__fsnotify_inode_delete(inode);
151 152
}

R
Robert Love 已提交
153 154 155
/*
 * fsnotify_create - 'name' was linked in
 */
156
static inline void fsnotify_create(struct inode *inode, struct dentry *dentry)
R
Robert Love 已提交
157
{
158
	audit_inode_child(dentry, inode);
159

160
	fsnotify(inode, FS_CREATE, dentry->d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
R
Robert Love 已提交
161 162
}

163 164 165 166 167 168 169 170
/*
 * 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);
171
	audit_inode_child(new_dentry, dir);
172

173
	fsnotify(dir, FS_CREATE, inode, FSNOTIFY_EVENT_INODE, new_dentry->d_name.name, 0);
174 175
}

R
Robert Love 已提交
176 177 178
/*
 * fsnotify_mkdir - directory 'name' was created
 */
179
static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry)
R
Robert Love 已提交
180
{
181
	__u32 mask = (FS_CREATE | FS_ISDIR);
182 183
	struct inode *d_inode = dentry->d_inode;

184
	audit_inode_child(dentry, inode);
185

186
	fsnotify(inode, mask, d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
R
Robert Love 已提交
187 188 189 190 191
}

/*
 * fsnotify_access - file was read
 */
192
static inline void fsnotify_access(struct file *file)
R
Robert Love 已提交
193
{
194 195
	struct path *path = &file->f_path;
	struct inode *inode = path->dentry->d_inode;
196
	__u32 mask = FS_ACCESS;
R
Robert Love 已提交
197 198

	if (S_ISDIR(inode->i_mode))
199
		mask |= FS_ISDIR;
R
Robert Love 已提交
200

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

/*
 * fsnotify_modify - file was modified
 */
210
static inline void fsnotify_modify(struct file *file)
R
Robert Love 已提交
211
{
212 213
	struct path *path = &file->f_path;
	struct inode *inode = path->dentry->d_inode;
214
	__u32 mask = FS_MODIFY;
R
Robert Love 已提交
215 216

	if (S_ISDIR(inode->i_mode))
217
		mask |= FS_ISDIR;
R
Robert Love 已提交
218

E
Eric Paris 已提交
219
	if (!(file->f_mode & FMODE_NONOTIFY)) {
220 221
		fsnotify_parent(path, NULL, mask);
		fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
E
Eric Paris 已提交
222
	}
R
Robert Love 已提交
223 224 225 226 227
}

/*
 * fsnotify_open - file was opened
 */
228
static inline void fsnotify_open(struct file *file)
R
Robert Love 已提交
229
{
230 231
	struct path *path = &file->f_path;
	struct inode *inode = path->dentry->d_inode;
232
	__u32 mask = FS_OPEN;
R
Robert Love 已提交
233 234

	if (S_ISDIR(inode->i_mode))
235
		mask |= FS_ISDIR;
R
Robert Love 已提交
236

237 238
	fsnotify_parent(path, NULL, mask);
	fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
R
Robert Love 已提交
239 240 241 242 243 244 245
}

/*
 * fsnotify_close - file was closed
 */
static inline void fsnotify_close(struct file *file)
{
246
	struct path *path = &file->f_path;
247
	struct inode *inode = file->f_path.dentry->d_inode;
248
	fmode_t mode = file->f_mode;
249
	__u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE;
R
Robert Love 已提交
250 251

	if (S_ISDIR(inode->i_mode))
252
		mask |= FS_ISDIR;
R
Robert Love 已提交
253

E
Eric Paris 已提交
254
	if (!(file->f_mode & FMODE_NONOTIFY)) {
255 256
		fsnotify_parent(path, NULL, mask);
		fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
E
Eric Paris 已提交
257
	}
R
Robert Love 已提交
258 259 260 261 262 263 264 265
}

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

	if (S_ISDIR(inode->i_mode))
269
		mask |= FS_ISDIR;
R
Robert Love 已提交
270

271
	fsnotify_parent(NULL, dentry, mask);
272
	fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
R
Robert Love 已提交
273 274 275 276 277 278 279 280 281
}

/*
 * 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;
282 283 284 285 286 287 288 289
	__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 已提交
290 291 292

	/* both times implies a utime(s) call */
	if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
293 294 295 296 297 298 299 300
		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 已提交
301

302
	if (mask) {
R
Robert Love 已提交
303
		if (S_ISDIR(inode->i_mode))
304
			mask |= FS_ISDIR;
305 306

		fsnotify_parent(NULL, dentry, mask);
307
		fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
R
Robert Love 已提交
308 309 310
	}
}

311
#if defined(CONFIG_FSNOTIFY)	/* notify helpers */
R
Robert Love 已提交
312 313 314 315

/*
 * fsnotify_oldname_init - save off the old filename before we change it
 */
316
static inline const unsigned char *fsnotify_oldname_init(const unsigned char *name)
R
Robert Love 已提交
317 318 319 320 321 322 323
{
	return kstrdup(name, GFP_KERNEL);
}

/*
 * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init
 */
324
static inline void fsnotify_oldname_free(const unsigned char *old_name)
R
Robert Love 已提交
325 326 327 328
{
	kfree(old_name);
}

329
#else	/* CONFIG_FSNOTIFY */
R
Robert Love 已提交
330

331
static inline const char *fsnotify_oldname_init(const unsigned char *name)
R
Robert Love 已提交
332 333 334 335
{
	return NULL;
}

336
static inline void fsnotify_oldname_free(const unsigned char *old_name)
R
Robert Love 已提交
337 338 339
{
}

340
#endif	/*  CONFIG_FSNOTIFY */
R
Robert Love 已提交
341 342

#endif	/* _LINUX_FS_NOTIFY_H */