OSDN Git Service

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