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