2 * Copyright (c) 2002, 2007 Red Hat, Inc. All rights reserved.
4 * This software may be freely redistributed under the terms of the
5 * GNU General Public License.
7 * You should have received a copy of the GNU General Public License
8 * along with this program; if not, write to the Free Software
9 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/circ_buf.h>
20 #include <linux/sched.h>
24 * Create volume and callback interests on a server.
26 static struct afs_cb_interest *afs_create_interest(struct afs_server *server,
27 struct afs_vnode *vnode)
29 struct afs_vol_interest *new_vi, *vi;
30 struct afs_cb_interest *new;
31 struct hlist_node **pp;
33 new_vi = kzalloc(sizeof(struct afs_vol_interest), GFP_KERNEL);
37 new = kzalloc(sizeof(struct afs_cb_interest), GFP_KERNEL);
44 new_vi->vid = vnode->volume->vid;
45 INIT_HLIST_NODE(&new_vi->srv_link);
46 INIT_HLIST_HEAD(&new_vi->cb_interests);
48 refcount_set(&new->usage, 1);
49 new->sb = vnode->vfs_inode.i_sb;
50 new->vid = vnode->volume->vid;
51 new->server = afs_get_server(server);
52 INIT_HLIST_NODE(&new->cb_vlink);
54 write_lock(&server->cb_break_lock);
56 for (pp = &server->cb_volumes.first; *pp; pp = &(*pp)->next) {
57 vi = hlist_entry(*pp, struct afs_vol_interest, srv_link);
58 if (vi->vid < new_vi->vid)
60 if (vi->vid > new_vi->vid)
66 new_vi->srv_link.pprev = pp;
67 new_vi->srv_link.next = *pp;
69 (*pp)->pprev = &new_vi->srv_link.next;
70 *pp = &new_vi->srv_link;
75 new->vol_interest = vi;
76 hlist_add_head(&new->cb_vlink, &vi->cb_interests);
78 write_unlock(&server->cb_break_lock);
84 * Set up an interest-in-callbacks record for a volume on a server and
85 * register it with the server.
86 * - Called with vnode->io_lock held.
88 int afs_register_server_cb_interest(struct afs_vnode *vnode,
89 struct afs_server_list *slist,
92 struct afs_server_entry *entry = &slist->servers[index];
93 struct afs_cb_interest *cbi, *vcbi, *new, *old;
94 struct afs_server *server = entry->server;
97 if (vnode->cb_interest &&
98 likely(vnode->cb_interest == entry->cb_interest))
101 read_lock(&slist->lock);
102 cbi = afs_get_cb_interest(entry->cb_interest);
103 read_unlock(&slist->lock);
105 vcbi = vnode->cb_interest;
108 afs_put_cb_interest(afs_v2net(vnode), cbi);
112 /* Use a new interest in the server list for the same server
113 * rather than an old one that's still attached to a vnode.
115 if (cbi && vcbi->server == cbi->server) {
116 write_seqlock(&vnode->cb_lock);
117 old = vnode->cb_interest;
118 vnode->cb_interest = cbi;
119 write_sequnlock(&vnode->cb_lock);
120 afs_put_cb_interest(afs_v2net(vnode), old);
124 /* Re-use the one attached to the vnode. */
125 if (!cbi && vcbi->server == server) {
126 write_lock(&slist->lock);
127 if (entry->cb_interest) {
128 write_unlock(&slist->lock);
129 afs_put_cb_interest(afs_v2net(vnode), cbi);
133 entry->cb_interest = cbi;
134 write_unlock(&slist->lock);
140 new = afs_create_interest(server, vnode);
144 write_lock(&slist->lock);
145 if (!entry->cb_interest) {
146 entry->cb_interest = afs_get_cb_interest(new);
150 cbi = afs_get_cb_interest(entry->cb_interest);
152 write_unlock(&slist->lock);
153 afs_put_cb_interest(afs_v2net(vnode), new);
158 /* Change the server the vnode is using. This entails scrubbing any
159 * interest the vnode had in the previous server it was using.
161 write_seqlock(&vnode->cb_lock);
163 old = vnode->cb_interest;
164 vnode->cb_interest = cbi;
165 vnode->cb_s_break = cbi->server->cb_s_break;
166 vnode->cb_v_break = vnode->volume->cb_v_break;
167 clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
169 write_sequnlock(&vnode->cb_lock);
170 afs_put_cb_interest(afs_v2net(vnode), old);
175 * Remove an interest on a server.
177 void afs_put_cb_interest(struct afs_net *net, struct afs_cb_interest *cbi)
179 struct afs_vol_interest *vi;
181 if (cbi && refcount_dec_and_test(&cbi->usage)) {
182 if (!hlist_unhashed(&cbi->cb_vlink)) {
183 write_lock(&cbi->server->cb_break_lock);
185 hlist_del_init(&cbi->cb_vlink);
186 vi = cbi->vol_interest;
187 cbi->vol_interest = NULL;
188 if (--vi->usage == 0)
189 hlist_del(&vi->srv_link);
193 write_unlock(&cbi->server->cb_break_lock);
195 afs_put_server(net, cbi->server);
202 * allow the fileserver to request callback state (re-)initialisation
204 void afs_init_callback_state(struct afs_server *server)
206 if (!test_and_clear_bit(AFS_SERVER_FL_NEW, &server->flags))
207 server->cb_s_break++;
211 * actually break a callback
213 void afs_break_callback(struct afs_vnode *vnode)
217 write_seqlock(&vnode->cb_lock);
219 clear_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
220 if (test_and_clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
222 afs_clear_permits(vnode);
224 spin_lock(&vnode->lock);
226 _debug("break callback");
228 if (list_empty(&vnode->granted_locks) &&
229 !list_empty(&vnode->pending_locks))
230 afs_lock_may_be_available(vnode);
231 spin_unlock(&vnode->lock);
234 write_sequnlock(&vnode->cb_lock);
238 * allow the fileserver to explicitly break one callback
240 * - the backing file is changed
241 * - a lock is released
243 static void afs_break_one_callback(struct afs_server *server,
246 struct afs_vol_interest *vi;
247 struct afs_cb_interest *cbi;
248 struct afs_iget_data data;
249 struct afs_vnode *vnode;
252 read_lock(&server->cb_break_lock);
253 hlist_for_each_entry(vi, &server->cb_volumes, srv_link) {
254 if (vi->vid < fid->vid)
256 if (vi->vid > fid->vid) {
260 //atomic_inc(&vi->usage);
264 /* TODO: Find all matching volumes if we couldn't match the server and
270 /* Step through all interested superblocks. There may be more than one
271 * because of cell aliasing.
273 hlist_for_each_entry(cbi, &vi->cb_interests, cb_vlink) {
274 if (fid->vnode == 0 && fid->unique == 0) {
275 /* The callback break applies to an entire volume. */
276 struct afs_super_info *as = AFS_FS_S(cbi->sb);
277 struct afs_volume *volume = as->volume;
279 write_lock(&volume->cb_break_lock);
280 volume->cb_v_break++;
281 write_unlock(&volume->cb_break_lock);
285 inode = ilookup5_nowait(cbi->sb, fid->vnode,
286 afs_iget5_test, &data);
288 vnode = AFS_FS_I(inode);
289 afs_break_callback(vnode);
296 read_unlock(&server->cb_break_lock);
300 * allow the fileserver to break callback promises
302 void afs_break_callbacks(struct afs_server *server, size_t count,
303 struct afs_callback_break *callbacks)
305 _enter("%p,%zu,", server, count);
307 ASSERT(server != NULL);
308 ASSERTCMP(count, <=, AFSCBMAX);
310 /* TODO: Sort the callback break list by volume ID */
312 for (; count > 0; callbacks++, count--) {
313 _debug("- Fid { vl=%08x n=%u u=%u } CB { v=%u x=%u t=%u }",
315 callbacks->fid.vnode,
316 callbacks->fid.unique,
317 callbacks->cb.version,
318 callbacks->cb.expiry,
321 afs_break_one_callback(server, &callbacks->fid);
329 * Clear the callback interests in a server list.
331 void afs_clear_callback_interests(struct afs_net *net, struct afs_server_list *slist)
335 for (i = 0; i < slist->nr_servers; i++) {
336 afs_put_cb_interest(net, slist->servers[i].cb_interest);
337 slist->servers[i].cb_interest = NULL;