dnotify.c 11.9 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 36
static struct fsnotify_group *dnotify_group __read_mostly;
static DEFINE_MUTEX(dnotify_mark_mutex);

/*
37
 * dnotify will attach one of these to each inode (i_fsnotify_marks) which
38 39 40
 * 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 已提交
41 42
struct dnotify_mark {
	struct fsnotify_mark fsn_mark;
43 44
	struct dnotify_struct *dn;
};
L
Linus Torvalds 已提交
45

46 47 48 49 50 51 52 53
/*
 * 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 已提交
54
static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark)
L
Linus Torvalds 已提交
55
{
56
	__u32 new_mask, old_mask;
L
Linus Torvalds 已提交
57
	struct dnotify_struct *dn;
E
Eric Paris 已提交
58 59 60
	struct dnotify_mark *dn_mark  = container_of(fsn_mark,
						     struct dnotify_mark,
						     fsn_mark);
61

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

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

	if (old_mask == new_mask)
		return;

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

77 78 79 80 81 82 83 84 85 86 87
/*
 * 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,
				struct fsnotify_event *event)
{
E
Eric Paris 已提交
88 89
	struct fsnotify_mark *fsn_mark = NULL;
	struct dnotify_mark *dn_mark;
90 91 92 93
	struct inode *to_tell;
	struct dnotify_struct *dn;
	struct dnotify_struct **prev;
	struct fown_struct *fown;
94
	__u32 test_mask = event->mask & ~FS_EVENT_ON_CHILD;
95 96 97

	to_tell = event->to_tell;

98
	fsn_mark = fsnotify_find_inode_mark(group, to_tell);
E
Eric Paris 已提交
99
	if (unlikely(!fsn_mark))
100
		return 0;
E
Eric Paris 已提交
101
	dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
102

E
Eric Paris 已提交
103 104
	spin_lock(&fsn_mark->lock);
	prev = &dn_mark->dn;
105
	while ((dn = *prev) != NULL) {
106
		if ((dn->dn_mask & test_mask) == 0) {
107 108 109 110 111 112 113 114 115 116
			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);
E
Eric Paris 已提交
117
			dnotify_recalc_inode_mask(fsn_mark);
118 119 120
		}
	}

E
Eric Paris 已提交
121 122
	spin_unlock(&fsn_mark->lock);
	fsnotify_put_mark(fsn_mark);
123 124 125 126 127 128 129 130 131

	return 0;
}

/*
 * Given an inode and mask determine if dnotify would be interested in sending
 * userspace notification for that pair.
 */
static bool dnotify_should_send_event(struct fsnotify_group *group,
132 133
				      struct inode *inode, struct vfsmount *mnt,
				      __u32 mask, void *data, int data_type)
134
{
E
Eric Paris 已提交
135
	struct fsnotify_mark *fsn_mark;
136 137 138 139 140 141 142 143 144 145
	bool send;

	/* !dir_notify_enable should never get here, don't waste time checking
	if (!dir_notify_enable)
		return 0; */

	/* not a dir, dnotify doesn't care */
	if (!S_ISDIR(inode->i_mode))
		return false;

146
	fsn_mark = fsnotify_find_inode_mark(group, inode);
E
Eric Paris 已提交
147
	if (!fsn_mark)
148 149
		return false;

150
	mask = (mask & ~FS_EVENT_ON_CHILD);
E
Eric Paris 已提交
151
	send = (mask & fsn_mark->mask);
152

153
	fsnotify_put_mark(fsn_mark); /* matches fsnotify_find_inode_mark */
154 155 156 157

	return send;
}

E
Eric Paris 已提交
158
static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
159
{
E
Eric Paris 已提交
160 161 162
	struct dnotify_mark *dn_mark = container_of(fsn_mark,
						    struct dnotify_mark,
						    fsn_mark);
163

E
Eric Paris 已提交
164
	BUG_ON(dn_mark->dn);
165

E
Eric Paris 已提交
166
	kmem_cache_free(dnotify_mark_cache, dn_mark);
167 168 169 170 171 172
}

