dnotify.c 11.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * Directory notifications for Linux.
 *
 * Copyright (C) 2000,2001,2002 Stephen Rothwell
 *
6 7 8
 * Copyright (C) 2009 Eric Paris <Red Hat Inc>
 * dnotify was largly rewritten to use the new fsnotify infrastructure
 *
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2, or (at your option) any
 * later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 */
#include <linux/fs.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/dnotify.h>
#include <linux/init.h>
#include <linux/spinlock.h>
#include <linux/slab.h>
A
Al Viro 已提交
26
#include <linux/fdtable.h>
27
#include <linux/fsnotify_backend.h>
L
Linus Torvalds 已提交
28

29
int dir_notify_enable __read_mostly = 1;
L
Linus Torvalds 已提交
30

31
static struct kmem_cache *dnotify_struct_cache __read_mostly;
E
Eric Paris 已提交
32
static struct kmem_cache *dnotify_mark_cache __read_mostly;
33 34 35
static struct fsnotify_group *dnotify_group __read_mostly;

/*
36
 * dnotify will attach one of these to each inode (i_fsnotify_marks) which
37 38 39
 * is being watched by dnotify.  If multiple userspace applications are watching
 * the same directory with dnotify their information is chained in dn
 */
E
Eric Paris 已提交
40 41
struct dnotify_mark {
	struct fsnotify_mark fsn_mark;
42 43
	struct dnotify_struct *dn;
};
L
Linus Torvalds 已提交
44

45 46 47 48 49 50 51 52
/*
 * When a process starts or stops watching an inode the set of events which
 * dnotify cares about for that inode may change.  This function runs the
 * list of everything receiving dnotify events about this directory and calculates
 * the set of all those events.  After it updates what dnotify is interested in
 * it calls the fsnotify function so it can update the set of all events relevant
 * to this inode.
 */
E
Eric Paris 已提交
53
static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark)
L
Linus Torvalds 已提交
54
{
55
	__u32 new_mask, old_mask;
L
Linus Torvalds 已提交
56
	struct dnotify_struct *dn;
E
Eric Paris 已提交
57 58 59
	struct dnotify_mark *dn_mark  = container_of(fsn_mark,
						     struct dnotify_mark,
						     fsn_mark);
60

E
Eric Paris 已提交
61
	assert_spin_locked(&fsn_mark->lock);
L
Linus Torvalds 已提交
62

E
Eric Paris 已提交
63
	old_mask = fsn_mark->mask;
L
Linus Torvalds 已提交
64
	new_mask = 0;
E
Eric Paris 已提交
65
	for (dn = dn_mark->dn; dn != NULL; dn = dn->dn_next)
66
		new_mask |= (dn->dn_mask & ~FS_DN_MULTISHOT);
67
	fsnotify_set_mark_mask_locked(fsn_mark, new_mask);
68 69 70 71

	if (old_mask == new_mask)
		return;

E
Eric Paris 已提交
72 73
	if (fsn_mark->i.inode)
		fsnotify_recalc_inode_mask(fsn_mark->i.inode);
L
Linus Torvalds 已提交
74 75
}

76 77 78 79 80 81 82 83 84
/*
 * Mains fsnotify call where events are delivered to dnotify.
 * Find the dnotify mark on the relevant inode, run the list of dnotify structs
 * on that mark and determine which of them has expressed interest in receiving
 * events of this type.  When found send the correct process and signal and
 * destroy the dnotify struct if it was not registered to receive multiple
 * events.
 */
static int dnotify_handle_event(struct fsnotify_group *group,
85
				struct inode *inode,
86 87
				struct fsnotify_mark *inode_mark,
				struct fsnotify_mark *vfsmount_mark,
88 89
				u32 mask, void *data, int data_type,
				const unsigned char *file_name)
