callback.c 5.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Copyright (c) 2002, 2007 Red Hat, Inc. All rights reserved.
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10
 *
 * This software may be freely redistributed under the terms of the
 * GNU General Public License.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
11
 * Authors: David Woodhouse <dwmw2@infradead.org>
L
Linus Torvalds 已提交
12 13 14 15 16 17 18
 *          David Howells <dhowells@redhat.com>
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
19
#include <linux/circ_buf.h>
A
Alexey Dobriyan 已提交
20
#include <linux/sched.h>
L
Linus Torvalds 已提交
21
#include "internal.h"
22

L
Linus Torvalds 已提交
23
/*
24 25 26
 * Set up an interest-in-callbacks record for a volume on a server and
 * register it with the server.
 * - Called with volume->server_sem held.
L
Linus Torvalds 已提交
27
 */
28
int afs_register_server_cb_interest(struct afs_vnode *vnode,
29
				    struct afs_server_entry *entry)
L
Linus Torvalds 已提交
30
{
31 32
	struct afs_cb_interest *cbi = entry->cb_interest, *vcbi, *new, *x;
	struct afs_server *server = entry->server;
33 34 35 36 37 38 39 40 41 42 43 44 45 46

again:
	vcbi = vnode->cb_interest;
	if (vcbi) {
		if (vcbi == cbi)
			return 0;

		if (cbi && vcbi->server == cbi->server) {
			write_seqlock(&vnode->cb_lock);
			vnode->cb_interest = afs_get_cb_interest(cbi);
			write_sequnlock(&vnode->cb_lock);
			afs_put_cb_interest(afs_v2net(vnode), cbi);
			return 0;
		}
L
Linus Torvalds 已提交
47

48 49
		if (!cbi && vcbi->server == server) {
			afs_get_cb_interest(vcbi);
50
			x = cmpxchg(&entry->cb_interest, cbi, vcbi);
51 52 53 54 55 56 57 58
			if (x != cbi) {
				cbi = x;
				afs_put_cb_interest(afs_v2net(vnode), vcbi);
				goto again;
			}
			return 0;
		}
	}
L
Linus Torvalds 已提交
59

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
	if (!cbi) {
		new = kzalloc(sizeof(struct afs_cb_interest), GFP_KERNEL);
		if (!new)
			return -ENOMEM;

		refcount_set(&new->usage, 1);
		new->sb = vnode->vfs_inode.i_sb;
		new->vid = vnode->volume->vid;
		new->server = afs_get_server(server);
		INIT_LIST_HEAD(&new->cb_link);

		write_lock(&server->cb_break_lock);
		list_add_tail(&new->cb_link, &server->cb_interests);
		write_unlock(&server->cb_break_lock);

75
		x = cmpxchg(&entry->cb_interest, cbi, new);
76 77 78 79 80 81
		if (x == cbi) {
			cbi = new;
		} else {
			cbi = x;
			afs_put_cb_interest(afs_v2net(vnode), new);
		}
82
	}
L
Linus Torvalds 已提交
83

84 85 86 87 88 89 90 91 92 93 94 95 96
	ASSERT(cbi);

	/* Change the server the vnode is using.  This entails scrubbing any
	 * interest the vnode had in the previous server it was using.
	 */
	write_seqlock(&vnode->cb_lock);

	vnode->cb_interest = afs_get_cb_interest(cbi);
	vnode->cb_s_break = cbi->server->cb_s_break;
	clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);

	write_sequnlock(&vnode->cb_lock);
	return 0;
97
}
L
Linus Torvalds 已提交
98

99 100 101 102 103 104 105 106 107 108 109 110 111
/*
 * Remove an interest on a server.
 */
void afs_put_cb_interest(struct afs_net *net, struct afs_cb_interest *cbi)
{
	if (cbi && refcount_dec_and_test(&cbi->usage)) {
		if (!list_empty(&cbi->cb_link)) {
			write_lock(&cbi->server->cb_break_lock);
			list_del_init(&cbi->cb_link);
			write_unlock(&cbi->server->cb_break_lock);
			afs_put_server(net, cbi->server);
		}
		kfree(cbi);
112
	}
113 114 115 116 117 118 119
}