static struct fsnotify_ops dnotify_fsnotify_ops = {
	.handle_event = dnotify_handle_event,
	.should_send_event = dnotify_should_send_event,
	.free_group_priv = NULL,
173
	.freeing_mark = NULL,
174
	.free_event_priv = NULL,
175 176 177 178
};

/*
 * Called every time a file is closed.  Looks first for a dnotify mark on the
179
 * inode.  If one is found run all of the ->dn structures attached to that
180 181
 * 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
182
 * fsnotify_mark.
183
 */
L
Linus Torvalds 已提交
184 185
void dnotify_flush(struct file *filp, fl_owner_t id)
{
E
Eric Paris 已提交
186 187
	struct fsnotify_mark *fsn_mark;
	struct dnotify_mark *dn_mark;
L
Linus Torvalds 已提交
188 189 190 191
	struct dnotify_struct *dn;
	struct dnotify_struct **prev;
	struct inode *inode;

192
	inode = filp->f_path.dentry->d_inode;
L
Linus Torvalds 已提交
193 194
	if (!S_ISDIR(inode->i_mode))
		return;
195

196
	fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
E
Eric Paris 已提交
197
	if (!fsn_mark)
198
		return;
E
Eric Paris 已提交
199
	dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
200 201 202

	mutex_lock(&dnotify_mark_mutex);

E
Eric Paris 已提交
203 204
	spin_lock(&fsn_mark->lock);
	prev = &dn_mark->dn;
L
Linus Torvalds 已提交
205 206 207
	while ((dn = *prev) != NULL) {
		if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
			*prev = dn->dn_next;
208
			kmem_cache_free(dnotify_struct_cache, dn);
E
Eric Paris 已提交
209
			dnotify_recalc_inode_mask(fsn_mark);
L
Linus Torvalds 已提交
210 211 212 213
			break;
		}
		prev = &dn->dn_next;
	}
214

E
Eric Paris 已提交
215
	spin_unlock(&fsn_mark->lock);
216 217

	/* nothing else could have found us thanks to the dnotify_mark_mutex */
E
Eric Paris 已提交
218 219
	if (dn_mark->dn == NULL)
		fsnotify_destroy_mark(fsn_mark);
220 221 222 223 224

	fsnotify_recalc_group_mask(dnotify_group);

	mutex_unlock(&dnotify_mark_mutex);

E
Eric Paris 已提交
225
	fsnotify_put_mark(fsn_mark);
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
}

/* 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 已提交
249 250
}

251 252
/*
 * If multiple processes watch the same inode with dnotify there is only one
253
 * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
254 255 256
 * 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 已提交
257
static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
258 259 260 261
		     fl_owner_t id, int fd, struct file *filp, __u32 mask)
{
	struct dnotify_struct *odn;

E
Eric Paris 已提交
262
	odn = dn_mark->dn;
263 264 265 266 267 268 269 270 271 272 273 274 275 276
	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 已提交
277 278
	dn->dn_next = dn_mark->dn;
	dn_mark->dn = dn;
279 280 281 282 283 284 285 286 287

	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 已提交
288 289
int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
{
E
Eric Paris 已提交
290 291
	struct dnotify_mark *new_dn_mark, *dn_mark;
	struct fsnotify_mark *new_fsn_mark, *fsn_mark;
L
Linus Torvalds 已提交
292 293 294
	struct dnotify_struct *dn;
	struct inode *inode;
	fl_owner_t id = current->files;
A
Al Viro 已提交
295
	struct file *f;
296 297 298 299
	int destroy = 0, error = 0;
	__u32 mask;

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

303 304 305 306 307 308
	if (!dir_notify_enable) {
		error = -EINVAL;
		goto out_err;
	}

	/* a 0 mask means we are explicitly removing the watch */
L
Linus Torvalds 已提交
309 310
	if ((arg & ~DN_MULTISHOT) == 0) {
		dnotify_flush(filp, id);
311 312
		error = 0;
		goto out_err;
L
Linus Torvalds 已提交
313
	}
