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