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