/fs/afs/callback.c
C | 477 lines | 316 code | 76 blank | 85 comment | 51 complexity | 8f88ef157132c9f4511cbe1e86cd618f MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
- /*
- * Copyright (c) 2002, 2007 Red Hat, Inc. All rights reserved.
- *
- * 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.
- *
- * Authors: David Woodhouse <dwmw2@infradead.org>
- * David Howells <dhowells@redhat.com>
- *
- */
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/circ_buf.h>
- #include <linux/sched.h>
- #include "internal.h"
- #if 0
- unsigned afs_vnode_update_timeout = 10;
- #endif /* 0 */
- #define afs_breakring_space(server) \
- CIRC_SPACE((server)->cb_break_head, (server)->cb_break_tail, \
- ARRAY_SIZE((server)->cb_break))
- //static void afs_callback_updater(struct work_struct *);
- static struct workqueue_struct *afs_callback_update_worker;
- /*
- * allow the fileserver to request callback state (re-)initialisation
- */
- void afs_init_callback_state(struct afs_server *server)
- {
- struct afs_vnode *vnode;
- _enter("{%p}", server);
- spin_lock(&server->cb_lock);
- /* kill all the promises on record from this server */
- while (!RB_EMPTY_ROOT(&server->cb_promises)) {
- vnode = rb_entry(server->cb_promises.rb_node,
- struct afs_vnode, cb_promise);
- _debug("UNPROMISE { vid=%x:%u uq=%u}",
- vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique);
- rb_erase(&vnode->cb_promise, &server->cb_promises);
- vnode->cb_promised = false;
- }
- spin_unlock(&server->cb_lock);
- _leave("");
- }
- /*
- * handle the data invalidation side of a callback being broken
- */
- void afs_broken_callback_work(struct work_struct *work)
- {
- struct afs_vnode *vnode =
- container_of(work, struct afs_vnode, cb_broken_work);
- _enter("");
- if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
- return;
- /* we're only interested in dealing with a broken callback on *this*
- * vnode and only if no-one else has dealt with it yet */
- if (!mutex_trylock(&vnode->validate_lock))
- return; /* someone else is dealing with it */
- if (test_bit(AFS_VNODE_CB_BROKEN, &vnode->flags)) {
- if (S_ISDIR(vnode->vfs_inode.i_mode))
- afs_clear_permits(vnode);
- if (afs_vnode_fetch_status(vnode, NULL, NULL) < 0)
- goto out;
- if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
- goto out;
- /* if the vnode's data version number changed then its contents
- * are different */
- if (test_and_clear_bit(AFS_VNODE_ZAP_DATA, &vnode->flags))
- afs_zap_data(vnode);
- }
- out:
- mutex_unlock(&vnode->validate_lock);
- /* avoid the potential race whereby the mutex_trylock() in this
- * function happens again between the clear_bit() and the
- * mutex_unlock() */
- if (test_bit(AFS_VNODE_CB_BROKEN, &vnode->flags)) {
- _debug("requeue");
- queue_work(afs_callback_update_worker, &vnode->cb_broken_work);
- }
- _leave("");
- }
- /*
- * actually break a callback
- */
- static void afs_break_callback(struct afs_server *server,
- struct afs_vnode *vnode)
- {
- _enter("");
- set_bit(AFS_VNODE_CB_BROKEN, &vnode->flags);
- if (vnode->cb_promised) {
- spin_lock(&vnode->lock);
- _debug("break callback");
- spin_lock(&server->cb_lock);
- if (vnode->cb_promised) {
- rb_erase(&vnode->cb_promise, &server->cb_promises);
- vnode->cb_promised = false;
- }
- spin_unlock(&server->cb_lock);
- queue_work(afs_callback_update_worker, &vnode->cb_broken_work);
- if (list_empty(&vnode->granted_locks) &&
- !list_empty(&vnode->pending_locks))
- afs_lock_may_be_available(vnode);
- spin_unlock(&vnode->lock);
- }
- }
- /*
- * 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)
- {
- struct afs_vnode *vnode;
- struct rb_node *p;
- _debug("find");
- spin_lock(&server->fs_lock);
- p = server->fs_vnodes.rb_node;
- while (p) {
- vnode = rb_entry(p, struct afs_vnode, server_rb);
- if (fid->vid < vnode->fid.vid)
- p = p->rb_left;
- else if (fid->vid > vnode->fid.vid)
- p = p->rb_right;
- else if (fid->vnode < vnode->fid.vnode)
- p = p->rb_left;
- else if (fid->vnode > vnode->fid.vnode)
- p = p->rb_right;
- else if (fid->unique < vnode->fid.unique)
- p = p->rb_left;
- else if (fid->unique > vnode->fid.unique)
- p = p->rb_right;
- else
- goto found;
- }
- /* not found so we just ignore it (it may have moved to another
- * server) */
- not_available:
- _debug("not avail");
- spin_unlock(&server->fs_lock);
- _leave("");
- return;
- found:
- _debug("found");
- ASSERTCMP(server, ==, vnode->server);
- if (!igrab(AFS_VNODE_TO_I(vnode)))
- goto not_available;
- spin_unlock(&server->fs_lock);
- afs_break_callback(server, vnode);
- iput(&vnode->vfs_inode);
- _leave("");
- }
- /*
- * allow the fileserver to break callback promises
- */
- void afs_break_callbacks(struct afs_server *server, size_t count,
- struct afs_callback callbacks[])
- {
- _enter("%p,%zu,", server, count);
- ASSERT(server != NULL);
- ASSERTCMP(count, <=, AFSCBMAX);
- for (; count > 0; callbacks++, count--) {
- _debug("- Fid { vl=%08x n=%u u=%u } CB { v=%u x=%u t=%u }",
- callbacks->fid.vid,
- callbacks->fid.vnode,
- callbacks->fid.unique,
- callbacks->version,
- callbacks->expiry,
- callbacks->type
- );
- afs_break_one_callback(server, &callbacks->fid);
- }
- _leave("");
- return;
- }
- /*
- * record the callback for breaking
- * - the caller must hold server->cb_lock
- */
- static void afs_do_give_up_callback(struct afs_server *server,
- struct afs_vnode *vnode)
- {
- struct afs_callback *cb;
- _enter("%p,%p", server, vnode);
- cb = &server->cb_break[server->cb_break_head];
- cb->fid = vnode->fid;
- cb->version = vnode->cb_version;
- cb->expiry = vnode->cb_expiry;
- cb->type = vnode->cb_type;
- smp_wmb();
- server->cb_break_head =
- (server->cb_break_head + 1) &
- (ARRAY_SIZE(server->cb_break) - 1);
- /* defer the breaking of callbacks to try and collect as many as
- * possible to ship in one operation */
- switch (atomic_inc_return(&server->cb_break_n)) {
- case 1 ... AFSCBMAX - 1:
- queue_delayed_work(afs_callback_update_worker,
- &server->cb_break_work, HZ * 2);
- break;
- case AFSCBMAX:
- afs_flush_callback_breaks(server);
-