Whamcloud - gitweb
LU-11276 ldlm: fix lock convert races
[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                 ldlm_bl_desc2lock(&reply->lock_desc, lock);
739                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_BL_AST;
740                 unlock_res_and_lock(lock);
741                 LDLM_DEBUG(lock, "enqueue reply includes blocking AST");
742         }
743
744         /*
745          * If the lock has already been granted by a completion AST, don't
746          * clobber the LVB with an older one.
747          */
748         if (lvb_len > 0) {
749                 /*
750                  * We must lock or a racing completion might update lvb without
751                  * letting us know and we'll clobber the correct value.
752                  * Cannot unlock after the check either, a that still leaves
753                  * a tiny window for completion to get in
754                  */
755                 lock_res_and_lock(lock);
756                 if (!ldlm_is_granted(lock))
757                         rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_SERVER,
758                                            lock->l_lvb_data, lvb_len);
759                 unlock_res_and_lock(lock);
760                 if (rc < 0) {
761                         cleanup_phase = 1;
762                         GOTO(cleanup, rc);
763                 }
764         }
765
766         if (!is_replay) {
767                 rc = ldlm_lock_enqueue(env, ns, &lock, NULL, flags);
768                 if (lock->l_completion_ast != NULL) {
769                         int err = lock->l_completion_ast(lock, *flags, NULL);
770
771                         if (!rc)
772                                 rc = err;
773                         if (rc)
774                                 cleanup_phase = 1;
775                 }
776         }
777
778         if (lvb_len > 0 && lvb != NULL) {
779                 /*
780                  * Copy the LVB here, and not earlier, because the completion
781                  * AST (if any) can override what we got in the reply
782                  */
783                 memcpy(lvb, lock->l_lvb_data, lvb_len);
784         }
785
786         LDLM_DEBUG(lock, "client-side enqueue END");
787         EXIT;
788 cleanup:
789         if (cleanup_phase == 1 && rc)
790                 failed_lock_cleanup(ns, lock, mode);
791         /* Put lock 2 times, the second reference is held by ldlm_cli_enqueue */
792         LDLM_LOCK_PUT(lock);
793         LDLM_LOCK_RELEASE(lock);
794         return rc;
795 }
796 EXPORT_SYMBOL(ldlm_cli_enqueue_fini);
797
798 /**
799  * Estimate number of lock handles that would fit into request of given
800  * size.  PAGE_SIZE-512 is to allow TCP/IP and LNET headers to fit into
801  * a single page on the send/receive side. XXX: 512 should be changed to
802  * more adequate value.
803  */
804 static inline int ldlm_req_handles_avail(int req_size, int off)
805 {
806         int avail;
807
808         avail = min_t(int, LDLM_MAXREQSIZE, PAGE_SIZE - 512) - req_size;
809         if (likely(avail >= 0))
810                 avail /= (int)sizeof(struct lustre_handle);
811         else
812                 avail = 0;
813         avail += LDLM_LOCKREQ_HANDLES - off;
814
815         return avail;
816 }
817
818 static inline int ldlm_capsule_handles_avail(struct req_capsule *pill,
819                                              enum req_location loc,
820                                              int off)
821 {
822         __u32 size = req_capsule_msg_size(pill, loc);
823
824         return ldlm_req_handles_avail(size, off);
825 }
826
827 static inline int ldlm_format_handles_avail(struct obd_import *imp,
828                                             const struct req_format *fmt,
829                                             enum req_location loc, int off)
830 {
831         __u32 size = req_capsule_fmt_size(imp->imp_msg_magic, fmt, loc);
832
833         return ldlm_req_handles_avail(size, off);
834 }
835
836 /**
837  * Cancel LRU locks and pack them into the enqueue request. Pack there the given
838  * \a count locks in \a cancels.
839  *
840  * This is to be called by functions preparing their own requests that
841  * might contain lists of locks to cancel in addition to actual operation
842  * that needs to be performed.
843  */
844 int ldlm_prep_elc_req(struct obd_export *exp, struct ptlrpc_request *req,
845                       int version, int opc, int canceloff,
846                       struct list_head *cancels, int count)
847 {
848         struct ldlm_namespace   *ns = exp->exp_obd->obd_namespace;
849         struct req_capsule      *pill = &req->rq_pill;
850         struct ldlm_request     *dlm = NULL;
851         LIST_HEAD(head);
852         enum ldlm_lru_flags lru_flags;
853         int avail, to_free, pack = 0;
854         int rc;
855
856         ENTRY;
857
858         if (cancels == NULL)
859                 cancels = &head;
860         if (ns_connect_cancelset(ns)) {
861                 /* Estimate the amount of available space in the request. */
862                 req_capsule_filled_sizes(pill, RCL_CLIENT);
863                 avail = ldlm_capsule_handles_avail(pill, RCL_CLIENT, canceloff);
864
865                 lru_flags = LDLM_LRU_FLAG_NO_WAIT | (ns_connect_lru_resize(ns) ?
866                         LDLM_LRU_FLAG_LRUR : LDLM_LRU_FLAG_AGED);
867                 to_free = !ns_connect_lru_resize(ns) &&
868                         opc == LDLM_ENQUEUE ? 1 : 0;
869
870                 /*
871                  * Cancel LRU locks here _only_ if the server supports
872                  * EARLY_CANCEL. Otherwise we have to send extra CANCEL
873                  * RPC, which will make us slower.
874                  */
875                 if (avail > count)
876                         count += ldlm_cancel_lru_local(ns, cancels, to_free,
877                                                        avail - count, 0,
878                                                        lru_flags);
879                 if (avail > count)
880                         pack = count;
881                 else
882                         pack = avail;
883                 req_capsule_set_size(pill, &RMF_DLM_REQ, RCL_CLIENT,
884                                      ldlm_request_bufsize(pack, opc));
885         }
886
887         rc = ptlrpc_request_pack(req, version, opc);
888         if (rc) {
889                 ldlm_lock_list_put(cancels, l_bl_ast, count);
890                 RETURN(rc);
891         }
892
893         if (ns_connect_cancelset(ns)) {
894                 if (canceloff) {
895                         dlm = req_capsule_client_get(pill, &RMF_DLM_REQ);
896                         LASSERT(dlm);
897                         /*
898                          * Skip first lock handler in ldlm_request_pack(),
899                          * this method will increment @lock_count according
900                          * to the lock handle amount actually written to
901                          * the buffer.
902                          */
903                         dlm->lock_count = canceloff;
904                 }
905                 /* Pack into the request @pack lock handles. */
906                 ldlm_cli_cancel_list(cancels, pack, req, 0);
907                 /* Prepare and send separate cancel RPC for others. */
908                 ldlm_cli_cancel_list(cancels, count - pack, NULL, 0);
909         } else {
910                 ldlm_lock_list_put(cancels, l_bl_ast, count);
911         }
912         RETURN(0);
913 }
914 EXPORT_SYMBOL(ldlm_prep_elc_req);
915
916 int ldlm_prep_enqueue_req(struct obd_export *exp, struct ptlrpc_request *req,
917                           struct list_head *cancels, int count)
918 {
919         return ldlm_prep_elc_req(exp, req, LUSTRE_DLM_VERSION, LDLM_ENQUEUE,
920                                  LDLM_ENQUEUE_CANCEL_OFF, cancels, count);
921 }
922 EXPORT_SYMBOL(ldlm_prep_enqueue_req);
923
924 struct ptlrpc_request *ldlm_enqueue_pack(struct obd_export *exp, int lvb_len)
925 {
926         struct ptlrpc_request *req;
927         int rc;
928
929         ENTRY;
930
931         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_LDLM_ENQUEUE);
932         if (req == NULL)
933                 RETURN(ERR_PTR(-ENOMEM));
934
935         rc = ldlm_prep_enqueue_req(exp, req, NULL, 0);
936         if (rc) {
937                 ptlrpc_request_free(req);
938                 RETURN(ERR_PTR(rc));
939         }
940
941         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER, lvb_len);
942         ptlrpc_request_set_replen(req);
943         RETURN(req);
944 }
945 EXPORT_SYMBOL(ldlm_enqueue_pack);
946
947 /**
948  * Client-side lock enqueue.
949  *
950  * If a request has some specific initialisation it is passed in \a reqp,
951  * otherwise it is created in ldlm_cli_enqueue.
952  *
953  * Supports sync and async requests, pass \a async flag accordingly. If a
954  * request was created in ldlm_cli_enqueue and it is the async request,
955  * pass it to the caller in \a reqp.
956  */
957 int ldlm_cli_enqueue(struct obd_export *exp, struct ptlrpc_request **reqp,
958                      struct ldlm_enqueue_info *einfo,
959                      const struct ldlm_res_id *res_id,
960                      union ldlm_policy_data const *policy, __u64 *flags,
961                      void *lvb, __u32 lvb_len, enum lvb_type lvb_type,
962                      struct lustre_handle *lockh, int async)
963 {
964         struct ldlm_namespace *ns;
965         struct ldlm_lock      *lock;
966         struct ldlm_request   *body;
967         int                    is_replay = *flags & LDLM_FL_REPLAY;
968         int                    req_passed_in = 1;
969         int                    rc, err;
970         struct ptlrpc_request *req;
971
972         ENTRY;
973
974         LASSERT(exp != NULL);
975
976         ns = exp->exp_obd->obd_namespace;
977
978         /*
979          * If we're replaying this lock, just check some invariants.
980          * If we're creating a new lock, get everything all setup nice.
981          */
982         if (is_replay) {
983                 lock = ldlm_handle2lock_long(lockh, 0);
984                 LASSERT(lock != NULL);
985                 LDLM_DEBUG(lock, "client-side enqueue START");
986                 LASSERT(exp == lock->l_conn_export);
987         } else {
988                 const struct ldlm_callback_suite cbs = {
989                         .lcs_completion = einfo->ei_cb_cp,
990                         .lcs_blocking   = einfo->ei_cb_bl,
991                         .lcs_glimpse    = einfo->ei_cb_gl
992                 };
993                 lock = ldlm_lock_create(ns, res_id, einfo->ei_type,
994                                         einfo->ei_mode, &cbs, einfo->ei_cbdata,
995                                         lvb_len, lvb_type);
996                 if (IS_ERR(lock))
997                         RETURN(PTR_ERR(lock));
998
999                 if (einfo->ei_cb_created)
1000                         einfo->ei_cb_created(lock);
1001
1002                 /* for the local lock, add the reference */
1003                 ldlm_lock_addref_internal(lock, einfo->ei_mode);
1004                 ldlm_lock2handle(lock, lockh);
1005                 if (policy != NULL)
1006                         lock->l_policy_data = *policy;
1007
1008                 if (einfo->ei_type == LDLM_EXTENT) {
1009                         /* extent lock without policy is a bug */
1010                         if (policy == NULL)
1011                                 LBUG();
1012
1013                         lock->l_req_extent = policy->l_extent;
1014                 }
1015                 LDLM_DEBUG(lock, "client-side enqueue START, flags %#llx",
1016                            *flags);
1017         }
1018
1019         lock->l_conn_export = exp;
1020         lock->l_export = NULL;
1021         lock->l_blocking_ast = einfo->ei_cb_bl;
1022         lock->l_flags |= (*flags & (LDLM_FL_NO_LRU | LDLM_FL_EXCL |
1023                                     LDLM_FL_ATOMIC_CB));
1024         lock->l_activity = ktime_get_real_seconds();
1025
1026         /* lock not sent to server yet */
1027         if (reqp == NULL || *reqp == NULL) {
1028                 req = ldlm_enqueue_pack(exp, lvb_len);
1029                 if (IS_ERR(req)) {
1030                         failed_lock_cleanup(ns, lock, einfo->ei_mode);
1031                         LDLM_LOCK_RELEASE(lock);
1032                         RETURN(PTR_ERR(req));
1033                 }
1034
1035                 req_passed_in = 0;
1036                 if (reqp)
1037                         *reqp = req;
1038         } else {
1039                 int len;
1040
1041                 req = *reqp;
1042                 len = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ,
1043                                            RCL_CLIENT);
1044                 LASSERTF(len >= sizeof(*body), "buflen[%d] = %d, not %d\n",
1045                          DLM_LOCKREQ_OFF, len, (int)sizeof(*body));
1046         }
1047
1048         if (*flags & LDLM_FL_NDELAY) {
1049                 DEBUG_REQ(D_DLMTRACE, req, "enqueue lock with no delay");
1050                 req->rq_no_resend = req->rq_no_delay = 1;
1051                 /*
1052                  * probably set a shorter timeout value and handle ETIMEDOUT
1053                  * in osc_lock_upcall() correctly
1054                  */
1055                 /* lustre_msg_set_timeout(req, req->rq_timeout / 2); */
1056         }
1057
1058         /* Dump lock data into the request buffer */
1059         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1060         ldlm_lock2desc(lock, &body->lock_desc);
1061         body->lock_flags = ldlm_flags_to_wire(*flags);
1062         body->lock_handle[0] = *lockh;
1063
1064         /* extended LDLM opcodes in client stats */
1065         if (exp->exp_obd->obd_svc_stats != NULL) {
1066                 bool glimpse = *flags & LDLM_FL_HAS_INTENT;
1067
1068                 /* OST glimpse has no intent buffer */
1069                 if (req_capsule_has_field(&req->rq_pill, &RMF_LDLM_INTENT,
1070                                           RCL_CLIENT)) {
1071                         struct ldlm_intent *it;
1072
1073                         it = req_capsule_client_get(&req->rq_pill,
1074                                                     &RMF_LDLM_INTENT);
1075                         glimpse = (it && (it->opc == IT_GLIMPSE));
1076                 }
1077
1078                 if (!glimpse)
1079                         ldlm_svc_get_eopc(body, exp->exp_obd->obd_svc_stats);
1080                 else
1081                         lprocfs_counter_incr(exp->exp_obd->obd_svc_stats,
1082                                              PTLRPC_LAST_CNTR +
1083                                              LDLM_GLIMPSE_ENQUEUE);
1084         }
1085
1086         /* It is important to obtain modify RPC slot first (if applicable), so
1087          * that threads that are waiting for a modify RPC slot are not polluting
1088          * our rpcs in flight counter. */
1089
1090         if (einfo->ei_enq_slot)
1091                 ptlrpc_get_mod_rpc_slot(req);
1092
1093         if (ldlm_request_slot_needed(einfo->ei_type)) {
1094                 rc = obd_get_request_slot(&req->rq_import->imp_obd->u.cli);
1095                 if (rc) {
1096                         if (einfo->ei_enq_slot)
1097                                 ptlrpc_put_mod_rpc_slot(req);
1098                         failed_lock_cleanup(ns, lock, einfo->ei_mode);
1099                         LDLM_LOCK_RELEASE(lock);
1100                         GOTO(out, rc);
1101                 }
1102         }
1103
1104         if (async) {
1105                 LASSERT(reqp != NULL);
1106                 RETURN(0);
1107         }
1108
1109         LDLM_DEBUG(lock, "sending request");
1110
1111         rc = ptlrpc_queue_wait(req);
1112
1113         err = ldlm_cli_enqueue_fini(exp, req, einfo->ei_type, policy ? 1 : 0,
1114                                     einfo->ei_mode, flags, lvb, lvb_len,
1115                                     lockh, rc);
1116
1117         /*
1118          * If ldlm_cli_enqueue_fini did not find the lock, we need to free
1119          * one reference that we took
1120          */
1121         if (err == -ENOLCK)
1122                 LDLM_LOCK_RELEASE(lock);
1123         else
1124                 rc = err;
1125
1126 out:
1127         if (!req_passed_in && req != NULL) {
1128                 ptlrpc_req_finished(req);
1129                 if (reqp)
1130                         *reqp = NULL;
1131         }
1132
1133         RETURN(rc);
1134 }
1135 EXPORT_SYMBOL(ldlm_cli_enqueue);
1136
1137 /**
1138  * Client-side IBITS lock convert.
1139  *
1140  * Inform server that lock has been converted instead of canceling.
1141  * Server finishes convert on own side and does reprocess to grant
1142  * all related waiting locks.
1143  *
1144  * Since convert means only ibits downgrading, client doesn't need to
1145  * wait for server reply to finish local converting process so this request
1146  * is made asynchronous.
1147  *
1148  */
1149 int ldlm_cli_convert_req(struct ldlm_lock *lock, __u32 *flags, __u64 new_bits)
1150 {
1151         struct ldlm_request *body;
1152         struct ptlrpc_request *req;
1153         struct obd_export *exp = lock->l_conn_export;
1154
1155         ENTRY;
1156
1157         LASSERT(exp != NULL);
1158
1159         /*
1160          * this is better to check earlier and it is done so already,
1161          * but this check is kept too as final one to issue an error
1162          * if any new code will miss such check.
1163          */
1164         if (!exp_connect_lock_convert(exp)) {
1165                 LDLM_ERROR(lock, "server doesn't support lock convert\n");
1166                 RETURN(-EPROTO);
1167         }
1168
1169         if (lock->l_resource->lr_type != LDLM_IBITS) {
1170                 LDLM_ERROR(lock, "convert works with IBITS locks only.");
1171                 RETURN(-EINVAL);
1172         }
1173
1174         LDLM_DEBUG(lock, "client-side convert");
1175
1176         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1177                                         &RQF_LDLM_CONVERT, LUSTRE_DLM_VERSION,
1178                                         LDLM_CONVERT);
1179         if (req == NULL)
1180                 RETURN(-ENOMEM);
1181
1182         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1183         body->lock_handle[0] = lock->l_remote_handle;
1184
1185         body->lock_desc.l_req_mode = lock->l_req_mode;
1186         body->lock_desc.l_granted_mode = lock->l_granted_mode;
1187
1188         body->lock_desc.l_policy_data.l_inodebits.bits = new_bits;
1189         body->lock_desc.l_policy_data.l_inodebits.cancel_bits = 0;
1190
1191         body->lock_flags = ldlm_flags_to_wire(*flags);
1192         body->lock_count = 1;
1193
1194         ptlrpc_request_set_replen(req);
1195
1196         /*
1197          * Use cancel portals for convert as well as high-priority handling.
1198          */
1199         req->rq_request_portal = LDLM_CANCEL_REQUEST_PORTAL;
1200         req->rq_reply_portal = LDLM_CANCEL_REPLY_PORTAL;
1201
1202         ptlrpc_at_set_req_timeout(req);
1203
1204         if (exp->exp_obd->obd_svc_stats != NULL)
1205                 lprocfs_counter_incr(exp->exp_obd->obd_svc_stats,
1206                                      LDLM_CONVERT - LDLM_FIRST_OPC);
1207
1208         ptlrpcd_add_req(req);
1209         RETURN(0);
1210 }
1211
1212 /**
1213  * Cancel locks locally.
1214  * Returns:
1215  * \retval LDLM_FL_LOCAL_ONLY if there is no need for a CANCEL RPC to the server
1216  * \retval LDLM_FL_CANCELING otherwise;
1217  * \retval LDLM_FL_BL_AST if there is a need for a separate CANCEL RPC.
1218  */
1219 static __u64 ldlm_cli_cancel_local(struct ldlm_lock *lock)
1220 {
1221         __u64 rc = LDLM_FL_LOCAL_ONLY;
1222
1223         ENTRY;
1224
1225         if (lock->l_conn_export) {
1226                 bool local_only;
1227
1228                 LDLM_DEBUG(lock, "client-side cancel");
1229                 /* Set this flag to prevent others from getting new references*/
1230                 lock_res_and_lock(lock);
1231                 ldlm_set_cbpending(lock);
1232                 local_only = !!(lock->l_flags &
1233                                 (LDLM_FL_LOCAL_ONLY|LDLM_FL_CANCEL_ON_BLOCK));
1234                 ldlm_cancel_callback(lock);
1235                 rc = (ldlm_is_bl_ast(lock)) ?
1236                         LDLM_FL_BL_AST : LDLM_FL_CANCELING;
1237                 unlock_res_and_lock(lock);
1238
1239                 if (local_only) {
1240                         CDEBUG(D_DLMTRACE,
1241                                "not sending request (at caller's instruction)\n");
1242                         rc = LDLM_FL_LOCAL_ONLY;
1243                 }
1244                 ldlm_lock_cancel(lock);
1245         } else {
1246                 if (ns_is_client(ldlm_lock_to_ns(lock))) {
1247                         LDLM_ERROR(lock, "Trying to cancel local lock");
1248                         LBUG();
1249                 }
1250                 LDLM_DEBUG(lock, "server-side local cancel");
1251                 ldlm_lock_cancel(lock);
1252                 ldlm_reprocess_all(lock->l_resource, lock);
1253         }
1254
1255         RETURN(rc);
1256 }
1257
1258 /**
1259  * Pack \a count locks in \a head into ldlm_request buffer of request \a req.
1260  */
1261 static void ldlm_cancel_pack(struct ptlrpc_request *req,
1262                              struct list_head *head, int count)
1263 {
1264         struct ldlm_request *dlm;
1265         struct ldlm_lock *lock;
1266         int max, packed = 0;
1267
1268         ENTRY;
1269
1270         dlm = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1271         LASSERT(dlm != NULL);
1272
1273         /* Check the room in the request buffer. */
1274         max = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT) -
1275                 sizeof(struct ldlm_request);
1276         max /= sizeof(struct lustre_handle);
1277         max += LDLM_LOCKREQ_HANDLES;
1278         LASSERT(max >= dlm->lock_count + count);
1279
1280         /*
1281          * XXX: it would be better to pack lock handles grouped by resource.
1282          * so that the server cancel would call filter_lvbo_update() less
1283          * frequently.
1284          */
1285         list_for_each_entry(lock, head, l_bl_ast) {
1286                 if (!count--)
1287                         break;
1288                 LASSERT(lock->l_conn_export);
1289                 /* Pack the lock handle to the given request buffer. */
1290                 LDLM_DEBUG(lock, "packing");
1291                 dlm->lock_handle[dlm->lock_count++] = lock->l_remote_handle;
1292                 packed++;
1293         }
1294         CDEBUG(D_DLMTRACE, "%d locks packed\n", packed);
1295         EXIT;
1296 }
1297
1298 /**
1299  * Prepare and send a batched cancel RPC. It will include \a count lock
1300  * handles of locks given in \a cancels list.
1301  */
1302 int ldlm_cli_cancel_req(struct obd_export *exp, struct list_head *cancels,
1303                         int count, enum ldlm_cancel_flags flags)
1304 {
1305         struct ptlrpc_request *req = NULL;
1306         struct obd_import *imp;
1307         int free, sent = 0;
1308         int rc = 0;
1309
1310         ENTRY;
1311
1312         LASSERT(exp != NULL);
1313         LASSERT(count > 0);
1314
1315         CFS_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL, cfs_fail_val);
1316
1317         if (CFS_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_RACE))
1318                 RETURN(count);
1319
1320         free = ldlm_format_handles_avail(class_exp2cliimp(exp),
1321                                          &RQF_LDLM_CANCEL, RCL_CLIENT, 0);
1322         if (count > free)
1323                 count = free;
1324
1325         while (1) {
1326                 imp = class_exp2cliimp(exp);
1327                 if (imp == NULL || imp->imp_invalid) {
1328                         CDEBUG(D_DLMTRACE,
1329                                "skipping cancel on invalid import %p\n", imp);
1330                         RETURN(count);
1331                 }
1332
1333                 req = ptlrpc_request_alloc(imp, &RQF_LDLM_CANCEL);
1334                 if (req == NULL)
1335                         GOTO(out, rc = -ENOMEM);
1336
1337                 req_capsule_filled_sizes(&req->rq_pill, RCL_CLIENT);
1338                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT,
1339                                      ldlm_request_bufsize(count, LDLM_CANCEL));
1340
1341                 rc = ptlrpc_request_pack(req, LUSTRE_DLM_VERSION, LDLM_CANCEL);
1342                 if (rc) {
1343                         ptlrpc_request_free(req);
1344                         GOTO(out, rc);
1345                 }
1346
1347                 /*
1348                  * If OSP want cancel cross-MDT lock, let's not block it in
1349                  * in recovery, otherwise the lock will not released, if
1350                  * the remote target is also in recovery, and it also need
1351                  * this lock, it might cause deadlock.
1352                  */
1353                 if (exp_connect_flags(exp) & OBD_CONNECT_MDS_MDS &&
1354                     exp->exp_obd->obd_lu_dev != NULL &&
1355                     exp->exp_obd->obd_lu_dev->ld_site != NULL) {
1356                         struct lu_device *top_dev;
1357
1358                         top_dev = exp->exp_obd->obd_lu_dev->ld_site->ls_top_dev;
1359                         if (top_dev != NULL &&
1360                             top_dev->ld_obd->obd_recovering)
1361                                 req->rq_allow_replay = 1;
1362                 }
1363
1364                 req->rq_request_portal = LDLM_CANCEL_REQUEST_PORTAL;
1365                 req->rq_reply_portal = LDLM_CANCEL_REPLY_PORTAL;
1366                 ptlrpc_at_set_req_timeout(req);
1367
1368                 ldlm_cancel_pack(req, cancels, count);
1369
1370                 ptlrpc_request_set_replen(req);
1371                 if (flags & LCF_ASYNC) {
1372                         ptlrpcd_add_req(req);
1373                         sent = count;
1374                         GOTO(out, 0);
1375                 }
1376
1377                 rc = ptlrpc_queue_wait(req);
1378                 if (rc == LUSTRE_ESTALE) {
1379                         CDEBUG(D_DLMTRACE,
1380                                "client/server (nid %s) out of sync -- not fatal\n",
1381                                libcfs_nid2str(req->rq_import->imp_connection->c_peer.nid));
1382                         rc = 0;
1383                 } else if (rc == -ETIMEDOUT && /* check there was no reconnect*/
1384                            req->rq_import_generation == imp->imp_generation) {
1385                         ptlrpc_req_finished(req);
1386                         continue;
1387                 } else if (rc != ELDLM_OK) {
1388                         /* -ESHUTDOWN is common on umount */
1389                         CDEBUG_LIMIT(rc == -ESHUTDOWN ? D_DLMTRACE : D_ERROR,
1390                                      "Got rc %d from cancel RPC: canceling anyway\n",
1391                                      rc);
1392                         break;
1393                 }
1394                 sent = count;
1395                 break;
1396         }
1397
1398         ptlrpc_req_finished(req);
1399         EXIT;
1400 out:
1401         return sent ? sent : rc;
1402 }
1403
1404 static inline struct ldlm_pool *ldlm_imp2pl(struct obd_import *imp)
1405 {
1406         LASSERT(imp != NULL);
1407         return &imp->imp_obd->obd_namespace->ns_pool;
1408 }
1409
1410 /**
1411  * Update client's OBD pool related fields with new SLV and Limit from \a req.
1412  */
1413 int ldlm_cli_update_pool(struct ptlrpc_request *req)
1414 {
1415         struct obd_device *obd;
1416         __u64 new_slv;
1417         __u32 new_limit;
1418
1419         ENTRY;
1420         if (unlikely(!req->rq_import || !req->rq_import->imp_obd ||
1421                      !imp_connect_lru_resize(req->rq_import)))
1422                 /* Do nothing for corner cases. */
1423                 RETURN(0);
1424
1425         /*
1426          * In some cases RPC may contain SLV and limit zeroed out. This
1427          * is the case when server does not support LRU resize feature.
1428          * This is also possible in some recovery cases when server-side
1429          * reqs have no reference to the OBD export and thus access to
1430          * server-side namespace is not possible.
1431          */
1432         if (lustre_msg_get_slv(req->rq_repmsg) == 0 ||
1433             lustre_msg_get_limit(req->rq_repmsg) == 0) {
1434                 DEBUG_REQ(D_HA, req,
1435                           "Zero SLV or limit found (SLV=%llu, limit=%u)",
1436                           lustre_msg_get_slv(req->rq_repmsg),
1437                           lustre_msg_get_limit(req->rq_repmsg));
1438                 RETURN(0);
1439         }
1440
1441         new_limit = lustre_msg_get_limit(req->rq_repmsg);
1442         new_slv = lustre_msg_get_slv(req->rq_repmsg);
1443         obd = req->rq_import->imp_obd;
1444
1445         /*
1446          * Set new SLV and limit in OBD fields to make them accessible
1447          * to the pool thread. We do not access obd_namespace and pool
1448          * directly here as there is no reliable way to make sure that
1449          * they are still alive at cleanup time. Evil races are possible
1450          * which may cause Oops at that time.
1451          */
1452         write_lock(&obd->obd_pool_lock);
1453         obd->obd_pool_slv = new_slv;
1454         obd->obd_pool_limit = new_limit;
1455         write_unlock(&obd->obd_pool_lock);
1456
1457         RETURN(0);
1458 }
1459
1460 int ldlm_cli_convert(struct ldlm_lock *lock,
1461                      enum ldlm_cancel_flags cancel_flags)
1462 {
1463         int rc = -EINVAL;
1464
1465         LASSERT(!lock->l_readers && !lock->l_writers);
1466         LDLM_DEBUG(lock, "client lock convert START");
1467
1468         if (lock->l_resource->lr_type == LDLM_IBITS) {
1469                 lock_res_and_lock(lock);
1470                 do {
1471                         rc = ldlm_cli_inodebits_convert(lock, cancel_flags);
1472                 } while (rc == -EAGAIN);
1473                 unlock_res_and_lock(lock);
1474         }
1475
1476         LDLM_DEBUG(lock, "client lock convert END");
1477         RETURN(rc);
1478 }
1479 EXPORT_SYMBOL(ldlm_cli_convert);
1480
1481 /**
1482  * Client side lock cancel.
1483  *
1484  * Lock must not have any readers or writers by this time.
1485  */
1486 int ldlm_cli_cancel(const struct lustre_handle *lockh,
1487                     enum ldlm_cancel_flags cancel_flags)
1488 {
1489         struct obd_export *exp;
1490         enum ldlm_lru_flags lru_flags;
1491         int avail, count = 1;
1492         __u64 rc = 0;
1493         struct ldlm_namespace *ns;
1494         struct ldlm_lock *lock;
1495         LIST_HEAD(cancels);
1496
1497         ENTRY;
1498
1499         lock = ldlm_handle2lock_long(lockh, 0);
1500         if (lock == NULL) {
1501                 LDLM_DEBUG_NOLOCK("lock is already being destroyed");
1502                 RETURN(0);
1503         }
1504
1505         lock_res_and_lock(lock);
1506         LASSERT(!ldlm_is_converting(lock));
1507
1508         /* Lock is being canceled and the caller doesn't want to wait */
1509         if (ldlm_is_canceling(lock)) {
1510                 if (cancel_flags & LCF_ASYNC) {
1511                         unlock_res_and_lock(lock);
1512                 } else {
1513                         unlock_res_and_lock(lock);
1514                         wait_event_idle(lock->l_waitq, is_bl_done(lock));
1515                 }
1516                 LDLM_LOCK_RELEASE(lock);
1517                 RETURN(0);
1518         }
1519
1520         ldlm_set_canceling(lock);
1521         unlock_res_and_lock(lock);
1522
1523         if (cancel_flags & LCF_LOCAL)
1524                 OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_LOCAL_CANCEL_PAUSE,
1525                                  cfs_fail_val);
1526
1527         rc = ldlm_cli_cancel_local(lock);
1528         if (rc == LDLM_FL_LOCAL_ONLY || cancel_flags & LCF_LOCAL) {
1529                 LDLM_LOCK_RELEASE(lock);
1530                 RETURN(0);
1531         }
1532         /*
1533          * Even if the lock is marked as LDLM_FL_BL_AST, this is a LDLM_CANCEL
1534          * RPC which goes to canceld portal, so we can cancel other LRU locks
1535          * here and send them all as one LDLM_CANCEL RPC.
1536          */
1537         LASSERT(list_empty(&lock->l_bl_ast));
1538         list_add(&lock->l_bl_ast, &cancels);
1539
1540         exp = lock->l_conn_export;
1541         if (exp_connect_cancelset(exp)) {
1542                 avail = ldlm_format_handles_avail(class_exp2cliimp(exp),
1543                                                   &RQF_LDLM_CANCEL,
1544                                                   RCL_CLIENT, 0);
1545                 LASSERT(avail > 0);
1546
1547                 ns = ldlm_lock_to_ns(lock);
1548                 lru_flags = ns_connect_lru_resize(ns) ?
1549                         LDLM_LRU_FLAG_LRUR : LDLM_LRU_FLAG_AGED;
1550                 count += ldlm_cancel_lru_local(ns, &cancels, 0, avail - 1,
1551                                                LCF_BL_AST, lru_flags);
1552         }
1553         ldlm_cli_cancel_list(&cancels, count, NULL, cancel_flags);
1554         RETURN(0);
1555 }
1556 EXPORT_SYMBOL(ldlm_cli_cancel);
1557
1558 /**
1559  * Locally cancel up to \a count locks in list \a cancels.
1560  * Return the number of cancelled locks.
1561  */
1562 int ldlm_cli_cancel_list_local(struct list_head *cancels, int count,
1563                                enum ldlm_cancel_flags cancel_flags)
1564 {
1565         LIST_HEAD(head);
1566         struct ldlm_lock *lock, *next;
1567         int left = 0, bl_ast = 0;
1568         __u64 rc;
1569
1570         left = count;
1571         list_for_each_entry_safe(lock, next, cancels, l_bl_ast) {
1572                 if (left-- == 0)
1573                         break;
1574
1575                 if (cancel_flags & LCF_LOCAL) {
1576                         rc = LDLM_FL_LOCAL_ONLY;
1577                         ldlm_lock_cancel(lock);
1578                 } else {
1579                         rc = ldlm_cli_cancel_local(lock);
1580                 }
1581                 /*
1582                  * Until we have compound requests and can send LDLM_CANCEL
1583                  * requests batched with generic RPCs, we need to send cancels
1584                  * with the LDLM_FL_BL_AST flag in a separate RPC from
1585                  * the one being generated now.
1586                  */
1587                 if (!(cancel_flags & LCF_BL_AST) && (rc == LDLM_FL_BL_AST)) {
1588                         LDLM_DEBUG(lock, "Cancel lock separately");
1589                         list_move(&lock->l_bl_ast, &head);
1590                         bl_ast++;
1591                         continue;
1592                 }
1593                 if (rc == LDLM_FL_LOCAL_ONLY) {
1594                         /* CANCEL RPC should not be sent to server. */
1595                         list_del_init(&lock->l_bl_ast);
1596                         LDLM_LOCK_RELEASE(lock);
1597                         count--;
1598                 }
1599         }
1600         if (bl_ast > 0) {
1601                 count -= bl_ast;
1602                 ldlm_cli_cancel_list(&head, bl_ast, NULL, 0);
1603         }
1604
1605         RETURN(count);
1606 }
1607
1608 /**
1609  * Cancel as many locks as possible w/o sending any RPCs (e.g. to write back
1610  * dirty data, to close a file, ...) or waiting for any RPCs in-flight (e.g.
1611  * readahead requests, ...)
1612  */
1613 static enum ldlm_policy_res
1614 ldlm_cancel_no_wait_policy(struct ldlm_namespace *ns, struct ldlm_lock *lock,
1615                            int unused, int added, int count)
1616 {
1617         enum ldlm_policy_res result = LDLM_POLICY_CANCEL_LOCK;
1618
1619         /*
1620          * don't check added & count since we want to process all locks
1621          * from unused list.
1622          * It's fine to not take lock to access lock->l_resource since
1623          * the lock has already been granted so it won't change.
1624          */
1625         switch (lock->l_resource->lr_type) {
1626                 case LDLM_EXTENT:
1627                 case LDLM_IBITS:
1628                         if (ns->ns_cancel != NULL && ns->ns_cancel(lock) != 0)
1629                                 break;
1630                         /* fallthrough */
1631                 default:
1632                         result = LDLM_POLICY_SKIP_LOCK;
1633                         break;
1634         }
1635
1636         RETURN(result);
1637 }
1638
1639 /**
1640  * Callback function for LRU-resize policy. Decides whether to keep
1641  * \a lock in LRU for current \a LRU size \a unused, added in current
1642  * scan \a added and number of locks to be preferably canceled \a count.
1643  *
1644  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1645  *
1646  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1647  */
1648 static enum ldlm_policy_res ldlm_cancel_lrur_policy(struct ldlm_namespace *ns,
1649                                                     struct ldlm_lock *lock,
1650                                                     int unused, int added,
1651                                                     int count)
1652 {
1653         ktime_t cur = ktime_get();
1654         struct ldlm_pool *pl = &ns->ns_pool;
1655         u64 slv, lvf, lv;
1656         s64 la;
1657
1658         /*
1659          * Stop LRU processing when we reach past @count or have checked all
1660          * locks in LRU.
1661          */
1662         if (count && added >= count)
1663                 return LDLM_POLICY_KEEP_LOCK;
1664
1665         /*
1666          * Despite of the LV, It doesn't make sense to keep the lock which
1667          * is unused for ns_max_age time.
1668          */
1669         if (ktime_after(ktime_get(),
1670                         ktime_add(lock->l_last_used, ns->ns_max_age)))
1671                 return LDLM_POLICY_CANCEL_LOCK;
1672
1673         slv = ldlm_pool_get_slv(pl);
1674         lvf = ldlm_pool_get_lvf(pl);
1675         la = div_u64(ktime_to_ns(ktime_sub(cur, lock->l_last_used)),
1676                      NSEC_PER_SEC);
1677         lv = lvf * la * unused;
1678
1679         /* Inform pool about current CLV to see it via debugfs. */
1680         ldlm_pool_set_clv(pl, lv);
1681
1682         /*
1683          * Stop when SLV is not yet come from server or lv is smaller than
1684          * it is.
1685          */
1686         if (slv == 0 || lv < slv)
1687                 return LDLM_POLICY_KEEP_LOCK;
1688
1689         return LDLM_POLICY_CANCEL_LOCK;
1690 }
1691
1692 static enum ldlm_policy_res
1693 ldlm_cancel_lrur_no_wait_policy(struct ldlm_namespace *ns,
1694                                 struct ldlm_lock *lock,
1695                                 int unused, int added,
1696                                 int count)
1697 {
1698         enum ldlm_policy_res result;
1699
1700         result = ldlm_cancel_lrur_policy(ns, lock, unused, added, count);
1701         if (result == LDLM_POLICY_KEEP_LOCK)
1702                 return result;
1703
1704         return ldlm_cancel_no_wait_policy(ns, lock, unused, added, count);
1705 }
1706
1707 /**
1708  * Callback function for debugfs used policy. Makes decision whether to keep
1709  * \a lock in LRU for current \a LRU size \a unused, added in current scan \a
1710  * added and number of locks to be preferably canceled \a count.
1711  *
1712  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1713  *
1714  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1715  */
1716 static enum ldlm_policy_res ldlm_cancel_passed_policy(struct ldlm_namespace *ns,
1717                                                       struct ldlm_lock *lock,
1718                                                       int unused, int added,
1719                                                       int count)
1720 {
1721         /*
1722          * Stop LRU processing when we reach past @count or have checked all
1723          * locks in LRU.
1724          */
1725         return (added >= count) ?
1726                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1727 }
1728
1729 /**
1730  * Callback function for aged policy. Makes decision whether to keep \a lock in
1731  * LRU for current LRU size \a unused, added in current scan \a added and
1732  * number of locks to be preferably canceled \a count.
1733  *
1734  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1735  *
1736  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1737  */
1738 static enum ldlm_policy_res ldlm_cancel_aged_policy(struct ldlm_namespace *ns,
1739                                                     struct ldlm_lock *lock,
1740                                                     int unused, int added,
1741                                                     int count)
1742 {
1743         if ((added >= count) &&
1744             ktime_before(ktime_get(),
1745                          ktime_add(lock->l_last_used, ns->ns_max_age)))
1746                 return LDLM_POLICY_KEEP_LOCK;
1747
1748         return LDLM_POLICY_CANCEL_LOCK;
1749 }
1750
1751 static enum ldlm_policy_res
1752 ldlm_cancel_aged_no_wait_policy(struct ldlm_namespace *ns,
1753                                 struct ldlm_lock *lock,
1754                                 int unused, int added, int count)
1755 {
1756         enum ldlm_policy_res result;
1757
1758         result = ldlm_cancel_aged_policy(ns, lock, unused, added, count);
1759         if (result == LDLM_POLICY_KEEP_LOCK)
1760                 return result;
1761
1762         return ldlm_cancel_no_wait_policy(ns, lock, unused, added, count);
1763 }
1764
1765 /**
1766  * Callback function for default policy. Makes decision whether to keep \a lock
1767  * in LRU for current LRU size \a unused, added in current scan \a added and
1768  * number of locks to be preferably canceled \a count.
1769  *
1770  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1771  *
1772  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1773  */
1774 static
1775 enum ldlm_policy_res ldlm_cancel_default_policy(struct ldlm_namespace *ns,
1776                                                 struct ldlm_lock *lock,
1777                                                 int unused, int added,
1778                                                 int count)
1779 {
1780         /*
1781          * Stop LRU processing when we reach past count or have checked all
1782          * locks in LRU.
1783          */
1784         return (added >= count) ?
1785                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1786 }
1787
1788 typedef enum ldlm_policy_res
1789 (*ldlm_cancel_lru_policy_t)(struct ldlm_namespace *ns, struct ldlm_lock *lock,
1790                             int unused, int added, int count);
1791
1792 static ldlm_cancel_lru_policy_t
1793 ldlm_cancel_lru_policy(struct ldlm_namespace *ns, enum ldlm_lru_flags lru_flags)
1794 {
1795         if (ns_connect_lru_resize(ns)) {
1796                 if (lru_flags & LDLM_LRU_FLAG_SHRINK)
1797                         /* We kill passed number of old locks. */
1798                         return ldlm_cancel_passed_policy;
1799                 if (lru_flags & LDLM_LRU_FLAG_LRUR) {
1800                         if (lru_flags & LDLM_LRU_FLAG_NO_WAIT)
1801                                 return ldlm_cancel_lrur_no_wait_policy;
1802                         else
1803                                 return ldlm_cancel_lrur_policy;
1804                 }
1805                 if (lru_flags & LDLM_LRU_FLAG_PASSED)
1806                         return ldlm_cancel_passed_policy;
1807         } else {
1808                 if (lru_flags & LDLM_LRU_FLAG_AGED) {
1809                         if (lru_flags & LDLM_LRU_FLAG_NO_WAIT)
1810                                 return ldlm_cancel_aged_no_wait_policy;
1811                         else
1812                                 return ldlm_cancel_aged_policy;
1813                 }
1814         }
1815         if (lru_flags & LDLM_LRU_FLAG_NO_WAIT)
1816                 return ldlm_cancel_no_wait_policy;
1817
1818         return ldlm_cancel_default_policy;
1819 }
1820
1821 /**
1822  * - Free space in LRU for \a count new locks,
1823  *   redundant unused locks are canceled locally;
1824  * - also cancel locally unused aged locks;
1825  * - do not cancel more than \a max locks;
1826  * - GET the found locks and add them into the \a cancels list.
1827  *
1828  * A client lock can be added to the l_bl_ast list only when it is
1829  * marked LDLM_FL_CANCELING. Otherwise, somebody is already doing
1830  * CANCEL.  There are the following use cases:
1831  * ldlm_cancel_resource_local(), ldlm_cancel_lru_local() and
1832  * ldlm_cli_cancel(), which check and set this flag properly. As any
1833  * attempt to cancel a lock rely on this flag, l_bl_ast list is accessed
1834  * later without any special locking.
1835  *
1836  * Calling policies for enabled LRU resize:
1837  * ----------------------------------------
1838  * flags & LDLM_LRU_FLAG_LRUR - use LRU resize policy (SLV from server) to
1839  *                              cancel not more than \a count locks;
1840  *
1841  * flags & LDLM_LRU_FLAG_PASSED - cancel \a count number of old locks (located
1842  *                              at the beginning of LRU list);
1843  *
1844  * flags & LDLM_LRU_FLAG_SHRINK - cancel not more than \a count locks according
1845  *                              to memory pressre policy function;
1846  *
1847  * flags & LDLM_LRU_FLAG_AGED - cancel \a count locks according to "aged policy"
1848  *
1849  * flags & LDLM_LRU_FLAG_NO_WAIT - cancel as many unused locks as possible
1850  *                              (typically before replaying locks) w/o
1851  *                              sending any RPCs or waiting for any
1852  *                              outstanding RPC to complete.
1853  *
1854  * flags & LDLM_CANCEL_CLEANUP - when cancelling read locks, do not check for
1855  *                              other read locks covering the same pages, just
1856  *                              discard those pages.
1857  */
1858 static int ldlm_prepare_lru_list(struct ldlm_namespace *ns,
1859                                  struct list_head *cancels, int count, int max,
1860                                  enum ldlm_lru_flags lru_flags)
1861 {
1862         ldlm_cancel_lru_policy_t pf;
1863         int added = 0;
1864         int no_wait = lru_flags & LDLM_LRU_FLAG_NO_WAIT;
1865
1866         ENTRY;
1867
1868         if (!ns_connect_lru_resize(ns))
1869                 count += ns->ns_nr_unused - ns->ns_max_unused;
1870
1871         pf = ldlm_cancel_lru_policy(ns, lru_flags);
1872         LASSERT(pf != NULL);
1873
1874         /* For any flags, stop scanning if @max is reached. */
1875         while (!list_empty(&ns->ns_unused_list) && (max == 0 || added < max)) {
1876                 struct ldlm_lock *lock;
1877                 struct list_head *item, *next;
1878                 enum ldlm_policy_res result;
1879                 ktime_t last_use = ktime_set(0, 0);
1880
1881                 spin_lock(&ns->ns_lock);
1882                 item = no_wait ? ns->ns_last_pos : &ns->ns_unused_list;
1883                 for (item = item->next, next = item->next;
1884                      item != &ns->ns_unused_list;
1885                      item = next, next = item->next) {
1886                         lock = list_entry(item, struct ldlm_lock, l_lru);
1887
1888                         /* No locks which got blocking requests. */
1889                         LASSERT(!ldlm_is_bl_ast(lock));
1890
1891                         if (!ldlm_is_canceling(lock))
1892                                 break;
1893
1894                         /*
1895                          * Somebody is already doing CANCEL. No need for this
1896                          * lock in LRU, do not traverse it again.
1897                          */
1898                         ldlm_lock_remove_from_lru_nolock(lock);
1899                 }
1900                 if (item == &ns->ns_unused_list) {
1901                         spin_unlock(&ns->ns_lock);
1902                         break;
1903                 }
1904
1905                 last_use = lock->l_last_used;
1906
1907                 LDLM_LOCK_GET(lock);
1908                 spin_unlock(&ns->ns_lock);
1909                 lu_ref_add(&lock->l_reference, __FUNCTION__, current);
1910
1911                 /*
1912                  * Pass the lock through the policy filter and see if it
1913                  * should stay in LRU.
1914                  *
1915                  * Even for shrinker policy we stop scanning if
1916                  * we find a lock that should stay in the cache.
1917                  * We should take into account lock age anyway
1918                  * as a new lock is a valuable resource even if
1919                  * it has a low weight.
1920                  *
1921                  * That is, for shrinker policy we drop only
1922                  * old locks, but additionally choose them by
1923                  * their weight. Big extent locks will stay in
1924                  * the cache.
1925                  */
1926                 result = pf(ns, lock, ns->ns_nr_unused, added, count);
1927                 if (result == LDLM_POLICY_KEEP_LOCK) {
1928                         lu_ref_del(&lock->l_reference, __func__, current);
1929                         LDLM_LOCK_RELEASE(lock);
1930                         break;
1931                 }
1932
1933                 if (result == LDLM_POLICY_SKIP_LOCK) {
1934                         lu_ref_del(&lock->l_reference, __func__, current);
1935                         if (no_wait) {
1936                                 spin_lock(&ns->ns_lock);
1937                                 if (!list_empty(&lock->l_lru) &&
1938                                     lock->l_lru.prev == ns->ns_last_pos)
1939                                         ns->ns_last_pos = &lock->l_lru;
1940                                 spin_unlock(&ns->ns_lock);
1941                         }
1942
1943                         LDLM_LOCK_RELEASE(lock);
1944                         continue;
1945                 }
1946
1947                 lock_res_and_lock(lock);
1948                 /* Check flags again under the lock. */
1949                 if (ldlm_is_canceling(lock) ||
1950                     ldlm_lock_remove_from_lru_check(lock, last_use) == 0) {
1951                         /*
1952                          * Another thread is removing lock from LRU, or
1953                          * somebody is already doing CANCEL, or there
1954                          * is a blocking request which will send cancel
1955                          * by itself, or the lock is no longer unused or
1956                          * the lock has been used since the pf() call and
1957                          * pages could be put under it.
1958                          */
1959                         unlock_res_and_lock(lock);
1960                         lu_ref_del(&lock->l_reference, __FUNCTION__, current);
1961                         LDLM_LOCK_RELEASE(lock);
1962                         continue;
1963                 }
1964                 LASSERT(!lock->l_readers && !lock->l_writers);
1965
1966                 /*
1967                  * If we have chosen to cancel this lock voluntarily, we
1968                  * better send cancel notification to server, so that it
1969                  * frees appropriate state. This might lead to a race
1970                  * where while we are doing cancel here, server is also
1971                  * silently cancelling this lock.
1972                  */
1973                 ldlm_clear_cancel_on_block(lock);
1974
1975                 /*
1976                  * Setting the CBPENDING flag is a little misleading,
1977                  * but prevents an important race; namely, once
1978                  * CBPENDING is set, the lock can accumulate no more
1979                  * readers/writers. Since readers and writers are
1980                  * already zero here, ldlm_lock_decref() won't see
1981                  * this flag and call l_blocking_ast
1982                  */
1983                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING;
1984
1985                 if ((lru_flags & LDLM_LRU_FLAG_CLEANUP) &&
1986                     (lock->l_resource->lr_type == LDLM_EXTENT ||
1987                      ldlm_has_dom(lock)) && lock->l_granted_mode == LCK_PR)
1988                         ldlm_set_discard_data(lock);
1989
1990                 /*
1991                  * We can't re-add to l_lru as it confuses the
1992                  * refcounting in ldlm_lock_remove_from_lru() if an AST
1993                  * arrives after we drop lr_lock below. We use l_bl_ast
1994                  * and can't use l_pending_chain as it is used both on
1995                  * server and client nevertheless b=5666 says it is
1996                  * used only on server
1997                  */
1998                 LASSERT(list_empty(&lock->l_bl_ast));
1999                 list_add(&lock->l_bl_ast, cancels);
2000                 unlock_res_and_lock(lock);
2001                 lu_ref_del(&lock->l_reference, __FUNCTION__, current);
2002                 added++;
2003         }
2004         RETURN(added);
2005 }
2006
2007 int ldlm_cancel_lru_local(struct ldlm_namespace *ns, struct list_head *cancels,
2008                           int count, int max,
2009                           enum ldlm_cancel_flags cancel_flags,
2010                           enum ldlm_lru_flags lru_flags)
2011 {
2012         int added;
2013
2014         added = ldlm_prepare_lru_list(ns, cancels, count, max, lru_flags);
2015         if (added <= 0)
2016                 return added;
2017
2018         return ldlm_cli_cancel_list_local(cancels, added, cancel_flags);
2019 }
2020
2021 /**
2022  * Cancel at least \a nr locks from given namespace LRU.
2023  *
2024  * When called with LCF_ASYNC the blocking callback will be handled
2025  * in a thread and this function will return after the thread has been
2026  * asked to call the callback.  When called with LCF_ASYNC the blocking
2027  * callback will be performed in this function.
2028  */
2029 int ldlm_cancel_lru(struct ldlm_namespace *ns, int nr,
2030                     enum ldlm_cancel_flags cancel_flags,
2031                     enum ldlm_lru_flags lru_flags)
2032 {
2033         LIST_HEAD(cancels);
2034         int count, rc;
2035
2036         ENTRY;
2037
2038         /*
2039          * Just prepare the list of locks, do not actually cancel them yet.
2040          * Locks are cancelled later in a separate thread.
2041          */
2042         count = ldlm_prepare_lru_list(ns, &cancels, nr, 0, lru_flags);
2043         rc = ldlm_bl_to_thread_list(ns, NULL, &cancels, count, cancel_flags);
2044         if (rc == 0)
2045                 RETURN(count);
2046
2047         RETURN(0);
2048 }
2049
2050 /**
2051  * Find and cancel locally unused locks found on resource, matched to the
2052  * given policy, mode. GET the found locks and add them into the \a cancels
2053  * list.
2054  */
2055 int ldlm_cancel_resource_local(struct ldlm_resource *res,
2056                                struct list_head *cancels,
2057                                union ldlm_policy_data *policy,
2058                                enum ldlm_mode mode, __u64 lock_flags,
2059                                enum ldlm_cancel_flags cancel_flags,
2060                                void *opaque)
2061 {
2062         struct ldlm_lock *lock;
2063         int count = 0;
2064
2065         ENTRY;
2066
2067         lock_res(res);
2068         list_for_each_entry(lock, &res->lr_granted, l_res_link) {
2069                 if (opaque != NULL && lock->l_ast_data != opaque) {
2070                         LDLM_ERROR(lock, "data %p doesn't match opaque %p",
2071                                    lock->l_ast_data, opaque);
2072                         continue;
2073                 }
2074
2075                 if (lock->l_readers || lock->l_writers)
2076                         continue;
2077
2078                 /*
2079                  * If somebody is already doing CANCEL, or blocking AST came
2080                  * then skip this lock.
2081                  */
2082                 if (ldlm_is_bl_ast(lock) || ldlm_is_canceling(lock))
2083                         continue;
2084
2085                 if (lockmode_compat(lock->l_granted_mode, mode))
2086                         continue;
2087
2088                 /*
2089                  * If policy is given and this is IBITS lock, add to list only
2090                  * those locks that match by policy.
2091                  */
2092                 if (policy && (lock->l_resource->lr_type == LDLM_IBITS)) {
2093                         if (!(lock->l_policy_data.l_inodebits.bits &
2094                               policy->l_inodebits.bits))
2095                                 continue;
2096                         /* Skip locks with DoM bit if it is not set in policy
2097                          * to don't flush data by side-bits. Lock convert will
2098                          * drop those bits separately.
2099                          */
2100                         if (ldlm_has_dom(lock) &&
2101                             !(policy->l_inodebits.bits & MDS_INODELOCK_DOM))
2102                                 continue;
2103                 }
2104
2105                 /* See CBPENDING comment in ldlm_cancel_lru */
2106                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING |
2107                                  lock_flags;
2108                 LASSERT(list_empty(&lock->l_bl_ast));
2109                 list_add(&lock->l_bl_ast, cancels);
2110                 LDLM_LOCK_GET(lock);
2111                 count++;
2112         }
2113         unlock_res(res);
2114
2115         RETURN(ldlm_cli_cancel_list_local(cancels, count, cancel_flags));
2116 }
2117 EXPORT_SYMBOL(ldlm_cancel_resource_local);
2118
2119 /**
2120  * Cancel client-side locks from a list and send/prepare cancel RPCs to the
2121  * server.
2122  * If \a req is NULL, send CANCEL request to server with handles of locks
2123  * in the \a cancels. If EARLY_CANCEL is not supported, send CANCEL requests
2124  * separately per lock.
2125  * If \a req is not NULL, put handles of locks in \a cancels into the request
2126  * buffer at the offset \a off.
2127  * Destroy \a cancels at the end.
2128  */
2129 int ldlm_cli_cancel_list(struct list_head *cancels, int count,
2130                          struct ptlrpc_request *req,
2131                          enum ldlm_cancel_flags flags)
2132 {
2133         struct ldlm_lock *lock;
2134         int res = 0;
2135
2136         ENTRY;
2137
2138         if (list_empty(cancels) || count == 0)
2139                 RETURN(0);
2140
2141         /*
2142          * XXX: requests (both batched and not) could be sent in parallel.
2143          * Usually it is enough to have just 1 RPC, but it is possible that
2144          * there are too many locks to be cancelled in LRU or on a resource.
2145          * It would also speed up the case when the server does not support
2146          * the feature.
2147          */
2148         while (count > 0) {
2149                 LASSERT(!list_empty(cancels));
2150                 lock = list_entry(cancels->next, struct ldlm_lock,
2151                                   l_bl_ast);
2152                 LASSERT(lock->l_conn_export);
2153
2154                 if (exp_connect_cancelset(lock->l_conn_export)) {
2155                         res = count;
2156                         if (req)
2157                                 ldlm_cancel_pack(req, cancels, count);
2158                         else
2159                                 res = ldlm_cli_cancel_req(lock->l_conn_export,
2160                                                           cancels, count,
2161                                                           flags);
2162                 } else {
2163                         res = ldlm_cli_cancel_req(lock->l_conn_export,
2164                                                   cancels, 1, flags);
2165                 }
2166
2167                 if (res < 0) {
2168                         CDEBUG_LIMIT(res == -ESHUTDOWN ? D_DLMTRACE : D_ERROR,
2169                                      "ldlm_cli_cancel_list: %d\n", res);
2170                         res = count;
2171                 }
2172
2173                 count -= res;
2174                 ldlm_lock_list_put(cancels, l_bl_ast, res);
2175         }
2176         LASSERT(count == 0);
2177         RETURN(0);
2178 }
2179 EXPORT_SYMBOL(ldlm_cli_cancel_list);
2180
2181 /**
2182  * Cancel all locks on a resource that have 0 readers/writers.
2183  *
2184  * If flags & LDLM_FL_LOCAL_ONLY, throw the locks away without trying
2185  * to notify the server.
2186  */
2187 int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
2188                                     const struct ldlm_res_id *res_id,
2189                                     union ldlm_policy_data *policy,
2190                                     enum ldlm_mode mode,
2191                                     enum ldlm_cancel_flags flags, void *opaque)
2192 {
2193         struct ldlm_resource *res;
2194         LIST_HEAD(cancels);
2195         int count;
2196         int rc;
2197
2198         ENTRY;
2199
2200         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
2201         if (IS_ERR(res)) {
2202                 /* This is not a problem. */
2203                 CDEBUG(D_INFO, "No resource %llu\n", res_id->name[0]);
2204                 RETURN(0);
2205         }
2206
2207         LDLM_RESOURCE_ADDREF(res);
2208         count = ldlm_cancel_resource_local(res, &cancels, policy, mode,
2209                                            0, flags | LCF_BL_AST, opaque);
2210         rc = ldlm_cli_cancel_list(&cancels, count, NULL, flags);
2211         if (rc != ELDLM_OK)
2212                 CERROR("canceling unused lock "DLDLMRES": rc = %d\n",
2213                        PLDLMRES(res), rc);
2214
2215         LDLM_RESOURCE_DELREF(res);
2216         ldlm_resource_putref(res);
2217         RETURN(0);
2218 }
2219 EXPORT_SYMBOL(ldlm_cli_cancel_unused_resource);
2220
2221 struct ldlm_cli_cancel_arg {
2222         int     lc_flags;
2223         void   *lc_opaque;
2224 };
2225
2226 static int
2227 ldlm_cli_hash_cancel_unused(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2228                             struct hlist_node *hnode, void *arg)
2229 {
2230         struct ldlm_resource           *res = cfs_hash_object(hs, hnode);
2231         struct ldlm_cli_cancel_arg     *lc = arg;
2232
2233         ldlm_cli_cancel_unused_resource(ldlm_res_to_ns(res), &res->lr_name,
2234                                         NULL, LCK_MINMODE, lc->lc_flags,
2235                                         lc->lc_opaque);
2236         /* must return 0 for hash iteration */
2237         return 0;
2238 }
2239
2240 /**
2241  * Cancel all locks on a namespace (or a specific resource, if given)
2242  * that have 0 readers/writers.
2243  *
2244  * If flags & LCF_LOCAL, throw the locks away without trying
2245  * to notify the server.
2246  */
2247 int ldlm_cli_cancel_unused(struct ldlm_namespace *ns,
2248                            const struct ldlm_res_id *res_id,
2249                            enum ldlm_cancel_flags flags, void *opaque)
2250 {
2251         struct ldlm_cli_cancel_arg arg = {
2252                 .lc_flags       = flags,
2253                 .lc_opaque      = opaque,
2254         };
2255
2256         ENTRY;
2257
2258         if (ns == NULL)
2259                 RETURN(ELDLM_OK);
2260
2261         if (res_id != NULL) {
2262                 RETURN(ldlm_cli_cancel_unused_resource(ns, res_id, NULL,
2263                                                        LCK_MINMODE, flags,
2264                                                        opaque));
2265         } else {
2266                 cfs_hash_for_each_nolock(ns->ns_rs_hash,
2267                                          ldlm_cli_hash_cancel_unused, &arg, 0);
2268                 RETURN(ELDLM_OK);
2269         }
2270 }
2271
2272 /* Lock iterators. */
2273
2274 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
2275                           void *closure)
2276 {
2277         struct list_head *tmp, *next;
2278         struct ldlm_lock *lock;
2279         int rc = LDLM_ITER_CONTINUE;
2280
2281         ENTRY;
2282
2283         if (!res)
2284                 RETURN(LDLM_ITER_CONTINUE);
2285
2286         lock_res(res);
2287         list_for_each_safe(tmp, next, &res->lr_granted) {
2288                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
2289
2290                 if (iter(lock, closure) == LDLM_ITER_STOP)
2291                         GOTO(out, rc = LDLM_ITER_STOP);
2292         }
2293
2294         list_for_each_safe(tmp, next, &res->lr_waiting) {
2295                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
2296
2297                 if (iter(lock, closure) == LDLM_ITER_STOP)
2298                         GOTO(out, rc = LDLM_ITER_STOP);
2299         }
2300 out:
2301         unlock_res(res);
2302         RETURN(rc);
2303 }
2304
2305 struct iter_helper_data {
2306         ldlm_iterator_t iter;
2307         void *closure;
2308 };
2309
2310 static int ldlm_iter_helper(struct ldlm_lock *lock, void *closure)
2311 {
2312         struct iter_helper_data *helper = closure;
2313
2314         return helper->iter(lock, helper->closure);
2315 }
2316
2317 static int ldlm_res_iter_helper(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2318                                 struct hlist_node *hnode, void *arg)
2319
2320 {
2321         struct ldlm_resource *res = cfs_hash_object(hs, hnode);
2322
2323         return ldlm_resource_foreach(res, ldlm_iter_helper, arg) ==
2324                                      LDLM_ITER_STOP;
2325 }
2326
2327 void ldlm_namespace_foreach(struct ldlm_namespace *ns,
2328                             ldlm_iterator_t iter, void *closure)
2329
2330 {
2331         struct iter_helper_data helper = { .iter = iter, .closure = closure };
2332
2333         cfs_hash_for_each_nolock(ns->ns_rs_hash,
2334                                  ldlm_res_iter_helper, &helper, 0);
2335
2336 }
2337
2338 /*
2339  * non-blocking function to manipulate a lock whose cb_data is being put away.
2340  * return  0:  find no resource
2341  *       > 0:  must be LDLM_ITER_STOP/LDLM_ITER_CONTINUE.
2342  *       < 0:  errors
2343  */
2344 int ldlm_resource_iterate(struct ldlm_namespace *ns,
2345                           const struct ldlm_res_id *res_id,
2346                           ldlm_iterator_t iter, void *data)
2347 {
2348         struct ldlm_resource *res;
2349         int rc;
2350
2351         ENTRY;
2352
2353         LASSERTF(ns != NULL, "must pass in namespace\n");
2354
2355         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
2356         if (IS_ERR(res))
2357                 RETURN(0);
2358
2359         LDLM_RESOURCE_ADDREF(res);
2360         rc = ldlm_resource_foreach(res, iter, data);
2361         LDLM_RESOURCE_DELREF(res);
2362         ldlm_resource_putref(res);
2363         RETURN(rc);
2364 }
2365 EXPORT_SYMBOL(ldlm_resource_iterate);
2366
2367 /* Lock replay */
2368 static int ldlm_chain_lock_for_replay(struct ldlm_lock *lock, void *closure)
2369 {
2370         struct list_head *list = closure;
2371
2372         /* we use l_pending_chain here, because it's unused on clients. */
2373         LASSERTF(list_empty(&lock->l_pending_chain),
2374                  "lock %p next %p prev %p\n",
2375                  lock, &lock->l_pending_chain.next,
2376                  &lock->l_pending_chain.prev);
2377         /*
2378          * b=9573: don't replay locks left after eviction, or
2379          * b=17614: locks being actively cancelled. Get a reference
2380          * on a lock so that it does not disapear under us (e.g. due to cancel)
2381          */
2382         if (!(lock->l_flags & (LDLM_FL_FAILED|LDLM_FL_BL_DONE))) {
2383                 list_add(&lock->l_pending_chain, list);
2384                 LDLM_LOCK_GET(lock);
2385         }
2386
2387         return LDLM_ITER_CONTINUE;
2388 }
2389
2390 static int replay_lock_interpret(const struct lu_env *env,
2391                                  struct ptlrpc_request *req, void *args, int rc)
2392 {
2393         struct ldlm_async_args *aa = args;
2394         struct ldlm_lock     *lock;
2395         struct ldlm_reply    *reply;
2396         struct obd_export    *exp;
2397
2398         ENTRY;
2399         atomic_dec(&req->rq_import->imp_replay_inflight);
2400         if (rc != ELDLM_OK)
2401                 GOTO(out, rc);
2402
2403         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
2404         if (reply == NULL)
2405                 GOTO(out, rc = -EPROTO);
2406
2407         lock = ldlm_handle2lock(&aa->lock_handle);
2408         if (!lock) {
2409                 CERROR("received replay ack for unknown local cookie %#llx remote cookie %#llx from server %s id %s\n",
2410                        aa->lock_handle.cookie, reply->lock_handle.cookie,
2411                        req->rq_export->exp_client_uuid.uuid,
2412                        libcfs_id2str(req->rq_peer));
2413                 GOTO(out, rc = -ESTALE);
2414         }
2415
2416         /* Key change rehash lock in per-export hash with new key */
2417         exp = req->rq_export;
2418         if (exp && exp->exp_lock_hash) {
2419                 /*
2420                  * In the function below, .hs_keycmp resolves to
2421                  * ldlm_export_lock_keycmp()
2422                  */
2423                 /* coverity[overrun-buffer-val] */
2424                 cfs_hash_rehash_key(exp->exp_lock_hash,
2425                                     &lock->l_remote_handle,
2426                                     &reply->lock_handle,
2427                                     &lock->l_exp_hash);
2428         } else {
2429                 lock->l_remote_handle = reply->lock_handle;
2430         }
2431
2432         LDLM_DEBUG(lock, "replayed lock:");
2433         ptlrpc_import_recovery_state_machine(req->rq_import);
2434         LDLM_LOCK_PUT(lock);
2435 out:
2436         if (rc != ELDLM_OK)
2437                 ptlrpc_connect_import(req->rq_import);
2438
2439         RETURN(rc);
2440 }
2441
2442 static int replay_one_lock(struct obd_import *imp, struct ldlm_lock *lock)
2443 {
2444         struct ptlrpc_request *req;
2445         struct ldlm_async_args *aa;
2446         struct ldlm_request   *body;
2447         int flags;
2448
2449         ENTRY;
2450
2451
2452         /* b=11974: Do not replay a lock which is actively being canceled */
2453         if (ldlm_is_bl_done(lock)) {
2454                 LDLM_DEBUG(lock, "Not replaying canceled lock:");
2455                 RETURN(0);
2456         }
2457
2458         /*
2459          * If this is reply-less callback lock, we cannot replay it, since
2460          * server might have long dropped it, but notification of that event was
2461          * lost by network. (and server granted conflicting lock already)
2462          */
2463         if (ldlm_is_cancel_on_block(lock)) {
2464                 LDLM_DEBUG(lock, "Not replaying reply-less lock:");
2465                 ldlm_lock_cancel(lock);
2466                 RETURN(0);
2467         }
2468
2469         /*
2470          * If granted mode matches the requested mode, this lock is granted.
2471          *
2472          * If we haven't been granted anything and are on a resource list,
2473          * then we're blocked/waiting.
2474          *
2475          * If we haven't been granted anything and we're NOT on a resource list,
2476          * then we haven't got a reply yet and don't have a known disposition.
2477          * This happens whenever a lock enqueue is the request that triggers
2478          * recovery.
2479          */
2480         if (ldlm_is_granted(lock))
2481                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_GRANTED;
2482         else if (!list_empty(&lock->l_res_link))
2483                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_WAIT;
2484         else
2485                 flags = LDLM_FL_REPLAY;
2486
2487         req = ptlrpc_request_alloc_pack(imp, &RQF_LDLM_ENQUEUE,
2488                                         LUSTRE_DLM_VERSION, LDLM_ENQUEUE);
2489         if (req == NULL)
2490                 RETURN(-ENOMEM);
2491
2492         /* We're part of recovery, so don't wait for it. */
2493         req->rq_send_state = LUSTRE_IMP_REPLAY_LOCKS;
2494
2495         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2496         ldlm_lock2desc(lock, &body->lock_desc);
2497         body->lock_flags = ldlm_flags_to_wire(flags);
2498
2499         ldlm_lock2handle(lock, &body->lock_handle[0]);
2500         if (lock->l_lvb_len > 0)
2501                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_ENQUEUE_LVB);
2502         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
2503                              lock->l_lvb_len);
2504         ptlrpc_request_set_replen(req);
2505         /*
2506          * notify the server we've replayed all requests.
2507          * also, we mark the request to be put on a dedicated
2508          * queue to be processed after all request replayes.
2509          * b=6063
2510          */
2511         lustre_msg_set_flags(req->rq_reqmsg, MSG_REQ_REPLAY_DONE);
2512
2513         LDLM_DEBUG(lock, "replaying lock:");
2514
2515         atomic_inc(&req->rq_import->imp_replay_inflight);
2516         aa = ptlrpc_req_async_args(aa, req);
2517         aa->lock_handle = body->lock_handle[0];
2518         req->rq_interpret_reply = replay_lock_interpret;
2519         ptlrpcd_add_req(req);
2520
2521         RETURN(0);
2522 }
2523
2524 /**
2525  * Cancel as many unused locks as possible before replay. since we are
2526  * in recovery, we can't wait for any outstanding RPCs to send any RPC
2527  * to the server.
2528  *
2529  * Called only in recovery before replaying locks. there is no need to
2530  * replay locks that are unused. since the clients may hold thousands of
2531  * cached unused locks, dropping the unused locks can greatly reduce the
2532  * load on the servers at recovery time.
2533  */
2534 static void ldlm_cancel_unused_locks_for_replay(struct ldlm_namespace *ns)
2535 {
2536         int canceled;
2537         LIST_HEAD(cancels);
2538
2539         CDEBUG(D_DLMTRACE,
2540                "Dropping as many unused locks as possible before replay for namespace %s (%d)\n",
2541                ldlm_ns_name(ns), ns->ns_nr_unused);
2542
2543         /*
2544          * We don't need to care whether or not LRU resize is enabled
2545          * because the LDLM_LRU_FLAG_NO_WAIT policy doesn't use the
2546          * count parameter
2547          */
2548         canceled = ldlm_cancel_lru_local(ns, &cancels, ns->ns_nr_unused, 0,
2549                                          LCF_LOCAL, LDLM_LRU_FLAG_NO_WAIT);
2550
2551         CDEBUG(D_DLMTRACE, "Canceled %d unused locks from namespace %s\n",
2552                            canceled, ldlm_ns_name(ns));
2553 }
2554
2555 int ldlm_replay_locks(struct obd_import *imp)
2556 {
2557         struct ldlm_namespace *ns = imp->imp_obd->obd_namespace;
2558         LIST_HEAD(list);
2559         struct ldlm_lock *lock, *next;
2560         int rc = 0;
2561
2562         ENTRY;
2563
2564         LASSERT(atomic_read(&imp->imp_replay_inflight) == 0);
2565
2566         /* don't replay locks if import failed recovery */
2567         if (imp->imp_vbr_failed)
2568                 RETURN(0);
2569
2570         /* ensure this doesn't fall to 0 before all have been queued */
2571         atomic_inc(&imp->imp_replay_inflight);
2572
2573         if (ldlm_cancel_unused_locks_before_replay)
2574                 ldlm_cancel_unused_locks_for_replay(ns);
2575
2576         ldlm_namespace_foreach(ns, ldlm_chain_lock_for_replay, &list);
2577
2578         list_for_each_entry_safe(lock, next, &list, l_pending_chain) {
2579                 list_del_init(&lock->l_pending_chain);
2580                 if (rc) {
2581                         LDLM_LOCK_RELEASE(lock);
2582                         continue; /* or try to do the rest? */
2583                 }
2584                 rc = replay_one_lock(imp, lock);
2585                 LDLM_LOCK_RELEASE(lock);
2586         }
2587
2588         atomic_dec(&imp->imp_replay_inflight);
2589
2590         RETURN(rc);
2591 }