2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/fs/lockd/svcsubs.c
|
|
|
|
*
|
|
|
|
* Various support routines for the NLM server.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/in.h>
|
2006-03-26 09:37:12 +00:00
|
|
|
#include <linux/mutex.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/sunrpc/svc.h>
|
|
|
|
#include <linux/sunrpc/clnt.h>
|
|
|
|
#include <linux/nfsd/nfsfh.h>
|
|
|
|
#include <linux/nfsd/export.h>
|
|
|
|
#include <linux/lockd/lockd.h>
|
|
|
|
#include <linux/lockd/share.h>
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/mount.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define NLMDBG_FACILITY NLMDBG_SVCSUBS
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Global file hash table
|
|
|
|
*/
|
2006-10-04 09:15:58 +00:00
|
|
|
#define FILE_HASH_BITS 7
|
2005-04-16 22:20:36 +00:00
|
|
|
#define FILE_NRHASH (1<<FILE_HASH_BITS)
|
2006-10-04 09:15:58 +00:00
|
|
|
static struct hlist_head nlm_files[FILE_NRHASH];
|
2006-03-26 09:37:12 +00:00
|
|
|
static DEFINE_MUTEX(nlm_file_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-11-01 21:53:32 +00:00
|
|
|
#ifdef NFSD_DEBUG
|
|
|
|
static inline void nlm_debug_print_fh(char *msg, struct nfs_fh *f)
|
|
|
|
{
|
|
|
|
u32 *fhp = (u32*)f->data;
|
|
|
|
|
|
|
|
/* print the first 32 bytes of the fh */
|
|
|
|
dprintk("lockd: %s (%08x %08x %08x %08x %08x %08x %08x %08x)\n",
|
|
|
|
msg, fhp[0], fhp[1], fhp[2], fhp[3],
|
|
|
|
fhp[4], fhp[5], fhp[6], fhp[7]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void nlm_debug_print_file(char *msg, struct nlm_file *file)
|
|
|
|
{
|
2006-12-08 10:37:18 +00:00
|
|
|
struct inode *inode = file->f_file->f_path.dentry->d_inode;
|
2005-11-01 21:53:32 +00:00
|
|
|
|
|
|
|
dprintk("lockd: %s %s/%ld\n",
|
|
|
|
msg, inode->i_sb->s_id, inode->i_ino);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline void nlm_debug_print_fh(char *msg, struct nfs_fh *f)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void nlm_debug_print_file(char *msg, struct nlm_file *file)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static inline unsigned int file_hash(struct nfs_fh *f)
|
|
|
|
{
|
|
|
|
unsigned int tmp=0;
|
|
|
|
int i;
|
|
|
|
for (i=0; i<NFS2_FHSIZE;i++)
|
|
|
|
tmp += f->data[i];
|
|
|
|
return tmp & (FILE_NRHASH - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lookup file info. If it doesn't exist, create a file info struct
|
|
|
|
* and open a (VFS) file for the given inode.
|
|
|
|
*
|
|
|
|
* FIXME:
|
|
|
|
* Note that we open the file O_RDONLY even when creating write locks.
|
|
|
|
* This is not quite right, but for now, we assume the client performs
|
|
|
|
* the proper R/W checking.
|
|
|
|
*/
|
2006-10-20 06:28:46 +00:00
|
|
|
__be32
|
2005-04-16 22:20:36 +00:00
|
|
|
nlm_lookup_file(struct svc_rqst *rqstp, struct nlm_file **result,
|
|
|
|
struct nfs_fh *f)
|
|
|
|
{
|
2006-10-04 09:15:58 +00:00
|
|
|
struct hlist_node *pos;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct nlm_file *file;
|
|
|
|
unsigned int hash;
|
2006-10-20 06:28:46 +00:00
|
|
|
__be32 nfserr;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-08-31 21:09:33 +00:00
|
|
|
nlm_debug_print_fh("nlm_lookup_file", f);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
hash = file_hash(f);
|
|
|
|
|
|
|
|
/* Lock file table */
|
2006-03-26 09:37:12 +00:00
|
|
|
mutex_lock(&nlm_file_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-10-04 09:15:58 +00:00
|
|
|
hlist_for_each_entry(file, pos, &nlm_files[hash], f_list)
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!nfs_compare_fh(&file->f_handle, f))
|
|
|
|
goto found;
|
|
|
|
|
2005-11-01 21:53:32 +00:00
|
|
|
nlm_debug_print_fh("creating file for", f);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
nfserr = nlm_lck_denied_nolocks;
|
2006-09-27 08:49:37 +00:00
|
|
|
file = kzalloc(sizeof(*file), GFP_KERNEL);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!file)
|
|
|
|
goto out_unlock;
|
|
|
|
|
|
|
|
memcpy(&file->f_handle, f, sizeof(struct nfs_fh));
|
2006-10-04 09:16:06 +00:00
|
|
|
mutex_init(&file->f_mutex);
|
2006-10-04 09:15:58 +00:00
|
|
|
INIT_HLIST_NODE(&file->f_list);
|
2006-10-04 09:15:57 +00:00
|
|
|
INIT_LIST_HEAD(&file->f_blocks);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Open the file. Note that this must not sleep for too long, else
|
|
|
|
* we would lock up lockd:-) So no NFS re-exports, folks.
|
|
|
|
*
|
|
|
|
* We have to make sure we have the right credential to open
|
|
|
|
* the file.
|
|
|
|
*/
|
|
|
|
if ((nfserr = nlmsvc_ops->fopen(rqstp, f, &file->f_file)) != 0) {
|
2006-10-04 09:15:54 +00:00
|
|
|
dprintk("lockd: open failed (error %d)\n", nfserr);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto out_free;
|
|
|
|
}
|
|
|
|
|
2006-10-04 09:15:58 +00:00
|
|
|
hlist_add_head(&file->f_list, &nlm_files[hash]);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
found:
|
|
|
|
dprintk("lockd: found file %p (count %d)\n", file, file->f_count);
|
|
|
|
*result = file;
|
|
|
|
file->f_count++;
|
|
|
|
nfserr = 0;
|
|
|
|
|
|
|
|
out_unlock:
|
2006-03-26 09:37:12 +00:00
|
|
|
mutex_unlock(&nlm_file_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
return nfserr;
|
|
|
|
|
|
|
|
out_free:
|
|
|
|
kfree(file);
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Delete a file after having released all locks, blocks and shares
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
nlm_delete_file(struct nlm_file *file)
|
|
|
|
{
|
2005-11-01 21:53:32 +00:00
|
|
|
nlm_debug_print_file("closing file", file);
|
2006-10-04 09:15:58 +00:00
|
|
|
if (!hlist_unhashed(&file->f_list)) {
|
|
|
|
hlist_del(&file->f_list);
|
|
|
|
nlmsvc_ops->fclose(file->f_file);
|
|
|
|
kfree(file);
|
|
|
|
} else {
|
|
|
|
printk(KERN_WARNING "lockd: attempt to release unknown file!\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Loop over all locks on the given file and perform the specified
|
|
|
|
* action.
|
|
|
|
*/
|
|
|
|
static int
|
2006-10-04 09:15:59 +00:00
|
|
|
nlm_traverse_locks(struct nlm_host *host, struct nlm_file *file,
|
|
|
|
nlm_host_match_fn_t match)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct inode *inode = nlmsvc_file_inode(file);
|
|
|
|
struct file_lock *fl;
|
|
|
|
struct nlm_host *lockhost;
|
|
|
|
|
|
|
|
again:
|
|
|
|
file->f_locks = 0;
|
|
|
|
for (fl = inode->i_flock; fl; fl = fl->fl_next) {
|
2006-03-20 18:44:26 +00:00
|
|
|
if (fl->fl_lmops != &nlmsvc_lock_operations)
|
2005-04-16 22:20:36 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* update current lock count */
|
|
|
|
file->f_locks++;
|
2006-10-04 09:15:59 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
lockhost = (struct nlm_host *) fl->fl_owner;
|
2006-10-04 09:15:59 +00:00
|
|
|
if (match(lockhost, host)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
struct file_lock lock = *fl;
|
|
|
|
|
|
|
|
lock.fl_type = F_UNLCK;
|
|
|
|
lock.fl_start = 0;
|
|
|
|
lock.fl_end = OFFSET_MAX;
|
2006-11-28 21:27:06 +00:00
|
|
|
if (vfs_lock_file(file->f_file, F_SETLK, &lock, NULL) < 0) {
|
2005-04-16 22:20:36 +00:00
|
|
|
printk("lockd: unlock failure in %s:%d\n",
|
|
|
|
__FILE__, __LINE__);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-17 16:10:12 +00:00
|
|
|
static int
|
|
|
|
nlmsvc_always_match(void *dummy1, struct nlm_host *dummy2)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2006-10-04 09:15:59 +00:00
|
|
|
* Inspect a single file
|
|
|
|
*/
|
|
|
|
static inline int
|
|
|
|
nlm_inspect_file(struct nlm_host *host, struct nlm_file *file, nlm_host_match_fn_t match)
|
|
|
|
{
|
|
|
|
nlmsvc_traverse_blocks(host, file, match);
|
|
|
|
nlmsvc_traverse_shares(host, file, match);
|
|
|
|
return nlm_traverse_locks(host, file, match);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Quick check whether there are still any locks, blocks or
|
|
|
|
* shares on a given file.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
static inline int
|
2006-10-04 09:15:59 +00:00
|
|
|
nlm_file_inuse(struct nlm_file *file)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-10-04 09:15:59 +00:00
|
|
|
struct inode *inode = nlmsvc_file_inode(file);
|
|
|
|
struct file_lock *fl;
|
|
|
|
|
|
|
|
if (file->f_count || !list_empty(&file->f_blocks) || file->f_shares)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
for (fl = inode->i_flock; fl; fl = fl->fl_next) {
|
|
|
|
if (fl->fl_lmops == &nlmsvc_lock_operations)
|
2005-04-16 22:20:36 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2006-10-04 09:15:59 +00:00
|
|
|
file->f_locks = 0;
|
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Loop over all files in the file table.
|
|
|
|
*/
|
|
|
|
static int
|
2008-01-17 16:10:12 +00:00
|
|
|
nlm_traverse_files(void *data, nlm_host_match_fn_t match,
|
|
|
|
int (*is_failover_file)(void *data, struct nlm_file *file))
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-10-04 09:15:58 +00:00
|
|
|
struct hlist_node *pos, *next;
|
|
|
|
struct nlm_file *file;
|
2006-08-10 15:58:57 +00:00
|
|
|
int i, ret = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-26 09:37:12 +00:00
|
|
|
mutex_lock(&nlm_file_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
for (i = 0; i < FILE_NRHASH; i++) {
|
2006-10-04 09:15:58 +00:00
|
|
|
hlist_for_each_entry_safe(file, pos, next, &nlm_files[i], f_list) {
|
2008-01-17 16:10:12 +00:00
|
|
|
if (is_failover_file && !is_failover_file(data, file))
|
|
|
|
continue;
|
2006-08-10 15:58:57 +00:00
|
|
|
file->f_count++;
|
|
|
|
mutex_unlock(&nlm_file_mutex);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Traverse locks, blocks and shares of this file
|
|
|
|
* and update file->f_locks count */
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
if (nlm_inspect_file(data, file, match))
|
2006-08-10 15:58:57 +00:00
|
|
|
ret = 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-08-10 15:58:57 +00:00
|
|
|
mutex_lock(&nlm_file_mutex);
|
|
|
|
file->f_count--;
|
2005-04-16 22:20:36 +00:00
|
|
|
/* No more references to this file. Let go of it. */
|
2006-10-04 09:15:57 +00:00
|
|
|
if (list_empty(&file->f_blocks) && !file->f_locks
|
2005-04-16 22:20:36 +00:00
|
|
|
&& !file->f_shares && !file->f_count) {
|
2006-10-04 09:15:58 +00:00
|
|
|
hlist_del(&file->f_list);
|
2005-04-16 22:20:36 +00:00
|
|
|
nlmsvc_ops->fclose(file->f_file);
|
|
|
|
kfree(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-03-26 09:37:12 +00:00
|
|
|
mutex_unlock(&nlm_file_mutex);
|
2006-08-10 15:58:57 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Release file. If there are no more remote locks on this file,
|
|
|
|
* close it and free the handle.
|
|
|
|
*
|
|
|
|
* Note that we can't do proper reference counting without major
|
|
|
|
* contortions because the code in fs/locks.c creates, deletes and
|
|
|
|
* splits locks without notification. Our only way is to walk the
|
|
|
|
* entire lock list each time we remove a lock.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
nlm_release_file(struct nlm_file *file)
|
|
|
|
{
|
|
|
|
dprintk("lockd: nlm_release_file(%p, ct = %d)\n",
|
|
|
|
file, file->f_count);
|
|
|
|
|
|
|
|
/* Lock file table */
|
2006-03-26 09:37:12 +00:00
|
|
|
mutex_lock(&nlm_file_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* If there are no more locks etc, delete the file */
|
2006-10-04 09:15:59 +00:00
|
|
|
if (--file->f_count == 0 && !nlm_file_inuse(file))
|
|
|
|
nlm_delete_file(file);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-26 09:37:12 +00:00
|
|
|
mutex_unlock(&nlm_file_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-10-04 09:15:59 +00:00
|
|
|
/*
|
|
|
|
* Helpers function for resource traversal
|
|
|
|
*
|
|
|
|
* nlmsvc_mark_host:
|
|
|
|
* used by the garbage collector; simply sets h_inuse.
|
|
|
|
* Always returns 0.
|
|
|
|
*
|
|
|
|
* nlmsvc_same_host:
|
|
|
|
* returns 1 iff the two hosts match. Used to release
|
|
|
|
* all resources bound to a specific host.
|
|
|
|
*
|
|
|
|
* nlmsvc_is_client:
|
|
|
|
* returns 1 iff the host is a client.
|
|
|
|
* Used by nlmsvc_invalidate_all
|
|
|
|
*/
|
|
|
|
static int
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
nlmsvc_mark_host(void *data, struct nlm_host *dummy)
|
2006-10-04 09:15:59 +00:00
|
|
|
{
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
struct nlm_host *host = data;
|
|
|
|
|
2006-10-04 09:15:59 +00:00
|
|
|
host->h_inuse = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
nlmsvc_same_host(void *data, struct nlm_host *other)
|
2006-10-04 09:15:59 +00:00
|
|
|
{
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
struct nlm_host *host = data;
|
|
|
|
|
2006-10-04 09:15:59 +00:00
|
|
|
return host == other;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
nlmsvc_is_client(void *data, struct nlm_host *dummy)
|
2006-10-04 09:15:59 +00:00
|
|
|
{
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
struct nlm_host *host = data;
|
|
|
|
|
2006-10-17 07:10:17 +00:00
|
|
|
if (host->h_server) {
|
|
|
|
/* we are destroying locks even though the client
|
|
|
|
* hasn't asked us too, so don't unmonitor the
|
|
|
|
* client
|
|
|
|
*/
|
|
|
|
if (host->h_nsmhandle)
|
|
|
|
host->h_nsmhandle->sm_sticky = 1;
|
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 0;
|
2006-10-04 09:15:59 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Mark all hosts that still hold resources
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
nlmsvc_mark_resources(void)
|
|
|
|
{
|
|
|
|
dprintk("lockd: nlmsvc_mark_resources\n");
|
2008-01-17 16:10:12 +00:00
|
|
|
nlm_traverse_files(NULL, nlmsvc_mark_host, NULL);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Release all resources held by the given client
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
nlmsvc_free_host_resources(struct nlm_host *host)
|
|
|
|
{
|
|
|
|
dprintk("lockd: nlmsvc_free_host_resources\n");
|
|
|
|
|
2008-01-17 16:10:12 +00:00
|
|
|
if (nlm_traverse_files(host, nlmsvc_same_host, NULL)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
printk(KERN_WARNING
|
2006-10-04 09:15:54 +00:00
|
|
|
"lockd: couldn't remove all locks held by %s\n",
|
2005-04-16 22:20:36 +00:00
|
|
|
host->h_name);
|
2006-10-04 09:15:54 +00:00
|
|
|
BUG();
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-06-30 22:58:14 +00:00
|
|
|
/**
|
|
|
|
* nlmsvc_invalidate_all - remove all locks held for clients
|
|
|
|
*
|
|
|
|
* Release all locks held by NFS clients.
|
|
|
|
*
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
nlmsvc_invalidate_all(void)
|
|
|
|
{
|
2008-06-30 22:58:14 +00:00
|
|
|
/*
|
2006-10-04 09:15:59 +00:00
|
|
|
* Previously, the code would call
|
|
|
|
* nlmsvc_free_host_resources for each client in
|
|
|
|
* turn, which is about as inefficient as it gets.
|
|
|
|
* Now we just do it once in nlm_traverse_files.
|
|
|
|
*/
|
2008-01-17 16:10:12 +00:00
|
|
|
nlm_traverse_files(NULL, nlmsvc_is_client, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nlmsvc_match_sb(void *datap, struct nlm_file *file)
|
|
|
|
{
|
|
|
|
struct super_block *sb = datap;
|
|
|
|
|
|
|
|
return sb == file->f_file->f_path.mnt->mnt_sb;
|
|
|
|
}
|
|
|
|
|
2008-06-30 22:58:14 +00:00
|
|
|
/**
|
|
|
|
* nlmsvc_unlock_all_by_sb - release locks held on this file system
|
|
|
|
* @sb: super block
|
|
|
|
*
|
|
|
|
* Release all locks held by clients accessing this file system.
|
|
|
|
*/
|
2008-01-17 16:10:12 +00:00
|
|
|
int
|
|
|
|
nlmsvc_unlock_all_by_sb(struct super_block *sb)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = nlm_traverse_files(sb, nlmsvc_always_match, nlmsvc_match_sb);
|
|
|
|
return ret ? -EIO : 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-01-17 16:10:12 +00:00
|
|
|
EXPORT_SYMBOL_GPL(nlmsvc_unlock_all_by_sb);
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
nlmsvc_match_ip(void *datap, struct nlm_host *host)
|
|
|
|
{
|
2008-09-03 18:36:01 +00:00
|
|
|
return nlm_cmp_addr(nlm_srcaddr(host), datap);
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
}
|
|
|
|
|
2008-06-30 22:58:14 +00:00
|
|
|
/**
|
|
|
|
* nlmsvc_unlock_all_by_ip - release local locks by IP address
|
|
|
|
* @server_addr: server's IP address as seen by clients
|
|
|
|
*
|
|
|
|
* Release all locks held by clients accessing this host
|
|
|
|
* via the passed in IP address.
|
|
|
|
*/
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
int
|
2008-06-30 22:58:14 +00:00
|
|
|
nlmsvc_unlock_all_by_ip(struct sockaddr *server_addr)
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2008-06-30 22:58:14 +00:00
|
|
|
ret = nlm_traverse_files(server_addr, nlmsvc_match_ip, NULL);
|
|
|
|
return ret ? -EIO : 0;
|
lockd: unlock lockd locks associated with a given server ip
For high-availability NFS service, we generally need to be able to drop
file locks held on the exported filesystem before moving clients to a
new server. Currently the only way to do that is by shutting down lockd
entirely, which is often undesireable (for example, if you want to
continue exporting other filesystems).
This patch allows the administrator to release all locks held by clients
accessing the client through a given server ip address, by echoing that
address to a new file, /proc/fs/nfsd/unlock_ip, as in:
shell> echo 10.1.1.2 > /proc/fs/nfsd/unlock_ip
The expected sequence of events can be:
1. Tear down the IP address
2. Unexport the path
3. Write IP to /proc/fs/nfsd/unlock_ip to unlock files
4. Signal peer to begin take-over.
For now we only support IPv4 addresses and NFSv2/v3 (NFSv4 locks are not
affected).
Also, if unmounting the filesystem is required, we assume at step 3 that
clients using the given server ip are the only clients holding locks on
the given filesystem; otherwise, an additional patch is required to
allow revoking all locks held by lockd on a given filesystem.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Cc: Lon Hohberger <lhh@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/lockd/svcsubs.c | 66 +++++++++++++++++++++++++++++++++++++++-----
fs/nfsd/nfsctl.c | 65 +++++++++++++++++++++++++++++++++++++++++++
include/linux/lockd/lockd.h | 7 ++++
3 files changed, 131 insertions(+), 7 deletions(-)
2008-01-17 16:10:12 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(nlmsvc_unlock_all_by_ip);
|