Whamcloud - gitweb
LU-1961 build: fix 'dereference before null check' errors
[fs/lustre-release.git] / lustre / ldlm / ldlm_request.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2010, 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36 /**
37  * This file contains Asynchronous System Trap (AST) handlers and related
38  * LDLM request-processing routines.
39  *
40  * An AST is a callback issued on a lock when its state is changed. There are
41  * several different types of ASTs (callbacks) registered for each lock:
42  *
43  * - completion AST: when a lock is enqueued by some process, but cannot be
44  *   granted immediately due to other conflicting locks on the same resource,
45  *   the completion AST is sent to notify the caller when the lock is
46  *   eventually granted
47  *
48  * - blocking AST: when a lock is granted to some process, if another process
49  *   enqueues a conflicting (blocking) lock on a resource, a blocking AST is
50  *   sent to notify the holder(s) of the lock(s) of the conflicting lock
51  *   request. The lock holder(s) must release their lock(s) on that resource in
52  *   a timely manner or be evicted by the server.
53  *
54  * - glimpse AST: this is used when a process wants information about a lock
55  *   (i.e. the lock value block (LVB)) but does not necessarily require holding
56  *   the lock. If the resource is locked, the lock holder(s) are sent glimpse
57  *   ASTs and the LVB is returned to the caller, and lock holder(s) may CANCEL
58  *   their lock(s) if they are idle. If the resource is not locked, the server
59  *   may grant the lock.
60  */
61
62 #define DEBUG_SUBSYSTEM S_LDLM
63 #ifndef __KERNEL__
64 #include <signal.h>
65 #include <liblustre.h>
66 #endif
67
68 #include <lustre_dlm.h>
69 #include <obd_class.h>
70 #include <obd.h>
71
72 #include "ldlm_internal.h"
73
74 int ldlm_enqueue_min = OBD_TIMEOUT_DEFAULT;
75 CFS_MODULE_PARM(ldlm_enqueue_min, "i", int, 0644,
76                 "lock enqueue timeout minimum");
77
78 /* in client side, whether the cached locks will be canceled before replay */
79 unsigned int ldlm_cancel_unused_locks_before_replay = 1;
80
81 static void interrupted_completion_wait(void *data)
82 {
83 }
84
85 struct lock_wait_data {
86         struct ldlm_lock *lwd_lock;
87         __u32             lwd_conn_cnt;
88 };
89
90 struct ldlm_async_args {
91         struct lustre_handle lock_handle;
92 };
93
94 int ldlm_expired_completion_wait(void *data)
95 {
96         struct lock_wait_data *lwd = data;
97         struct ldlm_lock *lock = lwd->lwd_lock;
98         struct obd_import *imp;
99         struct obd_device *obd;
100
101         ENTRY;
102         if (lock->l_conn_export == NULL) {
103                 static cfs_time_t next_dump = 0, last_dump = 0;
104
105                 if (ptlrpc_check_suspend())
106                         RETURN(0);
107
108                 LDLM_ERROR(lock, "lock timed out (enqueued at "CFS_TIME_T", "
109                            CFS_DURATION_T"s ago); not entering recovery in "
110                            "server code, just going back to sleep",
111                            lock->l_last_activity,
112                            cfs_time_sub(cfs_time_current_sec(),
113                            lock->l_last_activity));
114                 if (cfs_time_after(cfs_time_current(), next_dump)) {
115                         last_dump = next_dump;
116                         next_dump = cfs_time_shift(300);
117                         ldlm_namespace_dump(D_DLMTRACE,
118                                             ldlm_lock_to_ns(lock));
119                         if (last_dump == 0)
120                                 libcfs_debug_dumplog();
121                 }
122                 RETURN(0);
123         }
124
125         obd = lock->l_conn_export->exp_obd;
126         imp = obd->u.cli.cl_import;
127         ptlrpc_fail_import(imp, lwd->lwd_conn_cnt);
128         LDLM_ERROR(lock, "lock timed out (enqueued at "CFS_TIME_T", "
129                   CFS_DURATION_T"s ago), entering recovery for %s@%s",
130                   lock->l_last_activity,
131                   cfs_time_sub(cfs_time_current_sec(), lock->l_last_activity),
132                   obd2cli_tgt(obd), imp->imp_connection->c_remote_uuid.uuid);
133
134         RETURN(0);
135 }
136 EXPORT_SYMBOL(ldlm_expired_completion_wait);
137
138 /* We use the same basis for both server side and client side functions
139    from a single node. */
140 int ldlm_get_enq_timeout(struct ldlm_lock *lock)
141 {
142         int timeout = at_get(ldlm_lock_to_ns_at(lock));
143         if (AT_OFF)
144                 return obd_timeout / 2;
145         /* Since these are non-updating timeouts, we should be conservative.
146            It would be nice to have some kind of "early reply" mechanism for
147            lock callbacks too... */
148         timeout = min_t(int, at_max, timeout + (timeout >> 1)); /* 150% */
149         return max(timeout, ldlm_enqueue_min);
150 }
151 EXPORT_SYMBOL(ldlm_get_enq_timeout);
152
153 /**
154  * Helper function for ldlm_completion_ast(), updating timings when lock is
155  * actually granted.
156  */
157 static int ldlm_completion_tail(struct ldlm_lock *lock)
158 {
159         long delay;
160         int  result;
161
162         if (lock->l_destroyed || lock->l_flags & LDLM_FL_FAILED) {
163                 LDLM_DEBUG(lock, "client-side enqueue: destroyed");
164                 result = -EIO;
165         } else {
166                 delay = cfs_time_sub(cfs_time_current_sec(),
167                                      lock->l_last_activity);
168                 LDLM_DEBUG(lock, "client-side enqueue: granted after "
169                            CFS_DURATION_T"s", delay);
170
171                 /* Update our time estimate */
172                 at_measured(ldlm_lock_to_ns_at(lock),
173                             delay);
174                 result = 0;
175         }
176         return result;
177 }
178
179 /**
180  * Implementation of ->l_completion_ast() for a client, that doesn't wait
181  * until lock is granted. Suitable for locks enqueued through ptlrpcd, of
182  * other threads that cannot block for long.
183  */
184 int ldlm_completion_ast_async(struct ldlm_lock *lock, __u64 flags, void *data)
185 {
186         ENTRY;
187
188         if (flags == LDLM_FL_WAIT_NOREPROC) {
189                 LDLM_DEBUG(lock, "client-side enqueue waiting on pending lock");
190                 RETURN(0);
191         }
192
193         if (!(flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
194                        LDLM_FL_BLOCK_CONV))) {
195                 cfs_waitq_signal(&lock->l_waitq);
196                 RETURN(ldlm_completion_tail(lock));
197         }
198
199         LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
200                    "going forward");
201         ldlm_reprocess_all(lock->l_resource);
202         RETURN(0);
203 }
204 EXPORT_SYMBOL(ldlm_completion_ast_async);
205
206 /**
207  * Generic LDLM "completion" AST. This is called in several cases:
208  *
209  *     - when a reply to an ENQUEUE RPC is received from the server
210  *       (ldlm_cli_enqueue_fini()). Lock might be granted or not granted at
211  *       this point (determined by flags);
212  *
213  *     - when LDLM_CP_CALLBACK RPC comes to client to notify it that lock has
214  *       been granted;
215  *
216  *     - when ldlm_lock_match(LDLM_FL_LVB_READY) is about to wait until lock
217  *       gets correct lvb;
218  *
219  *     - to force all locks when resource is destroyed (cleanup_resource());
220  *
221  *     - during lock conversion (not used currently).
222  *
223  * If lock is not granted in the first case, this function waits until second
224  * or penultimate cases happen in some other thread.
225  *
226  */
227 int ldlm_completion_ast(struct ldlm_lock *lock, __u64 flags, void *data)
228 {
229         /* XXX ALLOCATE - 160 bytes */
230         struct lock_wait_data lwd;
231         struct obd_device *obd;
232         struct obd_import *imp = NULL;
233         struct l_wait_info lwi;
234         __u32 timeout;
235         int rc = 0;
236         ENTRY;
237
238         if (flags == LDLM_FL_WAIT_NOREPROC) {
239                 LDLM_DEBUG(lock, "client-side enqueue waiting on pending lock");
240                 goto noreproc;
241         }
242
243         if (!(flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
244                        LDLM_FL_BLOCK_CONV))) {
245                 cfs_waitq_signal(&lock->l_waitq);
246                 RETURN(0);
247         }
248
249         LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
250                    "sleeping");
251
252 noreproc:
253
254         obd = class_exp2obd(lock->l_conn_export);
255
256         /* if this is a local lock, then there is no import */
257         if (obd != NULL) {
258                 imp = obd->u.cli.cl_import;
259         }
260
261         /* Wait a long time for enqueue - server may have to callback a
262            lock from another client.  Server will evict the other client if it
263            doesn't respond reasonably, and then give us the lock. */
264         timeout = ldlm_get_enq_timeout(lock) * 2;
265
266         lwd.lwd_lock = lock;
267
268         if (lock->l_flags & LDLM_FL_NO_TIMEOUT) {
269                 LDLM_DEBUG(lock, "waiting indefinitely because of NO_TIMEOUT");
270                 lwi = LWI_INTR(interrupted_completion_wait, &lwd);
271         } else {
272                 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(timeout),
273                                        ldlm_expired_completion_wait,
274                                        interrupted_completion_wait, &lwd);
275         }
276
277         if (imp != NULL) {
278                 spin_lock(&imp->imp_lock);
279                 lwd.lwd_conn_cnt = imp->imp_conn_cnt;
280                 spin_unlock(&imp->imp_lock);
281         }
282
283         if (ns_is_client(ldlm_lock_to_ns(lock)) &&
284             OBD_FAIL_CHECK_RESET(OBD_FAIL_LDLM_INTR_CP_AST,
285                                  OBD_FAIL_LDLM_CP_BL_RACE | OBD_FAIL_ONCE)) {
286                 lock->l_flags |= LDLM_FL_FAIL_LOC;
287                 rc = -EINTR;
288         } else {
289                 /* Go to sleep until the lock is granted or cancelled. */
290                 rc = l_wait_event(lock->l_waitq,
291                                   is_granted_or_cancelled(lock), &lwi);
292         }
293
294         if (rc) {
295                 LDLM_DEBUG(lock, "client-side enqueue waking up: failed (%d)",
296                            rc);
297                 RETURN(rc);
298         }
299
300         RETURN(ldlm_completion_tail(lock));
301 }
302 EXPORT_SYMBOL(ldlm_completion_ast);
303
304 /**
305  * A helper to build a blocking AST function
306  *
307  * Perform a common operation for blocking ASTs:
308  * defferred lock cancellation.
309  *
310  * \param lock the lock blocking or canceling AST was called on
311  * \retval 0
312  * \see mdt_blocking_ast
313  * \see ldlm_blocking_ast
314  */
315 int ldlm_blocking_ast_nocheck(struct ldlm_lock *lock)
316 {
317         int do_ast;
318         ENTRY;
319
320         lock->l_flags |= LDLM_FL_CBPENDING;
321         do_ast = (!lock->l_readers && !lock->l_writers);
322         unlock_res_and_lock(lock);
323
324         if (do_ast) {
325                 struct lustre_handle lockh;
326                 int rc;
327
328                 LDLM_DEBUG(lock, "already unused, calling ldlm_cli_cancel");
329                 ldlm_lock2handle(lock, &lockh);
330                 rc = ldlm_cli_cancel(&lockh);
331                 if (rc < 0)
332                         CERROR("ldlm_cli_cancel: %d\n", rc);
333         } else {
334                 LDLM_DEBUG(lock, "Lock still has references, will be "
335                            "cancelled later");
336         }
337         RETURN(0);
338 }
339 EXPORT_SYMBOL(ldlm_blocking_ast_nocheck);
340
341 /**
342  * Server blocking AST
343  *
344  * ->l_blocking_ast() callback for LDLM locks acquired by server-side
345  * OBDs.
346  *
347  * \param lock the lock which blocks a request or cancelling lock
348  * \param desc unused
349  * \param data unused
350  * \param flag indicates whether this cancelling or blocking callback
351  * \retval 0
352  * \see ldlm_blocking_ast_nocheck
353  */
354 int ldlm_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
355                       void *data, int flag)
356 {
357         ENTRY;
358
359         if (flag == LDLM_CB_CANCELING) {
360                 /* Don't need to do anything here. */
361                 RETURN(0);
362         }
363
364         lock_res_and_lock(lock);
365         /* Get this: if ldlm_blocking_ast is racing with intent_policy, such
366          * that ldlm_blocking_ast is called just before intent_policy method
367          * takes the lr_lock, then by the time we get the lock, we might not
368          * be the correct blocking function anymore.  So check, and return
369          * early, if so. */
370         if (lock->l_blocking_ast != ldlm_blocking_ast) {
371                 unlock_res_and_lock(lock);
372                 RETURN(0);
373         }
374         RETURN(ldlm_blocking_ast_nocheck(lock));
375 }
376 EXPORT_SYMBOL(ldlm_blocking_ast);
377
378 /**
379  * ->l_glimpse_ast() for DLM extent locks acquired on the server-side. See
380  * comment in filter_intent_policy() on why you may need this.
381  */
382 int ldlm_glimpse_ast(struct ldlm_lock *lock, void *reqp)
383 {
384         /*
385          * Returning -ELDLM_NO_LOCK_DATA actually works, but the reason for
386          * that is rather subtle: with OST-side locking, it may so happen that
387          * _all_ extent locks are held by the OST. If client wants to obtain
388          * current file size it calls ll{,u}_glimpse_size(), and (as locks are
389          * on the server), dummy glimpse callback fires and does
390          * nothing. Client still receives correct file size due to the
391          * following fragment in filter_intent_policy():
392          *
393          * rc = l->l_glimpse_ast(l, NULL); // this will update the LVB
394          * if (rc != 0 && res->lr_namespace->ns_lvbo &&
395          *     res->lr_namespace->ns_lvbo->lvbo_update) {
396          *         res->lr_namespace->ns_lvbo->lvbo_update(res, NULL, 0, 1);
397          * }
398          *
399          * that is, after glimpse_ast() fails, filter_lvbo_update() runs, and
400          * returns correct file size to the client.
401          */
402         return -ELDLM_NO_LOCK_DATA;
403 }
404 EXPORT_SYMBOL(ldlm_glimpse_ast);
405
406 /**
407  * Enqueue a local lock (typically on a server).
408  */
409 int ldlm_cli_enqueue_local(struct ldlm_namespace *ns,
410                            const struct ldlm_res_id *res_id,
411                            ldlm_type_t type, ldlm_policy_data_t *policy,
412                            ldlm_mode_t mode, __u64 *flags,
413                            ldlm_blocking_callback blocking,
414                            ldlm_completion_callback completion,
415                            ldlm_glimpse_callback glimpse,
416                            void *data, __u32 lvb_len, enum lvb_type lvb_type,
417                            const __u64 *client_cookie,
418                            struct lustre_handle *lockh)
419 {
420         struct ldlm_lock *lock;
421         int err;
422         const struct ldlm_callback_suite cbs = { .lcs_completion = completion,
423                                                  .lcs_blocking   = blocking,
424                                                  .lcs_glimpse    = glimpse,
425         };
426         ENTRY;
427
428         LASSERT(!(*flags & LDLM_FL_REPLAY));
429         if (unlikely(ns_is_client(ns))) {
430                 CERROR("Trying to enqueue local lock in a shadow namespace\n");
431                 LBUG();
432         }
433
434         lock = ldlm_lock_create(ns, res_id, type, mode, &cbs, data, lvb_len,
435                                 lvb_type);
436         if (unlikely(!lock))
437                 GOTO(out_nolock, err = -ENOMEM);
438
439         ldlm_lock2handle(lock, lockh);
440
441         /* NB: we don't have any lock now (lock_res_and_lock)
442          * because it's a new lock */
443         ldlm_lock_addref_internal_nolock(lock, mode);
444         lock->l_flags |= LDLM_FL_LOCAL;
445         if (*flags & LDLM_FL_ATOMIC_CB)
446                 lock->l_flags |= LDLM_FL_ATOMIC_CB;
447
448         if (policy != NULL)
449                 lock->l_policy_data = *policy;
450         if (client_cookie != NULL)
451                 lock->l_client_cookie = *client_cookie;
452         if (type == LDLM_EXTENT)
453                 lock->l_req_extent = policy->l_extent;
454
455         err = ldlm_lock_enqueue(ns, &lock, policy, flags);
456         if (unlikely(err != ELDLM_OK))
457                 GOTO(out, err);
458
459         if (policy != NULL)
460                 *policy = lock->l_policy_data;
461
462         if (lock->l_completion_ast)
463                 lock->l_completion_ast(lock, *flags, NULL);
464
465         LDLM_DEBUG(lock, "client-side local enqueue handler, new lock created");
466         EXIT;
467  out:
468         LDLM_LOCK_RELEASE(lock);
469  out_nolock:
470         return err;
471 }
472 EXPORT_SYMBOL(ldlm_cli_enqueue_local);
473
474 static void failed_lock_cleanup(struct ldlm_namespace *ns,
475                                 struct ldlm_lock *lock, int mode)
476 {
477         int need_cancel = 0;
478
479         /* Set a flag to prevent us from sending a CANCEL (bug 407) */
480         lock_res_and_lock(lock);
481         /* Check that lock is not granted or failed, we might race. */
482         if ((lock->l_req_mode != lock->l_granted_mode) &&
483             !(lock->l_flags & LDLM_FL_FAILED)) {
484                 /* Make sure that this lock will not be found by raced
485                  * bl_ast and -EINVAL reply is sent to server anyways.
486                  * bug 17645 */
487                 lock->l_flags |= LDLM_FL_LOCAL_ONLY | LDLM_FL_FAILED |
488                                  LDLM_FL_ATOMIC_CB | LDLM_FL_CBPENDING;
489                 need_cancel = 1;
490         }
491         unlock_res_and_lock(lock);
492
493         if (need_cancel)
494                 LDLM_DEBUG(lock,
495                            "setting FL_LOCAL_ONLY | LDLM_FL_FAILED | "
496                            "LDLM_FL_ATOMIC_CB | LDLM_FL_CBPENDING");
497         else
498                 LDLM_DEBUG(lock, "lock was granted or failed in race");
499
500         ldlm_lock_decref_internal(lock, mode);
501
502         /* XXX - HACK because we shouldn't call ldlm_lock_destroy()
503          *       from llite/file.c/ll_file_flock(). */
504         /* This code makes for the fact that we do not have blocking handler on
505          * a client for flock locks. As such this is the place where we must
506          * completely kill failed locks. (interrupted and those that
507          * were waiting to be granted when server evicted us. */
508         if (lock->l_resource->lr_type == LDLM_FLOCK) {
509                 lock_res_and_lock(lock);
510                 ldlm_resource_unlink_lock(lock);
511                 ldlm_lock_destroy_nolock(lock);
512                 unlock_res_and_lock(lock);
513         }
514 }
515
516 /**
517  * Finishing portion of client lock enqueue code.
518  *
519  * Called after receiving reply from server.
520  */
521 int ldlm_cli_enqueue_fini(struct obd_export *exp, struct ptlrpc_request *req,
522                           ldlm_type_t type, __u8 with_policy, ldlm_mode_t mode,
523                           __u64 *flags, void *lvb, __u32 lvb_len,
524                           struct lustre_handle *lockh,int rc)
525 {
526         struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
527         int is_replay = *flags & LDLM_FL_REPLAY;
528         struct ldlm_lock *lock;
529         struct ldlm_reply *reply;
530         int cleanup_phase = 1;
531         int size = 0;
532         ENTRY;
533
534         lock = ldlm_handle2lock(lockh);
535         /* ldlm_cli_enqueue is holding a reference on this lock. */
536         if (!lock) {
537                 LASSERT(type == LDLM_FLOCK);
538                 RETURN(-ENOLCK);
539         }
540
541         LASSERTF(ergo(lvb_len != 0, lvb_len == lock->l_lvb_len),
542                  "lvb_len = %d, l_lvb_len = %d\n", lvb_len, lock->l_lvb_len);
543
544         if (rc != ELDLM_OK) {
545                 LASSERT(!is_replay);
546                 LDLM_DEBUG(lock, "client-side enqueue END (%s)",
547                            rc == ELDLM_LOCK_ABORTED ? "ABORTED" : "FAILED");
548
549                 if (rc != ELDLM_LOCK_ABORTED)
550                         GOTO(cleanup, rc);
551         }
552
553         /* Before we return, swab the reply */
554         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
555         if (reply == NULL)
556                 GOTO(cleanup, rc = -EPROTO);
557
558         if (lvb_len != 0) {
559                 LASSERT(lvb != NULL);
560
561                 size = req_capsule_get_size(&req->rq_pill, &RMF_DLM_LVB,
562                                             RCL_SERVER);
563                 if (size < 0) {
564                         LDLM_ERROR(lock, "Fail to get lvb_len, rc = %d", size);
565                         GOTO(cleanup, rc = size);
566                 } else if (unlikely(size > lvb_len)) {
567                         LDLM_ERROR(lock, "Replied LVB is larger than "
568                                    "expectation, expected = %d, replied = %d",
569                                    lvb_len, size);
570                         GOTO(cleanup, rc = -EINVAL);
571                 }
572         }
573
574         if (rc == ELDLM_LOCK_ABORTED) {
575                 if (lvb_len != 0)
576                         rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_SERVER,
577                                            lvb, size);
578                 GOTO(cleanup, rc = (rc != 0 ? rc : ELDLM_LOCK_ABORTED));
579         }
580
581         /* lock enqueued on the server */
582         cleanup_phase = 0;
583
584         lock_res_and_lock(lock);
585         /* Key change rehash lock in per-export hash with new key */
586         if (exp->exp_lock_hash) {
587                 /* In the function below, .hs_keycmp resolves to
588                  * ldlm_export_lock_keycmp() */
589                 /* coverity[overrun-buffer-val] */
590                 cfs_hash_rehash_key(exp->exp_lock_hash,
591                                     &lock->l_remote_handle,
592                                     &reply->lock_handle,
593                                     &lock->l_exp_hash);
594         } else {
595                 lock->l_remote_handle = reply->lock_handle;
596         }
597
598         *flags = ldlm_flags_from_wire(reply->lock_flags);
599         lock->l_flags |= ldlm_flags_from_wire(reply->lock_flags &
600                                               LDLM_INHERIT_FLAGS);
601         /* move NO_TIMEOUT flag to the lock to force ldlm_lock_match()
602          * to wait with no timeout as well */
603         lock->l_flags |= ldlm_flags_from_wire(reply->lock_flags &
604                                               LDLM_FL_NO_TIMEOUT);
605         unlock_res_and_lock(lock);
606
607         CDEBUG(D_INFO, "local: %p, remote cookie: "LPX64", flags: 0x%llx\n",
608                lock, reply->lock_handle.cookie, *flags);
609
610         /* If enqueue returned a blocked lock but the completion handler has
611          * already run, then it fixed up the resource and we don't need to do it
612          * again. */
613         if ((*flags) & LDLM_FL_LOCK_CHANGED) {
614                 int newmode = reply->lock_desc.l_req_mode;
615                 LASSERT(!is_replay);
616                 if (newmode && newmode != lock->l_req_mode) {
617                         LDLM_DEBUG(lock, "server returned different mode %s",
618                                    ldlm_lockname[newmode]);
619                         lock->l_req_mode = newmode;
620                 }
621
622                 if (memcmp(reply->lock_desc.l_resource.lr_name.name,
623                           lock->l_resource->lr_name.name,
624                           sizeof(struct ldlm_res_id))) {
625                         CDEBUG(D_INFO, "remote intent success, locking "
626                                         "(%ld,%ld,%ld) instead of "
627                                         "(%ld,%ld,%ld)\n",
628                               (long)reply->lock_desc.l_resource.lr_name.name[0],
629                               (long)reply->lock_desc.l_resource.lr_name.name[1],
630                               (long)reply->lock_desc.l_resource.lr_name.name[2],
631                               (long)lock->l_resource->lr_name.name[0],
632                               (long)lock->l_resource->lr_name.name[1],
633                               (long)lock->l_resource->lr_name.name[2]);
634
635                         rc = ldlm_lock_change_resource(ns, lock,
636                                         &reply->lock_desc.l_resource.lr_name);
637                         if (rc || lock->l_resource == NULL)
638                                 GOTO(cleanup, rc = -ENOMEM);
639                         LDLM_DEBUG(lock, "client-side enqueue, new resource");
640                 }
641                 if (with_policy)
642                         if (!(type == LDLM_IBITS && !(exp->exp_connect_flags &
643                                                     OBD_CONNECT_IBITS)))
644                                 /* We assume lock type cannot change on server*/
645                                 ldlm_convert_policy_to_local(exp,
646                                                 lock->l_resource->lr_type,
647                                                 &reply->lock_desc.l_policy_data,
648                                                 &lock->l_policy_data);
649                 if (type != LDLM_PLAIN)
650                         LDLM_DEBUG(lock,"client-side enqueue, new policy data");
651         }
652
653         if ((*flags) & LDLM_FL_AST_SENT ||
654             /* Cancel extent locks as soon as possible on a liblustre client,
655              * because it cannot handle asynchronous ASTs robustly (see
656              * bug 7311). */
657             (LIBLUSTRE_CLIENT && type == LDLM_EXTENT)) {
658                 lock_res_and_lock(lock);
659                 lock->l_flags |= LDLM_FL_CBPENDING |  LDLM_FL_BL_AST;
660                 unlock_res_and_lock(lock);
661                 LDLM_DEBUG(lock, "enqueue reply includes blocking AST");
662         }
663
664         /* If the lock has already been granted by a completion AST, don't
665          * clobber the LVB with an older one. */
666         if (lvb_len != 0) {
667                 /* We must lock or a racing completion might update lvb without
668                  * letting us know and we'll clobber the correct value.
669                  * Cannot unlock after the check either, a that still leaves
670                  * a tiny window for completion to get in */
671                 lock_res_and_lock(lock);
672                 if (lock->l_req_mode != lock->l_granted_mode)
673                         rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_SERVER,
674                                            lock->l_lvb_data, size);
675                 unlock_res_and_lock(lock);
676                 if (rc < 0)
677                         GOTO(cleanup, rc);
678         }
679
680         if (!is_replay) {
681                 rc = ldlm_lock_enqueue(ns, &lock, NULL, flags);
682                 if (lock->l_completion_ast != NULL) {
683                         int err = lock->l_completion_ast(lock, *flags, NULL);
684                         if (!rc)
685                                 rc = err;
686                         if (rc)
687                                 cleanup_phase = 1;
688                 }
689         }
690
691         if (lvb_len && lvb != NULL) {
692                 /* Copy the LVB here, and not earlier, because the completion
693                  * AST (if any) can override what we got in the reply */
694                 memcpy(lvb, lock->l_lvb_data, lvb_len);
695         }
696
697         LDLM_DEBUG(lock, "client-side enqueue END");
698         EXIT;
699 cleanup:
700         if (cleanup_phase == 1 && rc)
701                 failed_lock_cleanup(ns, lock, mode);
702         /* Put lock 2 times, the second reference is held by ldlm_cli_enqueue */
703         LDLM_LOCK_PUT(lock);
704         LDLM_LOCK_RELEASE(lock);
705         return rc;
706 }
707 EXPORT_SYMBOL(ldlm_cli_enqueue_fini);
708
709 /**
710  * Estimate number of lock handles that would fit into request of given
711  * size.  PAGE_SIZE-512 is to allow TCP/IP and LNET headers to fit into
712  * a single page on the send/receive side. XXX: 512 should be changed to
713  * more adequate value.
714  */
715 static inline int ldlm_req_handles_avail(int req_size, int off)
716 {
717         int avail;
718
719         avail = min_t(int, LDLM_MAXREQSIZE, CFS_PAGE_SIZE - 512) - req_size;
720         if (likely(avail >= 0))
721                 avail /= (int)sizeof(struct lustre_handle);
722         else
723                 avail = 0;
724         avail += LDLM_LOCKREQ_HANDLES - off;
725
726         return avail;
727 }
728
729 static inline int ldlm_capsule_handles_avail(struct req_capsule *pill,
730                                              enum req_location loc,
731                                              int off)
732 {
733         int size = req_capsule_msg_size(pill, loc);
734         return ldlm_req_handles_avail(size, off);
735 }
736
737 static inline int ldlm_format_handles_avail(struct obd_import *imp,
738                                             const struct req_format *fmt,
739                                             enum req_location loc, int off)
740 {
741         int size = req_capsule_fmt_size(imp->imp_msg_magic, fmt, loc);
742         return ldlm_req_handles_avail(size, off);
743 }
744
745 /**
746  * Cancel LRU locks and pack them into the enqueue request. Pack there the given
747  * \a count locks in \a cancels.
748  *
749  * This is to be called by functions preparing their own requests that
750  * might contain lists of locks to cancel in addition to actual operation
751  * that needs to be performed.
752  */
753 int ldlm_prep_elc_req(struct obd_export *exp, struct ptlrpc_request *req,
754                       int version, int opc, int canceloff,
755                       cfs_list_t *cancels, int count)
756 {
757         struct ldlm_namespace   *ns = exp->exp_obd->obd_namespace;
758         struct req_capsule      *pill = &req->rq_pill;
759         struct ldlm_request     *dlm = NULL;
760         int flags, avail, to_free, pack = 0;
761         CFS_LIST_HEAD(head);
762         int rc;
763         ENTRY;
764
765         if (cancels == NULL)
766                 cancels = &head;
767         if (ns_connect_cancelset(ns)) {
768                 /* Estimate the amount of available space in the request. */
769                 req_capsule_filled_sizes(pill, RCL_CLIENT);
770                 avail = ldlm_capsule_handles_avail(pill, RCL_CLIENT, canceloff);
771
772                 flags = ns_connect_lru_resize(ns) ?
773                         LDLM_CANCEL_LRUR : LDLM_CANCEL_AGED;
774                 to_free = !ns_connect_lru_resize(ns) &&
775                           opc == LDLM_ENQUEUE ? 1 : 0;
776
777                 /* Cancel LRU locks here _only_ if the server supports
778                  * EARLY_CANCEL. Otherwise we have to send extra CANCEL
779                  * RPC, which will make us slower. */
780                 if (avail > count)
781                         count += ldlm_cancel_lru_local(ns, cancels, to_free,
782                                                        avail - count, 0, flags);
783                 if (avail > count)
784                         pack = count;
785                 else
786                         pack = avail;
787                 req_capsule_set_size(pill, &RMF_DLM_REQ, RCL_CLIENT,
788                                      ldlm_request_bufsize(pack, opc));
789         }
790
791         rc = ptlrpc_request_pack(req, version, opc);
792         if (rc) {
793                 ldlm_lock_list_put(cancels, l_bl_ast, count);
794                 RETURN(rc);
795         }
796
797         if (ns_connect_cancelset(ns)) {
798                 if (canceloff) {
799                         dlm = req_capsule_client_get(pill, &RMF_DLM_REQ);
800                         LASSERT(dlm);
801                         /* Skip first lock handler in ldlm_request_pack(),
802                          * this method will incrment @lock_count according
803                          * to the lock handle amount actually written to
804                          * the buffer. */
805                         dlm->lock_count = canceloff;
806                 }
807                 /* Pack into the request @pack lock handles. */
808                 ldlm_cli_cancel_list(cancels, pack, req, 0);
809                 /* Prepare and send separate cancel RPC for others. */
810                 ldlm_cli_cancel_list(cancels, count - pack, NULL, 0);
811         } else {
812                 ldlm_lock_list_put(cancels, l_bl_ast, count);
813         }
814         RETURN(0);
815 }
816 EXPORT_SYMBOL(ldlm_prep_elc_req);
817
818 int ldlm_prep_enqueue_req(struct obd_export *exp, struct ptlrpc_request *req,
819                           cfs_list_t *cancels, int count)
820 {
821         return ldlm_prep_elc_req(exp, req, LUSTRE_DLM_VERSION, LDLM_ENQUEUE,
822                                  LDLM_ENQUEUE_CANCEL_OFF, cancels, count);
823 }
824 EXPORT_SYMBOL(ldlm_prep_enqueue_req);
825
826 /**
827  * Client-side lock enqueue.
828  *
829  * If a request has some specific initialisation it is passed in \a reqp,
830  * otherwise it is created in ldlm_cli_enqueue.
831  *
832  * Supports sync and async requests, pass \a async flag accordingly. If a
833  * request was created in ldlm_cli_enqueue and it is the async request,
834  * pass it to the caller in \a reqp.
835  */
836 int ldlm_cli_enqueue(struct obd_export *exp, struct ptlrpc_request **reqp,
837                      struct ldlm_enqueue_info *einfo,
838                      const struct ldlm_res_id *res_id,
839                      ldlm_policy_data_t const *policy, __u64 *flags,
840                      void *lvb, __u32 lvb_len, enum lvb_type lvb_type,
841                      struct lustre_handle *lockh, int async)
842 {
843         struct ldlm_namespace *ns;
844         struct ldlm_lock      *lock;
845         struct ldlm_request   *body;
846         int                    is_replay = *flags & LDLM_FL_REPLAY;
847         int                    req_passed_in = 1;
848         int                    rc, err;
849         struct ptlrpc_request *req;
850         ENTRY;
851
852         LASSERT(exp != NULL);
853
854         ns = exp->exp_obd->obd_namespace;
855
856         /* If we're replaying this lock, just check some invariants.
857          * If we're creating a new lock, get everything all setup nice. */
858         if (is_replay) {
859                 lock = ldlm_handle2lock_long(lockh, 0);
860                 LASSERT(lock != NULL);
861                 LDLM_DEBUG(lock, "client-side enqueue START");
862                 LASSERT(exp == lock->l_conn_export);
863         } else {
864                 const struct ldlm_callback_suite cbs = {
865                         .lcs_completion = einfo->ei_cb_cp,
866                         .lcs_blocking   = einfo->ei_cb_bl,
867                         .lcs_glimpse    = einfo->ei_cb_gl,
868                         .lcs_weigh      = einfo->ei_cb_wg
869                 };
870                 lock = ldlm_lock_create(ns, res_id, einfo->ei_type,
871                                         einfo->ei_mode, &cbs, einfo->ei_cbdata,
872                                         lvb_len, lvb_type);
873                 if (lock == NULL)
874                         RETURN(-ENOMEM);
875                 /* for the local lock, add the reference */
876                 ldlm_lock_addref_internal(lock, einfo->ei_mode);
877                 ldlm_lock2handle(lock, lockh);
878                 if (policy != NULL) {
879                         /* INODEBITS_INTEROP: If the server does not support
880                          * inodebits, we will request a plain lock in the
881                          * descriptor (ldlm_lock2desc() below) but use an
882                          * inodebits lock internally with both bits set.
883                          */
884                         if (einfo->ei_type == LDLM_IBITS &&
885                             !(exp->exp_connect_flags & OBD_CONNECT_IBITS))
886                                 lock->l_policy_data.l_inodebits.bits =
887                                         MDS_INODELOCK_LOOKUP |
888                                         MDS_INODELOCK_UPDATE;
889                         else
890                                 lock->l_policy_data = *policy;
891                 }
892
893                 if (einfo->ei_type == LDLM_EXTENT)
894                         lock->l_req_extent = policy->l_extent;
895                 LDLM_DEBUG(lock, "client-side enqueue START, flags %llx\n",
896                            *flags);
897         }
898
899         lock->l_conn_export = exp;
900         lock->l_export = NULL;
901         lock->l_blocking_ast = einfo->ei_cb_bl;
902         lock->l_flags |= (*flags & LDLM_FL_NO_LRU);
903
904         /* lock not sent to server yet */
905
906         if (reqp == NULL || *reqp == NULL) {
907                 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
908                                                 &RQF_LDLM_ENQUEUE,
909                                                 LUSTRE_DLM_VERSION,
910                                                 LDLM_ENQUEUE);
911                 if (req == NULL) {
912                         failed_lock_cleanup(ns, lock, einfo->ei_mode);
913                         LDLM_LOCK_RELEASE(lock);
914                         RETURN(-ENOMEM);
915                 }
916                 req_passed_in = 0;
917                 if (reqp)
918                         *reqp = req;
919         } else {
920                 int len;
921
922                 req = *reqp;
923                 len = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ,
924                                            RCL_CLIENT);
925                 LASSERTF(len >= sizeof(*body), "buflen[%d] = %d, not %d\n",
926                          DLM_LOCKREQ_OFF, len, (int)sizeof(*body));
927         }
928
929         /* Dump lock data into the request buffer */
930         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
931         ldlm_lock2desc(lock, &body->lock_desc);
932         body->lock_flags = ldlm_flags_to_wire(*flags);
933         body->lock_handle[0] = *lockh;
934
935         /* Continue as normal. */
936         if (!req_passed_in) {
937                 if (lvb_len > 0)
938                         req_capsule_extend(&req->rq_pill,
939                                            &RQF_LDLM_ENQUEUE_LVB);
940                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
941                                      lvb_len);
942                 ptlrpc_request_set_replen(req);
943         }
944
945         /*
946          * Liblustre client doesn't get extent locks, except for O_APPEND case
947          * where [0, OBD_OBJECT_EOF] lock is taken, or truncate, where
948          * [i_size, OBD_OBJECT_EOF] lock is taken.
949          */
950         LASSERT(ergo(LIBLUSTRE_CLIENT, einfo->ei_type != LDLM_EXTENT ||
951                      policy->l_extent.end == OBD_OBJECT_EOF));
952
953         if (async) {
954                 LASSERT(reqp != NULL);
955                 RETURN(0);
956         }
957
958         LDLM_DEBUG(lock, "sending request");
959
960         rc = ptlrpc_queue_wait(req);
961
962         err = ldlm_cli_enqueue_fini(exp, req, einfo->ei_type, policy ? 1 : 0,
963                                     einfo->ei_mode, flags, lvb, lvb_len,
964                                     lockh, rc);
965
966         /* If ldlm_cli_enqueue_fini did not find the lock, we need to free
967          * one reference that we took */
968         if (err == -ENOLCK)
969                 LDLM_LOCK_RELEASE(lock);
970         else
971                 rc = err;
972
973         if (!req_passed_in && req != NULL) {
974                 ptlrpc_req_finished(req);
975                 if (reqp)
976                         *reqp = NULL;
977         }
978
979         RETURN(rc);
980 }
981 EXPORT_SYMBOL(ldlm_cli_enqueue);
982
983 static int ldlm_cli_convert_local(struct ldlm_lock *lock, int new_mode,
984                                   __u32 *flags)
985 {
986         struct ldlm_resource *res;
987         int rc;
988         ENTRY;
989         if (ns_is_client(ldlm_lock_to_ns(lock))) {
990                 CERROR("Trying to cancel local lock\n");
991                 LBUG();
992         }
993         LDLM_DEBUG(lock, "client-side local convert");
994
995         res = ldlm_lock_convert(lock, new_mode, flags);
996         if (res) {
997                 ldlm_reprocess_all(res);
998                 rc = 0;
999         } else {
1000                 rc = EDEADLOCK;
1001         }
1002         LDLM_DEBUG(lock, "client-side local convert handler END");
1003         LDLM_LOCK_PUT(lock);
1004         RETURN(rc);
1005 }
1006
1007 /* FIXME: one of ldlm_cli_convert or the server side should reject attempted
1008  * conversion of locks which are on the waiting or converting queue */
1009 /* Caller of this code is supposed to take care of lock readers/writers
1010    accounting */
1011 int ldlm_cli_convert(struct lustre_handle *lockh, int new_mode, __u32 *flags)
1012 {
1013         struct ldlm_request   *body;
1014         struct ldlm_reply     *reply;
1015         struct ldlm_lock      *lock;
1016         struct ldlm_resource  *res;
1017         struct ptlrpc_request *req;
1018         int                    rc;
1019         ENTRY;
1020
1021         lock = ldlm_handle2lock(lockh);
1022         if (!lock) {
1023                 LBUG();
1024                 RETURN(-EINVAL);
1025         }
1026         *flags = 0;
1027
1028         if (lock->l_conn_export == NULL)
1029                 RETURN(ldlm_cli_convert_local(lock, new_mode, flags));
1030
1031         LDLM_DEBUG(lock, "client-side convert");
1032
1033         req = ptlrpc_request_alloc_pack(class_exp2cliimp(lock->l_conn_export),
1034                                         &RQF_LDLM_CONVERT, LUSTRE_DLM_VERSION,
1035                                         LDLM_CONVERT);
1036         if (req == NULL) {
1037                 LDLM_LOCK_PUT(lock);
1038                 RETURN(-ENOMEM);
1039         }
1040
1041         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1042         body->lock_handle[0] = lock->l_remote_handle;
1043
1044         body->lock_desc.l_req_mode = new_mode;
1045         body->lock_flags = ldlm_flags_to_wire(*flags);
1046
1047
1048         ptlrpc_request_set_replen(req);
1049         rc = ptlrpc_queue_wait(req);
1050         if (rc != ELDLM_OK)
1051                 GOTO(out, rc);
1052
1053         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1054         if (reply == NULL)
1055                 GOTO(out, rc = -EPROTO);
1056
1057         if (req->rq_status)
1058                 GOTO(out, rc = req->rq_status);
1059
1060         res = ldlm_lock_convert(lock, new_mode, &reply->lock_flags);
1061         if (res != NULL) {
1062                 ldlm_reprocess_all(res);
1063                 /* Go to sleep until the lock is granted. */
1064                 /* FIXME: or cancelled. */
1065                 if (lock->l_completion_ast) {
1066                         rc = lock->l_completion_ast(lock, LDLM_FL_WAIT_NOREPROC,
1067                                                     NULL);
1068                         if (rc)
1069                                 GOTO(out, rc);
1070                 }
1071         } else {
1072                 rc = EDEADLOCK;
1073         }
1074         EXIT;
1075  out:
1076         LDLM_LOCK_PUT(lock);
1077         ptlrpc_req_finished(req);
1078         return rc;
1079 }
1080 EXPORT_SYMBOL(ldlm_cli_convert);
1081
1082 /**
1083  * Cancel locks locally.
1084  * Returns:
1085  * \retval LDLM_FL_LOCAL_ONLY if there is no need for a CANCEL RPC to the server
1086  * \retval LDLM_FL_CANCELING otherwise;
1087  * \retval LDLM_FL_BL_AST if there is a need for a separate CANCEL RPC.
1088  */
1089 static __u64 ldlm_cli_cancel_local(struct ldlm_lock *lock)
1090 {
1091         __u64 rc = LDLM_FL_LOCAL_ONLY;
1092         ENTRY;
1093
1094         if (lock->l_conn_export) {
1095                 bool local_only;
1096
1097                 LDLM_DEBUG(lock, "client-side cancel");
1098                 /* Set this flag to prevent others from getting new references*/
1099                 lock_res_and_lock(lock);
1100                 lock->l_flags |= LDLM_FL_CBPENDING;
1101                 local_only = !!(lock->l_flags &
1102                                 (LDLM_FL_LOCAL_ONLY|LDLM_FL_CANCEL_ON_BLOCK));
1103                 ldlm_cancel_callback(lock);
1104                 rc = (lock->l_flags & LDLM_FL_BL_AST) ?
1105                         LDLM_FL_BL_AST : LDLM_FL_CANCELING;
1106                 unlock_res_and_lock(lock);
1107
1108                 if (local_only) {
1109                         CDEBUG(D_DLMTRACE, "not sending request (at caller's "
1110                                "instruction)\n");
1111                         rc = LDLM_FL_LOCAL_ONLY;
1112                 }
1113                 ldlm_lock_cancel(lock);
1114         } else {
1115                 if (ns_is_client(ldlm_lock_to_ns(lock))) {
1116                         LDLM_ERROR(lock, "Trying to cancel local lock");
1117                         LBUG();
1118                 }
1119                 LDLM_DEBUG(lock, "server-side local cancel");
1120                 ldlm_lock_cancel(lock);
1121                 ldlm_reprocess_all(lock->l_resource);
1122         }
1123
1124         RETURN(rc);
1125 }
1126
1127 /**
1128  * Pack \a count locks in \a head into ldlm_request buffer of request \a req.
1129  */
1130 static void ldlm_cancel_pack(struct ptlrpc_request *req,
1131                              cfs_list_t *head, int count)
1132 {
1133         struct ldlm_request *dlm;
1134         struct ldlm_lock *lock;
1135         int max, packed = 0;
1136         ENTRY;
1137
1138         dlm = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1139         LASSERT(dlm != NULL);
1140
1141         /* Check the room in the request buffer. */
1142         max = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT) -
1143                 sizeof(struct ldlm_request);
1144         max /= sizeof(struct lustre_handle);
1145         max += LDLM_LOCKREQ_HANDLES;
1146         LASSERT(max >= dlm->lock_count + count);
1147
1148         /* XXX: it would be better to pack lock handles grouped by resource.
1149          * so that the server cancel would call filter_lvbo_update() less
1150          * frequently. */
1151         cfs_list_for_each_entry(lock, head, l_bl_ast) {
1152                 if (!count--)
1153                         break;
1154                 LASSERT(lock->l_conn_export);
1155                 /* Pack the lock handle to the given request buffer. */
1156                 LDLM_DEBUG(lock, "packing");
1157                 dlm->lock_handle[dlm->lock_count++] = lock->l_remote_handle;
1158                 packed++;
1159         }
1160         CDEBUG(D_DLMTRACE, "%d locks packed\n", packed);
1161         EXIT;
1162 }
1163
1164 /**
1165  * Prepare and send a batched cancel RPC. It will include \a count lock
1166  * handles of locks given in \a cancels list. */
1167 int ldlm_cli_cancel_req(struct obd_export *exp, cfs_list_t *cancels,
1168                         int count, ldlm_cancel_flags_t flags)
1169 {
1170         struct ptlrpc_request *req = NULL;
1171         struct obd_import *imp;
1172         int free, sent = 0;
1173         int rc = 0;
1174         ENTRY;
1175
1176         LASSERT(exp != NULL);
1177         LASSERT(count > 0);
1178
1179         CFS_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL, cfs_fail_val);
1180
1181         if (CFS_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_RACE))
1182                 RETURN(count);
1183
1184         free = ldlm_format_handles_avail(class_exp2cliimp(exp),
1185                                          &RQF_LDLM_CANCEL, RCL_CLIENT, 0);
1186         if (count > free)
1187                 count = free;
1188
1189         while (1) {
1190                 imp = class_exp2cliimp(exp);
1191                 if (imp == NULL || imp->imp_invalid) {
1192                         CDEBUG(D_DLMTRACE,
1193                                "skipping cancel on invalid import %p\n", imp);
1194                         RETURN(count);
1195                 }
1196
1197                 req = ptlrpc_request_alloc(imp, &RQF_LDLM_CANCEL);
1198                 if (req == NULL)
1199                         GOTO(out, rc = -ENOMEM);
1200
1201                 req_capsule_filled_sizes(&req->rq_pill, RCL_CLIENT);
1202                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT,
1203                                      ldlm_request_bufsize(count, LDLM_CANCEL));
1204
1205                 rc = ptlrpc_request_pack(req, LUSTRE_DLM_VERSION, LDLM_CANCEL);
1206                 if (rc) {
1207                         ptlrpc_request_free(req);
1208                         GOTO(out, rc);
1209                 }
1210
1211                 req->rq_request_portal = LDLM_CANCEL_REQUEST_PORTAL;
1212                 req->rq_reply_portal = LDLM_CANCEL_REPLY_PORTAL;
1213                 ptlrpc_at_set_req_timeout(req);
1214
1215                 ldlm_cancel_pack(req, cancels, count);
1216
1217                 ptlrpc_request_set_replen(req);
1218                 if (flags & LCF_ASYNC) {
1219                         ptlrpcd_add_req(req, PDL_POLICY_LOCAL, -1);
1220                         sent = count;
1221                         GOTO(out, 0);
1222                 } else {
1223                         rc = ptlrpc_queue_wait(req);
1224                 }
1225                 if (rc == ESTALE) {
1226                         CDEBUG(D_DLMTRACE, "client/server (nid %s) "
1227                                "out of sync -- not fatal\n",
1228                                libcfs_nid2str(req->rq_import->
1229                                               imp_connection->c_peer.nid));
1230                         rc = 0;
1231                 } else if (rc == -ETIMEDOUT && /* check there was no reconnect*/
1232                            req->rq_import_generation == imp->imp_generation) {
1233                         ptlrpc_req_finished(req);
1234                         continue;
1235                 } else if (rc != ELDLM_OK) {
1236                         if (rc != -ESHUTDOWN)
1237                                 CERROR("Got rc %d from cancel RPC: canceling "
1238                                        "anyway\n", rc);
1239                         break;
1240                 }
1241                 sent = count;
1242                 break;
1243         }
1244
1245         ptlrpc_req_finished(req);
1246         EXIT;
1247 out:
1248         return sent ? sent : rc;
1249 }
1250 EXPORT_SYMBOL(ldlm_cli_cancel_req);
1251
1252 static inline struct ldlm_pool *ldlm_imp2pl(struct obd_import *imp)
1253 {
1254         LASSERT(imp != NULL);
1255         return &imp->imp_obd->obd_namespace->ns_pool;
1256 }
1257
1258 /**
1259  * Update client's OBD pool related fields with new SLV and Limit from \a req.
1260  */
1261 int ldlm_cli_update_pool(struct ptlrpc_request *req)
1262 {
1263         struct obd_device *obd;
1264         __u64 new_slv;
1265         __u32 new_limit;
1266         ENTRY;
1267         if (unlikely(!req->rq_import || !req->rq_import->imp_obd ||
1268                      !imp_connect_lru_resize(req->rq_import)))
1269         {
1270                 /*
1271                  * Do nothing for corner cases.
1272                  */
1273                 RETURN(0);
1274         }
1275
1276         /* In some cases RPC may contain SLV and limit zeroed out. This
1277          * is the case when server does not support LRU resize feature.
1278          * This is also possible in some recovery cases when server-side
1279          * reqs have no reference to the OBD export and thus access to
1280          * server-side namespace is not possible. */
1281         if (lustre_msg_get_slv(req->rq_repmsg) == 0 ||
1282             lustre_msg_get_limit(req->rq_repmsg) == 0) {
1283                 DEBUG_REQ(D_HA, req, "Zero SLV or Limit found "
1284                           "(SLV: "LPU64", Limit: %u)",
1285                           lustre_msg_get_slv(req->rq_repmsg),
1286                           lustre_msg_get_limit(req->rq_repmsg));
1287                 RETURN(0);
1288         }
1289
1290         new_limit = lustre_msg_get_limit(req->rq_repmsg);
1291         new_slv = lustre_msg_get_slv(req->rq_repmsg);
1292         obd = req->rq_import->imp_obd;
1293
1294         /* Set new SLV and limit in OBD fields to make them accessible
1295          * to the pool thread. We do not access obd_namespace and pool
1296          * directly here as there is no reliable way to make sure that
1297          * they are still alive at cleanup time. Evil races are possible
1298          * which may cause Oops at that time. */
1299         write_lock(&obd->obd_pool_lock);
1300         obd->obd_pool_slv = new_slv;
1301         obd->obd_pool_limit = new_limit;
1302         write_unlock(&obd->obd_pool_lock);
1303
1304         RETURN(0);
1305 }
1306 EXPORT_SYMBOL(ldlm_cli_update_pool);
1307
1308 /**
1309  * Client side lock cancel.
1310  *
1311  * Lock must not have any readers or writers by this time.
1312  */
1313 int ldlm_cli_cancel(struct lustre_handle *lockh)
1314 {
1315         struct obd_export *exp;
1316         int avail, flags, count = 1;
1317         __u64 rc = 0;
1318         struct ldlm_namespace *ns;
1319         struct ldlm_lock *lock;
1320         CFS_LIST_HEAD(cancels);
1321         ENTRY;
1322
1323         /* concurrent cancels on the same handle can happen */
1324         lock = ldlm_handle2lock_long(lockh, LDLM_FL_CANCELING);
1325         if (lock == NULL) {
1326                 LDLM_DEBUG_NOLOCK("lock is already being destroyed\n");
1327                 RETURN(0);
1328         }
1329
1330         rc = ldlm_cli_cancel_local(lock);
1331         if (rc == LDLM_FL_LOCAL_ONLY) {
1332                 LDLM_LOCK_RELEASE(lock);
1333                 RETURN(0);
1334         }
1335         /* Even if the lock is marked as LDLM_FL_BL_AST, this is a LDLM_CANCEL
1336          * RPC which goes to canceld portal, so we can cancel other LRU locks
1337          * here and send them all as one LDLM_CANCEL RPC. */
1338         LASSERT(cfs_list_empty(&lock->l_bl_ast));
1339         cfs_list_add(&lock->l_bl_ast, &cancels);
1340
1341         exp = lock->l_conn_export;
1342         if (exp_connect_cancelset(exp)) {
1343                 avail = ldlm_format_handles_avail(class_exp2cliimp(exp),
1344                                                   &RQF_LDLM_CANCEL,
1345                                                   RCL_CLIENT, 0);
1346                 LASSERT(avail > 0);
1347
1348                 ns = ldlm_lock_to_ns(lock);
1349                 flags = ns_connect_lru_resize(ns) ?
1350                         LDLM_CANCEL_LRUR : LDLM_CANCEL_AGED;
1351                 count += ldlm_cancel_lru_local(ns, &cancels, 0, avail - 1,
1352                                                LCF_BL_AST, flags);
1353         }
1354         ldlm_cli_cancel_list(&cancels, count, NULL, 0);
1355         RETURN(0);
1356 }
1357 EXPORT_SYMBOL(ldlm_cli_cancel);
1358
1359 /**
1360  * Locally cancel up to \a count locks in list \a cancels.
1361  * Return the number of cancelled locks.
1362  */
1363 int ldlm_cli_cancel_list_local(cfs_list_t *cancels, int count,
1364                                ldlm_cancel_flags_t flags)
1365 {
1366         CFS_LIST_HEAD(head);
1367         struct ldlm_lock *lock, *next;
1368         int left = 0, bl_ast = 0;
1369         __u64 rc;
1370
1371         left = count;
1372         cfs_list_for_each_entry_safe(lock, next, cancels, l_bl_ast) {
1373                 if (left-- == 0)
1374                         break;
1375
1376                 if (flags & LCF_LOCAL) {
1377                         rc = LDLM_FL_LOCAL_ONLY;
1378                         ldlm_lock_cancel(lock);
1379                 } else {
1380                         rc = ldlm_cli_cancel_local(lock);
1381                 }
1382                 /* Until we have compound requests and can send LDLM_CANCEL
1383                  * requests batched with generic RPCs, we need to send cancels
1384                  * with the LDLM_FL_BL_AST flag in a separate RPC from
1385                  * the one being generated now. */
1386                 if (!(flags & LCF_BL_AST) && (rc == LDLM_FL_BL_AST)) {
1387                         LDLM_DEBUG(lock, "Cancel lock separately");
1388                         cfs_list_del_init(&lock->l_bl_ast);
1389                         cfs_list_add(&lock->l_bl_ast, &head);
1390                         bl_ast++;
1391                         continue;
1392                 }
1393                 if (rc == LDLM_FL_LOCAL_ONLY) {
1394                         /* CANCEL RPC should not be sent to server. */
1395                         cfs_list_del_init(&lock->l_bl_ast);
1396                         LDLM_LOCK_RELEASE(lock);
1397                         count--;
1398                 }
1399         }
1400         if (bl_ast > 0) {
1401                 count -= bl_ast;
1402                 ldlm_cli_cancel_list(&head, bl_ast, NULL, 0);
1403         }
1404
1405         RETURN(count);
1406 }
1407 EXPORT_SYMBOL(ldlm_cli_cancel_list_local);
1408
1409 /**
1410  * Cancel as many locks as possible w/o sending any RPCs (e.g. to write back
1411  * dirty data, to close a file, ...) or waiting for any RPCs in-flight (e.g.
1412  * readahead requests, ...)
1413  */
1414 static ldlm_policy_res_t ldlm_cancel_no_wait_policy(struct ldlm_namespace *ns,
1415                                                     struct ldlm_lock *lock,
1416                                                     int unused, int added,
1417                                                     int count)
1418 {
1419         ldlm_policy_res_t result = LDLM_POLICY_CANCEL_LOCK;
1420         ldlm_cancel_for_recovery cb = ns->ns_cancel_for_recovery;
1421         lock_res_and_lock(lock);
1422
1423         /* don't check added & count since we want to process all locks
1424          * from unused list */
1425         switch (lock->l_resource->lr_type) {
1426                 case LDLM_EXTENT:
1427                 case LDLM_IBITS:
1428                         if (cb && cb(lock))
1429                                 break;
1430                 default:
1431                         result = LDLM_POLICY_SKIP_LOCK;
1432                         lock->l_flags |= LDLM_FL_SKIPPED;
1433                         break;
1434         }
1435
1436         unlock_res_and_lock(lock);
1437         RETURN(result);
1438 }
1439
1440 /**
1441  * Callback function for LRU-resize policy. Decides whether to keep
1442  * \a lock in LRU for current \a LRU size \a unused, added in current
1443  * scan \a added and number of locks to be preferably canceled \a count.
1444  *
1445  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1446  *
1447  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1448  */
1449 static ldlm_policy_res_t ldlm_cancel_lrur_policy(struct ldlm_namespace *ns,
1450                                                  struct ldlm_lock *lock,
1451                                                  int unused, int added,
1452                                                  int count)
1453 {
1454         cfs_time_t cur = cfs_time_current();
1455         struct ldlm_pool *pl = &ns->ns_pool;
1456         __u64 slv, lvf, lv;
1457         cfs_time_t la;
1458
1459         /* Stop LRU processing when we reach past @count or have checked all
1460          * locks in LRU. */
1461         if (count && added >= count)
1462                 return LDLM_POLICY_KEEP_LOCK;
1463
1464         slv = ldlm_pool_get_slv(pl);
1465         lvf = ldlm_pool_get_lvf(pl);
1466         la = cfs_duration_sec(cfs_time_sub(cur,
1467                               lock->l_last_used));
1468         lv = lvf * la * unused;
1469
1470         /* Inform pool about current CLV to see it via proc. */
1471         ldlm_pool_set_clv(pl, lv);
1472
1473         /* Stop when SLV is not yet come from server or lv is smaller than
1474          * it is. */
1475         return (slv == 0 || lv < slv) ?
1476                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1477 }
1478
1479 /**
1480  * Callback function for proc used policy. Makes decision whether to keep
1481  * \a lock in LRU for current \a LRU size \a unused, added in current scan \a
1482  * added and number of locks to be preferably canceled \a count.
1483  *
1484  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1485  *
1486  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1487  */
1488 static ldlm_policy_res_t ldlm_cancel_passed_policy(struct ldlm_namespace *ns,
1489                                                    struct ldlm_lock *lock,
1490                                                    int unused, int added,
1491                                                    int count)
1492 {
1493         /* Stop LRU processing when we reach past @count or have checked all
1494          * locks in LRU. */
1495         return (added >= count) ?
1496                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1497 }
1498
1499 /**
1500  * Callback function for aged policy. Makes decision whether to keep \a lock in
1501  * LRU for current LRU size \a unused, added in current scan \a added and
1502  * number of locks to be preferably canceled \a count.
1503  *
1504  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1505  *
1506  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1507  */
1508 static ldlm_policy_res_t ldlm_cancel_aged_policy(struct ldlm_namespace *ns,
1509                                                  struct ldlm_lock *lock,
1510                                                  int unused, int added,
1511                                                  int count)
1512 {
1513         /* Stop LRU processing if young lock is found and we reach past count */
1514         return ((added >= count) &&
1515                 cfs_time_before(cfs_time_current(),
1516                                 cfs_time_add(lock->l_last_used,
1517                                              ns->ns_max_age))) ?
1518                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1519 }
1520
1521 /**
1522  * Callback function for default policy. Makes decision whether to keep \a lock
1523  * in LRU for current LRU size \a unused, added in current scan \a added and
1524  * number of locks to be preferably canceled \a count.
1525  *
1526  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1527  *
1528  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1529  */
1530 static ldlm_policy_res_t ldlm_cancel_default_policy(struct ldlm_namespace *ns,
1531                                                     struct ldlm_lock *lock,
1532                                                     int unused, int added,
1533                                                     int count)
1534 {
1535         /* Stop LRU processing when we reach past count or have checked all
1536          * locks in LRU. */
1537         return (added >= count) ?
1538                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1539 }
1540
1541 typedef ldlm_policy_res_t (*ldlm_cancel_lru_policy_t)(struct ldlm_namespace *,
1542                                                       struct ldlm_lock *, int,
1543                                                       int, int);
1544
1545 static ldlm_cancel_lru_policy_t
1546 ldlm_cancel_lru_policy(struct ldlm_namespace *ns, int flags)
1547 {
1548         if (flags & LDLM_CANCEL_NO_WAIT)
1549                 return ldlm_cancel_no_wait_policy;
1550
1551         if (ns_connect_lru_resize(ns)) {
1552                 if (flags & LDLM_CANCEL_SHRINK)
1553                         /* We kill passed number of old locks. */
1554                         return ldlm_cancel_passed_policy;
1555                 else if (flags & LDLM_CANCEL_LRUR)
1556                         return ldlm_cancel_lrur_policy;
1557                 else if (flags & LDLM_CANCEL_PASSED)
1558                         return ldlm_cancel_passed_policy;
1559         } else {
1560                 if (flags & LDLM_CANCEL_AGED)
1561                         return ldlm_cancel_aged_policy;
1562         }
1563
1564         return ldlm_cancel_default_policy;
1565 }
1566
1567 /**
1568  * - Free space in LRU for \a count new locks,
1569  *   redundant unused locks are canceled locally;
1570  * - also cancel locally unused aged locks;
1571  * - do not cancel more than \a max locks;
1572  * - GET the found locks and add them into the \a cancels list.
1573  *
1574  * A client lock can be added to the l_bl_ast list only when it is
1575  * marked LDLM_FL_CANCELING. Otherwise, somebody is already doing
1576  * CANCEL.  There are the following use cases:
1577  * ldlm_cancel_resource_local(), ldlm_cancel_lru_local() and
1578  * ldlm_cli_cancel(), which check and set this flag properly. As any
1579  * attempt to cancel a lock rely on this flag, l_bl_ast list is accessed
1580  * later without any special locking.
1581  *
1582  * Calling policies for enabled LRU resize:
1583  * ----------------------------------------
1584  * flags & LDLM_CANCEL_LRUR - use LRU resize policy (SLV from server) to
1585  *                            cancel not more than \a count locks;
1586  *
1587  * flags & LDLM_CANCEL_PASSED - cancel \a count number of old locks (located at
1588  *                              the beginning of LRU list);
1589  *
1590  * flags & LDLM_CANCEL_SHRINK - cancel not more than \a count locks according to
1591  *                              memory pressre policy function;
1592  *
1593  * flags & LDLM_CANCEL_AGED - cancel \a count locks according to "aged policy".
1594  *
1595  * flags & LDLM_CANCEL_NO_WAIT - cancel as many unused locks as possible
1596  *                               (typically before replaying locks) w/o
1597  *                               sending any RPCs or waiting for any
1598  *                               outstanding RPC to complete.
1599  */
1600 static int ldlm_prepare_lru_list(struct ldlm_namespace *ns, cfs_list_t *cancels,
1601                                  int count, int max, int flags)
1602 {
1603         ldlm_cancel_lru_policy_t pf;
1604         struct ldlm_lock *lock, *next;
1605         int added = 0, unused, remained;
1606         ENTRY;
1607
1608         spin_lock(&ns->ns_lock);
1609         unused = ns->ns_nr_unused;
1610         remained = unused;
1611
1612         if (!ns_connect_lru_resize(ns))
1613                 count += unused - ns->ns_max_unused;
1614
1615         pf = ldlm_cancel_lru_policy(ns, flags);
1616         LASSERT(pf != NULL);
1617
1618         while (!cfs_list_empty(&ns->ns_unused_list)) {
1619                 ldlm_policy_res_t result;
1620
1621                 /* all unused locks */
1622                 if (remained-- <= 0)
1623                         break;
1624
1625                 /* For any flags, stop scanning if @max is reached. */
1626                 if (max && added >= max)
1627                         break;
1628
1629                 cfs_list_for_each_entry_safe(lock, next, &ns->ns_unused_list,
1630                                              l_lru) {
1631                         /* No locks which got blocking requests. */
1632                         LASSERT(!(lock->l_flags & LDLM_FL_BL_AST));
1633
1634                         if (flags & LDLM_CANCEL_NO_WAIT &&
1635                             lock->l_flags & LDLM_FL_SKIPPED)
1636                                 /* already processed */
1637                                 continue;
1638
1639                         /* Somebody is already doing CANCEL. No need for this
1640                          * lock in LRU, do not traverse it again. */
1641                         if (!(lock->l_flags & LDLM_FL_CANCELING))
1642                                 break;
1643
1644                         ldlm_lock_remove_from_lru_nolock(lock);
1645                 }
1646                 if (&lock->l_lru == &ns->ns_unused_list)
1647                         break;
1648
1649                 LDLM_LOCK_GET(lock);
1650                 spin_unlock(&ns->ns_lock);
1651                 lu_ref_add(&lock->l_reference, __FUNCTION__, cfs_current());
1652
1653                 /* Pass the lock through the policy filter and see if it
1654                  * should stay in LRU.
1655                  *
1656                  * Even for shrinker policy we stop scanning if
1657                  * we find a lock that should stay in the cache.
1658                  * We should take into account lock age anyway
1659                  * as a new lock is a valuable resource even if
1660                  * it has a low weight.
1661                  *
1662                  * That is, for shrinker policy we drop only
1663                  * old locks, but additionally choose them by
1664                  * their weight. Big extent locks will stay in
1665                  * the cache. */
1666                 result = pf(ns, lock, unused, added, count);
1667                 if (result == LDLM_POLICY_KEEP_LOCK) {
1668                         lu_ref_del(&lock->l_reference,
1669                                    __FUNCTION__, cfs_current());
1670                         LDLM_LOCK_RELEASE(lock);
1671                         spin_lock(&ns->ns_lock);
1672                         break;
1673                 }
1674                 if (result == LDLM_POLICY_SKIP_LOCK) {
1675                         lu_ref_del(&lock->l_reference,
1676                                    __func__, cfs_current());
1677                         LDLM_LOCK_RELEASE(lock);
1678                         spin_lock(&ns->ns_lock);
1679                         continue;
1680                 }
1681
1682                 lock_res_and_lock(lock);
1683                 /* Check flags again under the lock. */
1684                 if ((lock->l_flags & LDLM_FL_CANCELING) ||
1685                     (ldlm_lock_remove_from_lru(lock) == 0)) {
1686                         /* Another thread is removing lock from LRU, or
1687                          * somebody is already doing CANCEL, or there
1688                          * is a blocking request which will send cancel
1689                          * by itself, or the lock is no longer unused. */
1690                         unlock_res_and_lock(lock);
1691                         lu_ref_del(&lock->l_reference,
1692                                    __FUNCTION__, cfs_current());
1693                         LDLM_LOCK_RELEASE(lock);
1694                         spin_lock(&ns->ns_lock);
1695                         continue;
1696                 }
1697                 LASSERT(!lock->l_readers && !lock->l_writers);
1698
1699                 /* If we have chosen to cancel this lock voluntarily, we
1700                  * better send cancel notification to server, so that it
1701                  * frees appropriate state. This might lead to a race
1702                  * where while we are doing cancel here, server is also
1703                  * silently cancelling this lock. */
1704                 lock->l_flags &= ~LDLM_FL_CANCEL_ON_BLOCK;
1705
1706                 /* Setting the CBPENDING flag is a little misleading,
1707                  * but prevents an important race; namely, once
1708                  * CBPENDING is set, the lock can accumulate no more
1709                  * readers/writers. Since readers and writers are
1710                  * already zero here, ldlm_lock_decref() won't see
1711                  * this flag and call l_blocking_ast */
1712                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING;
1713
1714                 /* We can't re-add to l_lru as it confuses the
1715                  * refcounting in ldlm_lock_remove_from_lru() if an AST
1716                  * arrives after we drop lr_lock below. We use l_bl_ast
1717                  * and can't use l_pending_chain as it is used both on
1718                  * server and client nevertheless bug 5666 says it is
1719                  * used only on server */
1720                 LASSERT(cfs_list_empty(&lock->l_bl_ast));
1721                 cfs_list_add(&lock->l_bl_ast, cancels);
1722                 unlock_res_and_lock(lock);
1723                 lu_ref_del(&lock->l_reference, __FUNCTION__, cfs_current());
1724                 spin_lock(&ns->ns_lock);
1725                 added++;
1726                 unused--;
1727         }
1728         spin_unlock(&ns->ns_lock);
1729         RETURN(added);
1730 }
1731
1732 int ldlm_cancel_lru_local(struct ldlm_namespace *ns, cfs_list_t *cancels,
1733                           int count, int max, ldlm_cancel_flags_t cancel_flags,
1734                           int flags)
1735 {
1736         int added;
1737         added = ldlm_prepare_lru_list(ns, cancels, count, max, flags);
1738         if (added <= 0)
1739                 return added;
1740         return ldlm_cli_cancel_list_local(cancels, added, cancel_flags);
1741 }
1742
1743 /**
1744  * Cancel at least \a nr locks from given namespace LRU.
1745  *
1746  * When called with LDLM_ASYNC the blocking callback will be handled
1747  * in a thread and this function will return after the thread has been
1748  * asked to call the callback.  When called with LDLM_SYNC the blocking
1749  * callback will be performed in this function.
1750  */
1751 int ldlm_cancel_lru(struct ldlm_namespace *ns, int nr, ldlm_sync_t mode,
1752                     int flags)
1753 {
1754         CFS_LIST_HEAD(cancels);
1755         int count, rc;
1756         ENTRY;
1757
1758 #ifndef __KERNEL__
1759         mode = LDLM_SYNC; /* force to be sync in user space */
1760 #endif
1761         /* Just prepare the list of locks, do not actually cancel them yet.
1762          * Locks are cancelled later in a separate thread. */
1763         count = ldlm_prepare_lru_list(ns, &cancels, nr, 0, flags);
1764         rc = ldlm_bl_to_thread_list(ns, NULL, &cancels, count, mode);
1765         if (rc == 0)
1766                 RETURN(count);
1767
1768         RETURN(0);
1769 }
1770
1771 /**
1772  * Find and cancel locally unused locks found on resource, matched to the
1773  * given policy, mode. GET the found locks and add them into the \a cancels
1774  * list.
1775  */
1776 int ldlm_cancel_resource_local(struct ldlm_resource *res,
1777                                cfs_list_t *cancels,
1778                                ldlm_policy_data_t *policy,
1779                                ldlm_mode_t mode, int lock_flags,
1780                                ldlm_cancel_flags_t cancel_flags, void *opaque)
1781 {
1782         struct ldlm_lock *lock;
1783         int count = 0;
1784         ENTRY;
1785
1786         lock_res(res);
1787         cfs_list_for_each_entry(lock, &res->lr_granted, l_res_link) {
1788                 if (opaque != NULL && lock->l_ast_data != opaque) {
1789                         LDLM_ERROR(lock, "data %p doesn't match opaque %p",
1790                                    lock->l_ast_data, opaque);
1791                         //LBUG();
1792                         continue;
1793                 }
1794
1795                 if (lock->l_readers || lock->l_writers)
1796                         continue;
1797
1798                 /* If somebody is already doing CANCEL, or blocking AST came,
1799                  * skip this lock. */
1800                 if (lock->l_flags & LDLM_FL_BL_AST ||
1801                     lock->l_flags & LDLM_FL_CANCELING)
1802                         continue;
1803
1804                 if (lockmode_compat(lock->l_granted_mode, mode))
1805                         continue;
1806
1807                 /* If policy is given and this is IBITS lock, add to list only
1808                  * those locks that match by policy. */
1809                 if (policy && (lock->l_resource->lr_type == LDLM_IBITS) &&
1810                     !(lock->l_policy_data.l_inodebits.bits &
1811                       policy->l_inodebits.bits))
1812                         continue;
1813
1814                 /* See CBPENDING comment in ldlm_cancel_lru */
1815                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING |
1816                                  lock_flags;
1817
1818                 LASSERT(cfs_list_empty(&lock->l_bl_ast));
1819                 cfs_list_add(&lock->l_bl_ast, cancels);
1820                 LDLM_LOCK_GET(lock);
1821                 count++;
1822         }
1823         unlock_res(res);
1824
1825         RETURN(ldlm_cli_cancel_list_local(cancels, count, cancel_flags));
1826 }
1827 EXPORT_SYMBOL(ldlm_cancel_resource_local);
1828
1829 /**
1830  * Cancel client-side locks from a list and send/prepare cancel RPCs to the
1831  * server.
1832  * If \a req is NULL, send CANCEL request to server with handles of locks
1833  * in the \a cancels. If EARLY_CANCEL is not supported, send CANCEL requests
1834  * separately per lock.
1835  * If \a req is not NULL, put handles of locks in \a cancels into the request
1836  * buffer at the offset \a off.
1837  * Destroy \a cancels at the end.
1838  */
1839 int ldlm_cli_cancel_list(cfs_list_t *cancels, int count,
1840                          struct ptlrpc_request *req, ldlm_cancel_flags_t flags)
1841 {
1842         struct ldlm_lock *lock;
1843         int res = 0;
1844         ENTRY;
1845
1846         if (cfs_list_empty(cancels) || count == 0)
1847                 RETURN(0);
1848
1849         /* XXX: requests (both batched and not) could be sent in parallel.
1850          * Usually it is enough to have just 1 RPC, but it is possible that
1851          * there are too many locks to be cancelled in LRU or on a resource.
1852          * It would also speed up the case when the server does not support
1853          * the feature. */
1854         while (count > 0) {
1855                 LASSERT(!cfs_list_empty(cancels));
1856                 lock = cfs_list_entry(cancels->next, struct ldlm_lock,
1857                                       l_bl_ast);
1858                 LASSERT(lock->l_conn_export);
1859
1860                 if (exp_connect_cancelset(lock->l_conn_export)) {
1861                         res = count;
1862                         if (req)
1863                                 ldlm_cancel_pack(req, cancels, count);
1864                         else
1865                                 res = ldlm_cli_cancel_req(lock->l_conn_export,
1866                                                           cancels, count,
1867                                                           flags);
1868                 } else {
1869                         res = ldlm_cli_cancel_req(lock->l_conn_export,
1870                                                   cancels, 1, flags);
1871                 }
1872
1873                 if (res < 0) {
1874                         if (res != -ESHUTDOWN)
1875                                 CERROR("ldlm_cli_cancel_list: %d\n", res);
1876                         res = count;
1877                 }
1878
1879                 count -= res;
1880                 ldlm_lock_list_put(cancels, l_bl_ast, res);
1881         }
1882         LASSERT(count == 0);
1883         RETURN(0);
1884 }
1885 EXPORT_SYMBOL(ldlm_cli_cancel_list);
1886
1887 /**
1888  * Cancel all locks on a resource that have 0 readers/writers.
1889  *
1890  * If flags & LDLM_FL_LOCAL_ONLY, throw the locks away without trying
1891  * to notify the server. */
1892 int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
1893                                     const struct ldlm_res_id *res_id,
1894                                     ldlm_policy_data_t *policy,
1895                                     ldlm_mode_t mode,
1896                                     ldlm_cancel_flags_t flags,
1897                                     void *opaque)
1898 {
1899         struct ldlm_resource *res;
1900         CFS_LIST_HEAD(cancels);
1901         int count;
1902         int rc;
1903         ENTRY;
1904
1905         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
1906         if (res == NULL) {
1907                 /* This is not a problem. */
1908                 CDEBUG(D_INFO, "No resource "LPU64"\n", res_id->name[0]);
1909                 RETURN(0);
1910         }
1911
1912         LDLM_RESOURCE_ADDREF(res);
1913         count = ldlm_cancel_resource_local(res, &cancels, policy, mode,
1914                                            0, flags | LCF_BL_AST, opaque);
1915         rc = ldlm_cli_cancel_list(&cancels, count, NULL, flags);
1916         if (rc != ELDLM_OK)
1917                 CERROR("ldlm_cli_cancel_unused_resource: %d\n", rc);
1918
1919         LDLM_RESOURCE_DELREF(res);
1920         ldlm_resource_putref(res);
1921         RETURN(0);
1922 }
1923 EXPORT_SYMBOL(ldlm_cli_cancel_unused_resource);
1924
1925 struct ldlm_cli_cancel_arg {
1926         int     lc_flags;
1927         void   *lc_opaque;
1928 };
1929
1930 static int ldlm_cli_hash_cancel_unused(cfs_hash_t *hs, cfs_hash_bd_t *bd,
1931                                        cfs_hlist_node_t *hnode, void *arg)
1932 {
1933         struct ldlm_resource           *res = cfs_hash_object(hs, hnode);
1934         struct ldlm_cli_cancel_arg     *lc = arg;
1935         int                             rc;
1936
1937         rc = ldlm_cli_cancel_unused_resource(ldlm_res_to_ns(res), &res->lr_name,
1938                                              NULL, LCK_MINMODE,
1939                                              lc->lc_flags, lc->lc_opaque);
1940         if (rc != 0) {
1941                 CERROR("ldlm_cli_cancel_unused ("LPU64"): %d\n",
1942                        res->lr_name.name[0], rc);
1943         }
1944         /* must return 0 for hash iteration */
1945         return 0;
1946 }
1947
1948 /**
1949  * Cancel all locks on a namespace (or a specific resource, if given)
1950  * that have 0 readers/writers.
1951  *
1952  * If flags & LCF_LOCAL, throw the locks away without trying
1953  * to notify the server. */
1954 int ldlm_cli_cancel_unused(struct ldlm_namespace *ns,
1955                            const struct ldlm_res_id *res_id,
1956                            ldlm_cancel_flags_t flags, void *opaque)
1957 {
1958         struct ldlm_cli_cancel_arg arg = {
1959                 .lc_flags       = flags,
1960                 .lc_opaque      = opaque,
1961         };
1962
1963         ENTRY;
1964
1965         if (ns == NULL)
1966                 RETURN(ELDLM_OK);
1967
1968         if (res_id != NULL) {
1969                 RETURN(ldlm_cli_cancel_unused_resource(ns, res_id, NULL,
1970                                                        LCK_MINMODE, flags,
1971                                                        opaque));
1972         } else {
1973                 cfs_hash_for_each_nolock(ns->ns_rs_hash,
1974                                          ldlm_cli_hash_cancel_unused, &arg);
1975                 RETURN(ELDLM_OK);
1976         }
1977 }
1978 EXPORT_SYMBOL(ldlm_cli_cancel_unused);
1979
1980 /* Lock iterators. */
1981
1982 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
1983                           void *closure)
1984 {
1985         cfs_list_t *tmp, *next;
1986         struct ldlm_lock *lock;
1987         int rc = LDLM_ITER_CONTINUE;
1988
1989         ENTRY;
1990
1991         if (!res)
1992                 RETURN(LDLM_ITER_CONTINUE);
1993
1994         lock_res(res);
1995         cfs_list_for_each_safe(tmp, next, &res->lr_granted) {
1996                 lock = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
1997
1998                 if (iter(lock, closure) == LDLM_ITER_STOP)
1999                         GOTO(out, rc = LDLM_ITER_STOP);
2000         }
2001
2002         cfs_list_for_each_safe(tmp, next, &res->lr_converting) {
2003                 lock = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
2004
2005                 if (iter(lock, closure) == LDLM_ITER_STOP)
2006                         GOTO(out, rc = LDLM_ITER_STOP);
2007         }
2008
2009         cfs_list_for_each_safe(tmp, next, &res->lr_waiting) {
2010                 lock = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
2011
2012                 if (iter(lock, closure) == LDLM_ITER_STOP)
2013                         GOTO(out, rc = LDLM_ITER_STOP);
2014         }
2015  out:
2016         unlock_res(res);
2017         RETURN(rc);
2018 }
2019 EXPORT_SYMBOL(ldlm_resource_foreach);
2020
2021 struct iter_helper_data {
2022         ldlm_iterator_t iter;
2023         void *closure;
2024 };
2025
2026 static int ldlm_iter_helper(struct ldlm_lock *lock, void *closure)
2027 {
2028         struct iter_helper_data *helper = closure;
2029         return helper->iter(lock, helper->closure);
2030 }
2031
2032 static int ldlm_res_iter_helper(cfs_hash_t *hs, cfs_hash_bd_t *bd,
2033                                 cfs_hlist_node_t *hnode, void *arg)
2034
2035 {
2036         struct ldlm_resource *res = cfs_hash_object(hs, hnode);
2037
2038         return ldlm_resource_foreach(res, ldlm_iter_helper, arg) ==
2039                LDLM_ITER_STOP;
2040 }
2041
2042 void ldlm_namespace_foreach(struct ldlm_namespace *ns,
2043                             ldlm_iterator_t iter, void *closure)
2044
2045 {
2046         struct iter_helper_data helper = { iter: iter, closure: closure };
2047
2048         cfs_hash_for_each_nolock(ns->ns_rs_hash,
2049                                  ldlm_res_iter_helper, &helper);
2050
2051 }
2052 EXPORT_SYMBOL(ldlm_namespace_foreach);
2053
2054 /* non-blocking function to manipulate a lock whose cb_data is being put away.
2055  * return  0:  find no resource
2056  *       > 0:  must be LDLM_ITER_STOP/LDLM_ITER_CONTINUE.
2057  *       < 0:  errors
2058  */
2059 int ldlm_resource_iterate(struct ldlm_namespace *ns,
2060                           const struct ldlm_res_id *res_id,
2061                           ldlm_iterator_t iter, void *data)
2062 {
2063         struct ldlm_resource *res;
2064         int rc;
2065         ENTRY;
2066
2067         if (ns == NULL) {
2068                 CERROR("must pass in namespace\n");
2069                 LBUG();
2070         }
2071
2072         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
2073         if (res == NULL)
2074                 RETURN(0);
2075
2076         LDLM_RESOURCE_ADDREF(res);
2077         rc = ldlm_resource_foreach(res, iter, data);
2078         LDLM_RESOURCE_DELREF(res);
2079         ldlm_resource_putref(res);
2080         RETURN(rc);
2081 }
2082 EXPORT_SYMBOL(ldlm_resource_iterate);
2083
2084 /* Lock replay */
2085
2086 static int ldlm_chain_lock_for_replay(struct ldlm_lock *lock, void *closure)
2087 {
2088         cfs_list_t *list = closure;
2089
2090         /* we use l_pending_chain here, because it's unused on clients. */
2091         LASSERTF(cfs_list_empty(&lock->l_pending_chain),
2092                  "lock %p next %p prev %p\n",
2093                  lock, &lock->l_pending_chain.next,&lock->l_pending_chain.prev);
2094         /* bug 9573: don't replay locks left after eviction, or
2095          * bug 17614: locks being actively cancelled. Get a reference
2096          * on a lock so that it does not disapear under us (e.g. due to cancel)
2097          */
2098         if (!(lock->l_flags & (LDLM_FL_FAILED|LDLM_FL_CANCELING))) {
2099                 cfs_list_add(&lock->l_pending_chain, list);
2100                 LDLM_LOCK_GET(lock);
2101         }
2102
2103         return LDLM_ITER_CONTINUE;
2104 }
2105
2106 static int replay_lock_interpret(const struct lu_env *env,
2107                                  struct ptlrpc_request *req,
2108                                  struct ldlm_async_args *aa, int rc)
2109 {
2110         struct ldlm_lock     *lock;
2111         struct ldlm_reply    *reply;
2112         struct obd_export    *exp;
2113
2114         ENTRY;
2115         cfs_atomic_dec(&req->rq_import->imp_replay_inflight);
2116         if (rc != ELDLM_OK)
2117                 GOTO(out, rc);
2118
2119
2120         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
2121         if (reply == NULL)
2122                 GOTO(out, rc = -EPROTO);
2123
2124         lock = ldlm_handle2lock(&aa->lock_handle);
2125         if (!lock) {
2126                 CERROR("received replay ack for unknown local cookie "LPX64
2127                        " remote cookie "LPX64 " from server %s id %s\n",
2128                        aa->lock_handle.cookie, reply->lock_handle.cookie,
2129                        req->rq_export->exp_client_uuid.uuid,
2130                        libcfs_id2str(req->rq_peer));
2131                 GOTO(out, rc = -ESTALE);
2132         }
2133
2134         /* Key change rehash lock in per-export hash with new key */
2135         exp = req->rq_export;
2136         if (exp && exp->exp_lock_hash) {
2137                 /* In the function below, .hs_keycmp resolves to
2138                  * ldlm_export_lock_keycmp() */
2139                 /* coverity[overrun-buffer-val] */
2140                 cfs_hash_rehash_key(exp->exp_lock_hash,
2141                                     &lock->l_remote_handle,
2142                                     &reply->lock_handle,
2143                                     &lock->l_exp_hash);
2144         } else {
2145                 lock->l_remote_handle = reply->lock_handle;
2146         }
2147
2148         LDLM_DEBUG(lock, "replayed lock:");
2149         ptlrpc_import_recovery_state_machine(req->rq_import);
2150         LDLM_LOCK_PUT(lock);
2151 out:
2152         if (rc != ELDLM_OK)
2153                 ptlrpc_connect_import(req->rq_import);
2154
2155         RETURN(rc);
2156 }
2157
2158 static int replay_one_lock(struct obd_import *imp, struct ldlm_lock *lock)
2159 {
2160         struct ptlrpc_request *req;
2161         struct ldlm_async_args *aa;
2162         struct ldlm_request   *body;
2163         int flags;
2164         ENTRY;
2165
2166
2167         /* Bug 11974: Do not replay a lock which is actively being canceled */
2168         if (lock->l_flags & LDLM_FL_CANCELING) {
2169                 LDLM_DEBUG(lock, "Not replaying canceled lock:");
2170                 RETURN(0);
2171         }
2172
2173         /* If this is reply-less callback lock, we cannot replay it, since
2174          * server might have long dropped it, but notification of that event was
2175          * lost by network. (and server granted conflicting lock already) */
2176         if (lock->l_flags & LDLM_FL_CANCEL_ON_BLOCK) {
2177                 LDLM_DEBUG(lock, "Not replaying reply-less lock:");
2178                 ldlm_lock_cancel(lock);
2179                 RETURN(0);
2180         }
2181
2182         /*
2183          * If granted mode matches the requested mode, this lock is granted.
2184          *
2185          * If they differ, but we have a granted mode, then we were granted
2186          * one mode and now want another: ergo, converting.
2187          *
2188          * If we haven't been granted anything and are on a resource list,
2189          * then we're blocked/waiting.
2190          *
2191          * If we haven't been granted anything and we're NOT on a resource list,
2192          * then we haven't got a reply yet and don't have a known disposition.
2193          * This happens whenever a lock enqueue is the request that triggers
2194          * recovery.
2195          */
2196         if (lock->l_granted_mode == lock->l_req_mode)
2197                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_GRANTED;
2198         else if (lock->l_granted_mode)
2199                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_CONV;
2200         else if (!cfs_list_empty(&lock->l_res_link))
2201                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_WAIT;
2202         else
2203                 flags = LDLM_FL_REPLAY;
2204
2205         req = ptlrpc_request_alloc_pack(imp, &RQF_LDLM_ENQUEUE,
2206                                         LUSTRE_DLM_VERSION, LDLM_ENQUEUE);
2207         if (req == NULL)
2208                 RETURN(-ENOMEM);
2209
2210         /* We're part of recovery, so don't wait for it. */
2211         req->rq_send_state = LUSTRE_IMP_REPLAY_LOCKS;
2212
2213         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2214         ldlm_lock2desc(lock, &body->lock_desc);
2215         body->lock_flags = ldlm_flags_to_wire(flags);
2216
2217         ldlm_lock2handle(lock, &body->lock_handle[0]);
2218         if (lock->l_lvb_len > 0)
2219                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_ENQUEUE_LVB);
2220         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
2221                              lock->l_lvb_len);
2222         ptlrpc_request_set_replen(req);
2223         /* notify the server we've replayed all requests.
2224          * also, we mark the request to be put on a dedicated
2225          * queue to be processed after all request replayes.
2226          * bug 6063 */
2227         lustre_msg_set_flags(req->rq_reqmsg, MSG_REQ_REPLAY_DONE);
2228
2229         LDLM_DEBUG(lock, "replaying lock:");
2230
2231         cfs_atomic_inc(&req->rq_import->imp_replay_inflight);
2232         CLASSERT(sizeof(*aa) <= sizeof(req->rq_async_args));
2233         aa = ptlrpc_req_async_args(req);
2234         aa->lock_handle = body->lock_handle[0];
2235         req->rq_interpret_reply = (ptlrpc_interpterer_t)replay_lock_interpret;
2236         ptlrpcd_add_req(req, PDL_POLICY_LOCAL, -1);
2237
2238         RETURN(0);
2239 }
2240
2241 /**
2242  * Cancel as many unused locks as possible before replay. since we are
2243  * in recovery, we can't wait for any outstanding RPCs to send any RPC
2244  * to the server.
2245  *
2246  * Called only in recovery before replaying locks. there is no need to
2247  * replay locks that are unused. since the clients may hold thousands of
2248  * cached unused locks, dropping the unused locks can greatly reduce the
2249  * load on the servers at recovery time.
2250  */
2251 static void ldlm_cancel_unused_locks_for_replay(struct ldlm_namespace *ns)
2252 {
2253         int canceled;
2254         CFS_LIST_HEAD(cancels);
2255
2256         CDEBUG(D_DLMTRACE, "Dropping as many unused locks as possible before"
2257                            "replay for namespace %s (%d)\n",
2258                            ldlm_ns_name(ns), ns->ns_nr_unused);
2259
2260         /* We don't need to care whether or not LRU resize is enabled
2261          * because the LDLM_CANCEL_NO_WAIT policy doesn't use the
2262          * count parameter */
2263         canceled = ldlm_cancel_lru_local(ns, &cancels, ns->ns_nr_unused, 0,
2264                                          LCF_LOCAL, LDLM_CANCEL_NO_WAIT);
2265
2266         CDEBUG(D_DLMTRACE, "Canceled %d unused locks from namespace %s\n",
2267                            canceled, ldlm_ns_name(ns));
2268 }
2269
2270 int ldlm_replay_locks(struct obd_import *imp)
2271 {
2272         struct ldlm_namespace *ns = imp->imp_obd->obd_namespace;
2273         CFS_LIST_HEAD(list);
2274         struct ldlm_lock *lock, *next;
2275         int rc = 0;
2276
2277         ENTRY;
2278
2279         LASSERT(cfs_atomic_read(&imp->imp_replay_inflight) == 0);
2280
2281         /* don't replay locks if import failed recovery */
2282         if (imp->imp_vbr_failed)
2283                 RETURN(0);
2284
2285         /* ensure this doesn't fall to 0 before all have been queued */
2286         cfs_atomic_inc(&imp->imp_replay_inflight);
2287
2288         if (ldlm_cancel_unused_locks_before_replay)
2289                 ldlm_cancel_unused_locks_for_replay(ns);
2290
2291         ldlm_namespace_foreach(ns, ldlm_chain_lock_for_replay, &list);
2292
2293         cfs_list_for_each_entry_safe(lock, next, &list, l_pending_chain) {
2294                 cfs_list_del_init(&lock->l_pending_chain);
2295                 if (rc) {
2296                         LDLM_LOCK_RELEASE(lock);
2297                         continue; /* or try to do the rest? */
2298                 }
2299                 rc = replay_one_lock(imp, lock);
2300                 LDLM_LOCK_RELEASE(lock);
2301         }
2302
2303         cfs_atomic_dec(&imp->imp_replay_inflight);
2304
2305         RETURN(rc);
2306 }
2307 EXPORT_SYMBOL(ldlm_replay_locks);