blob: ef5659b211e96cbcc8e4aa03d1cd332fd68c1a85 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/lockd/svclock.c
3 *
4 * Handling of server-side locks, mostly of the blocked variety.
5 * This is the ugliest part of lockd because we tread on very thin ice.
6 * GRANT and CANCEL calls may get stuck, meet in mid-flight, etc.
7 * IMNSHO introducing the grant callback into the NLM protocol was one
8 * of the worst ideas Sun ever had. Except maybe for the idea of doing
9 * NFS file locking at all.
10 *
11 * I'm trying hard to avoid race conditions by protecting most accesses
12 * to a file's list of blocked locks through a semaphore. The global
13 * list of blocked locks is not protected in this fashion however.
14 * Therefore, some functions (such as the RPC callback for the async grant
15 * call) move blocked locks towards the head of the list *while some other
16 * process might be traversing it*. This should not be a problem in
17 * practice, because this will only cause functions traversing the list
18 * to visit some blocks twice.
19 *
20 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
21 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/errno.h>
26#include <linux/kernel.h>
27#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/sunrpc/clnt.h>
29#include <linux/sunrpc/svc.h>
30#include <linux/lockd/nlm.h>
31#include <linux/lockd/lockd.h>
Jeff Laytond751a7c2008-02-07 16:34:55 -050032#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#define NLMDBG_FACILITY NLMDBG_SVCLOCK
35
36#ifdef CONFIG_LOCKD_V4
37#define nlm_deadlock nlm4_deadlock
38#else
39#define nlm_deadlock nlm_lck_denied
40#endif
41
Trond Myklebust6849c0c2006-03-20 13:44:39 -050042static void nlmsvc_release_block(struct nlm_block *block);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static void nlmsvc_insert_block(struct nlm_block *block, unsigned long);
Olaf Kirch68a2d762006-10-04 02:15:57 -070044static void nlmsvc_remove_block(struct nlm_block *block);
Trond Myklebust963d8fe2006-01-03 09:55:04 +010045
Trond Myklebust5e1abf82006-03-20 13:44:39 -050046static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock);
47static void nlmsvc_freegrantargs(struct nlm_rqst *call);
Trond Myklebust963d8fe2006-01-03 09:55:04 +010048static const struct rpc_call_ops nlmsvc_grant_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * The list of blocked locks to retry
52 */
Olaf Kirch68a2d762006-10-04 02:15:57 -070053static LIST_HEAD(nlm_blocked);
Bryan Schumakerf904be92010-09-21 16:38:12 -040054static DEFINE_SPINLOCK(nlm_blocked_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * Insert a blocked lock into the global list
58 */
59static void
Bryan Schumakerf904be92010-09-21 16:38:12 -040060nlmsvc_insert_block_locked(struct nlm_block *block, unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Olaf Kirch68a2d762006-10-04 02:15:57 -070062 struct nlm_block *b;
63 struct list_head *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 dprintk("lockd: nlmsvc_insert_block(%p, %ld)\n", block, when);
Olaf Kirch68a2d762006-10-04 02:15:57 -070066 if (list_empty(&block->b_list)) {
67 kref_get(&block->b_count);
68 } else {
69 list_del_init(&block->b_list);
70 }
71
72 pos = &nlm_blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (when != NLM_NEVER) {
74 if ((when += jiffies) == NLM_NEVER)
75 when ++;
Olaf Kirch68a2d762006-10-04 02:15:57 -070076 list_for_each(pos, &nlm_blocked) {
77 b = list_entry(pos, struct nlm_block, b_list);
78 if (time_after(b->b_when,when) || b->b_when == NLM_NEVER)
79 break;
80 }
81 /* On normal exit from the loop, pos == &nlm_blocked,
82 * so we will be adding to the end of the list - good
83 */
84 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Olaf Kirch68a2d762006-10-04 02:15:57 -070086 list_add_tail(&block->b_list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 block->b_when = when;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Bryan Schumakerf904be92010-09-21 16:38:12 -040090static void nlmsvc_insert_block(struct nlm_block *block, unsigned long when)
91{
92 spin_lock(&nlm_blocked_lock);
93 nlmsvc_insert_block_locked(block, when);
94 spin_unlock(&nlm_blocked_lock);
95}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*
98 * Remove a block from the global list
99 */
Olaf Kirch68a2d762006-10-04 02:15:57 -0700100static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101nlmsvc_remove_block(struct nlm_block *block)
102{
Olaf Kirch68a2d762006-10-04 02:15:57 -0700103 if (!list_empty(&block->b_list)) {
Bryan Schumakerf904be92010-09-21 16:38:12 -0400104 spin_lock(&nlm_blocked_lock);
Olaf Kirch68a2d762006-10-04 02:15:57 -0700105 list_del_init(&block->b_list);
Bryan Schumakerf904be92010-09-21 16:38:12 -0400106 spin_unlock(&nlm_blocked_lock);
Olaf Kirch68a2d762006-10-04 02:15:57 -0700107 nlmsvc_release_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
111/*
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500112 * Find a block for a given lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
114static struct nlm_block *
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500115nlmsvc_lookup_block(struct nlm_file *file, struct nlm_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Olaf Kirch68a2d762006-10-04 02:15:57 -0700117 struct nlm_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 struct file_lock *fl;
119
120 dprintk("lockd: nlmsvc_lookup_block f=%p pd=%d %Ld-%Ld ty=%d\n",
121 file, lock->fl.fl_pid,
122 (long long)lock->fl.fl_start,
123 (long long)lock->fl.fl_end, lock->fl.fl_type);
Olaf Kirch68a2d762006-10-04 02:15:57 -0700124 list_for_each_entry(block, &nlm_blocked, b_list) {
Trond Myklebust92737232006-03-20 13:44:45 -0500125 fl = &block->b_call->a_args.lock.fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 dprintk("lockd: check f=%p pd=%d %Ld-%Ld ty=%d cookie=%s\n",
127 block->b_file, fl->fl_pid,
128 (long long)fl->fl_start,
129 (long long)fl->fl_end, fl->fl_type,
Trond Myklebust92737232006-03-20 13:44:45 -0500130 nlmdbg_cookie2a(&block->b_call->a_args.cookie));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (block->b_file == file && nlm_compare_locks(fl, &lock->fl)) {
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500132 kref_get(&block->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return block;
134 }
135 }
136
137 return NULL;
138}
139
140static inline int nlm_cookie_match(struct nlm_cookie *a, struct nlm_cookie *b)
141{
J. Bruce Fields6d7bbbb2008-07-15 14:38:32 -0400142 if (a->len != b->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return 0;
J. Bruce Fields6d7bbbb2008-07-15 14:38:32 -0400144 if (memcmp(a->data, b->data, a->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return 0;
146 return 1;
147}
148
149/*
150 * Find a block with a given NLM cookie.
151 */
152static inline struct nlm_block *
Olaf Kirch39be4502006-10-04 02:16:03 -0700153nlmsvc_find_block(struct nlm_cookie *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 struct nlm_block *block;
156
Olaf Kirch68a2d762006-10-04 02:15:57 -0700157 list_for_each_entry(block, &nlm_blocked, b_list) {
Olaf Kirch39be4502006-10-04 02:16:03 -0700158 if (nlm_cookie_match(&block->b_call->a_args.cookie,cookie))
Olaf Kirch68a2d762006-10-04 02:15:57 -0700159 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161
Olaf Kirch68a2d762006-10-04 02:15:57 -0700162 return NULL;
163
164found:
Olaf Kirch39be4502006-10-04 02:16:03 -0700165 dprintk("nlmsvc_find_block(%s): block=%p\n", nlmdbg_cookie2a(cookie), block);
Olaf Kirch68a2d762006-10-04 02:15:57 -0700166 kref_get(&block->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return block;
168}
169
170/*
171 * Create a block and initialize it.
172 *
173 * Note: we explicitly set the cookie of the grant reply to that of
174 * the blocked lock request. The spec explicitly mentions that the client
175 * should _not_ rely on the callback containing the same cookie as the
176 * request, but (as I found out later) that's because some implementations
177 * do just this. Never mind the standards comittees, they support our
178 * logging industries.
Olaf Kirch39be4502006-10-04 02:16:03 -0700179 *
180 * 10 years later: I hope we can safely ignore these old and broken
181 * clients by now. Let's fix this so we can uniquely identify an incoming
182 * GRANTED_RES message by cookie, without having to rely on the client's IP
183 * address. --okir
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 */
Trond Myklebust255129d2007-09-25 15:55:03 -0400185static struct nlm_block *
186nlmsvc_create_block(struct svc_rqst *rqstp, struct nlm_host *host,
187 struct nlm_file *file, struct nlm_lock *lock,
188 struct nlm_cookie *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct nlm_block *block;
Trond Myklebust92737232006-03-20 13:44:45 -0500191 struct nlm_rqst *call = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
J. Bruce Fields560de0e2008-07-15 15:05:45 -0400193 nlm_get_host(host);
Trond Myklebust92737232006-03-20 13:44:45 -0500194 call = nlm_alloc_call(host);
195 if (call == NULL)
196 return NULL;
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /* Allocate memory for block, and initialize arguments */
Trond Myklebust92737232006-03-20 13:44:45 -0500199 block = kzalloc(sizeof(*block), GFP_KERNEL);
200 if (block == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 goto failed;
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500202 kref_init(&block->b_count);
Olaf Kirch68a2d762006-10-04 02:15:57 -0700203 INIT_LIST_HEAD(&block->b_list);
204 INIT_LIST_HEAD(&block->b_flist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Trond Myklebust92737232006-03-20 13:44:45 -0500206 if (!nlmsvc_setgrantargs(call, lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 goto failed_free;
208
209 /* Set notifier function for VFS, and init args */
Trond Myklebust92737232006-03-20 13:44:45 -0500210 call->a_args.lock.fl.fl_flags |= FL_SLEEP;
211 call->a_args.lock.fl.fl_lmops = &nlmsvc_lock_operations;
Olaf Kirch39be4502006-10-04 02:16:03 -0700212 nlmclnt_next_cookie(&call->a_args.cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 dprintk("lockd: created block %p...\n", block);
215
216 /* Create and initialize the block */
217 block->b_daemon = rqstp->rq_server;
218 block->b_host = host;
219 block->b_file = file;
Marc Eshel5ea0d752006-11-28 16:27:06 -0500220 block->b_fl = NULL;
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500221 file->f_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* Add to file's list of blocks */
Olaf Kirch68a2d762006-10-04 02:15:57 -0700224 list_add(&block->b_flist, &file->f_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* Set up RPC arguments for callback */
Trond Myklebust92737232006-03-20 13:44:45 -0500227 block->b_call = call;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 call->a_flags = RPC_TASK_ASYNC;
Trond Myklebust92737232006-03-20 13:44:45 -0500229 call->a_block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 return block;
232
233failed_free:
234 kfree(block);
235failed:
Trond Myklebust92737232006-03-20 13:44:45 -0500236 nlm_release_call(call);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return NULL;
238}
239
240/*
J. Bruce Fields3c61eec2008-04-07 13:05:27 -0400241 * Delete a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 * It is the caller's responsibility to check whether the file
243 * can be closed hereafter.
244 */
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500245static int nlmsvc_unlink_block(struct nlm_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Trond Myklebust09c79382006-03-20 13:44:38 -0500247 int status;
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500248 dprintk("lockd: unlinking block %p...\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 /* Remove block from list */
Trond Myklebust92737232006-03-20 13:44:45 -0500251 status = posix_unblock_lock(block->b_file->f_file, &block->b_call->a_args.lock.fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 nlmsvc_remove_block(block);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500253 return status;
254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500256static void nlmsvc_free_block(struct kref *kref)
257{
258 struct nlm_block *block = container_of(kref, struct nlm_block, b_count);
259 struct nlm_file *file = block->b_file;
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500260
261 dprintk("lockd: freeing block %p...\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /* Remove block from file's list of blocks */
Neil Brown89e63ef2006-10-04 02:16:06 -0700264 mutex_lock(&file->f_mutex);
Olaf Kirch68a2d762006-10-04 02:15:57 -0700265 list_del_init(&block->b_flist);
Neil Brown89e63ef2006-10-04 02:16:06 -0700266 mutex_unlock(&file->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Trond Myklebust92737232006-03-20 13:44:45 -0500268 nlmsvc_freegrantargs(block->b_call);
269 nlm_release_call(block->b_call);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500270 nlm_release_file(block->b_file);
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500271 kfree(block->b_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 kfree(block);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500273}
274
275static void nlmsvc_release_block(struct nlm_block *block)
276{
277 if (block != NULL)
278 kref_put(&block->b_count, nlmsvc_free_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Olaf Kirchf2af7932006-10-04 02:15:59 -0700281/*
282 * Loop over all blocks and delete blocks held by
283 * a matching host.
284 */
285void nlmsvc_traverse_blocks(struct nlm_host *host,
286 struct nlm_file *file,
287 nlm_host_match_fn_t match)
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500288{
Olaf Kirch68a2d762006-10-04 02:15:57 -0700289 struct nlm_block *block, *next;
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500290
291restart:
Neil Brown89e63ef2006-10-04 02:16:06 -0700292 mutex_lock(&file->f_mutex);
Olaf Kirch68a2d762006-10-04 02:15:57 -0700293 list_for_each_entry_safe(block, next, &file->f_blocks, b_flist) {
Olaf Kirchf2af7932006-10-04 02:15:59 -0700294 if (!match(block->b_host, host))
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500295 continue;
Olaf Kirch68a2d762006-10-04 02:15:57 -0700296 /* Do not destroy blocks that are not on
297 * the global retry list - why? */
298 if (list_empty(&block->b_list))
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500299 continue;
300 kref_get(&block->b_count);
Neil Brown89e63ef2006-10-04 02:16:06 -0700301 mutex_unlock(&file->f_mutex);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500302 nlmsvc_unlink_block(block);
303 nlmsvc_release_block(block);
304 goto restart;
305 }
Neil Brown89e63ef2006-10-04 02:16:06 -0700306 mutex_unlock(&file->f_mutex);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/*
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500310 * Initialize arguments for GRANTED call. The nlm_rqst structure
311 * has been cleared already.
312 */
313static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock)
314{
315 locks_copy_lock(&call->a_args.lock.fl, &lock->fl);
316 memcpy(&call->a_args.lock.fh, &lock->fh, sizeof(call->a_args.lock.fh));
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700317 call->a_args.lock.caller = utsname()->nodename;
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500318 call->a_args.lock.oh.len = lock->oh.len;
319
320 /* set default data area */
321 call->a_args.lock.oh.data = call->a_owner;
322 call->a_args.lock.svid = lock->fl.fl_pid;
323
324 if (lock->oh.len > NLMCLNT_OHSIZE) {
325 void *data = kmalloc(lock->oh.len, GFP_KERNEL);
Trond Myklebust92737232006-03-20 13:44:45 -0500326 if (!data)
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500327 return 0;
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500328 call->a_args.lock.oh.data = (u8 *) data;
329 }
330
331 memcpy(call->a_args.lock.oh.data, lock->oh.data, lock->oh.len);
332 return 1;
333}
334
335static void nlmsvc_freegrantargs(struct nlm_rqst *call)
336{
Trond Myklebust92737232006-03-20 13:44:45 -0500337 if (call->a_args.lock.oh.data != call->a_owner)
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500338 kfree(call->a_args.lock.oh.data);
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500339
340 locks_release_private(&call->a_args.lock.fl);
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500341}
342
343/*
Marc Eshel2b36f412006-11-28 16:26:47 -0500344 * Deferred lock request handling for non-blocking lock
345 */
Al Viroca5c8cd2007-07-26 17:33:49 +0100346static __be32
Marc Eshel2b36f412006-11-28 16:26:47 -0500347nlmsvc_defer_lock_rqst(struct svc_rqst *rqstp, struct nlm_block *block)
348{
Al Viroca5c8cd2007-07-26 17:33:49 +0100349 __be32 status = nlm_lck_denied_nolocks;
Marc Eshel2b36f412006-11-28 16:26:47 -0500350
351 block->b_flags |= B_QUEUED;
352
353 nlmsvc_insert_block(block, NLM_TIMEOUT);
354
355 block->b_cache_req = &rqstp->rq_chandle;
356 if (rqstp->rq_chandle.defer) {
357 block->b_deferred_req =
358 rqstp->rq_chandle.defer(block->b_cache_req);
359 if (block->b_deferred_req != NULL)
360 status = nlm_drop_reply;
361 }
362 dprintk("lockd: nlmsvc_defer_lock_rqst block %p flags %d status %d\n",
Al Viroca5c8cd2007-07-26 17:33:49 +0100363 block, block->b_flags, ntohl(status));
Marc Eshel2b36f412006-11-28 16:26:47 -0500364
365 return status;
366}
367
368/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * Attempt to establish a lock, and if it can't be granted, block it
370 * if required.
371 */
Al Viro52921e02006-10-19 23:28:46 -0700372__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file,
Jeff Layton6cde4de2008-07-15 14:26:17 -0400374 struct nlm_host *host, struct nlm_lock *lock, int wait,
J. Bruce Fieldsb2b50282008-02-06 13:59:23 -0500375 struct nlm_cookie *cookie, int reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Marc Eshelf8120482006-12-05 23:48:10 -0500377 struct nlm_block *block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int error;
Al Viro52921e02006-10-19 23:28:46 -0700379 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 dprintk("lockd: nlmsvc_lock(%s/%ld, ty=%d, pi=%d, %Ld-%Ld, bl=%d)\n",
Josef Sipek225a7192006-12-08 02:37:18 -0800382 file->f_file->f_path.dentry->d_inode->i_sb->s_id,
383 file->f_file->f_path.dentry->d_inode->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 lock->fl.fl_type, lock->fl.fl_pid,
385 (long long)lock->fl.fl_start,
386 (long long)lock->fl.fl_end,
387 wait);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* Lock file against concurrent access */
Neil Brown89e63ef2006-10-04 02:16:06 -0700390 mutex_lock(&file->f_mutex);
Marc Eshelf8120482006-12-05 23:48:10 -0500391 /* Get existing block (in case client is busy-waiting)
392 * or create new block
393 */
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500394 block = nlmsvc_lookup_block(file, lock);
Trond Myklebust09c79382006-03-20 13:44:38 -0500395 if (block == NULL) {
J. Bruce Fields560de0e2008-07-15 15:05:45 -0400396 block = nlmsvc_create_block(rqstp, host, file, lock, cookie);
Marc Eshelf8120482006-12-05 23:48:10 -0500397 ret = nlm_lck_denied_nolocks;
398 if (block == NULL)
399 goto out;
Trond Myklebust92737232006-03-20 13:44:45 -0500400 lock = &block->b_call->a_args.lock;
Marc Eshelf8120482006-12-05 23:48:10 -0500401 } else
402 lock->fl.fl_flags &= ~FL_SLEEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Marc Eshel1a8322b2006-11-28 16:27:06 -0500404 if (block->b_flags & B_QUEUED) {
405 dprintk("lockd: nlmsvc_lock deferred block %p flags %d\n",
406 block, block->b_flags);
407 if (block->b_granted) {
408 nlmsvc_unlink_block(block);
409 ret = nlm_granted;
410 goto out;
411 }
412 if (block->b_flags & B_TIMED_OUT) {
413 nlmsvc_unlink_block(block);
414 ret = nlm_lck_denied;
415 goto out;
416 }
417 ret = nlm_drop_reply;
418 goto out;
419 }
420
J. Bruce Fieldsb2b50282008-02-06 13:59:23 -0500421 if (locks_in_grace() && !reclaim) {
422 ret = nlm_lck_denied_grace_period;
423 goto out;
424 }
J. Bruce Fieldsd22b1cf2008-02-06 15:05:12 -0500425 if (reclaim && !locks_in_grace()) {
426 ret = nlm_lck_denied_grace_period;
427 goto out;
428 }
J. Bruce Fieldsb2b50282008-02-06 13:59:23 -0500429
Marc Eshel1a8322b2006-11-28 16:27:06 -0500430 if (!wait)
431 lock->fl.fl_flags &= ~FL_SLEEP;
432 error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
Trond Myklebust09c79382006-03-20 13:44:38 -0500433 lock->fl.fl_flags &= ~FL_SLEEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Marc Eshel1a8322b2006-11-28 16:27:06 -0500435 dprintk("lockd: vfs_lock_file returned %d\n", error);
J. Bruce Fields6d7bbbb2008-07-15 14:38:32 -0400436 switch (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 case 0:
Andy Adamson15dadef2006-03-20 13:44:24 -0500438 ret = nlm_granted;
439 goto out;
Trond Myklebust09c79382006-03-20 13:44:38 -0500440 case -EAGAIN:
Miklos Szeredie33d1ea2009-02-09 12:30:43 -0500441 /*
442 * If this is a blocking request for an
443 * already pending lock request then we need
444 * to put it back on lockd's block list
445 */
446 if (wait)
447 break;
Marc Eshel1a8322b2006-11-28 16:27:06 -0500448 ret = nlm_lck_denied;
Miklos Szeredie33d1ea2009-02-09 12:30:43 -0500449 goto out;
Miklos Szeredibde74e42008-07-25 01:48:57 -0700450 case FILE_LOCK_DEFERRED:
Marc Eshel1a8322b2006-11-28 16:27:06 -0500451 if (wait)
452 break;
453 /* Filesystem lock operation is in progress
454 Add it to the queue waiting for callback */
455 ret = nlmsvc_defer_lock_rqst(rqstp, block);
456 goto out;
Trond Myklebust09c79382006-03-20 13:44:38 -0500457 case -EDEADLK:
Andy Adamson15dadef2006-03-20 13:44:24 -0500458 ret = nlm_deadlock;
459 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 default: /* includes ENOLCK */
Andy Adamson15dadef2006-03-20 13:44:24 -0500461 ret = nlm_lck_denied_nolocks;
462 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464
Trond Myklebust09c79382006-03-20 13:44:38 -0500465 ret = nlm_lck_blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* Append to list of blocked */
Marc Eshelf8120482006-12-05 23:48:10 -0500468 nlmsvc_insert_block(block, NLM_NEVER);
Andy Adamson15dadef2006-03-20 13:44:24 -0500469out:
Neil Brown89e63ef2006-10-04 02:16:06 -0700470 mutex_unlock(&file->f_mutex);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500471 nlmsvc_release_block(block);
Andy Adamson15dadef2006-03-20 13:44:24 -0500472 dprintk("lockd: nlmsvc_lock returned %u\n", ret);
473 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
476/*
477 * Test for presence of a conflicting lock.
478 */
Al Viro52921e02006-10-19 23:28:46 -0700479__be32
Marc Eshel85f3f1b32006-11-28 16:27:06 -0500480nlmsvc_testlock(struct svc_rqst *rqstp, struct nlm_file *file,
Jeff Layton8f920d52008-07-15 14:06:48 -0400481 struct nlm_host *host, struct nlm_lock *lock,
482 struct nlm_lock *conflock, struct nlm_cookie *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Marc Eshel5ea0d752006-11-28 16:27:06 -0500484 struct nlm_block *block = NULL;
485 int error;
486 __be32 ret;
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 dprintk("lockd: nlmsvc_testlock(%s/%ld, ty=%d, %Ld-%Ld)\n",
Josef Sipek225a7192006-12-08 02:37:18 -0800489 file->f_file->f_path.dentry->d_inode->i_sb->s_id,
490 file->f_file->f_path.dentry->d_inode->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 lock->fl.fl_type,
492 (long long)lock->fl.fl_start,
493 (long long)lock->fl.fl_end);
494
Marc Eshel5ea0d752006-11-28 16:27:06 -0500495 /* Get existing block (in case client is busy-waiting) */
496 block = nlmsvc_lookup_block(file, lock);
497
498 if (block == NULL) {
499 struct file_lock *conf = kzalloc(sizeof(*conf), GFP_KERNEL);
500
501 if (conf == NULL)
502 return nlm_granted;
Trond Myklebust255129d2007-09-25 15:55:03 -0400503 block = nlmsvc_create_block(rqstp, host, file, lock, cookie);
Marc Eshel5ea0d752006-11-28 16:27:06 -0500504 if (block == NULL) {
505 kfree(conf);
506 return nlm_granted;
507 }
508 block->b_fl = conf;
509 }
510 if (block->b_flags & B_QUEUED) {
511 dprintk("lockd: nlmsvc_testlock deferred block %p flags %d fl %p\n",
512 block, block->b_flags, block->b_fl);
513 if (block->b_flags & B_TIMED_OUT) {
514 nlmsvc_unlink_block(block);
Oleg Drokin29dbf542007-11-29 14:02:21 -0500515 ret = nlm_lck_denied;
516 goto out;
Marc Eshel5ea0d752006-11-28 16:27:06 -0500517 }
518 if (block->b_flags & B_GOT_CALLBACK) {
Oleg Drokin54ca95e2008-01-11 21:57:35 -0500519 nlmsvc_unlink_block(block);
Marc Eshel5ea0d752006-11-28 16:27:06 -0500520 if (block->b_fl != NULL
521 && block->b_fl->fl_type != F_UNLCK) {
522 lock->fl = *block->b_fl;
523 goto conf_lock;
Oleg Drokin29dbf542007-11-29 14:02:21 -0500524 } else {
Oleg Drokin29dbf542007-11-29 14:02:21 -0500525 ret = nlm_granted;
526 goto out;
Marc Eshel5ea0d752006-11-28 16:27:06 -0500527 }
528 }
Oleg Drokin29dbf542007-11-29 14:02:21 -0500529 ret = nlm_drop_reply;
530 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
J. Bruce Fieldsb2b50282008-02-06 13:59:23 -0500533 if (locks_in_grace()) {
534 ret = nlm_lck_denied_grace_period;
535 goto out;
536 }
Marc Eshel5ea0d752006-11-28 16:27:06 -0500537 error = vfs_test_lock(file->f_file, &lock->fl);
Miklos Szeredibde74e42008-07-25 01:48:57 -0700538 if (error == FILE_LOCK_DEFERRED) {
Oleg Drokin29dbf542007-11-29 14:02:21 -0500539 ret = nlmsvc_defer_lock_rqst(rqstp, block);
540 goto out;
541 }
Marc Eshel5ea0d752006-11-28 16:27:06 -0500542 if (error) {
543 ret = nlm_lck_denied_nolocks;
544 goto out;
545 }
546 if (lock->fl.fl_type == F_UNLCK) {
547 ret = nlm_granted;
548 goto out;
549 }
550
551conf_lock:
552 dprintk("lockd: conflicting lock(ty=%d, %Ld-%Ld)\n",
553 lock->fl.fl_type, (long long)lock->fl.fl_start,
554 (long long)lock->fl.fl_end);
555 conflock->caller = "somehost"; /* FIXME */
556 conflock->len = strlen(conflock->caller);
557 conflock->oh.len = 0; /* don't return OH info */
558 conflock->svid = lock->fl.fl_pid;
559 conflock->fl.fl_type = lock->fl.fl_type;
560 conflock->fl.fl_start = lock->fl.fl_start;
561 conflock->fl.fl_end = lock->fl.fl_end;
562 ret = nlm_lck_denied;
563out:
564 if (block)
565 nlmsvc_release_block(block);
566 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569/*
570 * Remove a lock.
571 * This implies a CANCEL call: We send a GRANT_MSG, the client replies
572 * with a GRANT_RES call which gets lost, and calls UNLOCK immediately
573 * afterwards. In this case the block will still be there, and hence
574 * must be removed.
575 */
Al Viro52921e02006-10-19 23:28:46 -0700576__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock)
578{
579 int error;
580
581 dprintk("lockd: nlmsvc_unlock(%s/%ld, pi=%d, %Ld-%Ld)\n",
Josef Sipek225a7192006-12-08 02:37:18 -0800582 file->f_file->f_path.dentry->d_inode->i_sb->s_id,
583 file->f_file->f_path.dentry->d_inode->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 lock->fl.fl_pid,
585 (long long)lock->fl.fl_start,
586 (long long)lock->fl.fl_end);
587
588 /* First, cancel any lock that might be there */
589 nlmsvc_cancel_blocked(file, lock);
590
591 lock->fl.fl_type = F_UNLCK;
Marc Eshel1a8322b2006-11-28 16:27:06 -0500592 error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 return (error < 0)? nlm_lck_denied_nolocks : nlm_granted;
595}
596
597/*
598 * Cancel a previously blocked request.
599 *
600 * A cancel request always overrides any grant that may currently
601 * be in progress.
602 * The calling procedure must check whether the file can be closed.
603 */
Al Viro52921e02006-10-19 23:28:46 -0700604__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605nlmsvc_cancel_blocked(struct nlm_file *file, struct nlm_lock *lock)
606{
607 struct nlm_block *block;
J. Bruce Fields64a318e2006-01-03 09:55:46 +0100608 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 dprintk("lockd: nlmsvc_cancel(%s/%ld, pi=%d, %Ld-%Ld)\n",
Josef Sipek225a7192006-12-08 02:37:18 -0800611 file->f_file->f_path.dentry->d_inode->i_sb->s_id,
612 file->f_file->f_path.dentry->d_inode->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 lock->fl.fl_pid,
614 (long long)lock->fl.fl_start,
615 (long long)lock->fl.fl_end);
616
J. Bruce Fieldsb2b50282008-02-06 13:59:23 -0500617 if (locks_in_grace())
618 return nlm_lck_denied_grace_period;
619
Neil Brown89e63ef2006-10-04 02:16:06 -0700620 mutex_lock(&file->f_mutex);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500621 block = nlmsvc_lookup_block(file, lock);
Neil Brown89e63ef2006-10-04 02:16:06 -0700622 mutex_unlock(&file->f_mutex);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500623 if (block != NULL) {
Marc Eshel1a8322b2006-11-28 16:27:06 -0500624 vfs_cancel_lock(block->b_file->f_file,
625 &block->b_call->a_args.lock.fl);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500626 status = nlmsvc_unlink_block(block);
627 nlmsvc_release_block(block);
628 }
J. Bruce Fields64a318e2006-01-03 09:55:46 +0100629 return status ? nlm_lck_denied : nlm_granted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632/*
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500633 * This is a callback from the filesystem for VFS file lock requests.
634 * It will be used if fl_grant is defined and the filesystem can not
635 * respond to the request immediately.
636 * For GETLK request it will copy the reply to the nlm_block.
637 * For SETLK or SETLKW request it will get the local posix lock.
638 * In all cases it will move the block to the head of nlm_blocked q where
639 * nlmsvc_retry_blocked() can send back a reply for SETLKW or revisit the
640 * deferred rpc for GETLK and SETLK.
641 */
642static void
643nlmsvc_update_deferred_block(struct nlm_block *block, struct file_lock *conf,
644 int result)
645{
646 block->b_flags |= B_GOT_CALLBACK;
647 if (result == 0)
648 block->b_granted = 1;
649 else
650 block->b_flags |= B_TIMED_OUT;
651 if (conf) {
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500652 if (block->b_fl)
J. Bruce Fields1a747ee2008-04-24 10:08:22 -0400653 __locks_copy_lock(block->b_fl, conf);
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500654 }
655}
656
657static int nlmsvc_grant_deferred(struct file_lock *fl, struct file_lock *conf,
658 int result)
659{
660 struct nlm_block *block;
661 int rc = -ENOENT;
662
Bryan Schumakerf904be92010-09-21 16:38:12 -0400663 spin_lock(&nlm_blocked_lock);
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500664 list_for_each_entry(block, &nlm_blocked, b_list) {
665 if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) {
666 dprintk("lockd: nlmsvc_notify_blocked block %p flags %d\n",
667 block, block->b_flags);
668 if (block->b_flags & B_QUEUED) {
669 if (block->b_flags & B_TIMED_OUT) {
670 rc = -ENOLCK;
671 break;
672 }
673 nlmsvc_update_deferred_block(block, conf, result);
674 } else if (result == 0)
675 block->b_granted = 1;
676
Bryan Schumakerf904be92010-09-21 16:38:12 -0400677 nlmsvc_insert_block_locked(block, 0);
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500678 svc_wake_up(block->b_daemon);
679 rc = 0;
680 break;
681 }
682 }
Bryan Schumakerf904be92010-09-21 16:38:12 -0400683 spin_unlock(&nlm_blocked_lock);
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500684 if (rc == -ENOENT)
685 printk(KERN_WARNING "lockd: grant for unknown block\n");
686 return rc;
687}
688
689/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 * Unblock a blocked lock request. This is a callback invoked from the
691 * VFS layer when a lock on which we blocked is removed.
692 *
693 * This function doesn't grant the blocked lock instantly, but rather moves
694 * the block to the head of nlm_blocked where it can be picked up by lockd.
695 */
696static void
697nlmsvc_notify_blocked(struct file_lock *fl)
698{
Olaf Kirch68a2d762006-10-04 02:15:57 -0700699 struct nlm_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 dprintk("lockd: VFS unblock notification for block %p\n", fl);
J. Bruce Fieldsa282a1f2010-10-26 18:25:30 -0400702 spin_lock(&nlm_blocked_lock);
Olaf Kirch68a2d762006-10-04 02:15:57 -0700703 list_for_each_entry(block, &nlm_blocked, b_list) {
Trond Myklebust92737232006-03-20 13:44:45 -0500704 if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) {
J. Bruce Fieldsa282a1f2010-10-26 18:25:30 -0400705 nlmsvc_insert_block_locked(block, 0);
706 spin_unlock(&nlm_blocked_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 svc_wake_up(block->b_daemon);
708 return;
709 }
710 }
J. Bruce Fieldsa282a1f2010-10-26 18:25:30 -0400711 spin_unlock(&nlm_blocked_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 printk(KERN_WARNING "lockd: notification for unknown block!\n");
713}
714
715static int nlmsvc_same_owner(struct file_lock *fl1, struct file_lock *fl2)
716{
717 return fl1->fl_owner == fl2->fl_owner && fl1->fl_pid == fl2->fl_pid;
718}
719
Alexey Dobriyan7b021962009-09-21 17:01:12 -0700720const struct lock_manager_operations nlmsvc_lock_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 .fl_compare_owner = nlmsvc_same_owner,
722 .fl_notify = nlmsvc_notify_blocked,
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500723 .fl_grant = nlmsvc_grant_deferred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724};
725
726/*
727 * Try to claim a lock that was previously blocked.
728 *
729 * Note that we use both the RPC_GRANTED_MSG call _and_ an async
730 * RPC thread when notifying the client. This seems like overkill...
731 * Here's why:
732 * - we don't want to use a synchronous RPC thread, otherwise
733 * we might find ourselves hanging on a dead portmapper.
734 * - Some lockd implementations (e.g. HP) don't react to
735 * RPC_GRANTED calls; they seem to insist on RPC_GRANTED_MSG calls.
736 */
737static void
738nlmsvc_grant_blocked(struct nlm_block *block)
739{
740 struct nlm_file *file = block->b_file;
Trond Myklebust92737232006-03-20 13:44:45 -0500741 struct nlm_lock *lock = &block->b_call->a_args.lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 int error;
743
744 dprintk("lockd: grant blocked lock %p\n", block);
745
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500746 kref_get(&block->b_count);
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* Unlink block request from list */
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500749 nlmsvc_unlink_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 /* If b_granted is true this means we've been here before.
752 * Just retry the grant callback, possibly refreshing the RPC
753 * binding */
754 if (block->b_granted) {
755 nlm_rebind_host(block->b_host);
756 goto callback;
757 }
758
759 /* Try the lock operation again */
Trond Myklebust09c79382006-03-20 13:44:38 -0500760 lock->fl.fl_flags |= FL_SLEEP;
Marc Eshel1a8322b2006-11-28 16:27:06 -0500761 error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
Trond Myklebust09c79382006-03-20 13:44:38 -0500762 lock->fl.fl_flags &= ~FL_SLEEP;
763
Andy Adamson5de0e502006-03-20 13:44:25 -0500764 switch (error) {
765 case 0:
766 break;
Miklos Szeredibde74e42008-07-25 01:48:57 -0700767 case FILE_LOCK_DEFERRED:
Marc Eshel1a8322b2006-11-28 16:27:06 -0500768 dprintk("lockd: lock still blocked error %d\n", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 nlmsvc_insert_block(block, NLM_NEVER);
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500770 nlmsvc_release_block(block);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500771 return;
Andy Adamson5de0e502006-03-20 13:44:25 -0500772 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 printk(KERN_WARNING "lockd: unexpected error %d in %s!\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700774 -error, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 nlmsvc_insert_block(block, 10 * HZ);
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500776 nlmsvc_release_block(block);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500777 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779
780callback:
781 /* Lock was granted by VFS. */
782 dprintk("lockd: GRANTing blocked lock.\n");
783 block->b_granted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Jeff Layton97065012008-02-06 11:34:12 -0500785 /* keep block on the list, but don't reattempt until the RPC
786 * completes or the submission fails
787 */
788 nlmsvc_insert_block(block, NLM_NEVER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Jeff Layton97065012008-02-06 11:34:12 -0500790 /* Call the client -- use a soft RPC task since nlmsvc_retry_blocked
791 * will queue up a new one if this one times out
792 */
793 error = nlm_async_call(block->b_call, NLMPROC_GRANTED_MSG,
794 &nlmsvc_grant_ops);
795
796 /* RPC submission failed, wait a bit and retry */
797 if (error < 0)
798 nlmsvc_insert_block(block, 10 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801/*
802 * This is the callback from the RPC layer when the NLM_GRANTED_MSG
803 * RPC call has succeeded or timed out.
804 * Like all RPC callbacks, it is invoked by the rpciod process, so it
805 * better not sleep. Therefore, we put the blocked lock on the nlm_blocked
806 * chain once more in order to have it removed by lockd itself (which can
807 * then sleep on the file semaphore without disrupting e.g. the nfs client).
808 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100809static void nlmsvc_grant_callback(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100811 struct nlm_rqst *call = data;
Trond Myklebust92737232006-03-20 13:44:45 -0500812 struct nlm_block *block = call->a_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 dprintk("lockd: GRANT_MSG RPC callback\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Bryan Schumakerf904be92010-09-21 16:38:12 -0400817 spin_lock(&nlm_blocked_lock);
Jeff Laytonc64e80d2008-02-06 11:34:13 -0500818 /* if the block is not on a list at this point then it has
819 * been invalidated. Don't try to requeue it.
820 *
821 * FIXME: it's possible that the block is removed from the list
822 * after this check but before the nlmsvc_insert_block. In that
823 * case it will be added back. Perhaps we need better locking
824 * for nlm_blocked?
825 */
826 if (list_empty(&block->b_list))
Trond Myklebusta86dc492008-06-11 13:37:09 -0400827 goto out;
Jeff Laytonc64e80d2008-02-06 11:34:13 -0500828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 /* Technically, we should down the file semaphore here. Since we
830 * move the block towards the head of the queue only, no harm
831 * can be done, though. */
832 if (task->tk_status < 0) {
833 /* RPC error: Re-insert for retransmission */
834 timeout = 10 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 } else {
836 /* Call was successful, now wait for client callback */
837 timeout = 60 * HZ;
838 }
Bryan Schumakerf904be92010-09-21 16:38:12 -0400839 nlmsvc_insert_block_locked(block, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 svc_wake_up(block->b_daemon);
Trond Myklebusta86dc492008-06-11 13:37:09 -0400841out:
Bryan Schumakerf904be92010-09-21 16:38:12 -0400842 spin_unlock(&nlm_blocked_lock);
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500843}
844
Bryan Schumakerf904be92010-09-21 16:38:12 -0400845/*
846 * FIXME: nlmsvc_release_block() grabs a mutex. This is not allowed for an
847 * .rpc_release rpc_call_op
848 */
Adrian Bunkec535ce2006-04-18 13:21:50 -0400849static void nlmsvc_grant_release(void *data)
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500850{
Trond Myklebust6041b792006-03-20 13:44:45 -0500851 struct nlm_rqst *call = data;
Trond Myklebust6041b792006-03-20 13:44:45 -0500852 nlmsvc_release_block(call->a_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100855static const struct rpc_call_ops nlmsvc_grant_ops = {
856 .rpc_call_done = nlmsvc_grant_callback,
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500857 .rpc_release = nlmsvc_grant_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100858};
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860/*
861 * We received a GRANT_RES callback. Try to find the corresponding
862 * block.
863 */
864void
Al Viroe8c5c042006-12-13 00:35:03 -0800865nlmsvc_grant_reply(struct nlm_cookie *cookie, __be32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 struct nlm_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Olaf Kirch39be4502006-10-04 02:16:03 -0700869 dprintk("grant_reply: looking for cookie %x, s=%d \n",
870 *(unsigned int *)(cookie->data), status);
871 if (!(block = nlmsvc_find_block(cookie)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
J. Bruce Fieldsf2321422006-01-03 09:55:42 +0100874 if (block) {
Al Viroe8c5c042006-12-13 00:35:03 -0800875 if (status == nlm_lck_denied_grace_period) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /* Try again in a couple of seconds */
877 nlmsvc_insert_block(block, 10 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 } else {
879 /* Lock is now held by client, or has been rejected.
880 * In both cases, the block should be removed. */
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500881 nlmsvc_unlink_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883 }
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500884 nlmsvc_release_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500887/* Helper function to handle retry of a deferred block.
888 * If it is a blocking lock, call grant_blocked.
889 * For a non-blocking lock or test lock, revisit the request.
890 */
891static void
892retry_deferred_block(struct nlm_block *block)
893{
894 if (!(block->b_flags & B_GOT_CALLBACK))
895 block->b_flags |= B_TIMED_OUT;
896 nlmsvc_insert_block(block, NLM_TIMEOUT);
897 dprintk("revisit block %p flags %d\n", block, block->b_flags);
898 if (block->b_deferred_req) {
899 block->b_deferred_req->revisit(block->b_deferred_req, 0);
900 block->b_deferred_req = NULL;
901 }
902}
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/*
905 * Retry all blocked locks that have been notified. This is where lockd
906 * picks up locks that can be granted, or grant notifications that must
907 * be retransmitted.
908 */
909unsigned long
910nlmsvc_retry_blocked(void)
911{
Olaf Kirch68a2d762006-10-04 02:15:57 -0700912 unsigned long timeout = MAX_SCHEDULE_TIMEOUT;
913 struct nlm_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Jeff Laytond751a7c2008-02-07 16:34:55 -0500915 while (!list_empty(&nlm_blocked) && !kthread_should_stop()) {
Olaf Kirch68a2d762006-10-04 02:15:57 -0700916 block = list_entry(nlm_blocked.next, struct nlm_block, b_list);
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (block->b_when == NLM_NEVER)
919 break;
J. Bruce Fields6d7bbbb2008-07-15 14:38:32 -0400920 if (time_after(block->b_when, jiffies)) {
Olaf Kirch68a2d762006-10-04 02:15:57 -0700921 timeout = block->b_when - jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 break;
Olaf Kirch68a2d762006-10-04 02:15:57 -0700923 }
924
J. Bruce Fieldsf3d43c72006-08-03 15:07:47 -0400925 dprintk("nlmsvc_retry_blocked(%p, when=%ld)\n",
926 block, block->b_when);
Marc Eshel0e4ac9d2006-11-28 16:26:51 -0500927 if (block->b_flags & B_QUEUED) {
928 dprintk("nlmsvc_retry_blocked delete block (%p, granted=%d, flags=%d)\n",
929 block, block->b_granted, block->b_flags);
930 retry_deferred_block(block);
931 } else
932 nlmsvc_grant_blocked(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
Olaf Kirch68a2d762006-10-04 02:15:57 -0700935 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}