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