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