NLM: Remove the signal masking in nlmclnt_proc/nlmclnt_cancel
[safe/jmp/linux-2.6] / 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         int status = -ENOLCK;
514
515         if (nsm_monitor(host) < 0) {
516                 printk(KERN_NOTICE "lockd: failed to monitor %s\n",
517                                         host->h_name);
518                 goto out;
519         }
520         fl->fl_flags |= FL_ACCESS;
521         status = do_vfs_lock(fl);
522         fl->fl_flags = fl_flags;
523         if (status < 0)
524                 goto out;
525
526         block = nlmclnt_prepare_block(host, fl);
527 again:
528         for(;;) {
529                 /* Reboot protection */
530                 fl->fl_u.nfs_fl.state = host->h_state;
531                 status = nlmclnt_call(req, NLMPROC_LOCK);
532                 if (status < 0)
533                         goto out_unblock;
534                 if (!req->a_args.block)
535                         break;
536                 /* Did a reclaimer thread notify us of a server reboot? */
537                 if (resp->status ==  nlm_lck_denied_grace_period)
538                         continue;
539                 if (resp->status != nlm_lck_blocked)
540                         break;
541                 /* Wait on an NLM blocking lock */
542                 status = nlmclnt_block(block, req, NLMCLNT_POLL_TIMEOUT);
543                 /* if we were interrupted. Send a CANCEL request to the server
544                  * and exit
545                  */
546                 if (status < 0)
547                         goto out_unblock;
548                 if (resp->status != nlm_lck_blocked)
549                         break;
550         }
551
552         if (resp->status == nlm_granted) {
553                 down_read(&host->h_rwsem);
554                 /* Check whether or not the server has rebooted */
555                 if (fl->fl_u.nfs_fl.state != host->h_state) {
556                         up_read(&host->h_rwsem);
557                         goto again;
558                 }
559                 /* Ensure the resulting lock will get added to granted list */
560                 fl->fl_flags |= FL_SLEEP;
561                 if (do_vfs_lock(fl) < 0)
562                         printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
563                 up_read(&host->h_rwsem);
564                 fl->fl_flags = fl_flags;
565         }
566         status = nlm_stat_to_errno(resp->status);
567 out_unblock:
568         nlmclnt_finish_block(block);
569         /* Cancel the blocked request if it is still pending */
570         if (resp->status == nlm_lck_blocked)
571                 nlmclnt_cancel(host, req->a_args.block, fl);
572 out:
573         nlm_release_call(req);
574         return status;
575 }
576
577 /*
578  * RECLAIM: Try to reclaim a lock
579  */
580 int
581 nlmclnt_reclaim(struct nlm_host *host, struct file_lock *fl)
582 {
583         struct nlm_rqst reqst, *req;
584         int             status;
585
586         req = &reqst;
587         memset(req, 0, sizeof(*req));
588         locks_init_lock(&req->a_args.lock.fl);
589         locks_init_lock(&req->a_res.lock.fl);
590         req->a_host  = host;
591         req->a_flags = 0;
592
593         /* Set up the argument struct */
594         nlmclnt_setlockargs(req, fl);
595         req->a_args.reclaim = 1;
596
597         if ((status = nlmclnt_call(req, NLMPROC_LOCK)) >= 0
598          && req->a_res.status == nlm_granted)
599                 return 0;
600
601         printk(KERN_WARNING "lockd: failed to reclaim lock for pid %d "
602                                 "(errno %d, status %d)\n", fl->fl_pid,
603                                 status, ntohl(req->a_res.status));
604
605         /*
606          * FIXME: This is a serious failure. We can
607          *
608          *  a.  Ignore the problem
609          *  b.  Send the owning process some signal (Linux doesn't have
610          *      SIGLOST, though...)
611          *  c.  Retry the operation
612          *
613          * Until someone comes up with a simple implementation
614          * for b or c, I'll choose option a.
615          */
616
617         return -ENOLCK;
618 }
619
620 /*
621  * UNLOCK: remove an existing lock
622  */
623 static int
624 nlmclnt_unlock(struct nlm_rqst *req, struct file_lock *fl)
625 {
626         struct nlm_host *host = req->a_host;
627         struct nlm_res  *resp = &req->a_res;
628         int status;
629         unsigned char fl_flags = fl->fl_flags;
630
631         /*
632          * Note: the server is supposed to either grant us the unlock
633          * request, or to deny it with NLM_LCK_DENIED_GRACE_PERIOD. In either
634          * case, we want to unlock.
635          */
636         fl->fl_flags |= FL_EXISTS;
637         down_read(&host->h_rwsem);
638         status = do_vfs_lock(fl);
639         up_read(&host->h_rwsem);
640         fl->fl_flags = fl_flags;
641         if (status == -ENOENT) {
642                 status = 0;
643                 goto out;
644         }
645
646         atomic_inc(&req->a_count);
647         status = nlmclnt_async_call(req, NLMPROC_UNLOCK, &nlmclnt_unlock_ops);
648         if (status < 0)
649                 goto out;
650
651         if (resp->status == nlm_granted)
652                 goto out;
653
654         if (resp->status != nlm_lck_denied_nolocks)
655                 printk("lockd: unexpected unlock status: %d\n", resp->status);
656         /* What to do now? I'm out of my depth... */
657         status = -ENOLCK;
658 out:
659         nlm_release_call(req);
660         return status;
661 }
662
663 static void nlmclnt_unlock_callback(struct rpc_task *task, void *data)
664 {
665         struct nlm_rqst *req = data;
666         u32 status = ntohl(req->a_res.status);
667
668         if (RPC_ASSASSINATED(task))
669                 goto die;
670
671         if (task->tk_status < 0) {
672                 dprintk("lockd: unlock failed (err = %d)\n", -task->tk_status);
673                 goto retry_rebind;
674         }
675         if (status == NLM_LCK_DENIED_GRACE_PERIOD) {
676                 rpc_delay(task, NLMCLNT_GRACE_WAIT);
677                 goto retry_unlock;
678         }
679         if (status != NLM_LCK_GRANTED)
680                 printk(KERN_WARNING "lockd: unexpected unlock status: %d\n", status);
681 die:
682         return;
683  retry_rebind:
684         nlm_rebind_host(req->a_host);
685  retry_unlock:
686         rpc_restart_call(task);
687 }
688
689 static const struct rpc_call_ops nlmclnt_unlock_ops = {
690         .rpc_call_done = nlmclnt_unlock_callback,
691         .rpc_release = nlmclnt_rpc_release,
692 };
693
694 /*
695  * Cancel a blocked lock request.
696  * We always use an async RPC call for this in order not to hang a
697  * process that has been Ctrl-C'ed.
698  */
699 static int nlmclnt_cancel(struct nlm_host *host, int block, struct file_lock *fl)
700 {
701         struct nlm_rqst *req;
702
703         req = nlm_alloc_call(nlm_get_host(host));
704         if (!req)
705                 return -ENOMEM;
706         req->a_flags = RPC_TASK_ASYNC;
707
708         nlmclnt_setlockargs(req, fl);
709         req->a_args.block = block;
710
711         return nlmclnt_async_call(req, NLMPROC_CANCEL, &nlmclnt_cancel_ops);
712 }
713
714 static void nlmclnt_cancel_callback(struct rpc_task *task, void *data)
715 {
716         struct nlm_rqst *req = data;
717         u32 status = ntohl(req->a_res.status);
718
719         if (RPC_ASSASSINATED(task))
720                 goto die;
721
722         if (task->tk_status < 0) {
723                 dprintk("lockd: CANCEL call error %d, retrying.\n",
724                                         task->tk_status);
725                 goto retry_cancel;
726         }
727
728         dprintk("lockd: cancel status %u (task %u)\n",
729                         status, task->tk_pid);
730
731         switch (status) {
732         case NLM_LCK_GRANTED:
733         case NLM_LCK_DENIED_GRACE_PERIOD:
734         case NLM_LCK_DENIED:
735                 /* Everything's good */
736                 break;
737         case NLM_LCK_DENIED_NOLOCKS:
738                 dprintk("lockd: CANCEL failed (server has no locks)\n");
739                 goto retry_cancel;
740         default:
741                 printk(KERN_NOTICE "lockd: weird return %d for CANCEL call\n",
742                         status);
743         }
744
745 die:
746         return;
747
748 retry_cancel:
749         /* Don't ever retry more than 3 times */
750         if (req->a_retries++ >= NLMCLNT_MAX_RETRIES)
751                 goto die;
752         nlm_rebind_host(req->a_host);
753         rpc_restart_call(task);
754         rpc_delay(task, 30 * HZ);
755 }
756
757 static const struct rpc_call_ops nlmclnt_cancel_ops = {
758         .rpc_call_done = nlmclnt_cancel_callback,
759         .rpc_release = nlmclnt_rpc_release,
760 };
761
762 /*
763  * Convert an NLM status code to a generic kernel errno
764  */
765 static int
766 nlm_stat_to_errno(__be32 status)
767 {
768         switch(ntohl(status)) {
769         case NLM_LCK_GRANTED:
770                 return 0;
771         case NLM_LCK_DENIED:
772                 return -EAGAIN;
773         case NLM_LCK_DENIED_NOLOCKS:
774         case NLM_LCK_DENIED_GRACE_PERIOD:
775                 return -ENOLCK;
776         case NLM_LCK_BLOCKED:
777                 printk(KERN_NOTICE "lockd: unexpected status NLM_BLOCKED\n");
778                 return -ENOLCK;
779 #ifdef CONFIG_LOCKD_V4
780         case NLM_DEADLCK:
781                 return -EDEADLK;
782         case NLM_ROFS:
783                 return -EROFS;
784         case NLM_STALE_FH:
785                 return -ESTALE;
786         case NLM_FBIG:
787                 return -EOVERFLOW;
788         case NLM_FAILED:
789                 return -ENOLCK;
790 #endif
791         }
792         printk(KERN_NOTICE "lockd: unexpected server status %d\n", status);
793         return -ENOLCK;
794 }