| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * linux/fs/lockd/clntproc.c | 
 | 3 |  * | 
 | 4 |  * RPC procedures for the client side NLM implementation | 
 | 5 |  * | 
 | 6 |  * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> | 
 | 7 |  */ | 
 | 8 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/module.h> | 
| Alexey Dobriyan | 405f557 | 2009-07-11 22:08:37 +0400 | [diff] [blame] | 10 | #include <linux/smp_lock.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/types.h> | 
 | 13 | #include <linux/errno.h> | 
 | 14 | #include <linux/fs.h> | 
 | 15 | #include <linux/nfs_fs.h> | 
 | 16 | #include <linux/utsname.h> | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 17 | #include <linux/freezer.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/sunrpc/clnt.h> | 
 | 19 | #include <linux/sunrpc/svc.h> | 
 | 20 | #include <linux/lockd/lockd.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 |  | 
 | 22 | #define NLMDBG_FACILITY		NLMDBG_CLIENT | 
 | 23 | #define NLMCLNT_GRACE_WAIT	(5*HZ) | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 24 | #define NLMCLNT_POLL_TIMEOUT	(30*HZ) | 
| Trond Myklebust | aaaa994 | 2006-02-01 12:18:25 -0500 | [diff] [blame] | 25 | #define NLMCLNT_MAX_RETRIES	3 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 |  | 
 | 27 | static int	nlmclnt_test(struct nlm_rqst *, struct file_lock *); | 
 | 28 | static int	nlmclnt_lock(struct nlm_rqst *, struct file_lock *); | 
 | 29 | static int	nlmclnt_unlock(struct nlm_rqst *, struct file_lock *); | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 30 | static int	nlm_stat_to_errno(__be32 stat); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static void	nlmclnt_locks_init_private(struct file_lock *fl, struct nlm_host *host); | 