/*
 * allow the fileserver to request callback state (re-)initialisation
 */
void afs_init_callback_state(struct afs_server *server)
{
120
	if (!test_and_clear_bit(AFS_SERVER_FL_NEW, &server->flags))
121
		server->cb_s_break++;
122 123 124 125 126
}

/*
 * actually break a callback
 */
127
void afs_break_callback(struct afs_vnode *vnode)
128 129 130
{
	_enter("");

131 132
	write_seqlock(&vnode->cb_lock);

133
	clear_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
134 135 136
	if (test_and_clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
		vnode->cb_break++;
		afs_clear_permits(vnode);
137 138 139 140 141

		spin_lock(&vnode->lock);

		_debug("break callback");

D
David Howells 已提交
142 143 144
		if (list_empty(&vnode->granted_locks) &&
		    !list_empty(&vnode->pending_locks))
			afs_lock_may_be_available(vnode);
145 146
		spin_unlock(&vnode->lock);
	}
147 148

	write_sequnlock(&vnode->cb_lock);
149 150 151 152 153 154 155 156 157 158 159
}

/*
 * allow the fileserver to explicitly break one callback
 * - happens when
 *   - the backing file is changed
 *   - a lock is released
 */
static void afs_break_one_callback(struct afs_server *server,
				   struct afs_fid *fid)
{
160 161
	struct afs_cb_interest *cbi;
	struct afs_iget_data data;
162
	struct afs_vnode *vnode;
163
	struct inode *inode;
164

165
	read_lock(&server->cb_break_lock);
166

167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
	/* Step through all interested superblocks.  There may be more than one
	 * because of cell aliasing.
	 */
	list_for_each_entry(cbi, &server->cb_interests, cb_link) {
		if (cbi->vid != fid->vid)
			continue;

		data.volume = NULL;
		data.fid = *fid;
		inode = ilookup5_nowait(cbi->sb, fid->vnode, afs_iget5_test, &data);
		if (inode) {
			vnode = AFS_FS_I(inode);
			afs_break_callback(vnode);
			iput(inode);
		}
	}
183

184
	read_unlock(&server->cb_break_lock);
D
David Howells 已提交
185
}
L
Linus Torvalds 已提交
186 187 188 189

/*
 * allow the fileserver to break callback promises
 */
190
void afs_break_callbacks(struct afs_server *server, size_t count,
191
			 struct afs_callback_break *callbacks)
L
Linus Torvalds 已提交
192
{
193
	_enter("%p,%zu,", server, count);
L
Linus Torvalds 已提交
194

195 196
	ASSERT(server != NULL);
	ASSERTCMP(count, <=, AFSCBMAX);
L
Linus Torvalds 已提交
197

198
	for (; count > 0; callbacks++, count--) {
L
Linus Torvalds 已提交
199 200 201 202
		_debug("- Fid { vl=%08x n=%u u=%u }  CB { v=%u x=%u t=%u }",
		       callbacks->fid.vid,
		       callbacks->fid.vnode,
		       callbacks->fid.unique,
203 204 205
		       callbacks->cb.version,
		       callbacks->cb.expiry,
		       callbacks->cb.type
L
Linus Torvalds 已提交
206
		       );
207 208 209 210 211 212
		afs_break_one_callback(server, &callbacks->fid);
	}

	_leave("");
	return;
}
L
Linus Torvalds 已提交
213

214
/*
215
 * Clear the callback interests in a server list.
216
 */
217
void afs_clear_callback_interests(struct afs_net *net, struct afs_server_list *slist)
218
{
219
	int i;
220

221 222 223
	for (i = 0; i < slist->nr_servers; i++) {
		afs_put_cb_interest(net, slist->servers[i].cb_interest);
		slist->servers[i].cb_interest = NULL;
224 225
	}
}