Whamcloud - gitweb
Branch: HEAD
[fs/lustre-release.git] / lustre / ldlm / ldlm_request.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #define DEBUG_SUBSYSTEM S_LDLM
23 #ifndef __KERNEL__
24 #include <signal.h>
25 #include <liblustre.h>
26 #endif
27
28 #include <linux/lustre_dlm.h>
29 #include <linux/obd_class.h>
30 #include <linux/obd.h>
31
32 #include "ldlm_internal.h"
33
34 static void interrupted_completion_wait(void *data)
35 {
36 }
37
38 struct lock_wait_data {
39         struct ldlm_lock *lwd_lock;
40         int               lwd_generation;
41 };
42
43 int ldlm_expired_completion_wait(void *data)
44 {
45         struct lock_wait_data *lwd = data;
46         struct ldlm_lock *lock = lwd->lwd_lock;
47         struct obd_import *imp;
48         struct obd_device *obd;
49
50         if (lock->l_conn_export == NULL) {
51                 static unsigned long next_dump = 0, last_dump = 0;
52
53                 if (ptlrpc_check_suspend())
54                         RETURN(0);
55
56                 LDLM_ERROR(lock, "lock timed out; not entering recovery in "
57                            "server code, just going back to sleep");
58                 if (time_after(jiffies, next_dump)) {
59                         last_dump = next_dump;
60                         next_dump = jiffies + 300 * HZ;
61                         ldlm_namespace_dump(D_DLMTRACE,
62                                             lock->l_resource->lr_namespace);
63                         if (last_dump == 0)
64                                 portals_debug_dumplog();
65                 }
66                 RETURN(0);
67         }
68
69         obd = lock->l_conn_export->exp_obd;
70         imp = obd->u.cli.cl_import;
71         ptlrpc_fail_import(imp, lwd->lwd_generation);
72         LDLM_ERROR(lock, "lock timed out, entering recovery for %s@%s",
73                    imp->imp_target_uuid.uuid,
74                    imp->imp_connection->c_remote_uuid.uuid);
75
76         RETURN(0);
77 }
78
79 int ldlm_completion_ast(struct ldlm_lock *lock, int flags, void *data)
80 {
81         /* XXX ALLOCATE - 160 bytes */
82         struct lock_wait_data lwd;
83         unsigned long irqflags;
84         struct obd_device *obd;
85         struct obd_import *imp = NULL;
86         struct l_wait_info lwi;
87         int rc = 0;
88         ENTRY;
89
90         if (flags == LDLM_FL_WAIT_NOREPROC)
91                 goto noreproc;
92
93         if (!(flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
94                        LDLM_FL_BLOCK_CONV))) {
95                 wake_up(&lock->l_waitq);
96                 RETURN(0);
97         }
98
99         LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
100                    "sleeping");
101         ldlm_lock_dump(D_OTHER, lock, 0);
102         ldlm_reprocess_all(lock->l_resource);
103
104 noreproc:
105
106         obd = class_exp2obd(lock->l_conn_export);
107
108         /* if this is a local lock, then there is no import */
109         if (obd != NULL)
110                 imp = obd->u.cli.cl_import;
111
112         lwd.lwd_lock = lock;
113
114         if (flags & LDLM_FL_NO_TIMEOUT) {
115                 LDLM_DEBUG(lock, "waiting indefinitely for group lock\n");
116                 lwi = LWI_INTR(interrupted_completion_wait, &lwd);
117         } else {
118                 lwi = LWI_TIMEOUT_INTR(obd_timeout * HZ,
119                                        ldlm_expired_completion_wait,
120                                        interrupted_completion_wait, &lwd);
121         }
122
123         if (imp != NULL) {
124                 spin_lock_irqsave(&imp->imp_lock, irqflags);
125                 lwd.lwd_generation = imp->imp_generation;
126                 spin_unlock_irqrestore(&imp->imp_lock, irqflags);
127         }
128
129         /* Go to sleep until the lock is granted or cancelled. */
130         rc = l_wait_event(lock->l_waitq,
131                           ((lock->l_req_mode == lock->l_granted_mode) ||
132                            (lock->l_flags & LDLM_FL_FAILED)), &lwi);
133
134         if (lock->l_destroyed || lock->l_flags & LDLM_FL_FAILED) {
135                 LDLM_DEBUG(lock, "client-side enqueue waking up: destroyed");
136                 RETURN(-EIO);
137         }
138
139         if (rc) {
140                 LDLM_DEBUG(lock, "client-side enqueue waking up: failed (%d)",
141                            rc);
142                 RETURN(rc);
143         }
144
145         LDLM_DEBUG(lock, "client-side enqueue waking up: granted");
146         RETURN(0);
147 }
148
149 static int ldlm_cli_enqueue_local(struct ldlm_namespace *ns,
150                                   struct ldlm_res_id res_id,
151                                   __u32 type,
152                                   ldlm_policy_data_t *policy,
153                                   ldlm_mode_t mode,
154                                   int *flags,
155                                   ldlm_blocking_callback blocking,
156                                   ldlm_completion_callback completion,
157                                   ldlm_glimpse_callback glimpse,
158                                   void *data, __u32 lvb_len,
159                                   void *lvb_swabber,
160                                   struct lustre_handle *lockh)
161 {
162         struct ldlm_lock *lock;
163         int err;
164         ENTRY;
165
166         if (ns->ns_client) {
167                 CERROR("Trying to enqueue local lock in a shadow namespace\n");
168                 LBUG();
169         }
170
171         lock = ldlm_lock_create(ns, NULL, res_id, type, mode, blocking,
172                                 completion, glimpse, data, lvb_len);
173         if (!lock)
174                 GOTO(out_nolock, err = -ENOMEM);
175         LDLM_DEBUG(lock, "client-side local enqueue handler, new lock created");
176
177         ldlm_lock_addref_internal(lock, mode);
178         ldlm_lock2handle(lock, lockh);
179         lock->l_flags |= LDLM_FL_LOCAL;
180         if (*flags & LDLM_FL_ATOMIC_CB)
181                 lock->l_flags |= LDLM_FL_ATOMIC_CB;
182         lock->l_lvb_swabber = lvb_swabber;
183         if (policy != NULL)
184                 memcpy(&lock->l_policy_data, policy, sizeof(*policy));
185         if (type == LDLM_EXTENT)
186                 memcpy(&lock->l_req_extent, &policy->l_extent,
187                        sizeof(policy->l_extent));
188
189         err = ldlm_lock_enqueue(ns, &lock, policy, flags);
190         if (err != ELDLM_OK)
191                 GOTO(out, err);
192
193         if (policy != NULL)
194                 memcpy(policy, &lock->l_policy_data, sizeof(*policy));
195         if ((*flags) & LDLM_FL_LOCK_CHANGED)
196                 memcpy(&res_id, &lock->l_resource->lr_name, sizeof(res_id));
197
198         LDLM_DEBUG_NOLOCK("client-side local enqueue handler END (lock %p)",
199                           lock);
200
201         if (lock->l_completion_ast)
202                 lock->l_completion_ast(lock, *flags, NULL);
203
204         LDLM_DEBUG(lock, "client-side local enqueue END");
205         EXIT;
206  out:
207         LDLM_LOCK_PUT(lock);
208  out_nolock:
209         return err;
210 }
211
212 static void failed_lock_cleanup(struct ldlm_namespace *ns,
213                                 struct ldlm_lock *lock,
214                                 struct lustre_handle *lockh, int mode)
215 {
216         /* Set a flag to prevent us from sending a CANCEL (bug 407) */
217         lock_res_and_lock(lock);
218         lock->l_flags |= LDLM_FL_LOCAL_ONLY;
219         unlock_res_and_lock(lock);
220         LDLM_DEBUG(lock, "setting FL_LOCAL_ONLY");
221
222         ldlm_lock_decref_and_cancel(lockh, mode);
223
224         /* XXX - HACK because we shouldn't call ldlm_lock_destroy()
225          *       from llite/file.c/ll_file_flock(). */
226         if (lock->l_resource->lr_type == LDLM_FLOCK) {
227                 ldlm_lock_destroy(lock);
228         }
229 }
230
231 int ldlm_cli_enqueue(struct obd_export *exp,
232                      struct ptlrpc_request *req,
233                      struct ldlm_namespace *ns,
234                      struct ldlm_res_id res_id,
235                      __u32 type,
236                      ldlm_policy_data_t *policy,
237                      ldlm_mode_t mode,
238                      int *flags,
239                      ldlm_blocking_callback blocking,
240                      ldlm_completion_callback completion,
241                      ldlm_glimpse_callback glimpse,
242                      void *data,
243                      void *lvb,
244                      __u32 lvb_len,
245                      void *lvb_swabber,
246                      struct lustre_handle *lockh)
247 {
248         struct ldlm_lock *lock;
249         struct ldlm_request *body;
250         struct ldlm_reply *reply;
251         int rc, size[3] = {0, sizeof(*body), lvb_len}, req_passed_in = 1;
252         int is_replay = *flags & LDLM_FL_REPLAY;
253         int cleanup_phase = 0;
254         ENTRY;
255
256         if (exp == NULL) {
257                 LASSERT(!is_replay);
258                 rc = ldlm_cli_enqueue_local(ns, res_id, type, policy, mode,
259                                             flags, blocking, completion,
260                                             glimpse, data, lvb_len, lvb_swabber,
261                                             lockh);
262                 RETURN(rc);
263         }
264
265         /* If we're replaying this lock, just check some invariants.
266          * If we're creating a new lock, get everything all setup nice. */
267         if (is_replay) {
268                 lock = ldlm_handle2lock(lockh);
269                 LDLM_DEBUG(lock, "client-side enqueue START");
270                 LASSERT(exp == lock->l_conn_export);
271         } else {
272                 lock = ldlm_lock_create(ns, NULL, res_id, type, mode, blocking,
273                                         completion, glimpse, data, lvb_len);
274                 if (lock == NULL)
275                         RETURN(-ENOMEM);
276                 /* for the local lock, add the reference */
277                 ldlm_lock_addref_internal(lock, mode);
278                 ldlm_lock2handle(lock, lockh);
279                 lock->l_lvb_swabber = lvb_swabber;
280                 if (policy != NULL)
281                         memcpy(&lock->l_policy_data, policy, sizeof(*policy));
282                 if (type == LDLM_EXTENT)
283                         memcpy(&lock->l_req_extent, &policy->l_extent,
284                                sizeof(policy->l_extent));
285                 LDLM_DEBUG(lock, "client-side enqueue START");
286         }
287
288         /* lock not sent to server yet */
289         cleanup_phase = 2;
290
291         if (req == NULL) {
292                 req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_DLM_VERSION,
293                                       LDLM_ENQUEUE, 2, size, NULL);
294                 if (req == NULL)
295                         GOTO(cleanup, rc = -ENOMEM);
296                 req_passed_in = 0;
297         }
298
299         LASSERTF(req->rq_reqmsg->buflens[MDS_REQ_INTENT_LOCKREQ_OFF] ==
300                  sizeof(*body), "buflen[%d] = %d, not %d\n",
301                  MDS_REQ_INTENT_LOCKREQ_OFF,
302                  req->rq_reqmsg->buflens[MDS_REQ_INTENT_LOCKREQ_OFF],
303                  sizeof(*body));
304
305         /* Dump lock data into the request buffer */
306         body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_INTENT_LOCKREQ_OFF,
307                               sizeof (*body));
308         ldlm_lock2desc(lock, &body->lock_desc);
309         body->lock_flags = *flags;
310
311         memcpy(&body->lock_handle1, lockh, sizeof(*lockh));
312
313         /* Continue as normal. */
314         if (!req_passed_in) {
315                 size[0] = sizeof(*reply);
316                 req->rq_replen = lustre_msg_size(1 + (lvb_len > 0), size);
317         }
318         lock->l_conn_export = exp;
319         lock->l_export = NULL;
320         lock->l_blocking_ast = blocking;
321
322         LDLM_DEBUG(lock, "sending request");
323         rc = ptlrpc_queue_wait(req);
324
325         if (rc != ELDLM_OK) {
326                 LASSERT(!is_replay);
327                 LDLM_DEBUG(lock, "client-side enqueue END (%s)",
328                            rc == ELDLM_LOCK_ABORTED ? "ABORTED" : "FAILED");
329                 if (rc == ELDLM_LOCK_ABORTED) {
330                         /* Before we return, swab the reply */
331                         reply = lustre_swab_repbuf(req, 0, sizeof(*reply),
332                                                    lustre_swab_ldlm_reply);
333                         if (reply == NULL) {
334                                 CERROR("Can't unpack ldlm_reply\n");
335                                 rc = -EPROTO;
336                         }
337                         if (lvb_len) {
338                                 void *tmplvb;
339                                 tmplvb = lustre_swab_repbuf(req, 1, lvb_len,
340                                                             lvb_swabber);
341                                 if (tmplvb == NULL)
342                                         GOTO(cleanup, rc = -EPROTO);
343                                 if (lvb != NULL)
344                                         memcpy(lvb, tmplvb, lvb_len);
345                         }
346                 }
347                 GOTO(cleanup, rc);
348         }
349
350         reply = lustre_swab_repbuf(req, 0, sizeof(*reply),
351                                    lustre_swab_ldlm_reply);
352         if (reply == NULL) {
353                 CERROR("Can't unpack ldlm_reply\n");
354                 GOTO(cleanup, rc = -EPROTO);
355         }
356
357         /* lock enqueued on the server */
358         cleanup_phase = 1;
359
360         do_gettimeofday(&lock->l_enqueued_time);
361         memcpy(&lock->l_remote_handle, &reply->lock_handle,
362                sizeof(lock->l_remote_handle));
363         *flags = reply->lock_flags;
364
365         CDEBUG(D_INFO, "local: %p, remote cookie: "LPX64", flags: 0x%x\n",
366                lock, reply->lock_handle.cookie, *flags);
367
368         /* If enqueue returned a blocked lock but the completion handler has
369          * already run, then it fixed up the resource and we don't need to do it
370          * again. */
371         if ((*flags) & LDLM_FL_LOCK_CHANGED) {
372                 int newmode = reply->lock_desc.l_req_mode;
373                 LASSERT(!is_replay);
374                 if (newmode && newmode != lock->l_req_mode) {
375                         LDLM_DEBUG(lock, "server returned different mode %s",
376                                    ldlm_lockname[newmode]);
377                         lock->l_req_mode = newmode;
378                 }
379
380                 if (reply->lock_desc.l_resource.lr_name.name[0] !=
381                     lock->l_resource->lr_name.name[0] ||
382                    reply->lock_desc.l_resource.lr_name.name[1] !=
383                     lock->l_resource->lr_name.name[1]) {
384                         CDEBUG(D_INFO, "remote intent success, locking %ld "
385                                "instead of %ld\n",
386                               (long)reply->lock_desc.l_resource.lr_name.name[0],
387                                (long)lock->l_resource->lr_name.name[0]);
388
389                         ldlm_lock_change_resource(ns, lock,
390                                            reply->lock_desc.l_resource.lr_name);
391                         if (lock->l_resource == NULL) {
392                                 LBUG();
393                                 GOTO(cleanup, rc = -ENOMEM);
394                         }
395                         LDLM_DEBUG(lock, "client-side enqueue, new resource");
396                 }
397                 if (policy != NULL)
398                         memcpy(&lock->l_policy_data,
399                                &reply->lock_desc.l_policy_data,
400                                sizeof(reply->lock_desc.l_policy_data));
401                 if (type != LDLM_PLAIN)
402                         LDLM_DEBUG(lock,"client-side enqueue, new policy data");
403         }
404
405         if ((*flags) & LDLM_FL_AST_SENT) {
406                 lock_res_and_lock(lock);
407                 lock->l_flags |= LDLM_FL_CBPENDING;
408                 unlock_res_and_lock(lock);
409                 LDLM_DEBUG(lock, "enqueue reply includes blocking AST");
410         }
411
412         /* If the lock has already been granted by a completion AST, don't
413          * clobber the LVB with an older one. */
414         if (lvb_len && (lock->l_req_mode != lock->l_granted_mode)) {
415                 void *tmplvb;
416                 tmplvb = lustre_swab_repbuf(req, 1, lvb_len, lvb_swabber);
417                 if (tmplvb == NULL) {
418                         cleanup_phase = 2;
419                         GOTO(cleanup, rc = -EPROTO);
420                 }
421                 memcpy(lock->l_lvb_data, tmplvb, lvb_len);
422         }
423
424         if (!is_replay) {
425                 rc = ldlm_lock_enqueue(ns, &lock, NULL, flags);
426                 if (lock->l_completion_ast != NULL) {
427                         int err = lock->l_completion_ast(lock, *flags, NULL);
428                         if (!rc)
429                                 rc = err;
430                         if (rc)
431                                 cleanup_phase = 2;
432                 }
433         }
434
435         if (lvb_len && lvb != NULL) {
436                 /* Copy the LVB here, and not earlier, because the completion
437                  * AST (if any) can override what we got in the reply */
438                 memcpy(lvb, lock->l_lvb_data, lvb_len);
439         }
440
441         LDLM_DEBUG(lock, "client-side enqueue END");
442         EXIT;
443 cleanup:
444         switch (cleanup_phase) {
445         case 2:
446                 if (rc)
447                         failed_lock_cleanup(ns, lock, lockh, mode);
448         case 1:
449                 if (!req_passed_in && req != NULL)
450                         ptlrpc_req_finished(req);
451         }
452
453         LDLM_LOCK_PUT(lock);
454         return rc;
455 }
456
457 static int ldlm_cli_convert_local(struct ldlm_lock *lock, int new_mode,
458                                   int *flags)
459 {
460         struct ldlm_resource *res;
461         int rc;
462         ENTRY;
463         if (lock->l_resource->lr_namespace->ns_client) {
464                 CERROR("Trying to cancel local lock\n");
465                 LBUG();
466         }
467         LDLM_DEBUG(lock, "client-side local convert");
468
469         res = ldlm_lock_convert(lock, new_mode, flags);
470         if (res) {
471                 ldlm_reprocess_all(res);
472                 rc = 0;
473         } else {
474                 rc = EDEADLOCK;
475         }
476         LDLM_DEBUG(lock, "client-side local convert handler END");
477         LDLM_LOCK_PUT(lock);
478         RETURN(rc);
479 }
480
481 /* FIXME: one of ldlm_cli_convert or the server side should reject attempted
482  * conversion of locks which are on the waiting or converting queue */
483 /* Caller of this code is supposed to take care of lock readers/writers
484    accounting */
485 int ldlm_cli_convert(struct lustre_handle *lockh, int new_mode, int *flags)
486 {
487         struct ldlm_request *body;
488         struct ldlm_reply *reply;
489         struct ldlm_lock *lock;
490         struct ldlm_resource *res;
491         struct ptlrpc_request *req = NULL;
492         int rc, size = sizeof(*body);
493         ENTRY;
494
495         lock = ldlm_handle2lock(lockh);
496         if (!lock) {
497                 LBUG();
498                 RETURN(-EINVAL);
499         }
500         *flags = 0;
501
502         if (lock->l_conn_export == NULL)
503                 RETURN(ldlm_cli_convert_local(lock, new_mode, flags));
504
505         LDLM_DEBUG(lock, "client-side convert");
506
507         req = ptlrpc_prep_req(class_exp2cliimp(lock->l_conn_export),
508                               LUSTRE_DLM_VERSION, LDLM_CONVERT, 1, &size, NULL);
509         if (!req)
510                 GOTO(out, rc = -ENOMEM);
511
512         body = lustre_msg_buf(req->rq_reqmsg, 0, sizeof (*body));
513         memcpy(&body->lock_handle1, &lock->l_remote_handle,
514                sizeof(body->lock_handle1));
515
516         body->lock_desc.l_req_mode = new_mode;
517         body->lock_flags = *flags;
518
519         size = sizeof(*reply);
520         req->rq_replen = lustre_msg_size(1, &size);
521
522         rc = ptlrpc_queue_wait(req);
523         if (rc != ELDLM_OK)
524                 GOTO(out, rc);
525
526         reply = lustre_swab_repbuf(req, 0, sizeof (*reply),
527                                    lustre_swab_ldlm_reply);
528         if (reply == NULL) {
529                 CERROR ("Can't unpack ldlm_reply\n");
530                 GOTO (out, rc = -EPROTO);
531         }
532
533         if (req->rq_status)
534                 GOTO(out, rc = req->rq_status);
535
536         res = ldlm_lock_convert(lock, new_mode,
537                                 (int *)&reply->lock_flags);
538         if (res != NULL) {
539                 ldlm_reprocess_all(res);
540                 /* Go to sleep until the lock is granted. */
541                 /* FIXME: or cancelled. */
542                 if (lock->l_completion_ast) {
543                         rc = lock->l_completion_ast(lock, LDLM_FL_WAIT_NOREPROC,
544                                                     NULL);
545                         if (rc)
546                                 GOTO(out, rc);
547                 }
548         } else {
549                 rc = EDEADLOCK;
550         }
551         EXIT;
552  out:
553         LDLM_LOCK_PUT(lock);
554         ptlrpc_req_finished(req);
555         return rc;
556 }
557
558 int ldlm_cli_cancel(struct lustre_handle *lockh)
559 {
560         struct ptlrpc_request *req;
561         struct ldlm_lock *lock;
562         struct ldlm_request *body;
563         int rc = 0, size = sizeof(*body);
564         ENTRY;
565
566         /* concurrent cancels on the same handle can happen */
567         lock = __ldlm_handle2lock(lockh, LDLM_FL_CANCELING);
568         if (lock == NULL)
569                 RETURN(0);
570
571         if (lock->l_conn_export) {
572                 int local_only;
573                 struct obd_import *imp;
574
575                 LDLM_DEBUG(lock, "client-side cancel");
576                 /* Set this flag to prevent others from getting new references*/
577                 lock_res_and_lock(lock);
578                 lock->l_flags |= LDLM_FL_CBPENDING;
579                 local_only = lock->l_flags & LDLM_FL_LOCAL_ONLY;
580                 ldlm_cancel_callback(lock);
581                 unlock_res_and_lock(lock);
582
583                 if (local_only) {
584                         CDEBUG(D_INFO, "not sending request (at caller's "
585                                "instruction)\n");
586                         goto local_cancel;
587                 }
588
589         restart:
590                 imp = class_exp2cliimp(lock->l_conn_export);
591                 if (imp == NULL || imp->imp_invalid) {
592                         CDEBUG(D_HA, "skipping cancel on invalid import %p\n",
593                                imp);
594                         goto local_cancel;
595                 }
596
597                 req = ptlrpc_prep_req(imp, LUSTRE_DLM_VERSION, LDLM_CANCEL,
598                                       1, &size, NULL);
599                 if (!req)
600                         GOTO(out, rc = -ENOMEM);
601                 req->rq_no_resend = 1;
602
603                 /* XXX FIXME bug 249 */
604                 req->rq_request_portal = LDLM_CANCEL_REQUEST_PORTAL;
605                 req->rq_reply_portal = LDLM_CANCEL_REPLY_PORTAL;
606
607                 body = lustre_msg_buf(req->rq_reqmsg, 0, sizeof (*body));
608                 memcpy(&body->lock_handle1, &lock->l_remote_handle,
609                        sizeof(body->lock_handle1));
610
611                 req->rq_replen = lustre_msg_size(0, NULL);
612
613                 rc = ptlrpc_queue_wait(req);
614
615                 if (rc == ESTALE) {
616                         char str[PTL_NALFMT_SIZE];
617                         CERROR("client/server (nid %s) out of sync"
618                                " -- not fatal\n",
619                                ptlrpc_peernid2str(&req->rq_import->
620                                                   imp_connection->c_peer, str));
621                 } else if (rc == -ETIMEDOUT) {
622                         ptlrpc_req_finished(req);
623                         GOTO(restart, rc);
624                 } else if (rc != ELDLM_OK) {
625                         CERROR("Got rc %d from cancel RPC: canceling "
626                                "anyway\n", rc);
627                 }
628
629                 ptlrpc_req_finished(req);
630         local_cancel:
631                 ldlm_lock_cancel(lock);
632         } else {
633                 if (lock->l_resource->lr_namespace->ns_client) {
634                         LDLM_ERROR(lock, "Trying to cancel local lock\n");
635                         LBUG();
636                 }
637                 LDLM_DEBUG(lock, "client-side local cancel");
638                 ldlm_lock_cancel(lock);
639                 ldlm_reprocess_all(lock->l_resource);
640                 LDLM_DEBUG(lock, "client-side local cancel handler END");
641         }
642
643         EXIT;
644  out:
645         LDLM_LOCK_PUT(lock);
646         return rc;
647 }
648
649 /* when called with LDLM_ASYNC the blocking callback will be handled
650  * in a thread and this function will return after the thread has been
651  * asked to call the callback.  when called with LDLM_SYNC the blocking
652  * callback will be performed in this function. */
653 int ldlm_cancel_lru(struct ldlm_namespace *ns, ldlm_sync_t sync)
654 {
655         struct ldlm_lock *lock, *next;
656         int count, rc = 0;
657         LIST_HEAD(cblist);
658         ENTRY;
659
660 #ifndef __KERNEL__
661         sync = LDLM_SYNC; /* force to be sync in user space */
662 #endif
663
664         spin_lock(&ns->ns_unused_lock);
665         count = ns->ns_nr_unused - ns->ns_max_unused;
666
667         if (count <= 0) {
668                 spin_unlock(&ns->ns_unused_lock);
669                 RETURN(0);
670         }
671
672         while (!list_empty(&ns->ns_unused_list)) {
673                 struct list_head *tmp = ns->ns_unused_list.next;
674                 lock = list_entry(tmp, struct ldlm_lock, l_lru);
675                 LASSERT(!lock->l_readers && !lock->l_writers);
676
677                 LDLM_LOCK_GET(lock); /* dropped by bl thread */
678                 spin_unlock(&ns->ns_unused_lock);
679
680                 lock_res_and_lock(lock);
681                 ldlm_lock_remove_from_lru(lock);
682
683                 /* Setting the CBPENDING flag is a little misleading, but
684                  * prevents an important race; namely, once CBPENDING is set,
685                  * the lock can accumulate no more readers/writers.  Since
686                  * readers and writers are already zero here, ldlm_lock_decref
687                  * won't see this flag and call l_blocking_ast */
688                 lock->l_flags |= LDLM_FL_CBPENDING;
689
690                 /* We can't re-add to l_lru as it confuses the refcounting in
691                  * ldlm_lock_remove_from_lru() if an AST arrives after we drop
692                  * ns_lock below. We use l_tmp and can't use l_pending_chain as
693                  * it is used both on server and client nevertheles bug 5666
694                  * says it is used only on server. --umka */
695                 if (sync != LDLM_ASYNC || ldlm_bl_to_thread(ns, NULL, lock))                        
696                         list_add(&lock->l_tmp, &cblist);
697
698                 unlock_res_and_lock(lock);
699
700                 spin_lock(&ns->ns_unused_lock);
701
702                 if (--count == 0)
703                         break;
704         }
705         spin_unlock(&ns->ns_unused_lock);
706
707         list_for_each_entry_safe(lock, next, &cblist, l_tmp) {
708                 list_del_init(&lock->l_tmp);
709                 ldlm_handle_bl_callback(ns, NULL, lock);
710         }
711
712         RETURN(rc);
713 }
714
715 static int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
716                                            struct ldlm_res_id res_id, int flags,
717                                            void *opaque)
718 {
719         struct list_head *tmp, *next, list = LIST_HEAD_INIT(list);
720         struct ldlm_resource *res;
721         struct ldlm_lock *lock;
722         ENTRY;
723
724         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
725         if (res == NULL) {
726                 /* This is not a problem. */
727                 CDEBUG(D_INFO, "No resource "LPU64"\n", res_id.name[0]);
728                 RETURN(0);
729         }
730
731         lock_res(res);
732         list_for_each(tmp, &res->lr_granted) {
733                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
734
735                 if (opaque != NULL && lock->l_ast_data != opaque) {
736                         LDLM_ERROR(lock, "data %p doesn't match opaque %p",
737                                    lock->l_ast_data, opaque);
738                         continue;
739                 }
740
741                 if (lock->l_readers || lock->l_writers) {
742                         if (flags & LDLM_FL_CONFIG_CHANGE)
743                                 lock->l_flags |= LDLM_FL_CBPENDING;
744                         else if (flags & LDLM_FL_WARN)
745                                 LDLM_ERROR(lock, "lock in use");
746                         continue;
747                 }
748
749                 /* See CBPENDING comment in ldlm_cancel_lru */
750                 lock->l_flags |= LDLM_FL_CBPENDING;
751
752                 LASSERT(list_empty(&lock->l_bl_ast));
753                 list_add(&lock->l_bl_ast, &list);
754                 LDLM_LOCK_GET(lock);
755         }
756         unlock_res(res);
757
758         list_for_each_safe(tmp, next, &list) {
759                 struct lustre_handle lockh;
760                 int rc;
761                 lock = list_entry(tmp, struct ldlm_lock, l_bl_ast);
762
763                 if (flags & LDLM_FL_LOCAL_ONLY) {
764                         ldlm_lock_cancel(lock);
765                 } else {
766                         ldlm_lock2handle(lock, &lockh);
767                         rc = ldlm_cli_cancel(&lockh);
768                         if (rc != ELDLM_OK)
769                                 CERROR("ldlm_cli_cancel: %d\n", rc);
770                 }
771                 list_del_init(&lock->l_bl_ast);
772                 LDLM_LOCK_PUT(lock);
773         }
774
775         ldlm_resource_putref(res);
776
777         RETURN(0);
778 }
779
780 static inline int have_no_nsresource(struct ldlm_namespace *ns)
781 {
782         int no_resource = 0;
783
784         spin_lock(&ns->ns_hash_lock);
785         if (ns->ns_resources == 0)
786                 no_resource = 1;
787         spin_unlock(&ns->ns_hash_lock);
788
789         RETURN(no_resource);
790 }
791
792 /* Cancel all locks on a namespace (or a specific resource, if given)
793  * that have 0 readers/writers.
794  *
795  * If flags & LDLM_FL_LOCAL_ONLY, throw the locks away without trying
796  * to notify the server.
797  * If flags & LDLM_FL_NO_CALLBACK, don't run the cancel callback.
798  * If flags & LDLM_FL_WARN, print a warning if some locks are still in use. 
799  * If flags & LDLM_FL_CONFIG_CHANGE, mark all locks as having a pending callback
800  */
801 int ldlm_cli_cancel_unused(struct ldlm_namespace *ns,
802                            struct ldlm_res_id *res_id, int flags, void *opaque)
803 {
804         int i;
805         struct l_wait_info lwi = { 0 };
806         ENTRY;
807
808         if (ns == NULL)
809                 RETURN(ELDLM_OK);
810
811         if (res_id)
812                 RETURN(ldlm_cli_cancel_unused_resource(ns, *res_id, flags,
813                                                        opaque));
814
815         spin_lock(&ns->ns_hash_lock);
816         for (i = 0; i < RES_HASH_SIZE; i++) {
817                 struct list_head *tmp;
818                 tmp = ns->ns_hash[i].next;
819                 while (tmp != &(ns->ns_hash[i])) {
820                         struct ldlm_resource *res;
821                         int rc;
822
823                         res = list_entry(tmp, struct ldlm_resource, lr_hash);
824                         ldlm_resource_getref(res);
825                         spin_unlock(&ns->ns_hash_lock);
826
827                         rc = ldlm_cli_cancel_unused_resource(ns, res->lr_name,
828                                                              flags, opaque);
829                         if (rc)
830                                 CERROR("cancel_unused_res ("LPU64"): %d\n",
831                                        res->lr_name.name[0], rc);
832
833                         spin_lock(&ns->ns_hash_lock);
834                         tmp = tmp->next;
835                         ldlm_resource_putref_locked(res);
836                 }
837         }
838         spin_unlock(&ns->ns_hash_lock);
839
840         if (flags & LDLM_FL_CONFIG_CHANGE)
841                 l_wait_event(ns->ns_waitq, have_no_nsresource(ns), &lwi);
842
843         RETURN(ELDLM_OK);
844 }
845
846 /* Lock iterators. */
847
848 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
849                           void *closure)
850 {
851         struct list_head *tmp, *next;
852         struct ldlm_lock *lock;
853         int rc = LDLM_ITER_CONTINUE;
854
855         ENTRY;
856
857         if (!res)
858                 RETURN(LDLM_ITER_CONTINUE);
859
860         lock_res(res);
861         list_for_each_safe(tmp, next, &res->lr_granted) {
862                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
863
864                 if (iter(lock, closure) == LDLM_ITER_STOP)
865                         GOTO(out, rc = LDLM_ITER_STOP);
866         }
867
868         list_for_each_safe(tmp, next, &res->lr_converting) {
869                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
870
871                 if (iter(lock, closure) == LDLM_ITER_STOP)
872                         GOTO(out, rc = LDLM_ITER_STOP);
873         }
874
875         list_for_each_safe(tmp, next, &res->lr_waiting) {
876                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
877
878                 if (iter(lock, closure) == LDLM_ITER_STOP)
879                         GOTO(out, rc = LDLM_ITER_STOP);
880         }
881  out:
882         unlock_res(res);
883         RETURN(rc);
884 }
885
886 struct iter_helper_data {
887         ldlm_iterator_t iter;
888         void *closure;
889 };
890
891 static int ldlm_iter_helper(struct ldlm_lock *lock, void *closure)
892 {
893         struct iter_helper_data *helper = closure;
894         return helper->iter(lock, helper->closure);
895 }
896
897 static int ldlm_res_iter_helper(struct ldlm_resource *res, void *closure)
898 {
899         return ldlm_resource_foreach(res, ldlm_iter_helper, closure);
900 }
901
902 int ldlm_namespace_foreach(struct ldlm_namespace *ns, ldlm_iterator_t iter,
903                            void *closure)
904 {
905         struct iter_helper_data helper = { iter: iter, closure: closure };
906         return ldlm_namespace_foreach_res(ns, ldlm_res_iter_helper, &helper);
907 }
908
909 int ldlm_namespace_foreach_res(struct ldlm_namespace *ns,
910                                ldlm_res_iterator_t iter, void *closure)
911 {
912         int i, rc = LDLM_ITER_CONTINUE;
913         struct ldlm_resource *res;
914         struct list_head *tmp;
915
916         spin_lock(&ns->ns_hash_lock);
917         for (i = 0; i < RES_HASH_SIZE; i++) {
918                 tmp = ns->ns_hash[i].next;
919                 while (tmp != &(ns->ns_hash[i])) {
920                         res = list_entry(tmp, struct ldlm_resource, lr_hash);
921                         ldlm_resource_getref(res);
922                         spin_unlock(&ns->ns_hash_lock);
923
924                         rc = iter(res, closure);
925
926                         spin_lock(&ns->ns_hash_lock);
927                         tmp = tmp->next;
928                         ldlm_resource_putref_locked(res);
929                         if (rc == LDLM_ITER_STOP)
930                                 GOTO(out, rc);
931                 }
932         }
933  out:
934         spin_unlock(&ns->ns_hash_lock);
935         RETURN(rc);
936 }
937
938 /* non-blocking function to manipulate a lock whose cb_data is being put away.*/
939 void ldlm_change_cbdata(struct ldlm_namespace *ns, 
940                         struct ldlm_res_id *res_id,
941                         ldlm_iterator_t iter, 
942                         void *data)
943 {
944         struct ldlm_resource *res;
945         ENTRY;
946
947         if (ns == NULL) {
948                 CERROR("must pass in namespace\n");
949                 LBUG();
950         }
951
952         res = ldlm_resource_get(ns, NULL, *res_id, 0, 0);
953         if (res == NULL) {
954                 EXIT;
955                 return;
956         }
957
958         ldlm_resource_foreach(res, iter, data);
959         ldlm_resource_putref(res);
960         EXIT;
961 }
962
963 /* Lock replay */
964
965 static int ldlm_chain_lock_for_replay(struct ldlm_lock *lock, void *closure)
966 {
967         struct list_head *list = closure;
968
969         /* we use l_pending_chain here, because it's unused on clients. */
970         list_add(&lock->l_pending_chain, list);
971         return LDLM_ITER_CONTINUE;
972 }
973
974 static int replay_lock_interpret(struct ptlrpc_request *req,
975                                     void * data, int rc)
976 {
977         struct ldlm_lock *lock;
978         struct ldlm_reply *reply;
979
980         atomic_dec(&req->rq_import->imp_replay_inflight);
981         if (rc != ELDLM_OK)
982                 GOTO(out, rc);
983
984         lock = req->rq_async_args.pointer_arg[0];
985         LASSERT(lock != NULL);
986
987         reply = lustre_swab_repbuf(req, 0, sizeof (*reply),
988                                    lustre_swab_ldlm_reply);
989         if (reply == NULL) {
990                 CERROR("Can't unpack ldlm_reply\n");
991                 GOTO (out, rc = -EPROTO);
992         }
993
994         memcpy(&lock->l_remote_handle, &reply->lock_handle,
995                sizeof(lock->l_remote_handle));
996         LDLM_DEBUG(lock, "replayed lock:");
997         ptlrpc_import_recovery_state_machine(req->rq_import);
998 out:
999         if (rc != ELDLM_OK)
1000                 ptlrpc_connect_import(req->rq_import, NULL);
1001
1002         RETURN(rc);
1003 }
1004
1005 static int replay_one_lock(struct obd_import *imp, struct ldlm_lock *lock)
1006 {
1007         struct ptlrpc_request *req;
1008         struct ldlm_request *body;
1009         struct ldlm_reply *reply;
1010         int buffers = 1;
1011         int size[2] = {0, sizeof(*body)};
1012         int flags;
1013
1014         /*
1015          * If granted mode matches the requested mode, this lock is granted.
1016          *
1017          * If they differ, but we have a granted mode, then we were granted
1018          * one mode and now want another: ergo, converting.
1019          *
1020          * If we haven't been granted anything and are on a resource list,
1021          * then we're blocked/waiting.
1022          *
1023          * If we haven't been granted anything and we're NOT on a resource list,
1024          * then we haven't got a reply yet and don't have a known disposition.
1025          * This happens whenever a lock enqueue is the request that triggers
1026          * recovery.
1027          */
1028         if (lock->l_granted_mode == lock->l_req_mode)
1029                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_GRANTED;
1030         else if (lock->l_granted_mode)
1031                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_CONV;
1032         else if (!list_empty(&lock->l_res_link))
1033                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_WAIT;
1034         else
1035                 flags = LDLM_FL_REPLAY;
1036
1037         req = ptlrpc_prep_req(imp, LUSTRE_DLM_VERSION, LDLM_ENQUEUE,
1038                               2, size, NULL);
1039         if (!req)
1040                 RETURN(-ENOMEM);
1041
1042         /* We're part of recovery, so don't wait for it. */
1043         req->rq_send_state = LUSTRE_IMP_REPLAY_LOCKS;
1044
1045         body = lustre_msg_buf(req->rq_reqmsg, 1, sizeof (*body));
1046         ldlm_lock2desc(lock, &body->lock_desc);
1047         body->lock_flags = flags;
1048
1049         ldlm_lock2handle(lock, &body->lock_handle1);
1050         size[0] = sizeof(*reply);
1051         if (lock->l_lvb_len != 0) {
1052                 buffers = 2;
1053                 size[1] = lock->l_lvb_len;
1054         }
1055         req->rq_replen = lustre_msg_size(buffers, size);
1056         /* notify the server we've replayed all requests.
1057          * also, we mark the request to be put on a dedicated
1058          * queue to be processed after all request replayes.
1059          * bug 6063 */
1060         lustre_msg_set_flags(req->rq_reqmsg, MSG_REQ_REPLAY_DONE);
1061
1062         LDLM_DEBUG(lock, "replaying lock:");
1063
1064         imp->imp_locks_replayed++;
1065         atomic_inc(&req->rq_import->imp_replay_inflight);
1066         req->rq_async_args.pointer_arg[0] = lock;
1067         req->rq_interpret_reply = replay_lock_interpret;
1068         ptlrpcd_add_req(req);
1069
1070         RETURN(0);
1071 }
1072
1073 int ldlm_replay_locks(struct obd_import *imp)
1074 {
1075         struct ldlm_namespace *ns = imp->imp_obd->obd_namespace;
1076         struct list_head list, *pos, *next;
1077         struct ldlm_lock *lock;
1078         int rc = 0;
1079
1080         ENTRY;
1081         INIT_LIST_HEAD(&list);
1082
1083         LASSERT(atomic_read(&imp->imp_replay_inflight) == 0);
1084         LASSERT(ns != NULL);
1085
1086         /* ensure this doesn't fall to 0 before all have been queued */
1087         atomic_inc(&imp->imp_replay_inflight);
1088
1089         (void)ldlm_namespace_foreach(ns, ldlm_chain_lock_for_replay, &list);
1090
1091         list_for_each_safe(pos, next, &list) {
1092                 lock = list_entry(pos, struct ldlm_lock, l_pending_chain);
1093                 rc = replay_one_lock(imp, lock);
1094                 if (rc)
1095                         break; /* or try to do the rest? */
1096         }
1097
1098         atomic_dec(&imp->imp_replay_inflight);
1099
1100         RETURN(rc);
1101 }