90
{
E
Eric Paris 已提交
91
	struct dnotify_mark *dn_mark;
92 93 94
	struct dnotify_struct *dn;
	struct dnotify_struct **prev;
	struct fown_struct *fown;
95
	__u32 test_mask = mask & ~FS_EVENT_ON_CHILD;
96

97 98 99 100
	/* not a dir, dnotify doesn't care */
	if (!S_ISDIR(inode->i_mode))
		return 0;

101 102 103
	BUG_ON(vfsmount_mark);

	dn_mark = container_of(inode_mark, struct dnotify_mark, fsn_mark);
104

105
	spin_lock(&inode_mark->lock);
E
Eric Paris 已提交
106
	prev = &dn_mark->dn;
107
	while ((dn = *prev) != NULL) {
108
		if ((dn->dn_mask & test_mask) == 0) {
109 110 111 112 113 114 115 116 117 118
			prev = &dn->dn_next;
			continue;
		}
		fown = &dn->dn_filp->f_owner;
		send_sigio(fown, dn->dn_fd, POLL_MSG);
		if (dn->dn_mask & FS_DN_MULTISHOT)
			prev = &dn->dn_next;
		else {
			*prev = dn->dn_next;
			kmem_cache_free(dnotify_struct_cache, dn);
119
			dnotify_recalc_inode_mask(inode_mark);
120 121 122
		}
	}

123
	spin_unlock(&inode_mark->lock);
124 125 126 127

	return 0;
}

E
Eric Paris 已提交
128
static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
129
{
E
Eric Paris 已提交
130 131 132
	struct dnotify_mark *dn_mark = container_of(fsn_mark,
						    struct dnotify_mark,
						    fsn_mark);
133

E
Eric Paris 已提交
134
	BUG_ON(dn_mark->dn);
135

E
Eric Paris 已提交
136
	kmem_cache_free(dnotify_mark_cache, dn_mark);
137 138 139 140 141
}

static struct fsnotify_ops dnotify_fsnotify_ops = {
	.handle_event = dnotify_handle_event,
	.free_group_priv = NULL,
142
	.freeing_mark = NULL,
143
	.free_event = NULL,
144 145 146 147
};

/*
 * Called every time a file is closed.  Looks first for a dnotify mark on the
148
 * inode.  If one is found run all of the ->dn structures attached to that
149 150
 * mark for one relevant to this process closing the file and remove that
 * dnotify_struct.  If that was the last dnotify_struct also remove the
151
 * fsnotify_mark.
152
 */
L
Linus Torvalds 已提交
153 154
void dnotify_flush(struct file *filp, fl_owner_t id)
{
E
Eric Paris 已提交
155 156
	struct fsnotify_mark *fsn_mark;
	struct dnotify_mark *dn_mark;
L
Linus Torvalds 已提交
157 158 159 160
	struct dnotify_struct *dn;
	struct dnotify_struct **prev;
	struct inode *inode;

A
Al Viro 已提交
161
	inode = file_inode(filp);
L
Linus Torvalds 已提交
162 163
	if (!S_ISDIR(inode->i_mode))
		return;
164

165
	fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
E
Eric Paris 已提交
166
	if (!fsn_mark)
167
		return;
E
Eric Paris 已提交
168
	dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
169

170
	mutex_lock(&dnotify_group->mark_mutex);
171

E
Eric Paris 已提交
172 173
	spin_lock(&fsn_mark->lock);
	prev = &dn_mark->dn;
L
Linus Torvalds 已提交
174 175 176
	while ((dn = *prev) != NULL) {
		if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
			*prev = dn->dn_next;
177
			kmem_cache_free(dnotify_struct_cache, dn);
E
Eric Paris 已提交
178
			dnotify_recalc_inode_mask(fsn_mark);
L
Linus Torvalds 已提交
179 180 181 182
			break;
		}
		prev = &dn->dn_next;
	}
183

E
Eric Paris 已提交
184
	spin_unlock(&fsn_mark->lock);
185

186 187
	/* nothing else could have found us thanks to the dnotify_groups
	   mark_mutex */
E
Eric Paris 已提交
188
	if (dn_mark->dn == NULL)
189
		fsnotify_destroy_mark_locked(fsn_mark, dnotify_group);
190

191
	mutex_unlock(&dnotify_group->mark_mutex);
192

E
Eric Paris 已提交
193
	fsnotify_put_mark(fsn_mark);
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
}

