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