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