314 315

	/* dnotify only works on directories */
316
	inode = filp->f_path.dentry->d_inode;
317 318 319
	if (!S_ISDIR(inode->i_mode)) {
		error = -ENOTDIR;
		goto out_err;
L
Linus Torvalds 已提交
320 321
	}

322 323 324 325 326 327
	/* 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 已提交
328

329
	/* new fsnotify mark, we expect most fcntl calls to add a new mark */
E
Eric Paris 已提交
330 331
	new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
	if (!new_dn_mark) {
332 333 334
		error = -ENOMEM;
		goto out_err;
	}
L
Linus Torvalds 已提交
335

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

E
Eric Paris 已提交
339 340 341 342 343
	/* 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 已提交
344

345 346
	/* this is needed to prevent the fcntl/close race described below */
	mutex_lock(&dnotify_mark_mutex);
L
Linus Torvalds 已提交
347

E
Eric Paris 已提交
348
	/* add the new_fsn_mark or find an old one. */
349
	fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
E
Eric Paris 已提交
350 351 352
	if (fsn_mark) {
		dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
		spin_lock(&fsn_mark->lock);
353
	} else {
354
		fsnotify_add_mark(new_fsn_mark, dnotify_group, inode, NULL, 0);
E
Eric Paris 已提交
355 356 357 358 359
		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;
360
	}
L
Linus Torvalds 已提交
361

362 363 364
	rcu_read_lock();
	f = fcheck(fd);
	rcu_read_unlock();
L
Linus Torvalds 已提交
365

366 367
	/* 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
E
Eric Paris 已提交
368
	 * the dnotify_mark_mutex and fsn_mark->lock.  Since closing the fd is the
369
	 * only time we clean up the marks we need to get our mark off
370 371 372
	 * the list. */
	if (f != filp) {
		/* if we added ourselves, shoot ourselves, it's possible that
E
Eric Paris 已提交
373
		 * the flush actually did shoot this fsn_mark.  That's fine too
374
		 * since multiple calls to destroy_mark is perfectly safe, if
E
Eric Paris 已提交
375
		 * we found a dn_mark already attached to the inode, just sod
376 377
		 * off silently as the flush at close time dealt with it.
		 */
E
Eric Paris 已提交
378
		if (dn_mark == new_dn_mark)
379 380 381
			destroy = 1;
		goto out;
	}
L
Linus Torvalds 已提交
382

383 384 385
	error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
	if (error) {
		/* if we added, we must shoot */
E
Eric Paris 已提交
386
		if (dn_mark == new_dn_mark)
387 388
			destroy = 1;
		goto out;
L
Linus Torvalds 已提交
389
	}
390

E
Eric Paris 已提交
391 392
	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 */
393 394 395 396 397 398 399
	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 已提交
400
	dnotify_recalc_inode_mask(fsn_mark);
401
out:
E
Eric Paris 已提交
402
	spin_unlock(&fsn_mark->lock);
403 404

	if (destroy)
E
Eric Paris 已提交
405
		fsnotify_destroy_mark(fsn_mark);
406 407 408 409

	fsnotify_recalc_group_mask(dnotify_group);

	mutex_unlock(&dnotify_mark_mutex);
E
Eric Paris 已提交
410
	fsnotify_put_mark(fsn_mark);
411
out_err:
E
Eric Paris 已提交
412 413
	if (new_fsn_mark)
		fsnotify_put_mark(new_fsn_mark);
414 415 416
	if (dn)
		kmem_cache_free(dnotify_struct_cache, dn);
	return error;
L
Linus Torvalds 已提交
417 418 419 420
}

static int __init dnotify_init(void)
{
421
	dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
E
Eric Paris 已提交
422
	dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
423

424
	dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
425 426
	if (IS_ERR(dnotify_group))
		panic("unable to allocate fsnotify group for dnotify\n");
L
Linus Torvalds 已提交
427 428 429 430
	return 0;
}

module_init(dnotify_init)