xref: /linux/fs/lockd/svclock.c (revision 2d6ffcca623a9a16df6cdfbe8250b7a5904a5f5e)
1 /*
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/types.h>
24 #include <linux/errno.h>
25 #include <linux/kernel.h>
26 #include <linux/sched.h>
27 #include <linux/smp_lock.h>
28 #include <linux/sunrpc/clnt.h>
29 #include <linux/sunrpc/svc.h>
30 #include <linux/lockd/nlm.h>
31 #include <linux/lockd/lockd.h>
32 #include <linux/kthread.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 
42 static void nlmsvc_release_block(struct nlm_block *block);
43 static void	nlmsvc_insert_block(struct nlm_block *block, unsigned long);
44 static void	nlmsvc_remove_block(struct nlm_block *block);
45 
46 static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock);
47 static void nlmsvc_freegrantargs(struct nlm_rqst *call);
48 static const struct rpc_call_ops nlmsvc_grant_ops;
49 
50 /*
51  * The list of blocked locks to retry
52  */
53 static LIST_HEAD(nlm_blocked);
54 
55 /*
56  * Insert a blocked lock into the global list
57  */
58 static void
59 nlmsvc_insert_block(struct nlm_block *block, unsigned long when)
60 {
61 	struct nlm_block *b;
62 	struct list_head *pos;
63 
64 	dprintk("lockd: nlmsvc_insert_block(%p, %ld)\n", block, when);
65 	if (list_empty(&block->b_list)) {
66 		kref_get(&block->b_count);
67 	} else {
68 		list_del_init(&block->b_list);
69 	}
70 
71 	pos = &nlm_blocked;
72 	if (when != NLM_NEVER) {
73 		if ((when += jiffies) == NLM_NEVER)
74 			when ++;
75 		list_for_each(pos, &nlm_blocked) {
76 			b = list_entry(pos, struct nlm_block, b_list);
77 			if (time_after(b->b_when,when) || b->b_when == NLM_NEVER)
78 				break;
79 		}
80 		/* On normal exit from the loop, pos == &nlm_blocked,
81 		 * so we will be adding to the end of the list - good
82 		 */
83 	}
84 
85 	list_add_tail(&block->b_list, pos);
86 	block->b_when = when;
87 }
88 
89 /*
90  * Remove a block from the global list
91  */
92 static inline void
93 nlmsvc_remove_block(struct nlm_block *block)
94 {
95 	if (!list_empty(&block->b_list)) {
96 		list_del_init(&block->b_list);
97 		nlmsvc_release_block(block);
98 	}
99 }
100 
101 /*
102  * Find a block for a given lock
103  */
104 static struct nlm_block *
105 nlmsvc_lookup_block(struct nlm_file *file, struct nlm_lock *lock)
106 {
107 	struct nlm_block	*block;
108 	struct file_lock	*fl;
109 
110 	dprintk("lockd: nlmsvc_lookup_block f=%p pd=%d %Ld-%Ld ty=%d\n",
111 				file, lock->fl.fl_pid,
112 				(long long)lock->fl.fl_start,
113 				(long long)lock->fl.fl_end, lock->fl.fl_type);
114 	list_for_each_entry(block, &nlm_blocked, b_list) {
115 		fl = &block->b_call->a_args.lock.fl;
116 		dprintk("lockd: check f=%p pd=%d %Ld-%Ld ty=%d cookie=%s\n",
117 				block->b_file, fl->fl_pid,
118 				(long long)fl->fl_start,
119 				(long long)fl->fl_end, fl->fl_type,
120 				nlmdbg_cookie2a(&block->b_call->a_args.cookie));
121 		if (block->b_file == file && nlm_compare_locks(fl, &lock->fl)) {
122 			kref_get(&block->b_count);
123 			return block;
124 		}
125 	}
126 
127 	return NULL;
128 }
129 
130 static inline int nlm_cookie_match(struct nlm_cookie *a, struct nlm_cookie *b)
131 {
132 	if (a->len != b->len)
133 		return 0;
134 	if (memcmp(a->data, b->data, a->len))
135 		return 0;
136 	return 1;
137 }
138 
139 /*
140  * Find a block with a given NLM cookie.
141  */
142 static inline struct nlm_block *
143 nlmsvc_find_block(struct nlm_cookie *cookie)
144 {
145 	struct nlm_block *block;
146 
147 	list_for_each_entry(block, &nlm_blocked, b_list) {
148 		if (nlm_cookie_match(&block->b_call->a_args.cookie,cookie))
149 			goto found;
150 	}
151 
152 	return NULL;
153 
154 found:
155 	dprintk("nlmsvc_find_block(%s): block=%p\n", nlmdbg_cookie2a(cookie), block);
156 	kref_get(&block->b_count);
157 	return block;
158 }
159 
160 /*
161  * Create a block and initialize it.
162  *
163  * Note: we explicitly set the cookie of the grant reply to that of
164  * the blocked lock request. The spec explicitly mentions that the client
165  * should _not_ rely on the callback containing the same cookie as the
166  * request, but (as I found out later) that's because some implementations
167  * do just this. Never mind the standards comittees, they support our
168  * logging industries.
169  *
170  * 10 years later: I hope we can safely ignore these old and broken
171  * clients by now. Let's fix this so we can uniquely identify an incoming
172  * GRANTED_RES message by cookie, without having to rely on the client's IP
173  * address. --okir
174  */
175 static struct nlm_block *
176 nlmsvc_create_block(struct svc_rqst *rqstp, struct nlm_host *host,
177 		    struct nlm_file *file, struct nlm_lock *lock,
178 		    struct nlm_cookie *cookie)
179 {
180 	struct nlm_block	*block;
181 	struct nlm_rqst		*call = NULL;
182 
183 	nlm_get_host(host);
184 	call = nlm_alloc_call(host);
185 	if (call == NULL)
186 		return NULL;
187 
188 	/* Allocate memory for block, and initialize arguments */
189 	block = kzalloc(sizeof(*block), GFP_KERNEL);
190 	if (block == NULL)
191 		goto failed;
192 	kref_init(&block->b_count);
193 	INIT_LIST_HEAD(&block->b_list);
194 	INIT_LIST_HEAD(&block->b_flist);
195 
196 	if (!nlmsvc_setgrantargs(call, lock))
197 		goto failed_free;
198 
199 	/* Set notifier function for VFS, and init args */
200 	call->a_args.lock.fl.fl_flags |= FL_SLEEP;
201 	call->a_args.lock.fl.fl_lmops = &nlmsvc_lock_operations;
202 	nlmclnt_next_cookie(&call->a_args.cookie);
203 
204 	dprintk("lockd: created block %p...\n", block);
205 
206 	/* Create and initialize the block */
207 	block->b_daemon = rqstp->rq_server;
208 	block->b_host   = host;
209 	block->b_file   = file;
210 	block->b_fl = NULL;
211 	file->f_count++;
212 
213 	/* Add to file's list of blocks */
214 	list_add(&block->b_flist, &file->f_blocks);
215 
216 	/* Set up RPC arguments for callback */
217 	block->b_call = call;
218 	call->a_flags   = RPC_TASK_ASYNC;
219 	call->a_block = block;
220 
221 	return block;
222 
223 failed_free:
224 	kfree(block);
225 failed:
226 	nlm_release_call(call);
227 	return NULL;
228 }
229 
230 /*
231  * Delete a block.
232  * It is the caller's responsibility to check whether the file
233  * can be closed hereafter.
234  */
235 static int nlmsvc_unlink_block(struct nlm_block *block)
236 {
237 	int status;
238 	dprintk("lockd: unlinking block %p...\n", block);
239 
240 	/* Remove block from list */
241 	status = posix_unblock_lock(block->b_file->f_file, &block->b_call->a_args.lock.fl);
242 	nlmsvc_remove_block(block);
243 	return status;
244 }
245 
246 static void nlmsvc_free_block(struct kref *kref)
247 {
248 	struct nlm_block *block = container_of(kref, struct nlm_block, b_count);
249 	struct nlm_file		*file = block->b_file;
250 
251 	dprintk("lockd: freeing block %p...\n", block);
252 
253 	/* Remove block from file's list of blocks */
254 	mutex_lock(&file->f_mutex);
255 	list_del_init(&block->b_flist);
256 	mutex_unlock(&file->f_mutex);
257 
258 	nlmsvc_freegrantargs(block->b_call);
259 	nlm_release_call(block->b_call);
260 	nlm_release_file(block->b_file);
261 	kfree(block->b_fl);
262 	kfree(block);
263 }
264 
265 static void nlmsvc_release_block(struct nlm_block *block)
266 {
267 	if (block != NULL)
268 		kref_put(&block->b_count, nlmsvc_free_block);
269 }
270 
271 /*
272  * Loop over all blocks and delete blocks held by
273  * a matching host.
274  */
275 void nlmsvc_traverse_blocks(struct nlm_host *host,
276 			struct nlm_file *file,
277 			nlm_host_match_fn_t match)
278 {
279 	struct nlm_block *block, *next;
280 
281 restart:
282 	mutex_lock(&file->f_mutex);
283 	list_for_each_entry_safe(block, next, &file->f_blocks, b_flist) {
284 		if (!match(block->b_host, host))
285 			continue;
286 		/* Do not destroy blocks that are not on
287 		 * the global retry list - why? */
288 		if (list_empty(&block->b_list))
289 			continue;
290 		kref_get(&block->b_count);
291 		mutex_unlock(&file->f_mutex);
292 		nlmsvc_unlink_block(block);
293 		nlmsvc_release_block(block);
294 		goto restart;
295 	}
296 	mutex_unlock(&file->f_mutex);
297 }
298 
299 /*
300  * Initialize arguments for GRANTED call. The nlm_rqst structure
301  * has been cleared already.
302  */
303 static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock)
304 {
305 	locks_copy_lock(&call->a_args.lock.fl, &lock->fl);
306 	memcpy(&call->a_args.lock.fh, &lock->fh, sizeof(call->a_args.lock.fh));
307 	call->a_args.lock.caller = utsname()->nodename;
308 	call->a_args.lock.oh.len = lock->oh.len;
309 
310 	/* set default data area */
311 	call->a_args.lock.oh.data = call->a_owner;
312 	call->a_args.lock.svid = lock->fl.fl_pid;
313 
314 	if (lock->oh.len > NLMCLNT_OHSIZE) {
315 		void *data = kmalloc(lock->oh.len, GFP_KERNEL);
316 		if (!data)
317 			return 0;
318 		call->a_args.lock.oh.data = (u8 *) data;
319 	}
320 
321 	memcpy(call->a_args.lock.oh.data, lock->oh.data, lock->oh.len);
322 	return 1;
323 }
324 
325 static void nlmsvc_freegrantargs(struct nlm_rqst *call)
326 {
327 	if (call->a_args.lock.oh.data != call->a_owner)
328 		kfree(call->a_args.lock.oh.data);
329 }
330 
331 /*
332  * Deferred lock request handling for non-blocking lock
333  */
334 static __be32
335 nlmsvc_defer_lock_rqst(struct svc_rqst *rqstp, struct nlm_block *block)
336 {
337 	__be32 status = nlm_lck_denied_nolocks;
338 
339 	block->b_flags |= B_QUEUED;
340 
341 	nlmsvc_insert_block(block, NLM_TIMEOUT);
342 
343 	block->b_cache_req = &rqstp->rq_chandle;
344 	if (rqstp->rq_chandle.defer) {
345 		block->b_deferred_req =
346 			rqstp->rq_chandle.defer(block->b_cache_req);
347 		if (block->b_deferred_req != NULL)
348 			status = nlm_drop_reply;
349 	}
350 	dprintk("lockd: nlmsvc_defer_lock_rqst block %p flags %d status %d\n",
351 		block, block->b_flags, ntohl(status));
352 
353 	return status;
354 }
355 
356 /*
357  * Attempt to establish a lock, and if it can't be granted, block it
358  * if required.
359  */
360 __be32
361 nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file,
362 	    struct nlm_host *host, struct nlm_lock *lock, int wait,
363 	    struct nlm_cookie *cookie)
364 {
365 	struct nlm_block	*block = NULL;
366 	int			error;
367 	__be32			ret;
368 
369 	dprintk("lockd: nlmsvc_lock(%s/%ld, ty=%d, pi=%d, %Ld-%Ld, bl=%d)\n",
370 				file->f_file->f_path.dentry->d_inode->i_sb->s_id,
371 				file->f_file->f_path.dentry->d_inode->i_ino,
372 				lock->fl.fl_type, lock->fl.fl_pid,
373 				(long long)lock->fl.fl_start,
374 				(long long)lock->fl.fl_end,
375 				wait);
376 
377 	/* Lock file against concurrent access */
378 	mutex_lock(&file->f_mutex);
379 	/* Get existing block (in case client is busy-waiting)
380 	 * or create new block
381 	 */
382 	block = nlmsvc_lookup_block(file, lock);
383 	if (block == NULL) {
384 		block = nlmsvc_create_block(rqstp, host, file, lock, cookie);
385 		ret = nlm_lck_denied_nolocks;
386 		if (block == NULL)
387 			goto out;
388 		lock = &block->b_call->a_args.lock;
389 	} else
390 		lock->fl.fl_flags &= ~FL_SLEEP;
391 
392 	if (block->b_flags & B_QUEUED) {
393 		dprintk("lockd: nlmsvc_lock deferred block %p flags %d\n",
394 							block, block->b_flags);
395 		if (block->b_granted) {
396 			nlmsvc_unlink_block(block);
397 			ret = nlm_granted;
398 			goto out;
399 		}
400 		if (block->b_flags & B_TIMED_OUT) {
401 			nlmsvc_unlink_block(block);
402 			ret = nlm_lck_denied;
403 			goto out;
404 		}
405 		ret = nlm_drop_reply;
406 		goto out;
407 	}
408 
409 	if (!wait)
410 		lock->fl.fl_flags &= ~FL_SLEEP;
411 	error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
412 	lock->fl.fl_flags &= ~FL_SLEEP;
413 
414 	dprintk("lockd: vfs_lock_file returned %d\n", error);
415 	switch (error) {
416 		case 0:
417 			ret = nlm_granted;
418 			goto out;
419 		case -EAGAIN:
420 			ret = nlm_lck_denied;
421 			break;
422 		case -EINPROGRESS:
423 			if (wait)
424 				break;
425 			/* Filesystem lock operation is in progress
426 			   Add it to the queue waiting for callback */
427 			ret = nlmsvc_defer_lock_rqst(rqstp, block);
428 			goto out;
429 		case -EDEADLK:
430 			ret = nlm_deadlock;
431 			goto out;
432 		default:			/* includes ENOLCK */
433 			ret = nlm_lck_denied_nolocks;
434 			goto out;
435 	}
436 
437 	ret = nlm_lck_denied;
438 	if (!wait)
439 		goto out;
440 
441 	ret = nlm_lck_blocked;
442 
443 	/* Append to list of blocked */
444 	nlmsvc_insert_block(block, NLM_NEVER);
445 out:
446 	mutex_unlock(&file->f_mutex);
447 	nlmsvc_release_block(block);
448 	dprintk("lockd: nlmsvc_lock returned %u\n", ret);
449 	return ret;
450 }
451 
452 /*
453  * Test for presence of a conflicting lock.
454  */
455 __be32
456 nlmsvc_testlock(struct svc_rqst *rqstp, struct nlm_file *file,
457 		struct nlm_host *host, struct nlm_lock *lock,
458 		struct nlm_lock *conflock, struct nlm_cookie *cookie)
459 {
460 	struct nlm_block 	*block = NULL;
461 	int			error;
462 	__be32			ret;
463 
464 	dprintk("lockd: nlmsvc_testlock(%s/%ld, ty=%d, %Ld-%Ld)\n",
465 				file->f_file->f_path.dentry->d_inode->i_sb->s_id,
466 				file->f_file->f_path.dentry->d_inode->i_ino,
467 				lock->fl.fl_type,
468 				(long long)lock->fl.fl_start,
469 				(long long)lock->fl.fl_end);
470 
471 	/* Get existing block (in case client is busy-waiting) */
472 	block = nlmsvc_lookup_block(file, lock);
473 
474 	if (block == NULL) {
475 		struct file_lock *conf = kzalloc(sizeof(*conf), GFP_KERNEL);
476 
477 		if (conf == NULL)
478 			return nlm_granted;
479 		block = nlmsvc_create_block(rqstp, host, file, lock, cookie);
480 		if (block == NULL) {
481 			kfree(conf);
482 			return nlm_granted;
483 		}
484 		block->b_fl = conf;
485 	}
486 	if (block->b_flags & B_QUEUED) {
487 		dprintk("lockd: nlmsvc_testlock deferred block %p flags %d fl %p\n",
488 			block, block->b_flags, block->b_fl);
489 		if (block->b_flags & B_TIMED_OUT) {
490 			nlmsvc_unlink_block(block);
491 			ret = nlm_lck_denied;
492 			goto out;
493 		}
494 		if (block->b_flags & B_GOT_CALLBACK) {
495 			nlmsvc_unlink_block(block);
496 			if (block->b_fl != NULL
497 					&& block->b_fl->fl_type != F_UNLCK) {
498 				lock->fl = *block->b_fl;
499 				goto conf_lock;
500 			} else {
501 				ret = nlm_granted;
502 				goto out;
503 			}
504 		}
505 		ret = nlm_drop_reply;
506 		goto out;
507 	}
508 
509 	error = vfs_test_lock(file->f_file, &lock->fl);
510 	if (error == -EINPROGRESS) {
511 		ret = nlmsvc_defer_lock_rqst(rqstp, block);
512 		goto out;
513 	}
514 	if (error) {
515 		ret = nlm_lck_denied_nolocks;
516 		goto out;
517 	}
518 	if (lock->fl.fl_type == F_UNLCK) {
519 		ret = nlm_granted;
520 		goto out;
521 	}
522 
523 conf_lock:
524 	dprintk("lockd: conflicting lock(ty=%d, %Ld-%Ld)\n",
525 		lock->fl.fl_type, (long long)lock->fl.fl_start,
526 		(long long)lock->fl.fl_end);
527 	conflock->caller = "somehost";	/* FIXME */
528 	conflock->len = strlen(conflock->caller);
529 	conflock->oh.len = 0;		/* don't return OH info */
530 	conflock->svid = lock->fl.fl_pid;
531 	conflock->fl.fl_type = lock->fl.fl_type;
532 	conflock->fl.fl_start = lock->fl.fl_start;
533 	conflock->fl.fl_end = lock->fl.fl_end;
534 	ret = nlm_lck_denied;
535 out:
536 	if (block)
537 		nlmsvc_release_block(block);
538 	return ret;
539 }
540 
541 /*
542  * Remove a lock.
543  * This implies a CANCEL call: We send a GRANT_MSG, the client replies
544  * with a GRANT_RES call which gets lost, and calls UNLOCK immediately
545  * afterwards. In this case the block will still be there, and hence
546  * must be removed.
547  */
548 __be32
549 nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock)
550 {
551 	int	error;
552 
553 	dprintk("lockd: nlmsvc_unlock(%s/%ld, pi=%d, %Ld-%Ld)\n",
554 				file->f_file->f_path.dentry->d_inode->i_sb->s_id,
555 				file->f_file->f_path.dentry->d_inode->i_ino,
556 				lock->fl.fl_pid,
557 				(long long)lock->fl.fl_start,
558 				(long long)lock->fl.fl_end);
559 
560 	/* First, cancel any lock that might be there */
561 	nlmsvc_cancel_blocked(file, lock);
562 
563 	lock->fl.fl_type = F_UNLCK;
564 	error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
565 
566 	return (error < 0)? nlm_lck_denied_nolocks : nlm_granted;
567 }
568 
569 /*
570  * Cancel a previously blocked request.
571  *
572  * A cancel request always overrides any grant that may currently
573  * be in progress.
574  * The calling procedure must check whether the file can be closed.
575  */
576 __be32
577 nlmsvc_cancel_blocked(struct nlm_file *file, struct nlm_lock *lock)
578 {
579 	struct nlm_block	*block;
580 	int status = 0;
581 
582 	dprintk("lockd: nlmsvc_cancel(%s/%ld, pi=%d, %Ld-%Ld)\n",
583 				file->f_file->f_path.dentry->d_inode->i_sb->s_id,
584 				file->f_file->f_path.dentry->d_inode->i_ino,
585 				lock->fl.fl_pid,
586 				(long long)lock->fl.fl_start,
587 				(long long)lock->fl.fl_end);
588 
589 	mutex_lock(&file->f_mutex);
590 	block = nlmsvc_lookup_block(file, lock);
591 	mutex_unlock(&file->f_mutex);
592 	if (block != NULL) {
593 		vfs_cancel_lock(block->b_file->f_file,
594 				&block->b_call->a_args.lock.fl);
595 		status = nlmsvc_unlink_block(block);
596 		nlmsvc_release_block(block);
597 	}
598 	return status ? nlm_lck_denied : nlm_granted;
599 }
600 
601 /*
602  * This is a callback from the filesystem for VFS file lock requests.
603  * It will be used if fl_grant is defined and the filesystem can not
604  * respond to the request immediately.
605  * For GETLK request it will copy the reply to the nlm_block.
606  * For SETLK or SETLKW request it will get the local posix lock.
607  * In all cases it will move the block to the head of nlm_blocked q where
608  * nlmsvc_retry_blocked() can send back a reply for SETLKW or revisit the
609  * deferred rpc for GETLK and SETLK.
610  */
611 static void
612 nlmsvc_update_deferred_block(struct nlm_block *block, struct file_lock *conf,
613 			     int result)
614 {
615 	block->b_flags |= B_GOT_CALLBACK;
616 	if (result == 0)
617 		block->b_granted = 1;
618 	else
619 		block->b_flags |= B_TIMED_OUT;
620 	if (conf) {
621 		if (block->b_fl)
622 			__locks_copy_lock(block->b_fl, conf);
623 	}
624 }
625 
626 static int nlmsvc_grant_deferred(struct file_lock *fl, struct file_lock *conf,
627 					int result)
628 {
629 	struct nlm_block *block;
630 	int rc = -ENOENT;
631 
632 	lock_kernel();
633 	list_for_each_entry(block, &nlm_blocked, b_list) {
634 		if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) {
635 			dprintk("lockd: nlmsvc_notify_blocked block %p flags %d\n",
636 							block, block->b_flags);
637 			if (block->b_flags & B_QUEUED) {
638 				if (block->b_flags & B_TIMED_OUT) {
639 					rc = -ENOLCK;
640 					break;
641 				}
642 				nlmsvc_update_deferred_block(block, conf, result);
643 			} else if (result == 0)
644 				block->b_granted = 1;
645 
646 			nlmsvc_insert_block(block, 0);
647 			svc_wake_up(block->b_daemon);
648 			rc = 0;
649 			break;
650 		}
651 	}
652 	unlock_kernel();
653 	if (rc == -ENOENT)
654 		printk(KERN_WARNING "lockd: grant for unknown block\n");
655 	return rc;
656 }
657 
658 /*
659  * Unblock a blocked lock request. This is a callback invoked from the
660  * VFS layer when a lock on which we blocked is removed.
661  *
662  * This function doesn't grant the blocked lock instantly, but rather moves
663  * the block to the head of nlm_blocked where it can be picked up by lockd.
664  */
665 static void
666 nlmsvc_notify_blocked(struct file_lock *fl)
667 {
668 	struct nlm_block	*block;
669 
670 	dprintk("lockd: VFS unblock notification for block %p\n", fl);
671 	list_for_each_entry(block, &nlm_blocked, b_list) {
672 		if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) {
673 			nlmsvc_insert_block(block, 0);
674 			svc_wake_up(block->b_daemon);
675 			return;
676 		}
677 	}
678 
679 	printk(KERN_WARNING "lockd: notification for unknown block!\n");
680 }
681 
682 static int nlmsvc_same_owner(struct file_lock *fl1, struct file_lock *fl2)
683 {
684 	return fl1->fl_owner == fl2->fl_owner && fl1->fl_pid == fl2->fl_pid;
685 }
686 
687 struct lock_manager_operations nlmsvc_lock_operations = {
688 	.fl_compare_owner = nlmsvc_same_owner,
689 	.fl_notify = nlmsvc_notify_blocked,
690 	.fl_grant = nlmsvc_grant_deferred,
691 };
692 
693 /*
694  * Try to claim a lock that was previously blocked.
695  *
696  * Note that we use both the RPC_GRANTED_MSG call _and_ an async
697  * RPC thread when notifying the client. This seems like overkill...
698  * Here's why:
699  *  -	we don't want to use a synchronous RPC thread, otherwise
700  *	we might find ourselves hanging on a dead portmapper.
701  *  -	Some lockd implementations (e.g. HP) don't react to
702  *	RPC_GRANTED calls; they seem to insist on RPC_GRANTED_MSG calls.
703  */
704 static void
705 nlmsvc_grant_blocked(struct nlm_block *block)
706 {
707 	struct nlm_file		*file = block->b_file;
708 	struct nlm_lock		*lock = &block->b_call->a_args.lock;
709 	int			error;
710 
711 	dprintk("lockd: grant blocked lock %p\n", block);
712 
713 	kref_get(&block->b_count);
714 
715 	/* Unlink block request from list */
716 	nlmsvc_unlink_block(block);
717 
718 	/* If b_granted is true this means we've been here before.
719 	 * Just retry the grant callback, possibly refreshing the RPC
720 	 * binding */
721 	if (block->b_granted) {
722 		nlm_rebind_host(block->b_host);
723 		goto callback;
724 	}
725 
726 	/* Try the lock operation again */
727 	lock->fl.fl_flags |= FL_SLEEP;
728 	error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
729 	lock->fl.fl_flags &= ~FL_SLEEP;
730 
731 	switch (error) {
732 	case 0:
733 		break;
734 	case -EAGAIN:
735 	case -EINPROGRESS:
736 		dprintk("lockd: lock still blocked error %d\n", error);
737 		nlmsvc_insert_block(block, NLM_NEVER);
738 		nlmsvc_release_block(block);
739 		return;
740 	default:
741 		printk(KERN_WARNING "lockd: unexpected error %d in %s!\n",
742 				-error, __func__);
743 		nlmsvc_insert_block(block, 10 * HZ);
744 		nlmsvc_release_block(block);
745 		return;
746 	}
747 
748 callback:
749 	/* Lock was granted by VFS. */
750 	dprintk("lockd: GRANTing blocked lock.\n");
751 	block->b_granted = 1;
752 
753 	/* keep block on the list, but don't reattempt until the RPC
754 	 * completes or the submission fails
755 	 */
756 	nlmsvc_insert_block(block, NLM_NEVER);
757 
758 	/* Call the client -- use a soft RPC task since nlmsvc_retry_blocked
759 	 * will queue up a new one if this one times out
760 	 */
761 	error = nlm_async_call(block->b_call, NLMPROC_GRANTED_MSG,
762 				&nlmsvc_grant_ops);
763 
764 	/* RPC submission failed, wait a bit and retry */
765 	if (error < 0)
766 		nlmsvc_insert_block(block, 10 * HZ);
767 }
768 
769 /*
770  * This is the callback from the RPC layer when the NLM_GRANTED_MSG
771  * RPC call has succeeded or timed out.
772  * Like all RPC callbacks, it is invoked by the rpciod process, so it
773  * better not sleep. Therefore, we put the blocked lock on the nlm_blocked
774  * chain once more in order to have it removed by lockd itself (which can
775  * then sleep on the file semaphore without disrupting e.g. the nfs client).
776  */
777 static void nlmsvc_grant_callback(struct rpc_task *task, void *data)
778 {
779 	struct nlm_rqst		*call = data;
780 	struct nlm_block	*block = call->a_block;
781 	unsigned long		timeout;
782 
783 	dprintk("lockd: GRANT_MSG RPC callback\n");
784 
785 	lock_kernel();
786 	/* if the block is not on a list at this point then it has
787 	 * been invalidated. Don't try to requeue it.
788 	 *
789 	 * FIXME: it's possible that the block is removed from the list
790 	 * after this check but before the nlmsvc_insert_block. In that
791 	 * case it will be added back. Perhaps we need better locking
792 	 * for nlm_blocked?
793 	 */
794 	if (list_empty(&block->b_list))
795 		goto out;
796 
797 	/* Technically, we should down the file semaphore here. Since we
798 	 * move the block towards the head of the queue only, no harm
799 	 * can be done, though. */
800 	if (task->tk_status < 0) {
801 		/* RPC error: Re-insert for retransmission */
802 		timeout = 10 * HZ;
803 	} else {
804 		/* Call was successful, now wait for client callback */
805 		timeout = 60 * HZ;
806 	}
807 	nlmsvc_insert_block(block, timeout);
808 	svc_wake_up(block->b_daemon);
809 out:
810 	unlock_kernel();
811 }
812 
813 static void nlmsvc_grant_release(void *data)
814 {
815 	struct nlm_rqst		*call = data;
816 
817 	lock_kernel();
818 	nlmsvc_release_block(call->a_block);
819 	unlock_kernel();
820 }
821 
822 static const struct rpc_call_ops nlmsvc_grant_ops = {
823 	.rpc_call_done = nlmsvc_grant_callback,
824 	.rpc_release = nlmsvc_grant_release,
825 };
826 
827 /*
828  * We received a GRANT_RES callback. Try to find the corresponding
829  * block.
830  */
831 void
832 nlmsvc_grant_reply(struct nlm_cookie *cookie, __be32 status)
833 {
834 	struct nlm_block	*block;
835 
836 	dprintk("grant_reply: looking for cookie %x, s=%d \n",
837 		*(unsigned int *)(cookie->data), status);
838 	if (!(block = nlmsvc_find_block(cookie)))
839 		return;
840 
841 	if (block) {
842 		if (status == nlm_lck_denied_grace_period) {
843 			/* Try again in a couple of seconds */
844 			nlmsvc_insert_block(block, 10 * HZ);
845 		} else {
846 			/* Lock is now held by client, or has been rejected.
847 			 * In both cases, the block should be removed. */
848 			nlmsvc_unlink_block(block);
849 		}
850 	}
851 	nlmsvc_release_block(block);
852 }
853 
854 /* Helper function to handle retry of a deferred block.
855  * If it is a blocking lock, call grant_blocked.
856  * For a non-blocking lock or test lock, revisit the request.
857  */
858 static void
859 retry_deferred_block(struct nlm_block *block)
860 {
861 	if (!(block->b_flags & B_GOT_CALLBACK))
862 		block->b_flags |= B_TIMED_OUT;
863 	nlmsvc_insert_block(block, NLM_TIMEOUT);
864 	dprintk("revisit block %p flags %d\n",	block, block->b_flags);
865 	if (block->b_deferred_req) {
866 		block->b_deferred_req->revisit(block->b_deferred_req, 0);
867 		block->b_deferred_req = NULL;
868 	}
869 }
870 
871 /*
872  * Retry all blocked locks that have been notified. This is where lockd
873  * picks up locks that can be granted, or grant notifications that must
874  * be retransmitted.
875  */
876 unsigned long
877 nlmsvc_retry_blocked(void)
878 {
879 	unsigned long	timeout = MAX_SCHEDULE_TIMEOUT;
880 	struct nlm_block *block;
881 
882 	while (!list_empty(&nlm_blocked) && !kthread_should_stop()) {
883 		block = list_entry(nlm_blocked.next, struct nlm_block, b_list);
884 
885 		if (block->b_when == NLM_NEVER)
886 			break;
887 		if (time_after(block->b_when, jiffies)) {
888 			timeout = block->b_when - jiffies;
889 			break;
890 		}
891 
892 		dprintk("nlmsvc_retry_blocked(%p, when=%ld)\n",
893 			block, block->b_when);
894 		if (block->b_flags & B_QUEUED) {
895 			dprintk("nlmsvc_retry_blocked delete block (%p, granted=%d, flags=%d)\n",
896 				block, block->b_granted, block->b_flags);
897 			retry_deferred_block(block);
898 		} else
899 			nlmsvc_grant_blocked(block);
900 	}
901 
902 	return timeout;
903 }
904