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