dnotify.c 12.1 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 32 33 34 35 36
static struct kmem_cache *dnotify_struct_cache __read_mostly;
static struct kmem_cache *dnotify_mark_entry_cache __read_mostly;
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 41
 * is being watched by dnotify.  If multiple userspace applications are watching
 * the same directory with dnotify their information is chained in dn
 */
struct dnotify_mark_entry {
42
	struct fsnotify_mark fsn_entry;
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.
 */
54
static void dnotify_recalc_inode_mask(struct fsnotify_mark *entry)
L
Linus Torvalds 已提交
55
{
56
	__u32 new_mask, old_mask;
L
Linus Torvalds 已提交
57
	struct dnotify_struct *dn;
58 59 60 61 62
	struct dnotify_mark_entry *dnentry  = container_of(entry,
							   struct dnotify_mark_entry,
							   fsn_entry);

	assert_spin_locked(&entry->lock);
L
Linus Torvalds 已提交
63

64
	old_mask = entry->mask;
L
Linus Torvalds 已提交
65
	new_mask = 0;
66 67 68 69 70 71 72
	for (dn = dnentry->dn; dn != NULL; dn = dn->dn_next)
		new_mask |= (dn->dn_mask & ~FS_DN_MULTISHOT);
	entry->mask = new_mask;

	if (old_mask == new_mask)
		return;

73 74
	if (entry->i.inode)
		fsnotify_recalc_inode_mask(entry->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)
{
88
	struct fsnotify_mark *entry = NULL;
89 90 91 92 93
	struct dnotify_mark_entry *dnentry;
	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 98

	to_tell = event->to_tell;

	spin_lock(&to_tell->i_lock);
99
	entry = fsnotify_find_mark(group, to_tell);
100 101 102 103 104 105 106 107 108 109
	spin_unlock(&to_tell->i_lock);

	/* unlikely since we alreay passed dnotify_should_send_event() */
	if (unlikely(!entry))
		return 0;
	dnentry = container_of(entry, struct dnotify_mark_entry, fsn_entry);

	spin_lock(&entry->lock);
	prev = &dnentry->dn;
	while ((dn = *prev) != NULL) {
110
		if ((dn->dn_mask & test_mask) == 0) {
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
			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);
			dnotify_recalc_inode_mask(entry);
		}
	}

	spin_unlock(&entry->lock);
	fsnotify_put_mark(entry);

	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,
136 137
				      struct inode *inode, struct vfsmount *mnt,
				      __u32 mask, void *data, int data_type)
138
{
139
	struct fsnotify_mark *entry;
140 141 142 143 144 145 146 147 148 149 150
	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;

	spin_lock(&inode->i_lock);
151
	entry = fsnotify_find_mark(group, inode);
152 153 154 155 156 157
	spin_unlock(&inode->i_lock);

	/* no mark means no dnotify watch */
	if (!entry)
		return false;

158
	mask = (mask & ~FS_EVENT_ON_CHILD);
159
	send = (mask & entry->mask);
160

161
	fsnotify_put_mark(entry); /* matches fsnotify_find_mark */
162 163 164 165

	return send;
}

166
static void dnotify_free_mark(struct fsnotify_mark *entry)
167 168 169 170 171 172 173 174 175 176 177 178 179 180
{
	struct dnotify_mark_entry *dnentry = container_of(entry,
							  struct dnotify_mark_entry,
							  fsn_entry);

	BUG_ON(dnentry->dn);

	kmem_cache_free(dnotify_mark_entry_cache, dnentry);
}

static struct fsnotify_ops dnotify_fsnotify_ops = {
	.handle_event = dnotify_handle_event,
	.should_send_event = dnotify_should_send_event,
	.free_group_priv = NULL,
181
	.freeing_mark = NULL,
182
	.free_event_priv = NULL,
183 184 185 186
};

/*
 * Called every time a file is closed.  Looks first for a dnotify mark on the
187
 * inode.  If one is found run all of the ->dn structures attached to that
188 189
 * 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
190
 * fsnotify_mark.
191
 */
L
Linus Torvalds 已提交
192 193
void dnotify_flush(struct file *filp, fl_owner_t id)
{
194
	struct fsnotify_mark *entry;
195
	struct dnotify_mark_entry *dnentry;
L
Linus Torvalds 已提交
196 197 198 199
	struct dnotify_struct *dn;
	struct dnotify_struct **prev;
	struct inode *inode;

200
	inode = filp->f_path.dentry->d_inode;
L
Linus Torvalds 已提交
201 202
	if (!S_ISDIR(inode->i_mode))
		return;
203

L
Linus Torvalds 已提交
204
	spin_lock(&inode->i_lock);
205
	entry = fsnotify_find_mark(dnotify_group, inode);
206 207 208 209 210 211 212 213 214
	spin_unlock(&inode->i_lock);
	if (!entry)
		return;
	dnentry = container_of(entry, struct dnotify_mark_entry, fsn_entry);

	mutex_lock(&dnotify_mark_mutex);

	spin_lock(&entry->lock);
	prev = &dnentry->dn;
L
Linus Torvalds 已提交
215 216 217
	while ((dn = *prev) != NULL) {
		if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
			*prev = dn->dn_next;
218 219
			kmem_cache_free(dnotify_struct_cache, dn);
			dnotify_recalc_inode_mask(entry);
L
Linus Torvalds 已提交
220 221 222 223
			break;
		}
		prev = &dn->dn_next;
	}
224 225 226 227 228

	spin_unlock(&entry->lock);

	/* nothing else could have found us thanks to the dnotify_mark_mutex */
	if (dnentry->dn == NULL)
229
		fsnotify_destroy_mark(entry);
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258

	fsnotify_recalc_group_mask(dnotify_group);

