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