blob: ce754efe284182c9a83120e93235fb24f327bfb0 [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
23#include <linux/config.h>
24#include <linux/types.h>
25#include <linux/errno.h>
26#include <linux/kernel.h>
27#include <linux/sched.h>
28#include <linux/smp_lock.h>
29#include <linux/sunrpc/clnt.h>
30#include <linux/sunrpc/svc.h>
31#include <linux/lockd/nlm.h>
32#include <linux/lockd/lockd.h>
33
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);
44static int 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 */
53static struct nlm_block * nlm_blocked;
54
55/*
56 * Insert a blocked lock into the global list
57 */
58static void
59nlmsvc_insert_block(struct nlm_block *block, unsigned long when)
60{
61 struct nlm_block **bp, *b;
62
63 dprintk("lockd: nlmsvc_insert_block(%p, %ld)\n", block, when);
Trond Myklebust6849c0c2006-03-20 13:44:39 -050064 kref_get(&block->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (block->b_queued)
66 nlmsvc_remove_block(block);
67 bp = &nlm_blocked;
68 if (when != NLM_NEVER) {
69 if ((when += jiffies) == NLM_NEVER)
70 when ++;
71 while ((b = *bp) && time_before_eq(b->b_when,when) && b->b_when != NLM_NEVER)
72 bp = &b->b_next;
73 } else
74 while ((b = *bp) != 0)
75 bp = &b->b_next;
76
77 block->b_queued = 1;
78 block->b_when = when;
79 block->b_next = b;
80 *bp = block;
81}
82
83/*
84 * Remove a block from the global list
85 */
86static int
87nlmsvc_remove_block(struct nlm_block *block)
88{
89 struct nlm_block **bp, *b;
90
91 if (!block->b_queued)
92 return 1;
93 for (bp = &nlm_blocked; (b = *bp) != 0; bp = &b->b_next) {
94 if (b == block) {
95 *bp = block->b_next;
96 block->b_queued = 0;
Trond Myklebust6849c0c2006-03-20 13:44:39 -050097 nlmsvc_release_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return 1;
99 }
100 }
101
102 return 0;
103}
104
105/*
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500106 * Find a block for a given lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
108static struct nlm_block *
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500109nlmsvc_lookup_block(struct nlm_file *file, struct nlm_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct nlm_block **head, *block;
112 struct file_lock *fl;
113
114 dprintk("lockd: nlmsvc_lookup_block f=%p pd=%d %Ld-%Ld ty=%d\n",
115 file, lock->fl.fl_pid,
116 (long long)lock->fl.fl_start,
117 (long long)lock->fl.fl_end, lock->fl.fl_type);
118 for (head = &nlm_blocked; (block = *head) != 0; head = &block->b_next) {
Trond Myklebust92737232006-03-20 13:44:45 -0500119 fl = &block->b_call->a_args.lock.fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 dprintk("lockd: check f=%p pd=%d %Ld-%Ld ty=%d cookie=%s\n",
121 block->b_file, fl->fl_pid,
122 (long long)fl->fl_start,
123 (long long)fl->fl_end, fl->fl_type,
Trond Myklebust92737232006-03-20 13:44:45 -0500124 nlmdbg_cookie2a(&block->b_call->a_args.cookie));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (block->b_file == file && nlm_compare_locks(fl, &lock->fl)) {
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500126 kref_get(&block->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return block;
128 }
129 }
130
131 return NULL;
132}
133
134static inline int nlm_cookie_match(struct nlm_cookie *a, struct nlm_cookie *b)
135{
136 if(a->len != b->len)
137 return 0;
138 if(memcmp(a->data,b->data,a->len))
139 return 0;
140 return 1;
141}
142
143/*
144 * Find a block with a given NLM cookie.
145 */
146static inline struct nlm_block *
147nlmsvc_find_block(struct nlm_cookie *cookie, struct sockaddr_in *sin)
148{
149 struct nlm_block *block;
150
151 for (block = nlm_blocked; block; block = block->b_next) {
152 dprintk("cookie: head of blocked queue %p, block %p\n",
153 nlm_blocked, block);
Trond Myklebust92737232006-03-20 13:44:45 -0500154 if (nlm_cookie_match(&block->b_call->a_args.cookie,cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 && nlm_cmp_addr(sin, &block->b_host->h_addr))
156 break;
157 }
158
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500159 if (block != NULL)
160 kref_get(&block->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return block;
162}
163
164/*
165 * Create a block and initialize it.
166 *
167 * Note: we explicitly set the cookie of the grant reply to that of
168 * the blocked lock request. The spec explicitly mentions that the client
169 * should _not_ rely on the callback containing the same cookie as the
170 * request, but (as I found out later) that's because some implementations
171 * do just this. Never mind the standards comittees, they support our
172 * logging industries.
173 */
174static inline struct nlm_block *
175nlmsvc_create_block(struct svc_rqst *rqstp, struct nlm_file *file,
176 struct nlm_lock *lock, struct nlm_cookie *cookie)
177{
178 struct nlm_block *block;
179 struct nlm_host *host;
Trond Myklebust92737232006-03-20 13:44:45 -0500180 struct nlm_rqst *call = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 /* Create host handle for callback */
Trond Myklebust686517f2006-03-20 13:44:39 -0500183 host = nlmsvc_lookup_host(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (host == NULL)
185 return NULL;
186
Trond Myklebust92737232006-03-20 13:44:45 -0500187 call = nlm_alloc_call(host);
188 if (call == NULL)
189 return NULL;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /* Allocate memory for block, and initialize arguments */
Trond Myklebust92737232006-03-20 13:44:45 -0500192 block = kzalloc(sizeof(*block), GFP_KERNEL);
193 if (block == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 goto failed;
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500195 kref_init(&block->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Trond Myklebust92737232006-03-20 13:44:45 -0500197 if (!nlmsvc_setgrantargs(call, lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto failed_free;
199
200 /* Set notifier function for VFS, and init args */
Trond Myklebust92737232006-03-20 13:44:45 -0500201 call->a_args.lock.fl.fl_flags |= FL_SLEEP;
202 call->a_args.lock.fl.fl_lmops = &nlmsvc_lock_operations;
203 call->a_args.cookie = *cookie; /* see above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 dprintk("lockd: created block %p...\n", block);
206
207 /* Create and initialize the block */
208 block->b_daemon = rqstp->rq_server;
209 block->b_host = host;
210 block->b_file = file;
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500211 file->f_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* Add to file's list of blocks */
214 block->b_fnext = file->f_blocks;
215 file->f_blocks = block;
216
217 /* Set up RPC arguments for callback */
Trond Myklebust92737232006-03-20 13:44:45 -0500218 block->b_call = call;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 call->a_flags = RPC_TASK_ASYNC;
Trond Myklebust92737232006-03-20 13:44:45 -0500220 call->a_block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 return block;
223
224failed_free:
225 kfree(block);
226failed:
Trond Myklebust92737232006-03-20 13:44:45 -0500227 nlm_release_call(call);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return NULL;
229}
230
231/*
232 * Delete a block. If the lock was cancelled or the grant callback
233 * failed, unlock is set to 1.
234 * It is the caller's responsibility to check whether the file
235 * can be closed hereafter.
236 */
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500237static int nlmsvc_unlink_block(struct nlm_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Trond Myklebust09c79382006-03-20 13:44:38 -0500239 int status;
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500240 dprintk("lockd: unlinking block %p...\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /* Remove block from list */
Trond Myklebust92737232006-03-20 13:44:45 -0500243 status = posix_unblock_lock(block->b_file->f_file, &block->b_call->a_args.lock.fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 nlmsvc_remove_block(block);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500245 return status;
246}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500248static void nlmsvc_free_block(struct kref *kref)
249{
250 struct nlm_block *block = container_of(kref, struct nlm_block, b_count);
251 struct nlm_file *file = block->b_file;
252 struct nlm_block **bp;
253
254 dprintk("lockd: freeing block %p...\n", block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500256 down(&file->f_sema);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* Remove block from file's list of blocks */
258 for (bp = &file->f_blocks; *bp; bp = &(*bp)->b_fnext) {
259 if (*bp == block) {
260 *bp = block->b_fnext;
261 break;
262 }
263 }
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500264 up(&file->f_sema);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Trond Myklebust92737232006-03-20 13:44:45 -0500266 nlmsvc_freegrantargs(block->b_call);
267 nlm_release_call(block->b_call);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500268 nlm_release_file(block->b_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 kfree(block);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500270}
271
272static void nlmsvc_release_block(struct nlm_block *block)
273{
274 if (block != NULL)
275 kref_put(&block->b_count, nlmsvc_free_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500278static void nlmsvc_act_mark(struct nlm_host *host, struct nlm_file *file)
279{
280 struct nlm_block *block;
281
282 down(&file->f_sema);
283 for (block = file->f_blocks; block != NULL; block = block->b_fnext)
284 block->b_host->h_inuse = 1;
285 up(&file->f_sema);
286}
287
288static void nlmsvc_act_unlock(struct nlm_host *host, struct nlm_file *file)
289{
290 struct nlm_block *block;
291
292restart:
293 down(&file->f_sema);
294 for (block = file->f_blocks; block != NULL; block = block->b_fnext) {
295 if (host != NULL && host != block->b_host)
296 continue;
297 if (!block->b_queued)
298 continue;
299 kref_get(&block->b_count);
300 up(&file->f_sema);
301 nlmsvc_unlink_block(block);
302 nlmsvc_release_block(block);
303 goto restart;
304 }
305 up(&file->f_sema);
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*
309 * Loop over all blocks and perform the action specified.
310 * (NLM_ACT_CHECK handled by nlmsvc_inspect_file).
311 */
312int
313nlmsvc_traverse_blocks(struct nlm_host *host, struct nlm_file *file, int action)
314{
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500315 if (action == NLM_ACT_MARK)
316 nlmsvc_act_mark(host, file);
317 else
318 nlmsvc_act_unlock(host, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return 0;
320}
321
322/*
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500323 * Initialize arguments for GRANTED call. The nlm_rqst structure
324 * has been cleared already.
325 */
326static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock)
327{
328 locks_copy_lock(&call->a_args.lock.fl, &lock->fl);
329 memcpy(&call->a_args.lock.fh, &lock->fh, sizeof(call->a_args.lock.fh));
330 call->a_args.lock.caller = system_utsname.nodename;
331 call->a_args.lock.oh.len = lock->oh.len;
332
333 /* set default data area */
334 call->a_args.lock.oh.data = call->a_owner;
335 call->a_args.lock.svid = lock->fl.fl_pid;
336
337 if (lock->oh.len > NLMCLNT_OHSIZE) {
338 void *data = kmalloc(lock->oh.len, GFP_KERNEL);
Trond Myklebust92737232006-03-20 13:44:45 -0500339 if (!data)
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500340 return 0;
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500341 call->a_args.lock.oh.data = (u8 *) data;
342 }
343
344 memcpy(call->a_args.lock.oh.data, lock->oh.data, lock->oh.len);
345 return 1;
346}
347
348static void nlmsvc_freegrantargs(struct nlm_rqst *call)
349{
Trond Myklebust92737232006-03-20 13:44:45 -0500350 if (call->a_args.lock.oh.data != call->a_owner)
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500351 kfree(call->a_args.lock.oh.data);
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500352}
353
354/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * Attempt to establish a lock, and if it can't be granted, block it
356 * if required.
357 */
358u32
359nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file,
360 struct nlm_lock *lock, int wait, struct nlm_cookie *cookie)
361{
Trond Myklebust09c79382006-03-20 13:44:38 -0500362 struct nlm_block *block, *newblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int error;
Andy Adamson15dadef2006-03-20 13:44:24 -0500364 u32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 dprintk("lockd: nlmsvc_lock(%s/%ld, ty=%d, pi=%d, %Ld-%Ld, bl=%d)\n",
367 file->f_file->f_dentry->d_inode->i_sb->s_id,
368 file->f_file->f_dentry->d_inode->i_ino,
369 lock->fl.fl_type, lock->fl.fl_pid,
370 (long long)lock->fl.fl_start,
371 (long long)lock->fl.fl_end,
372 wait);
373
374
Trond Myklebust09c79382006-03-20 13:44:38 -0500375 lock->fl.fl_flags &= ~FL_SLEEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376again:
377 /* Lock file against concurrent access */
378 down(&file->f_sema);
Trond Myklebust09c79382006-03-20 13:44:38 -0500379 /* Get existing block (in case client is busy-waiting) */
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500380 block = nlmsvc_lookup_block(file, lock);
Trond Myklebust09c79382006-03-20 13:44:38 -0500381 if (block == NULL) {
382 if (newblock != NULL)
Trond Myklebust92737232006-03-20 13:44:45 -0500383 lock = &newblock->b_call->a_args.lock;
Trond Myklebust09c79382006-03-20 13:44:38 -0500384 } else
Trond Myklebust92737232006-03-20 13:44:45 -0500385 lock = &block->b_call->a_args.lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Andy Adamsona85f1932006-03-20 13:44:25 -0500387 error = posix_lock_file(file->f_file, &lock->fl);
Trond Myklebust09c79382006-03-20 13:44:38 -0500388 lock->fl.fl_flags &= ~FL_SLEEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Andy Adamsona85f1932006-03-20 13:44:25 -0500390 dprintk("lockd: posix_lock_file returned %d\n", error);
391
Trond Myklebust09c79382006-03-20 13:44:38 -0500392 switch(error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 case 0:
Andy Adamson15dadef2006-03-20 13:44:24 -0500394 ret = nlm_granted;
395 goto out;
Trond Myklebust09c79382006-03-20 13:44:38 -0500396 case -EAGAIN:
397 break;
398 case -EDEADLK:
Andy Adamson15dadef2006-03-20 13:44:24 -0500399 ret = nlm_deadlock;
400 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 default: /* includes ENOLCK */
Andy Adamson15dadef2006-03-20 13:44:24 -0500402 ret = nlm_lck_denied_nolocks;
403 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
Trond Myklebust09c79382006-03-20 13:44:38 -0500406 ret = nlm_lck_denied;
407 if (!wait)
408 goto out;
409
410 ret = nlm_lck_blocked;
411 if (block != NULL)
412 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /* If we don't have a block, create and initialize it. Then
415 * retry because we may have slept in kmalloc. */
416 /* We have to release f_sema as nlmsvc_create_block may try to
417 * to claim it while doing host garbage collection */
Trond Myklebust09c79382006-03-20 13:44:38 -0500418 if (newblock == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 up(&file->f_sema);
420 dprintk("lockd: blocking on this lock (allocating).\n");
Trond Myklebust09c79382006-03-20 13:44:38 -0500421 if (!(newblock = nlmsvc_create_block(rqstp, file, lock, cookie)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return nlm_lck_denied_nolocks;
423 goto again;
424 }
425
426 /* Append to list of blocked */
Trond Myklebust09c79382006-03-20 13:44:38 -0500427 nlmsvc_insert_block(newblock, NLM_NEVER);
Andy Adamson15dadef2006-03-20 13:44:24 -0500428out:
Trond Myklebust09c79382006-03-20 13:44:38 -0500429 up(&file->f_sema);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500430 nlmsvc_release_block(newblock);
431 nlmsvc_release_block(block);
Andy Adamson15dadef2006-03-20 13:44:24 -0500432 dprintk("lockd: nlmsvc_lock returned %u\n", ret);
433 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
436/*
437 * Test for presence of a conflicting lock.
438 */
439u32
440nlmsvc_testlock(struct nlm_file *file, struct nlm_lock *lock,
441 struct nlm_lock *conflock)
442{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 dprintk("lockd: nlmsvc_testlock(%s/%ld, ty=%d, %Ld-%Ld)\n",
444 file->f_file->f_dentry->d_inode->i_sb->s_id,
445 file->f_file->f_dentry->d_inode->i_ino,
446 lock->fl.fl_type,
447 (long long)lock->fl.fl_start,
448 (long long)lock->fl.fl_end);
449
Andy Adamson8dc7c312006-03-20 13:44:26 -0500450 if (posix_test_lock(file->f_file, &lock->fl, &conflock->fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 dprintk("lockd: conflicting lock(ty=%d, %Ld-%Ld)\n",
Andy Adamson8dc7c312006-03-20 13:44:26 -0500452 conflock->fl.fl_type,
453 (long long)conflock->fl.fl_start,
454 (long long)conflock->fl.fl_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 conflock->caller = "somehost"; /* FIXME */
456 conflock->oh.len = 0; /* don't return OH info */
Andy Adamson8dc7c312006-03-20 13:44:26 -0500457 conflock->svid = conflock->fl.fl_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return nlm_lck_denied;
459 }
460
461 return nlm_granted;
462}
463
464/*
465 * Remove a lock.
466 * This implies a CANCEL call: We send a GRANT_MSG, the client replies
467 * with a GRANT_RES call which gets lost, and calls UNLOCK immediately
468 * afterwards. In this case the block will still be there, and hence
469 * must be removed.
470 */
471u32
472nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock)
473{
474 int error;
475
476 dprintk("lockd: nlmsvc_unlock(%s/%ld, pi=%d, %Ld-%Ld)\n",
477 file->f_file->f_dentry->d_inode->i_sb->s_id,
478 file->f_file->f_dentry->d_inode->i_ino,
479 lock->fl.fl_pid,
480 (long long)lock->fl.fl_start,
481 (long long)lock->fl.fl_end);
482
483 /* First, cancel any lock that might be there */
484 nlmsvc_cancel_blocked(file, lock);
485
486 lock->fl.fl_type = F_UNLCK;
487 error = posix_lock_file(file->f_file, &lock->fl);
488
489 return (error < 0)? nlm_lck_denied_nolocks : nlm_granted;
490}
491
492/*
493 * Cancel a previously blocked request.
494 *
495 * A cancel request always overrides any grant that may currently
496 * be in progress.
497 * The calling procedure must check whether the file can be closed.
498 */
499u32
500nlmsvc_cancel_blocked(struct nlm_file *file, struct nlm_lock *lock)
501{
502 struct nlm_block *block;
J. Bruce Fields64a318e2006-01-03 09:55:46 +0100503 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 dprintk("lockd: nlmsvc_cancel(%s/%ld, pi=%d, %Ld-%Ld)\n",
506 file->f_file->f_dentry->d_inode->i_sb->s_id,
507 file->f_file->f_dentry->d_inode->i_ino,
508 lock->fl.fl_pid,
509 (long long)lock->fl.fl_start,
510 (long long)lock->fl.fl_end);
511
512 down(&file->f_sema);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500513 block = nlmsvc_lookup_block(file, lock);
514 up(&file->f_sema);
515 if (block != NULL) {
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500516 status = nlmsvc_unlink_block(block);
517 nlmsvc_release_block(block);
518 }
J. Bruce Fields64a318e2006-01-03 09:55:46 +0100519 return status ? nlm_lck_denied : nlm_granted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522/*
523 * Unblock a blocked lock request. This is a callback invoked from the
524 * VFS layer when a lock on which we blocked is removed.
525 *
526 * This function doesn't grant the blocked lock instantly, but rather moves
527 * the block to the head of nlm_blocked where it can be picked up by lockd.
528 */
529static void
530nlmsvc_notify_blocked(struct file_lock *fl)
531{
532 struct nlm_block **bp, *block;
533
534 dprintk("lockd: VFS unblock notification for block %p\n", fl);
535 for (bp = &nlm_blocked; (block = *bp) != 0; bp = &block->b_next) {
Trond Myklebust92737232006-03-20 13:44:45 -0500536 if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 nlmsvc_insert_block(block, 0);
538 svc_wake_up(block->b_daemon);
539 return;
540 }
541 }
542
543 printk(KERN_WARNING "lockd: notification for unknown block!\n");
544}
545
546static int nlmsvc_same_owner(struct file_lock *fl1, struct file_lock *fl2)
547{
548 return fl1->fl_owner == fl2->fl_owner && fl1->fl_pid == fl2->fl_pid;
549}
550
551struct lock_manager_operations nlmsvc_lock_operations = {
552 .fl_compare_owner = nlmsvc_same_owner,
553 .fl_notify = nlmsvc_notify_blocked,
554};
555
556/*
557 * Try to claim a lock that was previously blocked.
558 *
559 * Note that we use both the RPC_GRANTED_MSG call _and_ an async
560 * RPC thread when notifying the client. This seems like overkill...
561 * Here's why:
562 * - we don't want to use a synchronous RPC thread, otherwise
563 * we might find ourselves hanging on a dead portmapper.
564 * - Some lockd implementations (e.g. HP) don't react to
565 * RPC_GRANTED calls; they seem to insist on RPC_GRANTED_MSG calls.
566 */
567static void
568nlmsvc_grant_blocked(struct nlm_block *block)
569{
570 struct nlm_file *file = block->b_file;
Trond Myklebust92737232006-03-20 13:44:45 -0500571 struct nlm_lock *lock = &block->b_call->a_args.lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 int error;
573
574 dprintk("lockd: grant blocked lock %p\n", block);
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* Unlink block request from list */
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500577 nlmsvc_unlink_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* If b_granted is true this means we've been here before.
580 * Just retry the grant callback, possibly refreshing the RPC
581 * binding */
582 if (block->b_granted) {
583 nlm_rebind_host(block->b_host);
584 goto callback;
585 }
586
587 /* Try the lock operation again */
Trond Myklebust09c79382006-03-20 13:44:38 -0500588 lock->fl.fl_flags |= FL_SLEEP;
Andy Adamson5de0e502006-03-20 13:44:25 -0500589 error = posix_lock_file(file->f_file, &lock->fl);
Trond Myklebust09c79382006-03-20 13:44:38 -0500590 lock->fl.fl_flags &= ~FL_SLEEP;
591
Andy Adamson5de0e502006-03-20 13:44:25 -0500592 switch (error) {
593 case 0:
594 break;
595 case -EAGAIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 dprintk("lockd: lock still blocked\n");
597 nlmsvc_insert_block(block, NLM_NEVER);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500598 return;
Andy Adamson5de0e502006-03-20 13:44:25 -0500599 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 printk(KERN_WARNING "lockd: unexpected error %d in %s!\n",
601 -error, __FUNCTION__);
602 nlmsvc_insert_block(block, 10 * HZ);
Trond Myklebustd9f6eb72006-03-20 13:44:47 -0500603 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
606callback:
607 /* Lock was granted by VFS. */
608 dprintk("lockd: GRANTing blocked lock.\n");
609 block->b_granted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 /* Schedule next grant callback in 30 seconds */
612 nlmsvc_insert_block(block, 30 * HZ);
613
614 /* Call the client */
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500615 kref_get(&block->b_count);
Trond Myklebust92737232006-03-20 13:44:45 -0500616 if (nlm_async_call(block->b_call, NLMPROC_GRANTED_MSG,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100617 &nlmsvc_grant_ops) < 0)
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500618 nlmsvc_release_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
621/*
622 * This is the callback from the RPC layer when the NLM_GRANTED_MSG
623 * RPC call has succeeded or timed out.
624 * Like all RPC callbacks, it is invoked by the rpciod process, so it
625 * better not sleep. Therefore, we put the blocked lock on the nlm_blocked
626 * chain once more in order to have it removed by lockd itself (which can
627 * then sleep on the file semaphore without disrupting e.g. the nfs client).
628 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100629static void nlmsvc_grant_callback(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100631 struct nlm_rqst *call = data;
Trond Myklebust92737232006-03-20 13:44:45 -0500632 struct nlm_block *block = call->a_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 dprintk("lockd: GRANT_MSG RPC callback\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 /* Technically, we should down the file semaphore here. Since we
638 * move the block towards the head of the queue only, no harm
639 * can be done, though. */
640 if (task->tk_status < 0) {
641 /* RPC error: Re-insert for retransmission */
642 timeout = 10 * HZ;
643 } else if (block->b_done) {
644 /* Block already removed, kill it for real */
645 timeout = 0;
646 } else {
647 /* Call was successful, now wait for client callback */
648 timeout = 60 * HZ;
649 }
650 nlmsvc_insert_block(block, timeout);
651 svc_wake_up(block->b_daemon);
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500652}
653
654void nlmsvc_grant_release(void *data)
655{
Trond Myklebust6041b792006-03-20 13:44:45 -0500656 struct nlm_rqst *call = data;
657
658 nlmsvc_release_block(call->a_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100661static const struct rpc_call_ops nlmsvc_grant_ops = {
662 .rpc_call_done = nlmsvc_grant_callback,
Trond Myklebust5e1abf82006-03-20 13:44:39 -0500663 .rpc_release = nlmsvc_grant_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100664};
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666/*
667 * We received a GRANT_RES callback. Try to find the corresponding
668 * block.
669 */
670void
671nlmsvc_grant_reply(struct svc_rqst *rqstp, struct nlm_cookie *cookie, u32 status)
672{
673 struct nlm_block *block;
674 struct nlm_file *file;
675
676 dprintk("grant_reply: looking for cookie %x, host (%08x), s=%d \n",
677 *(unsigned int *)(cookie->data),
678 ntohl(rqstp->rq_addr.sin_addr.s_addr), status);
679 if (!(block = nlmsvc_find_block(cookie, &rqstp->rq_addr)))
680 return;
681 file = block->b_file;
682
J. Bruce Fieldsf2321422006-01-03 09:55:42 +0100683 if (block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (status == NLM_LCK_DENIED_GRACE_PERIOD) {
685 /* Try again in a couple of seconds */
686 nlmsvc_insert_block(block, 10 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 } else {
688 /* Lock is now held by client, or has been rejected.
689 * In both cases, the block should be removed. */
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500690 nlmsvc_unlink_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692 }
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500693 nlmsvc_release_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
696/*
697 * Retry all blocked locks that have been notified. This is where lockd
698 * picks up locks that can be granted, or grant notifications that must
699 * be retransmitted.
700 */
701unsigned long
702nlmsvc_retry_blocked(void)
703{
704 struct nlm_block *block;
705
706 dprintk("nlmsvc_retry_blocked(%p, when=%ld)\n",
707 nlm_blocked,
708 nlm_blocked? nlm_blocked->b_when : 0);
709 while ((block = nlm_blocked) != 0) {
710 if (block->b_when == NLM_NEVER)
711 break;
712 if (time_after(block->b_when,jiffies))
713 break;
714 dprintk("nlmsvc_retry_blocked(%p, when=%ld, done=%d)\n",
715 block, block->b_when, block->b_done);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500716 kref_get(&block->b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (block->b_done)
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500718 nlmsvc_unlink_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 else
720 nlmsvc_grant_blocked(block);
Trond Myklebust6849c0c2006-03-20 13:44:39 -0500721 nlmsvc_release_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
724 if ((block = nlm_blocked) && block->b_when != NLM_NEVER)
725 return (block->b_when - jiffies);
726
727 return MAX_SCHEDULE_TIMEOUT;
728}