/* this conversion is done only at watch creation */
static __u32 convert_arg(unsigned long arg)
{
	__u32 new_mask = FS_EVENT_ON_CHILD;

	if (arg & DN_MULTISHOT)
		new_mask |= FS_DN_MULTISHOT;
	if (arg & DN_DELETE)
		new_mask |= (FS_DELETE | FS_MOVED_FROM);
	if (arg & DN_MODIFY)
		new_mask |= FS_MODIFY;
	if (arg & DN_ACCESS)
		new_mask |= FS_ACCESS;
	if (arg & DN_ATTRIB)
		new_mask |= FS_ATTRIB;
	if (arg & DN_RENAME)
		new_mask |= FS_DN_RENAME;
	if (arg & DN_CREATE)
		new_mask |= (FS_CREATE | FS_MOVED_TO);

	return new_mask;
L
Linus Torvalds 已提交
217 218
}

219 220
/*
 * If multiple processes watch the same inode with dnotify there is only one
221
 * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
222 223 224
 * onto that mark.  This function either attaches the new dnotify_struct onto
 * that list, or it |= the mask onto an existing dnofiy_struct.
 */
E
Eric Paris 已提交
225
static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
226 227 228 229
		     fl_owner_t id, int fd, struct file *filp, __u32 mask)
{
	struct dnotify_struct *odn;

E
Eric Paris 已提交
230
	odn = dn_mark->dn;
231 232 233 234 235 236 237 238 239 240 241 242 243 244
	while (odn != NULL) {
		/* adding more events to existing dnofiy_struct? */
		if ((odn->dn_owner == id) && (odn->dn_filp == filp)) {
			odn->dn_fd = fd;
			odn->dn_mask |= mask;
			return -EEXIST;
		}
		odn = odn->dn_next;
	}

	dn->dn_mask = mask;
	dn->dn_fd = fd;
	dn->dn_filp = filp;
	dn->dn_owner = id;
E
Eric Paris 已提交
245 246
	dn->dn_next = dn_mark->dn;
	dn_mark->dn = dn;
247 248 249 250 251 252 253 254 255

	return 0;
}

/*
 * When a process calls fcntl to attach a dnotify watch to a directory it ends
 * up here.  Allocate both a mark for fsnotify to add and a dnotify_struct to be
 * attached to the fsnotify_mark.
 */
L
Linus Torvalds 已提交
256 257
int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
{
E
Eric Paris 已提交
258 259
	struct dnotify_mark *new_dn_mark, *dn_mark;
	struct fsnotify_mark *new_fsn_mark, *fsn_mark;
L
Linus Torvalds 已提交
260 261 262
	struct dnotify_struct *dn;
	struct inode *inode;
	fl_owner_t id = current->files;
A
Al Viro 已提交
263
	struct file *f;
264 265 266 267
	int destroy = 0, error = 0;
	__u32 mask;

	/* we use these to tell if we need to kfree */
E
Eric Paris 已提交
268
	new_fsn_mark = NULL;
269
	dn = NULL;
L
Linus Torvalds 已提交
270

271 272 273 274 275 276
	if (!dir_notify_enable) {
		error = -EINVAL;
		goto out_err;
	}

	/* a 0 mask means we are explicitly removing the watch */
L
Linus Torvalds 已提交
277 278
	if ((arg & ~DN_MULTISHOT) == 0) {
		dnotify_flush(filp, id);
279 280
		error = 0;
		goto out_err;
L
Linus Torvalds 已提交
281
	}
282 283

	/* dnotify only works on directories */
A
Al Viro 已提交
284
	inode = file_inode(filp);
285 286 287
	if (!S_ISDIR(inode->i_mode)) {
		error = -ENOTDIR;
		goto out_err;
L
Linus Torvalds 已提交
288 289
	}

290 291 292 293 294 295
	/* expect most fcntl to add new rather than augment old */
	dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL);
	if (!dn) {
		error = -ENOMEM;
		goto out_err;
	}
A
Al Viro 已提交
296

297
	/* new fsnotify mark, we expect most fcntl calls to add a new mark */
E
Eric Paris 已提交
298 299
	new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
	if (!new_dn_mark) {
300 301 302
		error = -ENOMEM;
		goto out_err;
	}
L
Linus Torvalds 已提交
303

304 305
	/* convert the userspace DN_* "arg" to the internal FS_* defines in fsnotify */
	mask = convert_arg(arg);
L
Linus Torvalds 已提交
306