| Trond Myklebust | 16fb242 | 2006-02-01 12:18:22 -0500 | [diff] [blame] | 32 | static int	nlmclnt_cancel(struct nlm_host *, int , struct file_lock *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 |  | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 34 | static const struct rpc_call_ops nlmclnt_unlock_ops; | 
 | 35 | static const struct rpc_call_ops nlmclnt_cancel_ops; | 
 | 36 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | /* | 
 | 38 |  * Cookie counter for NLM requests | 
 | 39 |  */ | 
| Olaf Kirch | 031d869 | 2006-10-04 02:16:02 -0700 | [diff] [blame] | 40 | static atomic_t	nlm_cookie = ATOMIC_INIT(0x1234); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 |  | 
| Olaf Kirch | 031d869 | 2006-10-04 02:16:02 -0700 | [diff] [blame] | 42 | void nlmclnt_next_cookie(struct nlm_cookie *c) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { | 
| Olaf Kirch | 031d869 | 2006-10-04 02:16:02 -0700 | [diff] [blame] | 44 | 	u32	cookie = atomic_inc_return(&nlm_cookie); | 
 | 45 |  | 
 | 46 | 	memcpy(c->data, &cookie, 4); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | 	c->len=4; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | } | 
 | 49 |  | 
 | 50 | static struct nlm_lockowner *nlm_get_lockowner(struct nlm_lockowner *lockowner) | 
 | 51 | { | 
 | 52 | 	atomic_inc(&lockowner->count); | 
 | 53 | 	return lockowner; | 
 | 54 | } | 
 | 55 |  | 
 | 56 | static void nlm_put_lockowner(struct nlm_lockowner *lockowner) | 
 | 57 | { | 
 | 58 | 	if (!atomic_dec_and_lock(&lockowner->count, &lockowner->host->h_lock)) | 
 | 59 | 		return; | 
 | 60 | 	list_del(&lockowner->list); | 
 | 61 | 	spin_unlock(&lockowner->host->h_lock); | 
 | 62 | 	nlm_release_host(lockowner->host); | 
 | 63 | 	kfree(lockowner); | 
 | 64 | } | 
 | 65 |  | 
 | 66 | static inline int nlm_pidbusy(struct nlm_host *host, uint32_t pid) | 
 | 67 | { | 
 | 68 | 	struct nlm_lockowner *lockowner; | 
 | 69 | 	list_for_each_entry(lockowner, &host->h_lockowners, list) { | 
 | 70 | 		if (lockowner->pid == pid) | 
 | 71 | 			return -EBUSY; | 
 | 72 | 	} | 
 | 73 | 	return 0; | 
 | 74 | } | 
 | 75 |  | 
 | 76 | static inline uint32_t __nlm_alloc_pid(struct nlm_host *host) | 
 | 77 | { | 
 | 78 | 	uint32_t res; | 
 | 79 | 	do { | 
 | 80 | 		res = host->h_pidcount++; | 
 | 81 | 	} while (nlm_pidbusy(host, res) < 0); | 
 | 82 | 	return res; | 
 | 83 | } | 
 | 84 |  | 
 | 85 | static struct nlm_lockowner *__nlm_find_lockowner(struct nlm_host *host, fl_owner_t owner) | 
 | 86 | { | 
 | 87 | 	struct nlm_lockowner *lockowner; | 
 | 88 | 	list_for_each_entry(lockowner, &host->h_lockowners, list) { | 
 | 89 | 		if (lockowner->owner != owner) | 
 | 90 | 			continue; | 
 | 91 | 		return nlm_get_lockowner(lockowner); | 
 | 92 | 	} | 
 | 93 | 	return NULL; | 
 | 94 | } | 
 | 95 |  | 
 | 96 | static struct nlm_lockowner *nlm_find_lockowner(struct nlm_host *host, fl_owner_t owner) | 
 | 97 | { | 
 | 98 | 	struct nlm_lockowner *res, *new = NULL; | 
 | 99 |  | 
 | 100 | 	spin_lock(&host->h_lock); | 
 | 101 | 	res = __nlm_find_lockowner(host, owner); | 
 | 102 | 	if (res == NULL) { | 
 | 103 | 		spin_unlock(&host->h_lock); | 
| Panagiotis Issaris | f52720c | 2006-09-27 01:49:39 -0700 | [diff] [blame] | 104 | 		new = kmalloc(sizeof(*new), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | 		spin_lock(&host->h_lock); | 
 | 106 | 		res = __nlm_find_lockowner(host, owner); | 
 | 107 | 		if (res == NULL && new != NULL) { | 
 | 108 | 			res = new; | 
 | 109 | 			atomic_set(&new->count, 1); | 
 | 110 | 			new->owner = owner; | 
 | 111 | 			new->pid = __nlm_alloc_pid(host); | 
 | 112 | 			new->host = nlm_get_host(host); | 
 | 113 | 			list_add(&new->list, &host->h_lockowners); | 
 | 114 | 			new = NULL; | 
 | 115 | 		} | 
 | 116 | 	} | 
 | 117 | 	spin_unlock(&host->h_lock); | 
| Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 118 | 	kfree(new); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | 	return res; | 
 | 120 | } | 
 | 121 |  | 
 | 122 | /* | 
 | 123 |  * Initialize arguments for TEST/LOCK/UNLOCK/CANCEL calls | 
 | 124 |  */ | 
 | 125 | static void nlmclnt_setlockargs(struct nlm_rqst *req, struct file_lock *fl) | 
 | 126 | { | 
 | 127 | 	struct nlm_args	*argp = &req->a_args; | 
 | 128 | 	struct nlm_lock	*lock = &argp->lock; | 
 | 129 |  | 
 | 130 | 	nlmclnt_next_cookie(&argp->cookie); | 
| Josef Sipek | 225a719 | 2006-12-08 02:37:18 -0800 | [diff] [blame] | 131 | 	memcpy(&lock->fh, NFS_FH(fl->fl_file->f_path.dentry->d_inode), sizeof(struct nfs_fh)); | 
| Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 132 | 	lock->caller  = utsname()->nodename; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | 	lock->oh.data = req->a_owner; | 
| Trond Myklebust | 7bab377 | 2006-03-20 13:44:06 -0500 | [diff] [blame] | 134 | 	lock->oh.len  = snprintf(req->a_owner, sizeof(req->a_owner), "%u@%s", | 
 | 135 | 				(unsigned int)fl->fl_u.nfs_fl.owner->pid, | 
| Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 136 | 				utsname()->nodename); | 
| Trond Myklebust | 7bab377 | 2006-03-20 13:44:06 -0500 | [diff] [blame] | 137 | 	lock->svid = fl->fl_u.nfs_fl.owner->pid; | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 138 | 	lock->fl.fl_start = fl->fl_start; | 
 | 139 | 	lock->fl.fl_end = fl->fl_end; | 
 | 140 | 	lock->fl.fl_type = fl->fl_type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } | 
 | 142 |  | 
 | 143 | static void nlmclnt_release_lockargs(struct nlm_rqst *req) | 
 | 144 | { | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 145 | 	BUG_ON(req->a_args.lock.fl.fl_ops != NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } | 
 | 147 |  | 
| Chuck Lever | 1093a60 | 2008-01-11 17:09:59 -0500 | [diff] [blame] | 148 | /** | 
 | 149 |  * nlmclnt_proc - Perform a single client-side lock request | 
 | 150 |  * @host: address of a valid nlm_host context representing the NLM server | 
 | 151 |  * @cmd: fcntl-style file lock operation to perform | 
 | 152 |  * @fl: address of arguments for the lock operation | 
 | 153 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 |  */ | 
| Chuck Lever | 1093a60 | 2008-01-11 17:09:59 -0500 | [diff] [blame] | 155 | int nlmclnt_proc(struct nlm_host *host, int cmd, struct file_lock *fl) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 157 | 	struct nlm_rqst		*call; | 
| Chuck Lever | 1093a60 | 2008-01-11 17:09:59 -0500 | [diff] [blame] | 158 | 	int			status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 |  | 
| Chuck Lever | 1093a60 | 2008-01-11 17:09:59 -0500 | [diff] [blame] | 160 | 	nlm_get_host(host); | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 161 | 	call = nlm_alloc_call(host); | 
 | 162 | 	if (call == NULL) | 
 | 163 | 		return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 |  | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 165 | 	nlmclnt_locks_init_private(fl, host); | 
 | 166 | 	/* Set up the argument struct */ | 
 | 167 | 	nlmclnt_setlockargs(call, fl); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 |  | 
| Trond Myklebust | 5cd973c | 2009-06-17 13:23:01 -0700 | [diff] [blame] | 169 | 	lock_kernel(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | 	if (IS_SETLK(cmd) || IS_SETLKW(cmd)) { | 
 | 171 | 		if (fl->fl_type != F_UNLCK) { | 
 | 172 | 			call->a_args.block = IS_SETLKW(cmd) ? 1 : 0; | 
 | 173 | 			status = nlmclnt_lock(call, fl); | 
 | 174 | 		} else | 
 | 175 | 			status = nlmclnt_unlock(call, fl); | 
 | 176 | 	} else if (IS_GETLK(cmd)) | 
 | 177 | 		status = nlmclnt_test(call, fl); | 
 | 178 | 	else | 
 | 179 | 		status = -EINVAL; | 
 | 180 |  | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 181 | 	fl->fl_ops->fl_release_private(fl); | 
 | 182 | 	fl->fl_ops = NULL; | 
| Trond Myklebust | 5cd973c | 2009-06-17 13:23:01 -0700 | [diff] [blame] | 183 | 	unlock_kernel(); | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 184 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | 	dprintk("lockd: clnt proc returns %d\n", status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | 	return status; | 
 | 187 | } | 
| Chuck Lever | 1093a60 | 2008-01-11 17:09:59 -0500 | [diff] [blame] | 188 | EXPORT_SYMBOL_GPL(nlmclnt_proc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 |  | 
 | 190 | /* | 
 | 191 |  * Allocate an NLM RPC call struct | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 192 |  * | 
 | 193 |  * Note: the caller must hold a reference to host. In case of failure, | 
 | 194 |  * this reference will be released. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 |  */ | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 196 | struct nlm_rqst *nlm_alloc_call(struct nlm_host *host) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { | 
 | 198 | 	struct nlm_rqst	*call; | 
 | 199 |  | 
| Trond Myklebust | 36943fa | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 200 | 	for(;;) { | 
 | 201 | 		call = kzalloc(sizeof(*call), GFP_KERNEL); | 
 | 202 | 		if (call != NULL) { | 
| Trond Myklebust | 5e7f37a | 2008-04-01 18:58:49 -0400 | [diff] [blame] | 203 | 			atomic_set(&call->a_count, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | 			locks_init_lock(&call->a_args.lock.fl); | 
 | 205 | 			locks_init_lock(&call->a_res.lock.fl); | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 206 | 			call->a_host = host; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | 			return call; | 
 | 208 | 		} | 
| Trond Myklebust | 36943fa | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 209 | 		if (signalled()) | 
 | 210 | 			break; | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 211 | 		printk("nlm_alloc_call: failed, waiting for memory\n"); | 
| Nishanth Aravamudan | 041e0e3 | 2005-09-10 00:27:23 -0700 | [diff] [blame] | 212 | 		schedule_timeout_interruptible(5*HZ); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | 	} | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 214 | 	nlm_release_host(host); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | 	return NULL; | 
 | 216 | } | 
 | 217 |  | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 218 | void nlm_release_call(struct nlm_rqst *call) | 
 | 219 | { | 
| Trond Myklebust | 5e7f37a | 2008-04-01 18:58:49 -0400 | [diff] [blame] | 220 | 	if (!atomic_dec_and_test(&call->a_count)) | 
 | 221 | 		return; | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 222 | 	nlm_release_host(call->a_host); | 
 | 223 | 	nlmclnt_release_lockargs(call); | 
 | 224 | 	kfree(call); | 
 | 225 | } | 
 | 226 |  | 
 | 227 | static void nlmclnt_rpc_release(void *data) | 
 | 228 | { | 
| Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 229 | 	lock_kernel(); | 
| Trond Myklebust | 65fdf7d | 2008-01-11 17:41:29 -0500 | [diff] [blame] | 230 | 	nlm_release_call(data); | 
| Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 231 | 	unlock_kernel(); | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 232 | } | 
 | 233 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | static int nlm_wait_on_grace(wait_queue_head_t *queue) | 
 | 235 | { | 
 | 236 | 	DEFINE_WAIT(wait); | 
 | 237 | 	int status = -EINTR; | 
 | 238 |  | 
 | 239 | 	prepare_to_wait(queue, &wait, TASK_INTERRUPTIBLE); | 
 | 240 | 	if (!signalled ()) { | 
 | 241 | 		schedule_timeout(NLMCLNT_GRACE_WAIT); | 
| Christoph Lameter | 3e1d1d2 | 2005-06-24 23:13:50 -0700 | [diff] [blame] | 242 | 		try_to_freeze(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | 		if (!signalled ()) | 
 | 244 | 			status = 0; | 
 | 245 | 	} | 
 | 246 | 	finish_wait(queue, &wait); | 
 | 247 | 	return status; | 
 | 248 | } | 
 | 249 |  | 
 | 250 | /* | 
 | 251 |  * Generic NLM call | 
 | 252 |  */ | 
 | 253 | static int | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 254 | nlmclnt_call(struct rpc_cred *cred, struct nlm_rqst *req, u32 proc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { | 
 | 256 | 	struct nlm_host	*host = req->a_host; | 
 | 257 | 	struct rpc_clnt	*clnt; | 
 | 258 | 	struct nlm_args	*argp = &req->a_args; | 
 | 259 | 	struct nlm_res	*resp = &req->a_res; | 
 | 260 | 	struct rpc_message msg = { | 
 | 261 | 		.rpc_argp	= argp, | 
 | 262 | 		.rpc_resp	= resp, | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 263 | 		.rpc_cred	= cred, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | 	}; | 
 | 265 | 	int		status; | 
 | 266 |  | 
 | 267 | 	dprintk("lockd: call procedure %d on %s\n", | 
 | 268 | 			(int)proc, host->h_name); | 
 | 269 |  | 
 | 270 | 	do { | 
 | 271 | 		if (host->h_reclaiming && !argp->reclaim) | 
 | 272 | 			goto in_grace_period; | 
 | 273 |  | 
 | 274 | 		/* If we have no RPC client yet, create one. */ | 
 | 275 | 		if ((clnt = nlm_bind_host(host)) == NULL) | 
 | 276 | 			return -ENOLCK; | 
 | 277 | 		msg.rpc_proc = &clnt->cl_procinfo[proc]; | 
 | 278 |  | 
 | 279 | 		/* Perform the RPC call. If an error occurs, try again */ | 
 | 280 | 		if ((status = rpc_call_sync(clnt, &msg, 0)) < 0) { | 
 | 281 | 			dprintk("lockd: rpc_call returned error %d\n", -status); | 
 | 282 | 			switch (status) { | 
 | 283 | 			case -EPROTONOSUPPORT: | 
 | 284 | 				status = -EINVAL; | 
 | 285 | 				break; | 
 | 286 | 			case -ECONNREFUSED: | 
 | 287 | 			case -ETIMEDOUT: | 
 | 288 | 			case -ENOTCONN: | 
 | 289 | 				nlm_rebind_host(host); | 
 | 290 | 				status = -EAGAIN; | 
 | 291 | 				break; | 
 | 292 | 			case -ERESTARTSYS: | 
 | 293 | 				return signalled () ? -EINTR : status; | 
 | 294 | 			default: | 
 | 295 | 				break; | 
 | 296 | 			} | 
 | 297 | 			break; | 
 | 298 | 		} else | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 299 | 		if (resp->status == nlm_lck_denied_grace_period) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | 			dprintk("lockd: server in grace period\n"); | 
 | 301 | 			if (argp->reclaim) { | 
 | 302 | 				printk(KERN_WARNING | 
 | 303 | 				     "lockd: spurious grace period reject?!\n"); | 
 | 304 | 				return -ENOLCK; | 
 | 305 | 			} | 
 | 306 | 		} else { | 
 | 307 | 			if (!argp->reclaim) { | 
 | 308 | 				/* We appear to be out of the grace period */ | 
 | 309 | 				wake_up_all(&host->h_gracewait); | 
 | 310 | 			} | 
 | 311 | 			dprintk("lockd: server returns status %d\n", resp->status); | 
 | 312 | 			return 0;	/* Okay, call complete */ | 
 | 313 | 		} | 
 | 314 |  | 
 | 315 | in_grace_period: | 
 | 316 | 		/* | 
 | 317 | 		 * The server has rebooted and appears to be in the grace | 
 | 318 | 		 * period during which locks are only allowed to be | 
 | 319 | 		 * reclaimed. | 
 | 320 | 		 * We can only back off and try again later. | 
 | 321 | 		 */ | 
 | 322 | 		status = nlm_wait_on_grace(&host->h_gracewait); | 
 | 323 | 	} while (status == 0); | 
 | 324 |  | 
 | 325 | 	return status; | 
 | 326 | } | 
 | 327 |  | 
 | 328 | /* | 
 | 329 |  * Generic NLM call, async version. | 
 | 330 |  */ | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 331 | static struct rpc_task *__nlm_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, const struct rpc_call_ops *tk_ops) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { | 
 | 333 | 	struct nlm_host	*host = req->a_host; | 
 | 334 | 	struct rpc_clnt	*clnt; | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 335 | 	struct rpc_task_setup task_setup_data = { | 
 | 336 | 		.rpc_message = msg, | 
 | 337 | 		.callback_ops = tk_ops, | 
 | 338 | 		.callback_data = req, | 
 | 339 | 		.flags = RPC_TASK_ASYNC, | 
 | 340 | 	}; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 |  | 
 | 342 | 	dprintk("lockd: call procedure %d on %s (async)\n", | 
 | 343 | 			(int)proc, host->h_name); | 
 | 344 |  | 
 | 345 | 	/* If we have no RPC client yet, create one. */ | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 346 | 	clnt = nlm_bind_host(host); | 
 | 347 | 	if (clnt == NULL) | 
 | 348 | 		goto out_err; | 
| Trond Myklebust | d471662 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 349 | 	msg->rpc_proc = &clnt->cl_procinfo[proc]; | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 350 | 	task_setup_data.rpc_client = clnt; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 |  | 
 | 352 |         /* bootstrap and kick off the async RPC call */ | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 353 | 	return rpc_run_task(&task_setup_data); | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 354 | out_err: | 
| Trond Myklebust | a995e9e | 2007-02-02 15:37:43 -0800 | [diff] [blame] | 355 | 	tk_ops->rpc_release(req); | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 356 | 	return ERR_PTR(-ENOLCK); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } | 
 | 358 |  | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 359 | static int nlm_do_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, const struct rpc_call_ops *tk_ops) | 
 | 360 | { | 
 | 361 | 	struct rpc_task *task; | 
 | 362 |  | 
 | 363 | 	task = __nlm_async_call(req, proc, msg, tk_ops); | 
 | 364 | 	if (IS_ERR(task)) | 
 | 365 | 		return PTR_ERR(task); | 
 | 366 | 	rpc_put_task(task); | 
 | 367 | 	return 0; | 
 | 368 | } | 
 | 369 |  | 
 | 370 | /* | 
 | 371 |  * NLM asynchronous call. | 
 | 372 |  */ | 
| Trond Myklebust | d471662 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 373 | int nlm_async_call(struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) | 
 | 374 | { | 
 | 375 | 	struct rpc_message msg = { | 
 | 376 | 		.rpc_argp	= &req->a_args, | 
 | 377 | 		.rpc_resp	= &req->a_res, | 
 | 378 | 	}; | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 379 | 	return nlm_do_async_call(req, proc, &msg, tk_ops); | 
| Trond Myklebust | d471662 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 380 | } | 
 | 381 |  | 
 | 382 | int nlm_async_reply(struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) | 
 | 383 | { | 
 | 384 | 	struct rpc_message msg = { | 
 | 385 | 		.rpc_argp	= &req->a_res, | 
 | 386 | 	}; | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 387 | 	return nlm_do_async_call(req, proc, &msg, tk_ops); | 
 | 388 | } | 
 | 389 |  | 
 | 390 | /* | 
 | 391 |  * NLM client asynchronous call. | 
 | 392 |  * | 
 | 393 |  * Note that although the calls are asynchronous, and are therefore | 
 | 394 |  *      guaranteed to complete, we still always attempt to wait for | 
 | 395 |  *      completion in order to be able to correctly track the lock | 
 | 396 |  *      state. | 
 | 397 |  */ | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 398 | static int nlmclnt_async_call(struct rpc_cred *cred, struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 399 | { | 
 | 400 | 	struct rpc_message msg = { | 
 | 401 | 		.rpc_argp	= &req->a_args, | 
 | 402 | 		.rpc_resp	= &req->a_res, | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 403 | 		.rpc_cred	= cred, | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 404 | 	}; | 
 | 405 | 	struct rpc_task *task; | 
 | 406 | 	int err; | 
 | 407 |  | 
 | 408 | 	task = __nlm_async_call(req, proc, &msg, tk_ops); | 
 | 409 | 	if (IS_ERR(task)) | 
 | 410 | 		return PTR_ERR(task); | 
 | 411 | 	err = rpc_wait_for_completion_task(task); | 
 | 412 | 	rpc_put_task(task); | 
 | 413 | 	return err; | 
| Trond Myklebust | d471662 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 414 | } | 
 | 415 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | /* | 
 | 417 |  * TEST for the presence of a conflicting lock | 
 | 418 |  */ | 
 | 419 | static int | 
 | 420 | nlmclnt_test(struct nlm_rqst *req, struct file_lock *fl) | 
 | 421 | { | 
 | 422 | 	int	status; | 
 | 423 |  | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 424 | 	status = nlmclnt_call(nfs_file_cred(fl->fl_file), req, NLMPROC_TEST); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | 	if (status < 0) | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 426 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 |  | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 428 | 	switch (req->a_res.status) { | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 429 | 		case nlm_granted: | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 430 | 			fl->fl_type = F_UNLCK; | 
 | 431 | 			break; | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 432 | 		case nlm_lck_denied: | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 433 | 			/* | 
 | 434 | 			 * Report the conflicting lock back to the application. | 
 | 435 | 			 */ | 
 | 436 | 			fl->fl_start = req->a_res.lock.fl.fl_start; | 
| Felix Blyakher | d67d1c7 | 2008-07-15 12:40:22 -0500 | [diff] [blame] | 437 | 			fl->fl_end = req->a_res.lock.fl.fl_end; | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 438 | 			fl->fl_type = req->a_res.lock.fl.fl_type; | 
 | 439 | 			fl->fl_pid = 0; | 
 | 440 | 			break; | 
 | 441 | 		default: | 
 | 442 | 			status = nlm_stat_to_errno(req->a_res.status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | 	} | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 444 | out: | 
 | 445 | 	nlm_release_call(req); | 
 | 446 | 	return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } | 
 | 448 |  | 
 | 449 | static void nlmclnt_locks_copy_lock(struct file_lock *new, struct file_lock *fl) | 
 | 450 | { | 
| Trond Myklebust | 4c060b5 | 2006-03-20 13:44:41 -0500 | [diff] [blame] | 451 | 	new->fl_u.nfs_fl.state = fl->fl_u.nfs_fl.state; | 
 | 452 | 	new->fl_u.nfs_fl.owner = nlm_get_lockowner(fl->fl_u.nfs_fl.owner); | 
 | 453 | 	list_add_tail(&new->fl_u.nfs_fl.list, &fl->fl_u.nfs_fl.owner->host->h_granted); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } | 
 | 455 |  | 
 | 456 | static void nlmclnt_locks_release_private(struct file_lock *fl) | 
 | 457 | { | 
| Trond Myklebust | 4c060b5 | 2006-03-20 13:44:41 -0500 | [diff] [blame] | 458 | 	list_del(&fl->fl_u.nfs_fl.list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | 	nlm_put_lockowner(fl->fl_u.nfs_fl.owner); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } | 
 | 461 |  | 
| Alexey Dobriyan | 6aed628 | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 462 | static const struct file_lock_operations nlmclnt_lock_ops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | 	.fl_copy_lock = nlmclnt_locks_copy_lock, | 
 | 464 | 	.fl_release_private = nlmclnt_locks_release_private, | 
 | 465 | }; | 
 | 466 |  | 
 | 467 | static void nlmclnt_locks_init_private(struct file_lock *fl, struct nlm_host *host) | 
 | 468 | { | 
 | 469 | 	BUG_ON(fl->fl_ops != NULL); | 
 | 470 | 	fl->fl_u.nfs_fl.state = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | 	fl->fl_u.nfs_fl.owner = nlm_find_lockowner(host, fl->fl_owner); | 
| Trond Myklebust | 4c060b5 | 2006-03-20 13:44:41 -0500 | [diff] [blame] | 472 | 	INIT_LIST_HEAD(&fl->fl_u.nfs_fl.list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | 	fl->fl_ops = &nlmclnt_lock_ops; | 
 | 474 | } | 
 | 475 |  | 
| Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 476 | static int do_vfs_lock(struct file_lock *fl) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | { | 
 | 478 | 	int res = 0; | 
 | 479 | 	switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) { | 
 | 480 | 		case FL_POSIX: | 
 | 481 | 			res = posix_lock_file_wait(fl->fl_file, fl); | 
 | 482 | 			break; | 
 | 483 | 		case FL_FLOCK: | 
 | 484 | 			res = flock_lock_file_wait(fl->fl_file, fl); | 
 | 485 | 			break; | 
 | 486 | 		default: | 
 | 487 | 			BUG(); | 
 | 488 | 	} | 
| Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 489 | 	return res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | } | 
 | 491 |  | 
 | 492 | /* | 
 | 493 |  * LOCK: Try to create a lock | 
 | 494 |  * | 
 | 495 |  *			Programmer Harassment Alert | 
 | 496 |  * | 
 | 497 |  * When given a blocking lock request in a sync RPC call, the HPUX lockd | 
 | 498 |  * will faithfully return LCK_BLOCKED but never cares to notify us when | 
 | 499 |  * the lock could be granted. This way, our local process could hang | 
 | 500 |  * around forever waiting for the callback. | 
 | 501 |  * | 
 | 502 |  *  Solution A:	Implement busy-waiting | 
 | 503 |  *  Solution B: Use the async version of the call (NLM_LOCK_{MSG,RES}) | 
 | 504 |  * | 
 | 505 |  * For now I am implementing solution A, because I hate the idea of | 
 | 506 |  * re-implementing lockd for a third time in two months. The async | 
 | 507 |  * calls shouldn't be too hard to do, however. | 
 | 508 |  * | 
 | 509 |  * This is one of the lovely things about standards in the NFS area: | 
 | 510 |  * they're so soft and squishy you can't really blame HP for doing this. | 
 | 511 |  */ | 
 | 512 | static int | 
 | 513 | nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl) | 
 | 514 | { | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 515 | 	struct rpc_cred *cred = nfs_file_cred(fl->fl_file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | 	struct nlm_host	*host = req->a_host; | 
 | 517 | 	struct nlm_res	*resp = &req->a_res; | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 518 | 	struct nlm_wait *block = NULL; | 
| Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 519 | 	unsigned char fl_flags = fl->fl_flags; | 
| Trond Myklebust | 5f50c0c | 2008-04-01 20:26:22 -0400 | [diff] [blame] | 520 | 	unsigned char fl_type; | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 521 | 	int status = -ENOLCK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 |  | 
| Chuck Lever | 501c1ed | 2008-12-04 14:21:01 -0500 | [diff] [blame] | 523 | 	if (nsm_monitor(host) < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | 		goto out; | 
| Chuck Lever | 6c9dc42 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 525 | 	req->a_args.state = nsm_local_state; | 
| Chuck Lever | 501c1ed | 2008-12-04 14:21:01 -0500 | [diff] [blame] | 526 |  | 
| Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 527 | 	fl->fl_flags |= FL_ACCESS; | 
 | 528 | 	status = do_vfs_lock(fl); | 
| Trond Myklebust | 4a9af59 | 2008-04-01 18:57:06 -0400 | [diff] [blame] | 529 | 	fl->fl_flags = fl_flags; | 
| Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 530 | 	if (status < 0) | 
 | 531 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 |  | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 533 | 	block = nlmclnt_prepare_block(host, fl); | 
| Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 534 | again: | 
| Trond Myklebust | 5f50c0c | 2008-04-01 20:26:22 -0400 | [diff] [blame] | 535 | 	/* | 
 | 536 | 	 * Initialise resp->status to a valid non-zero value, | 
 | 537 | 	 * since 0 == nlm_lck_granted | 
 | 538 | 	 */ | 
 | 539 | 	resp->status = nlm_lck_blocked; | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 540 | 	for(;;) { | 
| Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 541 | 		/* Reboot protection */ | 
 | 542 | 		fl->fl_u.nfs_fl.state = host->h_state; | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 543 | 		status = nlmclnt_call(cred, req, NLMPROC_LOCK); | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 544 | 		if (status < 0) | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 545 | 			break; | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 546 | 		/* Did a reclaimer thread notify us of a server reboot? */ | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 547 | 		if (resp->status ==  nlm_lck_denied_grace_period) | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 548 | 			continue; | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 549 | 		if (resp->status != nlm_lck_blocked) | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 550 | 			break; | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 551 | 		/* Wait on an NLM blocking lock */ | 
 | 552 | 		status = nlmclnt_block(block, req, NLMCLNT_POLL_TIMEOUT); | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 553 | 		if (status < 0) | 
| Trond Myklebust | 5f50c0c | 2008-04-01 20:26:22 -0400 | [diff] [blame] | 554 | 			break; | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 555 | 		if (resp->status != nlm_lck_blocked) | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 556 | 			break; | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 557 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 |  | 
| Trond Myklebust | 5f50c0c | 2008-04-01 20:26:22 -0400 | [diff] [blame] | 559 | 	/* if we were interrupted while blocking, then cancel the lock request | 
 | 560 | 	 * and exit | 
 | 561 | 	 */ | 
 | 562 | 	if (resp->status == nlm_lck_blocked) { | 
 | 563 | 		if (!req->a_args.block) | 
 | 564 | 			goto out_unlock; | 
 | 565 | 		if (nlmclnt_cancel(host, req->a_args.block, fl) == 0) | 
 | 566 | 			goto out_unblock; | 
 | 567 | 	} | 
 | 568 |  | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 569 | 	if (resp->status == nlm_granted) { | 
| Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 570 | 		down_read(&host->h_rwsem); | 
 | 571 | 		/* Check whether or not the server has rebooted */ | 
 | 572 | 		if (fl->fl_u.nfs_fl.state != host->h_state) { | 
 | 573 | 			up_read(&host->h_rwsem); | 
 | 574 | 			goto again; | 
 | 575 | 		} | 
| Trond Myklebust | 4c060b5 | 2006-03-20 13:44:41 -0500 | [diff] [blame] | 576 | 		/* Ensure the resulting lock will get added to granted list */ | 
| Trond Myklebust | 4a9af59 | 2008-04-01 18:57:06 -0400 | [diff] [blame] | 577 | 		fl->fl_flags |= FL_SLEEP; | 
| Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 578 | 		if (do_vfs_lock(fl) < 0) | 
| Harvey Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 579 | 			printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__); | 
| Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 580 | 		up_read(&host->h_rwsem); | 
| Trond Myklebust | 4a9af59 | 2008-04-01 18:57:06 -0400 | [diff] [blame] | 581 | 		fl->fl_flags = fl_flags; | 
| Trond Myklebust | 5f50c0c | 2008-04-01 20:26:22 -0400 | [diff] [blame] | 582 | 		status = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | 	} | 
| Trond Myklebust | 5f50c0c | 2008-04-01 20:26:22 -0400 | [diff] [blame] | 584 | 	if (status < 0) | 
 | 585 | 		goto out_unlock; | 
| Miklos Szeredi | cc77b15 | 2008-07-25 01:48:55 -0700 | [diff] [blame] | 586 | 	/* | 
 | 587 | 	 * EAGAIN doesn't make sense for sleeping locks, and in some | 
 | 588 | 	 * cases NLM_LCK_DENIED is returned for a permanent error.  So | 
 | 589 | 	 * turn it into an ENOLCK. | 
 | 590 | 	 */ | 
 | 591 | 	if (resp->status == nlm_lck_denied && (fl_flags & FL_SLEEP)) | 
 | 592 | 		status = -ENOLCK; | 
 | 593 | 	else | 
 | 594 | 		status = nlm_stat_to_errno(resp->status); | 
| Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 595 | out_unblock: | 
| Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 596 | 	nlmclnt_finish_block(block); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | out: | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 598 | 	nlm_release_call(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | 	return status; | 
| Trond Myklebust | 5f50c0c | 2008-04-01 20:26:22 -0400 | [diff] [blame] | 600 | out_unlock: | 
 | 601 | 	/* Fatal error: ensure that we remove the lock altogether */ | 
 | 602 | 	dprintk("lockd: lock attempt ended in fatal error.\n" | 
 | 603 | 		"       Attempting to unlock.\n"); | 
 | 604 | 	nlmclnt_finish_block(block); | 
 | 605 | 	fl_type = fl->fl_type; | 
 | 606 | 	fl->fl_type = F_UNLCK; | 
 | 607 | 	down_read(&host->h_rwsem); | 
 | 608 | 	do_vfs_lock(fl); | 
 | 609 | 	up_read(&host->h_rwsem); | 
 | 610 | 	fl->fl_type = fl_type; | 
 | 611 | 	fl->fl_flags = fl_flags; | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 612 | 	nlmclnt_async_call(cred, req, NLMPROC_UNLOCK, &nlmclnt_unlock_ops); | 
| Trond Myklebust | 5f50c0c | 2008-04-01 20:26:22 -0400 | [diff] [blame] | 613 | 	return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } | 
 | 615 |  | 
 | 616 | /* | 
 | 617 |  * RECLAIM: Try to reclaim a lock | 
 | 618 |  */ | 
 | 619 | int | 
 | 620 | nlmclnt_reclaim(struct nlm_host *host, struct file_lock *fl) | 
 | 621 | { | 
 | 622 | 	struct nlm_rqst reqst, *req; | 
 | 623 | 	int		status; | 
 | 624 |  | 
 | 625 | 	req = &reqst; | 
 | 626 | 	memset(req, 0, sizeof(*req)); | 
 | 627 | 	locks_init_lock(&req->a_args.lock.fl); | 
 | 628 | 	locks_init_lock(&req->a_res.lock.fl); | 
 | 629 | 	req->a_host  = host; | 
 | 630 | 	req->a_flags = 0; | 
 | 631 |  | 
 | 632 | 	/* Set up the argument struct */ | 
 | 633 | 	nlmclnt_setlockargs(req, fl); | 
 | 634 | 	req->a_args.reclaim = 1; | 
 | 635 |  | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 636 | 	status = nlmclnt_call(nfs_file_cred(fl->fl_file), req, NLMPROC_LOCK); | 
 | 637 | 	if (status >= 0 && req->a_res.status == nlm_granted) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | 		return 0; | 
 | 639 |  | 
 | 640 | 	printk(KERN_WARNING "lockd: failed to reclaim lock for pid %d " | 
 | 641 | 				"(errno %d, status %d)\n", fl->fl_pid, | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 642 | 				status, ntohl(req->a_res.status)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 |  | 
 | 644 | 	/* | 
 | 645 | 	 * FIXME: This is a serious failure. We can | 
 | 646 | 	 * | 
 | 647 | 	 *  a.	Ignore the problem | 
 | 648 | 	 *  b.	Send the owning process some signal (Linux doesn't have | 
 | 649 | 	 *	SIGLOST, though...) | 
 | 650 | 	 *  c.	Retry the operation | 
 | 651 | 	 * | 
 | 652 | 	 * Until someone comes up with a simple implementation | 
 | 653 | 	 * for b or c, I'll choose option a. | 
 | 654 | 	 */ | 
 | 655 |  | 
 | 656 | 	return -ENOLCK; | 
 | 657 | } | 
 | 658 |  | 
 | 659 | /* | 
 | 660 |  * UNLOCK: remove an existing lock | 
 | 661 |  */ | 
 | 662 | static int | 
 | 663 | nlmclnt_unlock(struct nlm_rqst *req, struct file_lock *fl) | 
 | 664 | { | 
| Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 665 | 	struct nlm_host	*host = req->a_host; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | 	struct nlm_res	*resp = &req->a_res; | 
| Trond Myklebust | 4a9af59 | 2008-04-01 18:57:06 -0400 | [diff] [blame] | 667 | 	int status; | 
 | 668 | 	unsigned char fl_flags = fl->fl_flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 |  | 
| Christoph Hellwig | 26bcbf9 | 2006-03-20 13:44:40 -0500 | [diff] [blame] | 670 | 	/* | 
| Trond Myklebust | 30f4e20 | 2006-03-13 21:20:49 -0800 | [diff] [blame] | 671 | 	 * Note: the server is supposed to either grant us the unlock | 
 | 672 | 	 * request, or to deny it with NLM_LCK_DENIED_GRACE_PERIOD. In either | 
 | 673 | 	 * case, we want to unlock. | 
 | 674 | 	 */ | 
| Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 675 | 	fl->fl_flags |= FL_EXISTS; | 
| Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 676 | 	down_read(&host->h_rwsem); | 
| Trond Myklebust | 4a9af59 | 2008-04-01 18:57:06 -0400 | [diff] [blame] | 677 | 	status = do_vfs_lock(fl); | 
 | 678 | 	up_read(&host->h_rwsem); | 
 | 679 | 	fl->fl_flags = fl_flags; | 
 | 680 | 	if (status == -ENOENT) { | 
 | 681 | 		status = 0; | 
| Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 682 | 		goto out; | 
 | 683 | 	} | 
| Trond Myklebust | 30f4e20 | 2006-03-13 21:20:49 -0800 | [diff] [blame] | 684 |  | 
| Trond Myklebust | dc9d8d0 | 2008-03-28 16:04:36 -0400 | [diff] [blame] | 685 | 	atomic_inc(&req->a_count); | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 686 | 	status = nlmclnt_async_call(nfs_file_cred(fl->fl_file), req, | 
 | 687 | 			NLMPROC_UNLOCK, &nlmclnt_unlock_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | 	if (status < 0) | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 689 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 |  | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 691 | 	if (resp->status == nlm_granted) | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 692 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 |  | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 694 | 	if (resp->status != nlm_lck_denied_nolocks) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | 		printk("lockd: unexpected unlock status: %d\n", resp->status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | 	/* What to do now? I'm out of my depth... */ | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 697 | 	status = -ENOLCK; | 
 | 698 | out: | 
 | 699 | 	nlm_release_call(req); | 
 | 700 | 	return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | } | 
 | 702 |  | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 703 | static void nlmclnt_unlock_callback(struct rpc_task *task, void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | { | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 705 | 	struct nlm_rqst	*req = data; | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 706 | 	u32 status = ntohl(req->a_res.status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 |  | 
 | 708 | 	if (RPC_ASSASSINATED(task)) | 
 | 709 | 		goto die; | 
 | 710 |  | 
 | 711 | 	if (task->tk_status < 0) { | 
 | 712 | 		dprintk("lockd: unlock failed (err = %d)\n", -task->tk_status); | 
 | 713 | 		goto retry_rebind; | 
 | 714 | 	} | 
 | 715 | 	if (status == NLM_LCK_DENIED_GRACE_PERIOD) { | 
 | 716 | 		rpc_delay(task, NLMCLNT_GRACE_WAIT); | 
 | 717 | 		goto retry_unlock; | 
 | 718 | 	} | 
 | 719 | 	if (status != NLM_LCK_GRANTED) | 
 | 720 | 		printk(KERN_WARNING "lockd: unexpected unlock status: %d\n", status); | 
 | 721 | die: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | 	return; | 
 | 723 |  retry_rebind: | 
| Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 724 | 	lock_kernel(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | 	nlm_rebind_host(req->a_host); | 
| Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 726 | 	unlock_kernel(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 |  retry_unlock: | 
 | 728 | 	rpc_restart_call(task); | 
 | 729 | } | 
 | 730 |  | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 731 | static const struct rpc_call_ops nlmclnt_unlock_ops = { | 
 | 732 | 	.rpc_call_done = nlmclnt_unlock_callback, | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 733 | 	.rpc_release = nlmclnt_rpc_release, | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 734 | }; | 
 | 735 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | /* | 
 | 737 |  * Cancel a blocked lock request. | 
 | 738 |  * We always use an async RPC call for this in order not to hang a | 
 | 739 |  * process that has been Ctrl-C'ed. | 
 | 740 |  */ | 
| Trond Myklebust | 16fb242 | 2006-02-01 12:18:22 -0500 | [diff] [blame] | 741 | static int nlmclnt_cancel(struct nlm_host *host, int block, struct file_lock *fl) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | { | 
 | 743 | 	struct nlm_rqst	*req; | 
| Trond Myklebust | 6b4b3a7 | 2008-04-02 14:40:53 -0400 | [diff] [blame] | 744 | 	int status; | 
 | 745 |  | 
 | 746 | 	dprintk("lockd: blocking lock attempt was interrupted by a signal.\n" | 
 | 747 | 		"       Attempting to cancel lock.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 |  | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 749 | 	req = nlm_alloc_call(nlm_get_host(host)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | 	if (!req) | 
 | 751 | 		return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | 	req->a_flags = RPC_TASK_ASYNC; | 
 | 753 |  | 
 | 754 | 	nlmclnt_setlockargs(req, fl); | 
| Trond Myklebust | 16fb242 | 2006-02-01 12:18:22 -0500 | [diff] [blame] | 755 | 	req->a_args.block = block; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 |  | 
| Trond Myklebust | 6b4b3a7 | 2008-04-02 14:40:53 -0400 | [diff] [blame] | 757 | 	atomic_inc(&req->a_count); | 
| Trond Myklebust | d11d10c | 2008-04-02 14:44:05 -0400 | [diff] [blame] | 758 | 	status = nlmclnt_async_call(nfs_file_cred(fl->fl_file), req, | 
 | 759 | 			NLMPROC_CANCEL, &nlmclnt_cancel_ops); | 
| Trond Myklebust | 6b4b3a7 | 2008-04-02 14:40:53 -0400 | [diff] [blame] | 760 | 	if (status == 0 && req->a_res.status == nlm_lck_denied) | 
 | 761 | 		status = -ENOLCK; | 
 | 762 | 	nlm_release_call(req); | 
 | 763 | 	return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } | 
 | 765 |  | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 766 | static void nlmclnt_cancel_callback(struct rpc_task *task, void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | { | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 768 | 	struct nlm_rqst	*req = data; | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 769 | 	u32 status = ntohl(req->a_res.status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 |  | 
 | 771 | 	if (RPC_ASSASSINATED(task)) | 
 | 772 | 		goto die; | 
 | 773 |  | 
 | 774 | 	if (task->tk_status < 0) { | 
 | 775 | 		dprintk("lockd: CANCEL call error %d, retrying.\n", | 
 | 776 | 					task->tk_status); | 
 | 777 | 		goto retry_cancel; | 
 | 778 | 	} | 
 | 779 |  | 
| Chuck Lever | c041b5f | 2006-12-05 16:36:03 -0500 | [diff] [blame] | 780 | 	dprintk("lockd: cancel status %u (task %u)\n", | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 781 | 			status, task->tk_pid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 |  | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 783 | 	switch (status) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | 	case NLM_LCK_GRANTED: | 
 | 785 | 	case NLM_LCK_DENIED_GRACE_PERIOD: | 
| Trond Myklebust | 35576cb | 2006-03-20 13:44:41 -0500 | [diff] [blame] | 786 | 	case NLM_LCK_DENIED: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | 		/* Everything's good */ | 
 | 788 | 		break; | 
 | 789 | 	case NLM_LCK_DENIED_NOLOCKS: | 
 | 790 | 		dprintk("lockd: CANCEL failed (server has no locks)\n"); | 
 | 791 | 		goto retry_cancel; | 
 | 792 | 	default: | 
 | 793 | 		printk(KERN_NOTICE "lockd: weird return %d for CANCEL call\n", | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 794 | 			status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | 	} | 
 | 796 |  | 
 | 797 | die: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | 	return; | 
 | 799 |  | 
 | 800 | retry_cancel: | 
| Trond Myklebust | aaaa994 | 2006-02-01 12:18:25 -0500 | [diff] [blame] | 801 | 	/* Don't ever retry more than 3 times */ | 
 | 802 | 	if (req->a_retries++ >= NLMCLNT_MAX_RETRIES) | 
 | 803 | 		goto die; | 
| Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 804 | 	lock_kernel(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | 	nlm_rebind_host(req->a_host); | 
| Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 806 | 	unlock_kernel(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | 	rpc_restart_call(task); | 
 | 808 | 	rpc_delay(task, 30 * HZ); | 
 | 809 | } | 
 | 810 |  | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 811 | static const struct rpc_call_ops nlmclnt_cancel_ops = { | 
 | 812 | 	.rpc_call_done = nlmclnt_cancel_callback, | 
| Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 813 | 	.rpc_release = nlmclnt_rpc_release, | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 814 | }; | 
 | 815 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | /* | 
 | 817 |  * Convert an NLM status code to a generic kernel errno | 
 | 818 |  */ | 
 | 819 | static int | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 820 | nlm_stat_to_errno(__be32 status) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { | 
| Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 822 | 	switch(ntohl(status)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | 	case NLM_LCK_GRANTED: | 
 | 824 | 		return 0; | 
 | 825 | 	case NLM_LCK_DENIED: | 
 | 826 | 		return -EAGAIN; | 
 | 827 | 	case NLM_LCK_DENIED_NOLOCKS: | 
 | 828 | 	case NLM_LCK_DENIED_GRACE_PERIOD: | 
 | 829 | 		return -ENOLCK; | 
 | 830 | 	case NLM_LCK_BLOCKED: | 
 | 831 | 		printk(KERN_NOTICE "lockd: unexpected status NLM_BLOCKED\n"); | 
 | 832 | 		return -ENOLCK; | 
 | 833 | #ifdef CONFIG_LOCKD_V4 | 
 | 834 | 	case NLM_DEADLCK: | 
 | 835 | 		return -EDEADLK; | 
 | 836 | 	case NLM_ROFS: | 
 | 837 | 		return -EROFS; | 
 | 838 | 	case NLM_STALE_FH: | 
 | 839 | 		return -ESTALE; | 
 | 840 | 	case NLM_FBIG: | 
 | 841 | 		return -EOVERFLOW; | 
 | 842 | 	case NLM_FAILED: | 
 | 843 | 		return -ENOLCK; | 
 | 844 | #endif | 
 | 845 | 	} | 
 | 846 | 	printk(KERN_NOTICE "lockd: unexpected server status %d\n", status); | 
 | 847 | 	return -ENOLCK; | 
 | 848 | } |