inotify_fsnotify.c 6.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * fs/inotify_user.c - inotify support for userspace
 *
 * Authors:
 *	John McCutchan	<ttb@tentacle.dhs.org>
 *	Robert Love	<rml@novell.com>
 *
 * Copyright (C) 2005 John McCutchan
 * Copyright 2006 Hewlett-Packard Development Company, L.P.
 *
 * Copyright (C) 2009 Eric Paris <Red Hat Inc>
 * inotify was largely rewriten to make use of the fsnotify infrastructure
 *
 * 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.
 */

25
#include <linux/dcache.h> /* d_unlinked */
26 27 28 29 30 31
#include <linux/fs.h> /* struct inode */
#include <linux/fsnotify_backend.h>
#include <linux/inotify.h>
#include <linux/path.h> /* struct path */
#include <linux/slab.h> /* kmem_* */
#include <linux/types.h>
32
#include <linux/sched.h>
33 34 35

#include "inotify.h"

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
/*
 * Check if 2 events contain the same information.  We do not compare private data
 * but at this moment that isn't a problem for any know fsnotify listeners.
 */
static bool event_compare(struct fsnotify_event *old, struct fsnotify_event *new)
{
	if ((old->mask == new->mask) &&
	    (old->to_tell == new->to_tell) &&
	    (old->data_type == new->data_type) &&
	    (old->name_len == new->name_len)) {
		switch (old->data_type) {
		case (FSNOTIFY_EVENT_INODE):
			/* remember, after old was put on the wait_q we aren't
			 * allowed to look at the inode any more, only thing
			 * left to check was if the file_name is the same */
			if (!old->name_len ||
			    !strcmp(old->file_name, new->file_name))
				return true;
			break;
55 56 57
		case (FSNOTIFY_EVENT_FILE):
			if ((old->file->f_path.mnt == new->file->f_path.mnt) &&
			    (old->file->f_path.dentry == new->file->f_path.dentry))
58 59 60 61 62 63 64 65 66 67 68 69 70
				return true;
			break;
		case (FSNOTIFY_EVENT_NONE):
			if (old->mask & FS_Q_OVERFLOW)
				return true;
			else if (old->mask & FS_IN_IGNORED)
				return false;
			return true;
		};
	}
	return false;
}

71 72
static struct fsnotify_event *inotify_merge(struct list_head *list,
					    struct fsnotify_event *event)
73 74 75 76 77 78 79 80 81 82
{
	struct fsnotify_event_holder *last_holder;
	struct fsnotify_event *last_event;

	/* and the list better be locked by something too */
	spin_lock(&event->lock);

	last_holder = list_entry(list->prev, struct fsnotify_event_holder, event_list);
	last_event = last_holder->event;
	if (event_compare(last_event, event))
83 84 85
		fsnotify_get_event(last_event);
	else
		last_event = NULL;
86 87 88

	spin_unlock(&event->lock);

89
	return last_event;
90 91
}

92 93 94
static int inotify_handle_event(struct fsnotify_group *group,
				struct fsnotify_mark *mark,
				struct fsnotify_event *event)
95
{
96
	struct inotify_inode_mark *i_mark;
97 98 99
	struct inode *to_tell;
	struct inotify_event_private_data *event_priv;
	struct fsnotify_event_private_data *fsn_event_priv;
100 101
	struct fsnotify_event *added_event;
	int wd, ret = 0;
102

E
Eric Paris 已提交
103 104 105
	pr_debug("%s: group=%p event=%p to_tell=%p mask=%x\n", __func__, group,
		 event, event->to_tell, event->mask);

106 107
	to_tell = event->to_tell;

108
	i_mark = container_of(mark, struct inotify_inode_mark,
109 110
			      fsn_mark);
	wd = i_mark->wd;
111 112 113 114 115 116 117 118 119 120

	event_priv = kmem_cache_alloc(event_priv_cachep, GFP_KERNEL);
	if (unlikely(!event_priv))
		return -ENOMEM;

	fsn_event_priv = &event_priv->fsnotify_event_priv_data;

	fsn_event_priv->group = group;
	event_priv->wd = wd;

121 122
	added_event = fsnotify_add_notify_event(group, event, fsn_event_priv, inotify_merge);
	if (added_event) {
123
		inotify_free_event_priv(fsn_event_priv);
124 125 126 127
		if (!IS_ERR(added_event))
			fsnotify_put_event(added_event);
		else
			ret = PTR_ERR(added_event);
E
Eric Paris 已提交
128
	}
129

130 131
	if (mark->mask & IN_ONESHOT)
		fsnotify_destroy_mark(mark);
132 133 134 135

	return ret;
}