E
Eric Paris 已提交
307 308 309 310 311
	/* set up the new_fsn_mark and new_dn_mark */
	new_fsn_mark = &new_dn_mark->fsn_mark;
	fsnotify_init_mark(new_fsn_mark, dnotify_free_mark);
	new_fsn_mark->mask = mask;
	new_dn_mark->dn = NULL;
L
Linus Torvalds 已提交
312

313
	/* this is needed to prevent the fcntl/close race described below */
314
	mutex_lock(&dnotify_group->mark_mutex);
L
Linus Torvalds 已提交
315

E
Eric Paris 已提交
316
	/* add the new_fsn_mark or find an old one. */
317
	fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
E
Eric Paris 已提交
318 319 320
	if (fsn_mark) {
		dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
		spin_lock(&fsn_mark->lock);
321
	} else {
322 323
		fsnotify_add_mark_locked(new_fsn_mark, dnotify_group, inode,
					 NULL, 0);
E
Eric Paris 已提交
324 325 326 327 328
		spin_lock(&new_fsn_mark->lock);
		fsn_mark = new_fsn_mark;
		dn_mark = new_dn_mark;
		/* we used new_fsn_mark, so don't free it */
		new_fsn_mark = NULL;
329
	}
L
Linus Torvalds 已提交
330

331 332 333
	rcu_read_lock();
	f = fcheck(fd);
	rcu_read_unlock();
L
Linus Torvalds 已提交
334

335 336
	/* if (f != filp) means that we lost a race and another task/thread
	 * actually closed the fd we are still playing with before we grabbed
337 338 339
	 * the dnotify_groups mark_mutex and fsn_mark->lock.  Since closing the
	 * fd is the only time we clean up the marks we need to get our mark
	 * off the list. */
340 341
	if (f != filp) {
		/* if we added ourselves, shoot ourselves, it's possible that
E
Eric Paris 已提交
342
		 * the flush actually did shoot this fsn_mark.  That's fine too
343
		 * since multiple calls to destroy_mark is perfectly safe, if
E
Eric Paris 已提交
344
		 * we found a dn_mark already attached to the inode, just sod
345 346
		 * off silently as the flush at close time dealt with it.
		 */
E
Eric Paris 已提交
347
		if (dn_mark == new_dn_mark)
348 349 350
			destroy = 1;
		goto out;
	}
L
Linus Torvalds 已提交
351

352 353 354
	error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
	if (error) {
		/* if we added, we must shoot */
E
Eric Paris 已提交
355
		if (dn_mark == new_dn_mark)
356 357
			destroy = 1;
		goto out;
L
Linus Torvalds 已提交
358
	}
359

E
Eric Paris 已提交
360 361
	error = attach_dn(dn, dn_mark, id, fd, filp, mask);
	/* !error means that we attached the dn to the dn_mark, so don't free it */
362 363 364 365 366 367 368
	if (!error)
		dn = NULL;
	/* -EEXIST means that we didn't add this new dn and used an old one.
	 * that isn't an error (and the unused dn should be freed) */
	else if (error == -EEXIST)
		error = 0;

E
Eric Paris 已提交
369
	dnotify_recalc_inode_mask(fsn_mark);
370
out:
E
Eric Paris 已提交
371
	spin_unlock(&fsn_mark->lock);
372 373

	if (destroy)
374
		fsnotify_destroy_mark_locked(fsn_mark, dnotify_group);
375

376
	mutex_unlock(&dnotify_group->mark_mutex);
E
Eric Paris 已提交
377
	fsnotify_put_mark(fsn_mark);
378
out_err:
E
Eric Paris 已提交
379 380
	if (new_fsn_mark)
		fsnotify_put_mark(new_fsn_mark);
381 382 383
	if (dn)
		kmem_cache_free(dnotify_struct_cache, dn);
	return error;
L
Linus Torvalds 已提交
384 385 386 387
}

static int __init dnotify_init(void)
{
388
	dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
E
Eric Paris 已提交
389
	dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
390

391
	dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
392 393
	if (IS_ERR(dnotify_group))
		panic("unable to allocate fsnotify group for dnotify\n");
L
Linus Torvalds 已提交
394 395 396 397
	return 0;
}

module_init(dnotify_init)