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