	mutex_unlock(&dnotify_mark_mutex);

	fsnotify_put_mark(entry);
}

/* 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 已提交
259 260
}

261 262
/*
 * If multiple processes watch the same inode with dnotify there is only one
263
 * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
 * onto that mark.  This function either attaches the new dnotify_struct onto
 * that list, or it |= the mask onto an existing dnofiy_struct.
 */
static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark_entry *dnentry,
		     fl_owner_t id, int fd, struct file *filp, __u32 mask)
{
	struct dnotify_struct *odn;

	odn = dnentry->dn;
	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;
	dn->dn_next = dnentry->dn;
	dnentry->dn = dn;

	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 已提交
298 299
int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
{
300
	struct dnotify_mark_entry *new_dnentry, *dnentry;
301
	struct fsnotify_mark *new_entry, *entry;
L
Linus Torvalds 已提交
302 303 304
	struct dnotify_struct *dn;
	struct inode *inode;
	fl_owner_t id = current->files;
A
Al Viro 已提交
305
	struct file *f;
306 307 308 309 310 311
	int destroy = 0, error = 0;
	__u32 mask;

	/* we use these to tell if we need to kfree */
	new_entry = NULL;
	dn = NULL;
L
Linus Torvalds 已提交
312

313 314 315 316 317 318
	if (!dir_notify_enable) {
		error = -EINVAL;
		goto out_err;
	}

	/* a 0 mask means we are explicitly removing the watch */
L
Linus Torvalds 已提交
319 320
	if ((arg & ~DN_MULTISHOT) == 0) {
		dnotify_flush(filp, id);
321 322
		error = 0;
		goto out_err;
L
Linus Torvalds 已提交
323
	}
324 325

	/* dnotify only works on directories */
326
	inode = filp->f_path.dentry->d_inode;
327 328 329
	if (!S_ISDIR(inode->i_mode)) {
		error = -ENOTDIR;
		goto out_err;
L
Linus Torvalds 已提交
330 331
	}

332 333 334 335 336 337
	/* 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 已提交
338

339 340 341 342 343 344
	/* new fsnotify mark, we expect most fcntl calls to add a new mark */
	new_dnentry = kmem_cache_alloc(dnotify_mark_entry_cache, GFP_KERNEL);
	if (!new_dnentry) {
		error = -ENOMEM;
		goto out_err;
	}
L
Linus Torvalds 已提交
345

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

349 350 351 352 353
	/* set up the new_entry and new_dnentry */
	new_entry = &new_dnentry->fsn_entry;
	fsnotify_init_mark(new_entry, dnotify_free_mark);
	new_entry->mask = mask;
	new_dnentry->dn = NULL;
L
Linus Torvalds 已提交
354

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

358
	/* add the new_entry or find an old one. */
L
Linus Torvalds 已提交
359
	spin_lock(&inode->i_lock);
360
	entry = fsnotify_find_mark(dnotify_group, inode);
L
Linus Torvalds 已提交
361
	spin_unlock(&inode->i_lock);
362 363 364 365
	if (entry) {
		dnentry = container_of(entry, struct dnotify_mark_entry, fsn_entry);
		spin_lock(&entry->lock);
	} else {
366
		fsnotify_add_mark(new_entry, dnotify_group, inode, 0);
367 368 369 370 371 372
		spin_lock(&new_entry->lock);
		entry = new_entry;
		dnentry = new_dnentry;
		/* we used new_entry, so don't free it */
		new_entry = NULL;
	}
L
Linus Torvalds 已提交
373

374 375 376
	rcu_read_lock();
	f = fcheck(fd);
	rcu_read_unlock();
L
Linus Torvalds 已提交
377

378 379 380
	/* 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
	 * the dnotify_mark_mutex and entry->lock.  Since closing the fd is the
381
	 * only time we clean up the marks we need to get our mark off
382 383 384 385 386 387 388 389 390 391 392 393
	 * the list. */
	if (f != filp) {
		/* if we added ourselves, shoot ourselves, it's possible that
		 * the flush actually did shoot this entry.  That's fine too
		 * since multiple calls to destroy_mark is perfectly safe, if
		 * we found a dnentry already attached to the inode, just sod
		 * off silently as the flush at close time dealt with it.
		 */
		if (dnentry == new_dnentry)
			destroy = 1;
		goto out;
	}
L
Linus Torvalds 已提交
394

395 396 397 398 399 400
	error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
	if (error) {
		/* if we added, we must shoot */
		if (dnentry == new_dnentry)
			destroy = 1;
		goto out;
L
Linus Torvalds 已提交
401
	}
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416

	error = attach_dn(dn, dnentry, id, fd, filp, mask);
	/* !error means that we attached the dn to the dnentry, so don't free it */
	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;

	dnotify_recalc_inode_mask(entry);
out:
	spin_unlock(&entry->lock);

	if (destroy)
417
		fsnotify_destroy_mark(entry);
418 419 420 421 422 423 424 425 426 427 428

	fsnotify_recalc_group_mask(dnotify_group);

	mutex_unlock(&dnotify_mark_mutex);
	fsnotify_put_mark(entry);
out_err:
	if (new_entry)
		fsnotify_put_mark(new_entry);
	if (dn)
		kmem_cache_free(dnotify_struct_cache, dn);
	return error;
L
Linus Torvalds 已提交
429 430 431 432
}

static int __init dnotify_init(void)
{
433 434 435
	dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
	dnotify_mark_entry_cache = KMEM_CACHE(dnotify_mark_entry, SLAB_PANIC);

436
	dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
437 438
	if (IS_ERR(dnotify_group))
		panic("unable to allocate fsnotify group for dnotify\n");
L
Linus Torvalds 已提交
439 440 441 442
	return 0;
}

module_init(dnotify_init)