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