136
static void inotify_freeing_mark(struct fsnotify_mark *fsn_mark, struct fsnotify_group *group)
137
{
138
	inotify_ignored_and_remove_idr(fsn_mark, group);
139 140
}

141
static bool inotify_should_send_event(struct fsnotify_group *group, struct inode *inode,
142 143
				      struct vfsmount *mnt, struct fsnotify_mark *mark,
				      __u32 mask, void *data, int data_type)
144 145 146
{
	bool send;

E
Eric Paris 已提交
147 148 149
	pr_debug("%s: group=%p inode=%p mask=%x data=%p data_type=%d\n",
		 __func__, group, inode, mask, data, data_type);

150
	mask = (mask & ~FS_EVENT_ON_CHILD);
151
	send = (mark->mask & mask);
152

153
	if (send && (mark->mask & FS_EXCL_UNLINK) &&
154 155
	    (data_type == FSNOTIFY_EVENT_FILE)) {
		struct file *file  = data;
156

157
		if (d_unlinked(file->f_path.dentry))
158 159 160
			send = false;
	}

161 162 163
	return send;
}

164 165 166 167 168 169 170
/*
 * This is NEVER supposed to be called.  Inotify marks should either have been
 * removed from the idr when the watch was removed or in the
 * fsnotify_destroy_mark_by_group() call when the inotify instance was being
 * torn down.  This is only called if the idr is about to be freed but there
 * are still marks in it.
 */
171 172
static int idr_callback(int id, void *p, void *data)
{
173 174
	struct fsnotify_mark *fsn_mark;
	struct inotify_inode_mark *i_mark;
175 176 177 178 179
	static bool warned = false;

	if (warned)
		return 0;

180
	warned = true;
181 182
	fsn_mark = p;
	i_mark = container_of(fsn_mark, struct inotify_inode_mark, fsn_mark);
183

184
	WARN(1, "inotify closing but id=%d for fsn_mark=%p in group=%p still in "
185 186 187 188 189 190 191 192
		"idr.  Probably leaking memory\n", id, p, data);

	/*
	 * I'm taking the liberty of assuming that the mark in question is a
	 * valid address and I'm dereferencing it.  This might help to figure
	 * out why we got here and the panic is no worse than the original
	 * BUG() that was here.
	 */
193 194 195
	if (fsn_mark)
		printk(KERN_WARNING "fsn_mark->group=%p inode=%p wd=%d\n",
			fsn_mark->group, fsn_mark->i.inode, i_mark->wd);
196 197 198 199 200 201
	return 0;
}

static void inotify_free_group_priv(struct fsnotify_group *group)
{
	/* ideally the idr is empty and we won't hit the BUG in teh callback */
202
	idr_for_each(&group->inotify_data.idr, idr_callback, group);
203 204
	idr_remove_all(&group->inotify_data.idr);
	idr_destroy(&group->inotify_data.idr);
205
	free_uid(group->inotify_data.user);
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
}

void inotify_free_event_priv(struct fsnotify_event_private_data *fsn_event_priv)
{
	struct inotify_event_private_data *event_priv;


	event_priv = container_of(fsn_event_priv, struct inotify_event_private_data,
				  fsnotify_event_priv_data);

	kmem_cache_free(event_priv_cachep, event_priv);
}

const struct fsnotify_ops inotify_fsnotify_ops = {
	.handle_event = inotify_handle_event,
	.should_send_event = inotify_should_send_event,
	.free_group_priv = inotify_free_group_priv,
	.free_event_priv = inotify_free_event_priv,
	.freeing_mark = inotify_freeing_mark,
};