Whamcloud - gitweb
LU-11926 ldlm: Lost lease lock on migrate error
[fs/lustre-release.git] / lustre / ldlm / ldlm_lockd.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2010, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/ldlm/ldlm_lockd.c
33  *
34  * Author: Peter Braam <braam@clusterfs.com>
35  * Author: Phil Schwan <phil@clusterfs.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_LDLM
39
40 #include <linux/kthread.h>
41 #include <linux/list.h>
42 #include <libcfs/libcfs.h>
43 #include <lustre_errno.h>
44 #include <lustre_dlm.h>
45 #include <obd_class.h>
46 #include "ldlm_internal.h"
47
48 static int ldlm_num_threads;
49 module_param(ldlm_num_threads, int, 0444);
50 MODULE_PARM_DESC(ldlm_num_threads, "number of DLM service threads to start");
51
52 static unsigned int ldlm_cpu_bind = 1;
53 module_param(ldlm_cpu_bind, uint, 0444);
54 MODULE_PARM_DESC(ldlm_cpu_bind,
55                  "bind DLM service threads to particular CPU partitions");
56
57 static char *ldlm_cpts;
58 module_param(ldlm_cpts, charp, 0444);
59 MODULE_PARM_DESC(ldlm_cpts, "CPU partitions ldlm threads should run on");
60
61 static DEFINE_MUTEX(ldlm_ref_mutex);
62 static int ldlm_refcount;
63
64 struct kobject *ldlm_kobj;
65 struct kset *ldlm_ns_kset;
66 struct kset *ldlm_svc_kset;
67
68 /* LDLM state */
69
70 static struct ldlm_state *ldlm_state;
71
72 /* timeout for initial callback (AST) reply (bz10399)
73  * Due to having to send a 32 bit time value over the
74  * wire return it as time_t instead of time64_t
75  */
76 static inline time_t ldlm_get_rq_timeout(void)
77 {
78         /* Non-AT value */
79         time_t timeout = min(ldlm_timeout, obd_timeout / 3);
80
81         return timeout < 1 ? 1 : timeout;
82 }
83
84 struct ldlm_bl_pool {
85         spinlock_t              blp_lock;
86
87         /*
88          * blp_prio_list is used for callbacks that should be handled
89          * as a priority. It is used for LDLM_FL_DISCARD_DATA requests.
90          * see bug 13843
91          */
92         struct list_head              blp_prio_list;
93
94         /*
95          * blp_list is used for all other callbacks which are likely
96          * to take longer to process.
97          */
98         struct list_head              blp_list;
99
100         wait_queue_head_t       blp_waitq;
101         struct completion       blp_comp;
102         atomic_t            blp_num_threads;
103         atomic_t            blp_busy_threads;
104         int                     blp_min_threads;
105         int                     blp_max_threads;
106 };
107
108 struct ldlm_bl_work_item {
109         struct list_head        blwi_entry;
110         struct ldlm_namespace   *blwi_ns;
111         struct ldlm_lock_desc   blwi_ld;
112         struct ldlm_lock        *blwi_lock;
113         struct list_head        blwi_head;
114         int                     blwi_count;
115         struct completion       blwi_comp;
116         enum ldlm_cancel_flags  blwi_flags;
117         int                     blwi_mem_pressure;
118 };
119
120 #ifdef HAVE_SERVER_SUPPORT
121
122 /**
123  * Protects both waiting_locks_list and expired_lock_thread.
124  */
125 static DEFINE_SPINLOCK(waiting_locks_spinlock); /* BH lock (timer) */
126
127 /**
128  * List for contended locks.
129  *
130  * As soon as a lock is contended, it gets placed on this list and
131  * expected time to get a response is filled in the lock. A special
132  * thread walks the list looking for locks that should be released and
133  * schedules client evictions for those that have not been released in
134  * time.
135  *
136  * All access to it should be under waiting_locks_spinlock.
137  */
138 static LIST_HEAD(waiting_locks_list);
139 static void waiting_locks_callback(TIMER_DATA_TYPE unused);
140 static CFS_DEFINE_TIMER(waiting_locks_timer, waiting_locks_callback, 0, 0);
141
142 enum elt_state {
143         ELT_STOPPED,
144         ELT_READY,
145         ELT_TERMINATE,
146 };
147
148 static DECLARE_WAIT_QUEUE_HEAD(expired_lock_wait_queue);
149 static enum elt_state expired_lock_thread_state = ELT_STOPPED;
150 static int expired_lock_dump;
151 static LIST_HEAD(expired_lock_list);
152
153 static int ldlm_lock_busy(struct ldlm_lock *lock);
154 static int ldlm_add_waiting_lock(struct ldlm_lock *lock, time64_t timeout);
155 static int __ldlm_add_waiting_lock(struct ldlm_lock *lock, time64_t seconds);
156
157 static inline int have_expired_locks(void)
158 {
159         int need_to_run;
160
161         ENTRY;
162         spin_lock_bh(&waiting_locks_spinlock);
163         need_to_run = !list_empty(&expired_lock_list);
164         spin_unlock_bh(&waiting_locks_spinlock);
165
166         RETURN(need_to_run);
167 }
168
169 /**
170  * Check expired lock list for expired locks and time them out.
171  */
172 static int expired_lock_main(void *arg)
173 {
174         struct list_head *expired = &expired_lock_list;
175         struct l_wait_info lwi = { 0 };
176         int do_dump;
177
178         ENTRY;
179
180         expired_lock_thread_state = ELT_READY;
181         wake_up(&expired_lock_wait_queue);
182
183         while (1) {
184                 l_wait_event(expired_lock_wait_queue,
185                              have_expired_locks() ||
186                              expired_lock_thread_state == ELT_TERMINATE,
187                              &lwi);
188
189                 spin_lock_bh(&waiting_locks_spinlock);
190                 if (expired_lock_dump) {
191                         spin_unlock_bh(&waiting_locks_spinlock);
192
193                         /* from waiting_locks_callback, but not in timer */
194                         libcfs_debug_dumplog();
195
196                         spin_lock_bh(&waiting_locks_spinlock);
197                         expired_lock_dump = 0;
198                 }
199
200                 do_dump = 0;
201
202                 while (!list_empty(expired)) {
203                         struct obd_export *export;
204                         struct ldlm_lock *lock;
205
206                         lock = list_entry(expired->next, struct ldlm_lock,
207                                           l_pending_chain);
208                         if ((void *)lock < LP_POISON + PAGE_SIZE &&
209                             (void *)lock >= LP_POISON) {
210                                 spin_unlock_bh(&waiting_locks_spinlock);
211                                 CERROR("free lock on elt list %p\n", lock);
212                                 LBUG();
213                         }
214                         list_del_init(&lock->l_pending_chain);
215                         if ((void *)lock->l_export <
216                              LP_POISON + PAGE_SIZE &&
217                             (void *)lock->l_export >= LP_POISON) {
218                                 CERROR("lock with free export on elt list %p\n",
219                                        lock->l_export);
220                                 lock->l_export = NULL;
221                                 LDLM_ERROR(lock, "free export");
222                                 /* release extra ref grabbed by
223                                  * ldlm_add_waiting_lock() or
224                                  * ldlm_failed_ast() */
225                                 LDLM_LOCK_RELEASE(lock);
226                                 continue;
227                         }
228
229                         if (ldlm_is_destroyed(lock)) {
230                                 /* release the lock refcount where
231                                  * waiting_locks_callback() founds */
232                                 LDLM_LOCK_RELEASE(lock);
233                                 continue;
234                         }
235                         export = class_export_lock_get(lock->l_export, lock);
236                         spin_unlock_bh(&waiting_locks_spinlock);
237
238                         /* Check if we need to prolong timeout */
239                         if (!OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_TIMEOUT) &&
240                             lock->l_callback_timeout != 0 && /* not AST error */
241                             ldlm_lock_busy(lock)) {
242                                 LDLM_DEBUG(lock, "prolong the busy lock");
243                                 lock_res_and_lock(lock);
244                                 ldlm_add_waiting_lock(lock,
245                                                 ldlm_bl_timeout(lock) >> 1);
246                                 unlock_res_and_lock(lock);
247                         } else {
248                                 spin_lock_bh(&export->exp_bl_list_lock);
249                                 list_del_init(&lock->l_exp_list);
250                                 spin_unlock_bh(&export->exp_bl_list_lock);
251
252                                 LDLM_ERROR(lock,
253                                            "lock callback timer expired after %llds: evicting client at %s ",
254                                            ktime_get_real_seconds() -
255                                            lock->l_blast_sent,
256                                            obd_export_nid2str(export));
257                                 ldlm_lock_to_ns(lock)->ns_timeouts++;
258                                 do_dump++;
259                                 class_fail_export(export);
260                         }
261                         class_export_lock_put(export, lock);
262                         /* release extra ref grabbed by ldlm_add_waiting_lock()
263                          * or ldlm_failed_ast() */
264                         LDLM_LOCK_RELEASE(lock);
265
266                         spin_lock_bh(&waiting_locks_spinlock);
267                 }
268                 spin_unlock_bh(&waiting_locks_spinlock);
269
270                 if (do_dump && obd_dump_on_eviction) {
271                         CERROR("dump the log upon eviction\n");
272                         libcfs_debug_dumplog();
273                 }
274
275                 if (expired_lock_thread_state == ELT_TERMINATE)
276                         break;
277         }
278
279         expired_lock_thread_state = ELT_STOPPED;
280         wake_up(&expired_lock_wait_queue);
281         RETURN(0);
282 }
283
284 /**
285  * Check if there is a request in the export request list
286  * which prevents the lock canceling.
287  */
288 static int ldlm_lock_busy(struct ldlm_lock *lock)
289 {
290         struct ptlrpc_request *req;
291         int match = 0;
292         ENTRY;
293
294         if (lock->l_export == NULL)
295                 return 0;
296
297         spin_lock(&lock->l_export->exp_rpc_lock);
298         list_for_each_entry(req, &lock->l_export->exp_hp_rpcs,
299                                 rq_exp_list) {
300                 if (req->rq_ops->hpreq_lock_match) {
301                         match = req->rq_ops->hpreq_lock_match(req, lock);
302                         if (match)
303                                 break;
304                 }
305         }
306         spin_unlock(&lock->l_export->exp_rpc_lock);
307         RETURN(match);
308 }
309
310 /* This is called from within a timer interrupt and cannot schedule */
311 static void waiting_locks_callback(TIMER_DATA_TYPE unused)
312 {
313         struct ldlm_lock        *lock;
314         int                     need_dump = 0;
315
316         spin_lock_bh(&waiting_locks_spinlock);
317         while (!list_empty(&waiting_locks_list)) {
318                 lock = list_entry(waiting_locks_list.next, struct ldlm_lock,
319                                   l_pending_chain);
320                 if (lock->l_callback_timeout > ktime_get_seconds() ||
321                     lock->l_req_mode == LCK_GROUP)
322                         break;
323
324                 /* no needs to take an extra ref on the lock since it was in
325                  * the waiting_locks_list and ldlm_add_waiting_lock()
326                  * already grabbed a ref */
327                 list_del(&lock->l_pending_chain);
328                 list_add(&lock->l_pending_chain, &expired_lock_list);
329                 need_dump = 1;
330         }
331
332         if (!list_empty(&expired_lock_list)) {
333                 if (obd_dump_on_timeout && need_dump)
334                         expired_lock_dump = __LINE__;
335
336                 wake_up(&expired_lock_wait_queue);
337         }
338
339         /*
340          * Make sure the timer will fire again if we have any locks
341          * left.
342          */
343         if (!list_empty(&waiting_locks_list)) {
344                 unsigned long timeout_jiffies;
345
346                 lock = list_entry(waiting_locks_list.next, struct ldlm_lock,
347                                   l_pending_chain);
348                 timeout_jiffies = cfs_time_seconds(lock->l_callback_timeout);
349                 mod_timer(&waiting_locks_timer, timeout_jiffies);
350         }
351         spin_unlock_bh(&waiting_locks_spinlock);
352 }
353
354 /**
355  * Add lock to the list of contended locks.
356  *
357  * Indicate that we're waiting for a client to call us back cancelling a given
358  * lock.  We add it to the pending-callback chain, and schedule the lock-timeout
359  * timer to fire appropriately.  (We round up to the next second, to avoid
360  * floods of timer firings during periods of high lock contention and traffic).
361  * As done by ldlm_add_waiting_lock(), the caller must grab a lock reference
362  * if it has been added to the waiting list (1 is returned).
363  *
364  * Called with the namespace lock held.
365  */
366 static int __ldlm_add_waiting_lock(struct ldlm_lock *lock, time64_t seconds)
367 {
368         unsigned long timeout_jiffies;
369         time64_t timeout;
370
371         if (!list_empty(&lock->l_pending_chain))
372                 return 0;
373
374         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT) ||
375             OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_TIMEOUT))
376                 seconds = 1;
377
378         timeout = ktime_get_seconds() + seconds;
379         if (likely(timeout > lock->l_callback_timeout))
380                 lock->l_callback_timeout = timeout;
381
382         timeout_jiffies = cfs_time_seconds(lock->l_callback_timeout);
383
384         if (time_before(timeout_jiffies, waiting_locks_timer.expires) ||
385             !timer_pending(&waiting_locks_timer))
386                 mod_timer(&waiting_locks_timer, timeout_jiffies);
387
388         /* if the new lock has a shorter timeout than something earlier on
389          * the list, we'll wait the longer amount of time; no big deal.
390          */
391         /* FIFO */
392         list_add_tail(&lock->l_pending_chain, &waiting_locks_list);
393         return 1;
394 }
395
396 static void ldlm_add_blocked_lock(struct ldlm_lock *lock)
397 {
398         spin_lock_bh(&lock->l_export->exp_bl_list_lock);
399         if (list_empty(&lock->l_exp_list)) {
400                 if (!ldlm_is_granted(lock))
401                         list_add_tail(&lock->l_exp_list,
402                                       &lock->l_export->exp_bl_list);
403                 else
404                         list_add(&lock->l_exp_list,
405                                  &lock->l_export->exp_bl_list);
406         }
407         spin_unlock_bh(&lock->l_export->exp_bl_list_lock);
408
409         /* A blocked lock is added. Adjust the position in
410          * the stale list if the export is in the list.
411          * If export is stale and not in the list - it is being
412          * processed and will be placed on the right position
413          * on obd_stale_export_put(). */
414         if (!list_empty(&lock->l_export->exp_stale_list))
415                 obd_stale_export_adjust(lock->l_export);
416 }
417
418 static int ldlm_add_waiting_lock(struct ldlm_lock *lock, time64_t timeout)
419 {
420         int ret;
421
422         /* NB: must be called with hold of lock_res_and_lock() */
423         LASSERT(ldlm_is_res_locked(lock));
424         LASSERT(!ldlm_is_cancel_on_block(lock));
425
426         /* Do not put cross-MDT lock in the waiting list, since we
427          * will not evict it due to timeout for now */
428         if (lock->l_export != NULL &&
429             (exp_connect_flags(lock->l_export) & OBD_CONNECT_MDS_MDS))
430                 return 0;
431
432         spin_lock_bh(&waiting_locks_spinlock);
433         if (ldlm_is_cancel(lock)) {
434                 spin_unlock_bh(&waiting_locks_spinlock);
435                 return 0;
436         }
437
438         if (ldlm_is_destroyed(lock)) {
439                 static time64_t next;
440
441                 spin_unlock_bh(&waiting_locks_spinlock);
442                 LDLM_ERROR(lock, "not waiting on destroyed lock (bug 5653)");
443                 if (ktime_get_seconds() > next) {
444                         next = ktime_get_seconds() + 14400;
445                         libcfs_debug_dumpstack(NULL);
446                 }
447                 return 0;
448         }
449
450         ldlm_set_waited(lock);
451         lock->l_blast_sent = ktime_get_real_seconds();
452         ret = __ldlm_add_waiting_lock(lock, timeout);
453         if (ret) {
454                 /* grab ref on the lock if it has been added to the
455                  * waiting list */
456                 LDLM_LOCK_GET(lock);
457         }
458         spin_unlock_bh(&waiting_locks_spinlock);
459
460         if (ret)
461                 ldlm_add_blocked_lock(lock);
462
463         LDLM_DEBUG(lock, "%sadding to wait list(timeout: %lld, AT: %s)",
464                    ret == 0 ? "not re-" : "", timeout,
465                    AT_OFF ? "off" : "on");
466         return ret;
467 }
468
469 /**
470  * Remove a lock from the pending list, likely because it had its cancellation
471  * callback arrive without incident.  This adjusts the lock-timeout timer if
472  * needed.  Returns 0 if the lock wasn't pending after all, 1 if it was.
473  * As done by ldlm_del_waiting_lock(), the caller must release the lock
474  * reference when the lock is removed from any list (1 is returned).
475  *
476  * Called with namespace lock held.
477  */
478 static int __ldlm_del_waiting_lock(struct ldlm_lock *lock)
479 {
480         struct list_head *list_next;
481
482         if (list_empty(&lock->l_pending_chain))
483                 return 0;
484
485         list_next = lock->l_pending_chain.next;
486         if (lock->l_pending_chain.prev == &waiting_locks_list) {
487                 /* Removing the head of the list, adjust timer. */
488                 if (list_next == &waiting_locks_list) {
489                         /* No more, just cancel. */
490                         del_timer(&waiting_locks_timer);
491                 } else {
492                         struct ldlm_lock *next;
493
494                         next = list_entry(list_next, struct ldlm_lock,
495                                           l_pending_chain);
496                         mod_timer(&waiting_locks_timer,
497                                   cfs_time_seconds(next->l_callback_timeout));
498                 }
499         }
500         list_del_init(&lock->l_pending_chain);
501
502         return 1;
503 }
504
505 int ldlm_del_waiting_lock(struct ldlm_lock *lock)
506 {
507         int ret;
508
509         if (lock->l_export == NULL) {
510                 /* We don't have a "waiting locks list" on clients. */
511                 CDEBUG(D_DLMTRACE, "Client lock %p : no-op\n", lock);
512                 return 0;
513         }
514
515         spin_lock_bh(&waiting_locks_spinlock);
516         ret = __ldlm_del_waiting_lock(lock);
517         ldlm_clear_waited(lock);
518         spin_unlock_bh(&waiting_locks_spinlock);
519
520         /* remove the lock out of export blocking list */
521         spin_lock_bh(&lock->l_export->exp_bl_list_lock);
522         list_del_init(&lock->l_exp_list);
523         spin_unlock_bh(&lock->l_export->exp_bl_list_lock);
524
525         if (ret) {
526                 /* release lock ref if it has indeed been removed
527                  * from a list */
528                 LDLM_LOCK_RELEASE(lock);
529         }
530
531         LDLM_DEBUG(lock, "%s", ret == 0 ? "wasn't waiting" : "removed");
532         return ret;
533 }
534
535 /**
536  * Prolong the contended lock waiting time.
537  *
538  * Called with namespace lock held.
539  */
540 int ldlm_refresh_waiting_lock(struct ldlm_lock *lock, time64_t timeout)
541 {
542         if (lock->l_export == NULL) {
543                 /* We don't have a "waiting locks list" on clients. */
544                 LDLM_DEBUG(lock, "client lock: no-op");
545                 return 0;
546         }
547
548         if (exp_connect_flags(lock->l_export) & OBD_CONNECT_MDS_MDS) {
549                 /* We don't have a "waiting locks list" on OSP. */
550                 LDLM_DEBUG(lock, "MDS-MDS lock: no-op");
551                 return 0;
552         }
553
554         spin_lock_bh(&waiting_locks_spinlock);
555
556         if (list_empty(&lock->l_pending_chain)) {
557                 spin_unlock_bh(&waiting_locks_spinlock);
558                 LDLM_DEBUG(lock, "wasn't waiting");
559                 return 0;
560         }
561
562         /* we remove/add the lock to the waiting list, so no needs to
563          * release/take a lock reference */
564         __ldlm_del_waiting_lock(lock);
565         __ldlm_add_waiting_lock(lock, timeout);
566         spin_unlock_bh(&waiting_locks_spinlock);
567
568         LDLM_DEBUG(lock, "refreshed");
569         return 1;
570 }
571 EXPORT_SYMBOL(ldlm_refresh_waiting_lock);
572
573 #else /* HAVE_SERVER_SUPPORT */
574
575 int ldlm_del_waiting_lock(struct ldlm_lock *lock)
576 {
577         RETURN(0);
578 }
579
580 int ldlm_refresh_waiting_lock(struct ldlm_lock *lock, time64_t timeout)
581 {
582         RETURN(0);
583 }
584
585 #endif /* !HAVE_SERVER_SUPPORT */
586
587 #ifdef HAVE_SERVER_SUPPORT
588
589 /**
590  * Calculate the per-export Blocking timeout (covering BL AST, data flush,
591  * lock cancel, and their replies). Used for lock callback timeout and AST
592  * re-send period.
593  *
594  * \param[in] lock        lock which is getting the blocking callback
595  *
596  * \retval            timeout in seconds to wait for the client reply
597  */
598 time64_t ldlm_bl_timeout(struct ldlm_lock *lock)
599 {
600         time64_t timeout;
601
602         if (AT_OFF)
603                 return obd_timeout / 2;
604
605         /* Since these are non-updating timeouts, we should be conservative.
606          * Take more than usually, 150%
607          * It would be nice to have some kind of "early reply" mechanism for
608          * lock callbacks too... */
609         timeout = at_get(&lock->l_export->exp_bl_lock_at);
610         return max(timeout + (timeout >> 1), (time64_t)ldlm_enqueue_min);
611 }
612 EXPORT_SYMBOL(ldlm_bl_timeout);
613
614 /**
615  * Perform lock cleanup if AST sending failed.
616  */
617 static void ldlm_failed_ast(struct ldlm_lock *lock, int rc,
618                             const char *ast_type)
619 {
620         LCONSOLE_ERROR_MSG(0x138, "%s: A client on nid %s was evicted due "
621                            "to a lock %s callback time out: rc %d\n",
622                            lock->l_export->exp_obd->obd_name,
623                            obd_export_nid2str(lock->l_export), ast_type, rc);
624
625         if (obd_dump_on_timeout)
626                 libcfs_debug_dumplog();
627         spin_lock_bh(&waiting_locks_spinlock);
628         if (__ldlm_del_waiting_lock(lock) == 0)
629                 /* the lock was not in any list, grab an extra ref before adding
630                  * the lock to the expired list */
631                 LDLM_LOCK_GET(lock);
632         lock->l_callback_timeout = 0; /* differentiate it from expired locks */
633         list_add(&lock->l_pending_chain, &expired_lock_list);
634         wake_up(&expired_lock_wait_queue);
635         spin_unlock_bh(&waiting_locks_spinlock);
636 }
637
638 /**
639  * Perform lock cleanup if AST reply came with error.
640  */
641 static int ldlm_handle_ast_error(const struct lu_env *env,
642                                  struct ldlm_lock *lock,
643                                  struct ptlrpc_request *req, int rc,
644                                  const char *ast_type)
645 {
646         struct lnet_process_id peer = req->rq_import->imp_connection->c_peer;
647
648         if (!req->rq_replied || (rc && rc != -EINVAL)) {
649                 if (ldlm_is_cancel(lock)) {
650                         LDLM_DEBUG(lock,
651                                    "%s AST (req@%p x%llu) timeout from nid %s, but cancel was received (AST reply lost?)",
652                                    ast_type, req, req->rq_xid,
653                                    libcfs_nid2str(peer.nid));
654                         ldlm_lock_cancel(lock);
655                         rc = -ERESTART;
656                 } else if (rc == -ENODEV || rc == -ESHUTDOWN ||
657                            (rc == -EIO &&
658                             req->rq_import->imp_state == LUSTRE_IMP_CLOSED)) {
659                         /* Upon umount process the AST fails because cannot be
660                          * sent. This shouldn't lead to the client eviction.
661                          * -ENODEV error is returned by ptl_send_rpc() for
662                          *  new request in such import.
663                          * -SHUTDOWN is returned by ptlrpc_import_delay_req()
664                          *  if imp_invalid is set or obd_no_recov.
665                          * Meanwhile there is also check for LUSTRE_IMP_CLOSED
666                          * in ptlrpc_import_delay_req() as well with -EIO code.
667                          * In all such cases errors are ignored.
668                          */
669                         LDLM_DEBUG(lock, "%s AST can't be sent due to a server"
670                                          " %s failure or umount process: rc = %d\n",
671                                          ast_type,
672                                          req->rq_import->imp_obd->obd_name, rc);
673                 } else {
674                         LDLM_ERROR(lock,
675                                    "client (nid %s) %s %s AST (req@%p x%llu status %d rc %d), evict it",
676                                    libcfs_nid2str(peer.nid),
677                                    req->rq_replied ? "returned error from" :
678                                    "failed to reply to",
679                                    ast_type, req, req->rq_xid,
680                                    (req->rq_repmsg != NULL) ?
681                                    lustre_msg_get_status(req->rq_repmsg) : 0,
682                                    rc);
683                         ldlm_failed_ast(lock, rc, ast_type);
684                 }
685                 return rc;
686         }
687
688         if (rc == -EINVAL) {
689                 struct ldlm_resource *res = lock->l_resource;
690
691                 LDLM_DEBUG(lock,
692                            "client (nid %s) returned %d from %s AST (req@%p x%llu) - normal race",
693                            libcfs_nid2str(peer.nid),
694                            req->rq_repmsg ?
695                            lustre_msg_get_status(req->rq_repmsg) : -1,
696                            ast_type, req, req->rq_xid);
697                 if (res) {
698                         /* update lvbo to return proper attributes.
699                          * see bug 23174 */
700                         ldlm_resource_getref(res);
701                         ldlm_lvbo_update(env, res, lock, NULL, 1);
702                         ldlm_resource_putref(res);
703                 }
704                 ldlm_lock_cancel(lock);
705                 rc = -ERESTART;
706         }
707
708         return rc;
709 }
710
711 static int ldlm_cb_interpret(const struct lu_env *env,
712                              struct ptlrpc_request *req, void *args, int rc)
713 {
714         struct ldlm_cb_async_args *ca = args;
715         struct ldlm_lock *lock = ca->ca_lock;
716         struct ldlm_cb_set_arg *arg  = ca->ca_set_arg;
717
718         ENTRY;
719
720         LASSERT(lock != NULL);
721
722         switch (arg->type) {
723         case LDLM_GL_CALLBACK:
724                 /* Update the LVB from disk if the AST failed
725                  * (this is a legal race)
726                  *
727                  * - Glimpse callback of local lock just returns
728                  *   -ELDLM_NO_LOCK_DATA.
729                  * - Glimpse callback of remote lock might return
730                  *   -ELDLM_NO_LOCK_DATA when inode is cleared. LU-274
731                  */
732                 if (unlikely(arg->gl_interpret_reply)) {
733                         rc = arg->gl_interpret_reply(env, req, args, rc);
734                 } else if (rc == -ELDLM_NO_LOCK_DATA) {
735                         LDLM_DEBUG(lock, "lost race - client has a lock but no "
736                                    "inode");
737                         ldlm_lvbo_update(env, lock->l_resource, lock, NULL, 1);
738                 } else if (rc != 0) {
739                         rc = ldlm_handle_ast_error(env, lock, req,
740                                                    rc, "glimpse");
741                 } else {
742                         rc = ldlm_lvbo_update(env, lock->l_resource,
743                                               lock, req, 1);
744                 }
745                 break;
746         case LDLM_BL_CALLBACK:
747                 if (rc != 0)
748                         rc = ldlm_handle_ast_error(env, lock, req,
749                                                    rc, "blocking");
750                 break;
751         case LDLM_CP_CALLBACK:
752                 if (rc != 0)
753                         rc = ldlm_handle_ast_error(env, lock, req,
754                                                    rc, "completion");
755                 break;
756         default:
757                 LDLM_ERROR(lock, "invalid opcode for lock callback %d",
758                            arg->type);
759                 LBUG();
760         }
761
762         /* release extra reference taken in ldlm_ast_fini() */
763         LDLM_LOCK_RELEASE(lock);
764
765         if (rc == -ERESTART)
766                 atomic_inc(&arg->restart);
767
768         RETURN(0);
769 }
770
771 static void ldlm_update_resend(struct ptlrpc_request *req, void *data)
772 {
773         struct ldlm_cb_async_args *ca = data;
774         struct ldlm_lock *lock = ca->ca_lock;
775
776         ldlm_refresh_waiting_lock(lock, ldlm_bl_timeout(lock));
777 }
778
779 static inline int ldlm_ast_fini(struct ptlrpc_request *req,
780                                 struct ldlm_cb_set_arg *arg,
781                                 struct ldlm_lock *lock,
782                                 int instant_cancel)
783 {
784         int rc = 0;
785         ENTRY;
786
787         if (unlikely(instant_cancel)) {
788                 rc = ptl_send_rpc(req, 1);
789                 ptlrpc_req_finished(req);
790                 if (rc == 0)
791                         atomic_inc(&arg->restart);
792         } else {
793                 LDLM_LOCK_GET(lock);
794                 ptlrpc_set_add_req(arg->set, req);
795         }
796
797         RETURN(rc);
798 }
799
800 /**
801  * Check if there are requests in the export request list which prevent
802  * the lock canceling and make these requests high priority ones.
803  */
804 static void ldlm_lock_reorder_req(struct ldlm_lock *lock)
805 {
806         struct ptlrpc_request *req;
807         ENTRY;
808
809         if (lock->l_export == NULL) {
810                 LDLM_DEBUG(lock, "client lock: no-op");
811                 RETURN_EXIT;
812         }
813
814         spin_lock(&lock->l_export->exp_rpc_lock);
815         list_for_each_entry(req, &lock->l_export->exp_hp_rpcs,
816                             rq_exp_list) {
817                 /* Do not process requests that were not yet added to there
818                  * incoming queue or were already removed from there for
819                  * processing. We evaluate ptlrpc_nrs_req_can_move() without
820                  * holding svcpt->scp_req_lock, and then redo the check with
821                  * the lock held once we need to obtain a reliable result.
822                  */
823                 if (ptlrpc_nrs_req_can_move(req) &&
824                     req->rq_ops->hpreq_lock_match &&
825                     req->rq_ops->hpreq_lock_match(req, lock))
826                         ptlrpc_nrs_req_hp_move(req);
827         }
828         spin_unlock(&lock->l_export->exp_rpc_lock);
829         EXIT;
830 }
831
832 /**
833  * ->l_blocking_ast() method for server-side locks. This is invoked when newly
834  * enqueued server lock conflicts with given one.
835  *
836  * Sends blocking AST RPC to the client owning that lock; arms timeout timer
837  * to wait for client response.
838  */
839 int ldlm_server_blocking_ast(struct ldlm_lock *lock,
840                              struct ldlm_lock_desc *desc,
841                              void *data, int flag)
842 {
843         struct ldlm_cb_async_args *ca;
844         struct ldlm_cb_set_arg *arg = data;
845         struct ldlm_request    *body;
846         struct ptlrpc_request  *req;
847         int                     instant_cancel = 0;
848         int                     rc = 0;
849         ENTRY;
850
851         if (flag == LDLM_CB_CANCELING)
852                 /* Don't need to do anything here. */
853                 RETURN(0);
854
855         if (OBD_FAIL_PRECHECK(OBD_FAIL_LDLM_SRV_BL_AST)) {
856                 LDLM_DEBUG(lock, "dropping BL AST");
857                 RETURN(0);
858         }
859
860         LASSERT(lock);
861         LASSERT(data != NULL);
862         if (lock->l_export->exp_obd->obd_recovering != 0)
863                 LDLM_ERROR(lock, "BUG 6063: lock collide during recovery");
864
865         ldlm_lock_reorder_req(lock);
866
867         req = ptlrpc_request_alloc_pack(lock->l_export->exp_imp_reverse,
868                                         &RQF_LDLM_BL_CALLBACK,
869                                         LUSTRE_DLM_VERSION, LDLM_BL_CALLBACK);
870         if (req == NULL)
871                 RETURN(-ENOMEM);
872
873         CLASSERT(sizeof(*ca) <= sizeof(req->rq_async_args));
874         ca = ptlrpc_req_async_args(req);
875         ca->ca_set_arg = arg;
876         ca->ca_lock = lock;
877
878         req->rq_interpret_reply = ldlm_cb_interpret;
879
880         lock_res_and_lock(lock);
881         if (ldlm_is_destroyed(lock)) {
882                 /* What's the point? */
883                 unlock_res_and_lock(lock);
884                 ptlrpc_req_finished(req);
885                 RETURN(0);
886         }
887
888         if (!ldlm_is_granted(lock)) {
889                 /* this blocking AST will be communicated as part of the
890                  * completion AST instead */
891                 ldlm_add_blocked_lock(lock);
892                 ldlm_set_waited(lock);
893                 unlock_res_and_lock(lock);
894
895                 ptlrpc_req_finished(req);
896                 LDLM_DEBUG(lock, "lock not granted, not sending blocking AST");
897                 RETURN(0);
898         }
899
900         if (ldlm_is_cancel_on_block(lock))
901                 instant_cancel = 1;
902
903         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
904         body->lock_handle[0] = lock->l_remote_handle;
905         body->lock_desc = *desc;
906         body->lock_flags |= ldlm_flags_to_wire(lock->l_flags & LDLM_FL_AST_MASK);
907
908         LDLM_DEBUG(lock, "server preparing blocking AST");
909
910         ptlrpc_request_set_replen(req);
911         ldlm_set_cbpending(lock);
912         if (instant_cancel) {
913                 unlock_res_and_lock(lock);
914                 ldlm_lock_cancel(lock);
915
916                 req->rq_no_resend = 1;
917         } else {
918                 LASSERT(ldlm_is_granted(lock));
919                 ldlm_add_waiting_lock(lock, ldlm_bl_timeout(lock));
920                 unlock_res_and_lock(lock);
921
922                 /* Do not resend after lock callback timeout */
923                 req->rq_delay_limit = ldlm_bl_timeout(lock);
924                 req->rq_resend_cb = ldlm_update_resend;
925         }
926
927         req->rq_send_state = LUSTRE_IMP_FULL;
928         /* ptlrpc_request_alloc_pack already set timeout */
929         if (AT_OFF)
930                 req->rq_timeout = ldlm_get_rq_timeout();
931
932         if (lock->l_export && lock->l_export->exp_nid_stats &&
933             lock->l_export->exp_nid_stats->nid_ldlm_stats)
934                 lprocfs_counter_incr(lock->l_export->exp_nid_stats->nid_ldlm_stats,
935                                      LDLM_BL_CALLBACK - LDLM_FIRST_OPC);
936
937         rc = ldlm_ast_fini(req, arg, lock, instant_cancel);
938
939         RETURN(rc);
940 }
941
942 /**
943  * ->l_completion_ast callback for a remote lock in server namespace.
944  *
945  *  Sends AST to the client notifying it of lock granting.  If initial
946  *  lock response was not sent yet, instead of sending another RPC, just
947  *  mark the lock as granted and client will understand
948  */
949 int ldlm_server_completion_ast(struct ldlm_lock *lock, __u64 flags, void *data)
950 {
951         struct ldlm_cb_set_arg *arg = data;
952         struct ldlm_request    *body;
953         struct ptlrpc_request  *req;
954         struct ldlm_cb_async_args *ca;
955         int                     instant_cancel = 0;
956         int                     rc = 0;
957         int                     lvb_len;
958         ENTRY;
959
960         LASSERT(lock != NULL);
961         LASSERT(data != NULL);
962
963         if (OBD_FAIL_PRECHECK(OBD_FAIL_LDLM_SRV_CP_AST)) {
964                 LDLM_DEBUG(lock, "dropping CP AST");
965                 RETURN(0);
966         }
967
968         req = ptlrpc_request_alloc(lock->l_export->exp_imp_reverse,
969                                     &RQF_LDLM_CP_CALLBACK);
970         if (req == NULL)
971                 RETURN(-ENOMEM);
972
973         /* server namespace, doesn't need lock */
974         lvb_len = ldlm_lvbo_size(lock);
975         /* LU-3124 & LU-2187: to not return layout in completion AST because
976          * it may deadlock for LU-2187, or client may not have enough space
977          * for large layout. The layout will be returned to client with an
978          * extra RPC to fetch xattr.lov */
979         if (ldlm_has_layout(lock))
980                 lvb_len = 0;
981
982         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_CLIENT, lvb_len);
983         rc = ptlrpc_request_pack(req, LUSTRE_DLM_VERSION, LDLM_CP_CALLBACK);
984         if (rc) {
985                 ptlrpc_request_free(req);
986                 RETURN(rc);
987         }
988
989         CLASSERT(sizeof(*ca) <= sizeof(req->rq_async_args));
990         ca = ptlrpc_req_async_args(req);
991         ca->ca_set_arg = arg;
992         ca->ca_lock = lock;
993
994         req->rq_interpret_reply = ldlm_cb_interpret;
995         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
996
997         body->lock_handle[0] = lock->l_remote_handle;
998         body->lock_flags = ldlm_flags_to_wire(flags);
999         ldlm_lock2desc(lock, &body->lock_desc);
1000         if (lvb_len > 0) {
1001                 void *lvb = req_capsule_client_get(&req->rq_pill, &RMF_DLM_LVB);
1002                 const struct lu_env *env = NULL;
1003
1004                 if (req->rq_svc_thread)
1005                         env = req->rq_svc_thread->t_env;
1006
1007                 lvb_len = ldlm_lvbo_fill(env, lock, lvb, &lvb_len);
1008                 if (lvb_len < 0) {
1009                         /* We still need to send the RPC to wake up the blocked
1010                          * enqueue thread on the client.
1011                          *
1012                          * Consider old client, there is no better way to notify
1013                          * the failure, just zero-sized the LVB, then the client
1014                          * will fail out as "-EPROTO". */
1015                         req_capsule_shrink(&req->rq_pill, &RMF_DLM_LVB, 0,
1016                                            RCL_CLIENT);
1017                         instant_cancel = 1;
1018                 } else {
1019                         req_capsule_shrink(&req->rq_pill, &RMF_DLM_LVB, lvb_len,
1020                                            RCL_CLIENT);
1021                 }
1022         }
1023
1024         LDLM_DEBUG(lock, "server preparing completion AST");
1025
1026         ptlrpc_request_set_replen(req);
1027
1028         req->rq_send_state = LUSTRE_IMP_FULL;
1029         /* ptlrpc_request_pack already set timeout */
1030         if (AT_OFF)
1031                 req->rq_timeout = ldlm_get_rq_timeout();
1032
1033         /* We only send real blocking ASTs after the lock is granted */
1034         lock_res_and_lock(lock);
1035         if (ldlm_is_ast_sent(lock)) {
1036                 body->lock_flags |= ldlm_flags_to_wire(LDLM_FL_AST_SENT);
1037                 /* Copy AST flags like LDLM_FL_DISCARD_DATA. */
1038                 body->lock_flags |= ldlm_flags_to_wire(lock->l_flags &
1039                                                        LDLM_FL_AST_MASK);
1040
1041                 /* We might get here prior to ldlm_handle_enqueue setting
1042                  * LDLM_FL_CANCEL_ON_BLOCK flag. Then we will put this lock
1043                  * into waiting list, but this is safe and similar code in
1044                  * ldlm_handle_enqueue will call ldlm_lock_cancel() still,
1045                  * that would not only cancel the lock, but will also remove
1046                  * it from waiting list */
1047                 if (ldlm_is_cancel_on_block(lock)) {
1048                         unlock_res_and_lock(lock);
1049                         ldlm_lock_cancel(lock);
1050
1051                         instant_cancel = 1;
1052                         req->rq_no_resend = 1;
1053
1054                         lock_res_and_lock(lock);
1055                 } else {
1056                         /* start the lock-timeout clock */
1057                         ldlm_add_waiting_lock(lock, ldlm_bl_timeout(lock));
1058                         /* Do not resend after lock callback timeout */
1059                         req->rq_delay_limit = ldlm_bl_timeout(lock);
1060                         req->rq_resend_cb = ldlm_update_resend;
1061                 }
1062         }
1063         unlock_res_and_lock(lock);
1064
1065         if (lock->l_export && lock->l_export->exp_nid_stats &&
1066             lock->l_export->exp_nid_stats->nid_ldlm_stats)
1067                 lprocfs_counter_incr(lock->l_export->exp_nid_stats->nid_ldlm_stats,
1068                                      LDLM_CP_CALLBACK - LDLM_FIRST_OPC);
1069
1070         rc = ldlm_ast_fini(req, arg, lock, instant_cancel);
1071
1072         RETURN(lvb_len < 0 ? lvb_len : rc);
1073 }
1074
1075 /**
1076  * Server side ->l_glimpse_ast handler for client locks.
1077  *
1078  * Sends glimpse AST to the client and waits for reply. Then updates
1079  * lvbo with the result.
1080  */
1081 int ldlm_server_glimpse_ast(struct ldlm_lock *lock, void *data)
1082 {
1083         struct ldlm_cb_set_arg          *arg = data;
1084         struct ldlm_request             *body;
1085         struct ptlrpc_request           *req;
1086         struct ldlm_cb_async_args       *ca;
1087         int                              rc;
1088         struct req_format               *req_fmt;
1089         ENTRY;
1090
1091         LASSERT(lock != NULL);
1092
1093         if (arg->gl_desc != NULL)
1094                 /* There is a glimpse descriptor to pack */
1095                 req_fmt = &RQF_LDLM_GL_CALLBACK_DESC;
1096         else
1097                 req_fmt = &RQF_LDLM_GL_CALLBACK;
1098
1099         req = ptlrpc_request_alloc_pack(lock->l_export->exp_imp_reverse,
1100                                         req_fmt, LUSTRE_DLM_VERSION,
1101                                         LDLM_GL_CALLBACK);
1102
1103         if (req == NULL)
1104                 RETURN(-ENOMEM);
1105
1106         if (arg->gl_desc != NULL) {
1107                 /* copy the GL descriptor */
1108                 union ldlm_gl_desc      *desc;
1109                 desc = req_capsule_client_get(&req->rq_pill, &RMF_DLM_GL_DESC);
1110                 *desc = *arg->gl_desc;
1111         }
1112
1113         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1114         body->lock_handle[0] = lock->l_remote_handle;
1115         ldlm_lock2desc(lock, &body->lock_desc);
1116
1117         CLASSERT(sizeof(*ca) <= sizeof(req->rq_async_args));
1118         ca = ptlrpc_req_async_args(req);
1119         ca->ca_set_arg = arg;
1120         ca->ca_lock = lock;
1121
1122         /* server namespace, doesn't need lock */
1123         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
1124                              ldlm_lvbo_size(lock));
1125         ptlrpc_request_set_replen(req);
1126
1127         req->rq_send_state = LUSTRE_IMP_FULL;
1128         /* ptlrpc_request_alloc_pack already set timeout */
1129         if (AT_OFF)
1130                 req->rq_timeout = ldlm_get_rq_timeout();
1131
1132         req->rq_interpret_reply = ldlm_cb_interpret;
1133
1134         if (lock->l_export && lock->l_export->exp_nid_stats) {
1135                 struct nid_stat *nid_stats = lock->l_export->exp_nid_stats;
1136
1137                 lprocfs_counter_incr(nid_stats->nid_ldlm_stats,
1138                                      LDLM_GL_CALLBACK - LDLM_FIRST_OPC);
1139         }
1140
1141         rc = ldlm_ast_fini(req, arg, lock, 0);
1142
1143         RETURN(rc);
1144 }
1145 EXPORT_SYMBOL(ldlm_server_glimpse_ast);
1146
1147 int ldlm_glimpse_locks(struct ldlm_resource *res,
1148                        struct list_head *gl_work_list)
1149 {
1150         int     rc;
1151         ENTRY;
1152
1153         rc = ldlm_run_ast_work(ldlm_res_to_ns(res), gl_work_list,
1154                                LDLM_WORK_GL_AST);
1155         if (rc == -ERESTART)
1156                 ldlm_reprocess_all(res);
1157
1158         RETURN(rc);
1159 }
1160 EXPORT_SYMBOL(ldlm_glimpse_locks);
1161
1162 /* return LDLM lock associated with a lock callback request */
1163 struct ldlm_lock *ldlm_request_lock(struct ptlrpc_request *req)
1164 {
1165         struct ldlm_cb_async_args       *ca;
1166         struct ldlm_lock                *lock;
1167         ENTRY;
1168
1169         ca = ptlrpc_req_async_args(req);
1170         lock = ca->ca_lock;
1171         if (lock == NULL)
1172                 RETURN(ERR_PTR(-EFAULT));
1173
1174         RETURN(lock);
1175 }
1176 EXPORT_SYMBOL(ldlm_request_lock);
1177
1178 /**
1179  * Main server-side entry point into LDLM for enqueue. This is called by ptlrpc
1180  * service threads to carry out client lock enqueueing requests.
1181  */
1182 int ldlm_handle_enqueue0(struct ldlm_namespace *ns,
1183                          struct ptlrpc_request *req,
1184                          const struct ldlm_request *dlm_req,
1185                          const struct ldlm_callback_suite *cbs)
1186 {
1187         struct ldlm_reply *dlm_rep;
1188         __u64 flags;
1189         enum ldlm_error err = ELDLM_OK;
1190         struct ldlm_lock *lock = NULL;
1191         void *cookie = NULL;
1192         int rc = 0;
1193         struct ldlm_resource *res = NULL;
1194         const struct lu_env *env = req->rq_svc_thread->t_env;
1195         ENTRY;
1196
1197         LDLM_DEBUG_NOLOCK("server-side enqueue handler START");
1198
1199         ldlm_request_cancel(req, dlm_req, LDLM_ENQUEUE_CANCEL_OFF, LATF_SKIP);
1200         flags = ldlm_flags_from_wire(dlm_req->lock_flags);
1201
1202         LASSERT(req->rq_export);
1203
1204         /* for intent enqueue the stat will be updated inside intent policy */
1205         if (ptlrpc_req2svc(req)->srv_stats != NULL &&
1206             !(dlm_req->lock_flags & LDLM_FL_HAS_INTENT))
1207                 ldlm_svc_get_eopc(dlm_req, ptlrpc_req2svc(req)->srv_stats);
1208
1209         if (req->rq_export && req->rq_export->exp_nid_stats &&
1210             req->rq_export->exp_nid_stats->nid_ldlm_stats)
1211                 lprocfs_counter_incr(req->rq_export->exp_nid_stats->nid_ldlm_stats,
1212                                      LDLM_ENQUEUE - LDLM_FIRST_OPC);
1213
1214         if (unlikely(dlm_req->lock_desc.l_resource.lr_type < LDLM_MIN_TYPE ||
1215                      dlm_req->lock_desc.l_resource.lr_type >= LDLM_MAX_TYPE)) {
1216                 DEBUG_REQ(D_ERROR, req, "invalid lock request type %d",
1217                           dlm_req->lock_desc.l_resource.lr_type);
1218                 GOTO(out, rc = -EFAULT);
1219         }
1220
1221         if (unlikely(dlm_req->lock_desc.l_req_mode <= LCK_MINMODE ||
1222                      dlm_req->lock_desc.l_req_mode >= LCK_MAXMODE ||
1223                      dlm_req->lock_desc.l_req_mode &
1224                      (dlm_req->lock_desc.l_req_mode-1))) {
1225                 DEBUG_REQ(D_ERROR, req, "invalid lock request mode %d",
1226                           dlm_req->lock_desc.l_req_mode);
1227                 GOTO(out, rc = -EFAULT);
1228         }
1229
1230         if (unlikely((flags & LDLM_FL_REPLAY) ||
1231                      (lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT))) {
1232                 /* Find an existing lock in the per-export lock hash */
1233                 /* In the function below, .hs_keycmp resolves to
1234                  * ldlm_export_lock_keycmp() */
1235                 /* coverity[overrun-buffer-val] */
1236                 lock = cfs_hash_lookup(req->rq_export->exp_lock_hash,
1237                                        (void *)&dlm_req->lock_handle[0]);
1238                 if (lock != NULL) {
1239                         DEBUG_REQ(D_DLMTRACE, req, "found existing lock cookie %#llx",
1240                                   lock->l_handle.h_cookie);
1241                         flags |= LDLM_FL_RESENT;
1242                         GOTO(existing_lock, rc = 0);
1243                 }
1244         } else {
1245                 if (ldlm_reclaim_full()) {
1246                         DEBUG_REQ(D_DLMTRACE, req, "Too many granted locks, "
1247                                   "reject current enqueue request and let the "
1248                                   "client retry later.\n");
1249                         GOTO(out, rc = -EINPROGRESS);
1250                 }
1251         }
1252
1253         /* The lock's callback data might be set in the policy function */
1254         lock = ldlm_lock_create(ns, &dlm_req->lock_desc.l_resource.lr_name,
1255                                 dlm_req->lock_desc.l_resource.lr_type,
1256                                 dlm_req->lock_desc.l_req_mode,
1257                                 cbs, NULL, 0, LVB_T_NONE);
1258         if (IS_ERR(lock)) {
1259                 rc = PTR_ERR(lock);
1260                 lock = NULL;
1261                 GOTO(out, rc);
1262         }
1263
1264         lock->l_remote_handle = dlm_req->lock_handle[0];
1265         LDLM_DEBUG(lock, "server-side enqueue handler, new lock created");
1266
1267         /* Initialize resource lvb but not for a lock being replayed since
1268          * Client already got lvb sent in this case.
1269          * This must occur early since some policy methods assume resource
1270          * lvb is available (lr_lvb_data != NULL).
1271          */
1272         res = lock->l_resource;
1273         if (!(flags & LDLM_FL_REPLAY)) {
1274                 /* non-replayed lock, delayed lvb init may need to be done */
1275                 rc = ldlm_lvbo_init(env, res);
1276                 if (rc < 0) {
1277                         LDLM_DEBUG(lock, "delayed lvb init failed (rc %d)", rc);
1278                         GOTO(out, rc);
1279                 }
1280         }
1281
1282         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_ENQUEUE_BLOCKED, obd_timeout * 2);
1283         /* Don't enqueue a lock onto the export if it is been disonnected
1284          * due to eviction (bug 3822) or server umount (bug 24324).
1285          * Cancel it now instead. */
1286         if (req->rq_export->exp_disconnected) {
1287                 LDLM_ERROR(lock, "lock on disconnected export %p",
1288                            req->rq_export);
1289                 GOTO(out, rc = -ENOTCONN);
1290         }
1291
1292         lock->l_export = class_export_lock_get(req->rq_export, lock);
1293         if (lock->l_export->exp_lock_hash)
1294                 cfs_hash_add(lock->l_export->exp_lock_hash,
1295                              &lock->l_remote_handle,
1296                              &lock->l_exp_hash);
1297
1298         /* Inherit the enqueue flags before the operation, because we do not
1299          * keep the res lock on return and next operations (BL AST) may proceed
1300          * without them. */
1301         lock->l_flags |= ldlm_flags_from_wire(dlm_req->lock_flags &
1302                                               LDLM_FL_INHERIT_MASK);
1303
1304         ldlm_convert_policy_to_local(req->rq_export,
1305                                      dlm_req->lock_desc.l_resource.lr_type,
1306                                      &dlm_req->lock_desc.l_policy_data,
1307                                      &lock->l_policy_data);
1308         if (dlm_req->lock_desc.l_resource.lr_type == LDLM_EXTENT)
1309                 lock->l_req_extent = lock->l_policy_data.l_extent;
1310
1311 existing_lock:
1312         if (flags & LDLM_FL_HAS_INTENT) {
1313                 /* In this case, the reply buffer is allocated deep in
1314                  * local_lock_enqueue by the policy function. */
1315                 cookie = req;
1316         } else {
1317                 /* based on the assumption that lvb size never changes during
1318                  * resource life time otherwise it need resource->lr_lock's
1319                  * protection */
1320                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB,
1321                                      RCL_SERVER, ldlm_lvbo_size(lock));
1322
1323                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR))
1324                         GOTO(out, rc = -ENOMEM);
1325
1326                 rc = req_capsule_server_pack(&req->rq_pill);
1327                 if (rc)
1328                         GOTO(out, rc);
1329         }
1330
1331         err = ldlm_lock_enqueue(env, ns, &lock, cookie, &flags);
1332         if (err) {
1333                 if ((int)err < 0)
1334                         rc = (int)err;
1335                 GOTO(out, err);
1336         }
1337
1338         dlm_rep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1339
1340         ldlm_lock2desc(lock, &dlm_rep->lock_desc);
1341         ldlm_lock2handle(lock, &dlm_rep->lock_handle);
1342
1343         if (lock && lock->l_resource->lr_type == LDLM_EXTENT)
1344                 OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_BL_EVICT, 6);
1345
1346         /* We never send a blocking AST until the lock is granted, but
1347          * we can tell it right now */
1348         lock_res_and_lock(lock);
1349
1350         /* Now take into account flags to be inherited from original lock
1351            request both in reply to client and in our own lock flags. */
1352         dlm_rep->lock_flags = ldlm_flags_to_wire(flags);
1353         lock->l_flags |= flags & LDLM_FL_INHERIT_MASK;
1354
1355         /* Don't move a pending lock onto the export if it has already been
1356          * disconnected due to eviction (bug 5683) or server umount (bug 24324).
1357          * Cancel it now instead. */
1358         if (unlikely(req->rq_export->exp_disconnected ||
1359                      OBD_FAIL_CHECK(OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT))) {
1360                 LDLM_ERROR(lock, "lock on destroyed export %p", req->rq_export);
1361                 rc = -ENOTCONN;
1362         } else if (ldlm_is_ast_sent(lock)) {
1363                 /* fill lock desc for possible lock convert */
1364                 if (lock->l_blocking_lock &&
1365                     lock->l_resource->lr_type == LDLM_IBITS) {
1366                         struct ldlm_lock *bl_lock = lock->l_blocking_lock;
1367                         struct ldlm_lock_desc *rep_desc = &dlm_rep->lock_desc;
1368
1369                         LDLM_DEBUG(lock,
1370                                    "save blocking bits %llx in granted lock",
1371                                    bl_lock->l_policy_data.l_inodebits.bits);
1372                         /* If lock is blocked then save blocking ibits
1373                          * in returned lock policy for the possible lock
1374                          * convert on a client.
1375                          */
1376                         rep_desc->l_policy_data.l_inodebits.cancel_bits =
1377                                 bl_lock->l_policy_data.l_inodebits.bits;
1378                 }
1379                 dlm_rep->lock_flags |= ldlm_flags_to_wire(LDLM_FL_AST_SENT);
1380                 if (ldlm_is_granted(lock)) {
1381                         /*
1382                          * Only cancel lock if it was granted, because it would
1383                          * be destroyed immediately and would never be granted
1384                          * in the future, causing timeouts on client.  Not
1385                          * granted lock will be cancelled immediately after
1386                          * sending completion AST.
1387                          */
1388                         if (ldlm_is_cancel_on_block(lock)) {
1389                                 unlock_res_and_lock(lock);
1390                                 ldlm_lock_cancel(lock);
1391                                 lock_res_and_lock(lock);
1392                         } else {
1393                                 ldlm_add_waiting_lock(lock,
1394                                                       ldlm_bl_timeout(lock));
1395                         }
1396                 }
1397         }
1398         unlock_res_and_lock(lock);
1399
1400         EXIT;
1401  out:
1402         req->rq_status = rc ?: err; /* return either error - bug 11190 */
1403         if (!req->rq_packed_final) {
1404                 err = lustre_pack_reply(req, 1, NULL, NULL);
1405                 if (rc == 0)
1406                         rc = err;
1407         }
1408
1409         /* The LOCK_CHANGED code in ldlm_lock_enqueue depends on this
1410          * ldlm_reprocess_all.  If this moves, revisit that code. -phil */
1411         if (lock != NULL) {
1412                 LDLM_DEBUG(lock, "server-side enqueue handler, sending reply"
1413                            "(err=%d, rc=%d)", err, rc);
1414
1415                 if (rc == 0 &&
1416                     req_capsule_has_field(&req->rq_pill, &RMF_DLM_LVB,
1417                                           RCL_SERVER) &&
1418                     ldlm_lvbo_size(lock) > 0) {
1419                         void *buf;
1420                         int buflen;
1421
1422 retry:
1423                         buf = req_capsule_server_get(&req->rq_pill,
1424                                                      &RMF_DLM_LVB);
1425                         LASSERTF(buf != NULL, "req %p, lock %p\n", req, lock);
1426                         buflen = req_capsule_get_size(&req->rq_pill,
1427                                         &RMF_DLM_LVB, RCL_SERVER);
1428                         /* non-replayed lock, delayed lvb init may
1429                          * need to be occur now
1430                          */
1431                         if ((buflen > 0) && !(flags & LDLM_FL_REPLAY)) {
1432                                 int rc2;
1433
1434                                 rc2 = ldlm_lvbo_fill(env, lock, buf, &buflen);
1435                                 if (rc2 >= 0) {
1436                                         req_capsule_shrink(&req->rq_pill,
1437                                                            &RMF_DLM_LVB,
1438                                                            rc2, RCL_SERVER);
1439                                 } else if (rc2 == -ERANGE) {
1440                                         rc2 = req_capsule_server_grow(
1441                                                         &req->rq_pill,
1442                                                         &RMF_DLM_LVB, buflen);
1443                                         if (!rc2) {
1444                                                 goto retry;
1445                                         } else {
1446                                                 /* if we can't grow the buffer,
1447                                                  * it's ok to return empty lvb
1448                                                  * to client.
1449                                                  */
1450                                                 req_capsule_shrink(
1451                                                         &req->rq_pill,
1452                                                         &RMF_DLM_LVB, 0,
1453                                                         RCL_SERVER);
1454                                         }
1455                                 } else {
1456                                         rc = rc2;
1457                                 }
1458                         } else if (flags & LDLM_FL_REPLAY) {
1459                                 /* no LVB resend upon replay */
1460                                 if (buflen > 0)
1461                                         req_capsule_shrink(&req->rq_pill,
1462                                                            &RMF_DLM_LVB,
1463                                                            0, RCL_SERVER);
1464                                 else
1465                                         rc = buflen;
1466                         } else {
1467                                 rc = buflen;
1468                         }
1469                 }
1470
1471                 if (rc != 0 && !(flags & LDLM_FL_RESENT)) {
1472                         if (lock->l_export) {
1473                                 ldlm_lock_cancel(lock);
1474                         } else {
1475                                 lock_res_and_lock(lock);
1476                                 ldlm_resource_unlink_lock(lock);
1477                                 ldlm_lock_destroy_nolock(lock);
1478                                 unlock_res_and_lock(lock);
1479
1480                         }
1481                 }
1482
1483                 if (!err && !ldlm_is_cbpending(lock) &&
1484                     dlm_req->lock_desc.l_resource.lr_type != LDLM_FLOCK)
1485                         ldlm_reprocess_all(lock->l_resource);
1486
1487                 LDLM_LOCK_RELEASE(lock);
1488         }
1489
1490         LDLM_DEBUG_NOLOCK("server-side enqueue handler END (lock %p, rc %d)",
1491                           lock, rc);
1492
1493         return rc;
1494 }
1495
1496 /* Clear the blocking lock, the race is possible between ldlm_handle_convert0()
1497  * and ldlm_work_bl_ast_lock(), so this is done under lock with check for NULL.
1498  */
1499 void ldlm_clear_blocking_lock(struct ldlm_lock *lock)
1500 {
1501         if (lock->l_blocking_lock) {
1502                 LDLM_LOCK_RELEASE(lock->l_blocking_lock);
1503                 lock->l_blocking_lock = NULL;
1504         }
1505 }
1506
1507 /* A lock can be converted to new ibits or mode and should be considered
1508  * as new lock. Clear all states related to a previous blocking AST
1509  * processing so new conflicts will cause new blocking ASTs.
1510  *
1511  * This is used during lock convert below and lock downgrade to COS mode in
1512  * ldlm_lock_mode_downgrade().
1513  */
1514 void ldlm_clear_blocking_data(struct ldlm_lock *lock)
1515 {
1516         ldlm_clear_ast_sent(lock);
1517         lock->l_bl_ast_run = 0;
1518         ldlm_clear_blocking_lock(lock);
1519 }
1520
1521 /**
1522  * Main LDLM entry point for server code to process lock conversion requests.
1523  */
1524 int ldlm_handle_convert0(struct ptlrpc_request *req,
1525                          const struct ldlm_request *dlm_req)
1526 {
1527         struct obd_export *exp = req->rq_export;
1528         struct ldlm_reply *dlm_rep;
1529         struct ldlm_lock *lock;
1530         int rc;
1531
1532         ENTRY;
1533
1534         if (exp && exp->exp_nid_stats && exp->exp_nid_stats->nid_ldlm_stats)
1535                 lprocfs_counter_incr(exp->exp_nid_stats->nid_ldlm_stats,
1536                                      LDLM_CONVERT - LDLM_FIRST_OPC);
1537
1538         rc = req_capsule_server_pack(&req->rq_pill);
1539         if (rc)
1540                 RETURN(rc);
1541
1542         dlm_rep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1543         dlm_rep->lock_flags = dlm_req->lock_flags;
1544
1545         lock = ldlm_handle2lock(&dlm_req->lock_handle[0]);
1546         if (lock) {
1547                 __u64 bits;
1548                 __u64 new;
1549
1550                 bits = lock->l_policy_data.l_inodebits.bits;
1551                 new = dlm_req->lock_desc.l_policy_data.l_inodebits.bits;
1552                 LDLM_DEBUG(lock, "server-side convert handler START");
1553
1554                 if (ldlm_is_cancel(lock)) {
1555                         LDLM_ERROR(lock, "convert on canceled lock!");
1556                         rc = ELDLM_NO_LOCK_DATA;
1557                 } else if (dlm_req->lock_desc.l_req_mode !=
1558                            lock->l_granted_mode) {
1559                         LDLM_ERROR(lock, "lock mode differs!");
1560                         rc = ELDLM_NO_LOCK_DATA;
1561                 } else if (bits == new) {
1562                         /* This can be valid situation if CONVERT RPCs are
1563                          * re-ordered. Just finish silently */
1564                         LDLM_DEBUG(lock, "lock is converted already!");
1565                         rc = ELDLM_OK;
1566                 } else {
1567                         lock_res_and_lock(lock);
1568                         if (ldlm_is_waited(lock))
1569                                 ldlm_del_waiting_lock(lock);
1570
1571                         ldlm_clear_cbpending(lock);
1572                         lock->l_policy_data.l_inodebits.cancel_bits = 0;
1573                         ldlm_inodebits_drop(lock, bits & ~new);
1574
1575                         ldlm_clear_blocking_data(lock);
1576                         unlock_res_and_lock(lock);
1577
1578                         ldlm_reprocess_all(lock->l_resource);
1579                         rc = ELDLM_OK;
1580                 }
1581
1582                 if (rc == ELDLM_OK) {
1583                         dlm_rep->lock_handle = lock->l_remote_handle;
1584                         ldlm_ibits_policy_local_to_wire(&lock->l_policy_data,
1585                                         &dlm_rep->lock_desc.l_policy_data);
1586                 }
1587
1588                 LDLM_DEBUG(lock, "server-side convert handler END, rc = %d",
1589                            rc);
1590                 LDLM_LOCK_PUT(lock);
1591         } else {
1592                 rc = ELDLM_NO_LOCK_DATA;
1593                 LDLM_DEBUG_NOLOCK("server-side convert handler END, rc = %d",
1594                                   rc);
1595         }
1596
1597         req->rq_status = rc;
1598
1599         RETURN(0);
1600 }
1601
1602 /**
1603  * Cancel all the locks whose handles are packed into ldlm_request
1604  *
1605  * Called by server code expecting such combined cancel activity
1606  * requests.
1607  */
1608 int ldlm_request_cancel(struct ptlrpc_request *req,
1609                         const struct ldlm_request *dlm_req,
1610                         int first, enum lustre_at_flags flags)
1611 {
1612         const struct lu_env *env = req->rq_svc_thread->t_env;
1613         struct ldlm_resource *res, *pres = NULL;
1614         struct ldlm_lock *lock;
1615         int i, count, done = 0;
1616         ENTRY;
1617
1618         count = dlm_req->lock_count ? dlm_req->lock_count : 1;
1619         if (first >= count)
1620                 RETURN(0);
1621
1622         if (count == 1 && dlm_req->lock_handle[0].cookie == 0)
1623                 RETURN(0);
1624
1625         /* There is no lock on the server at the replay time,
1626          * skip lock cancelling to make replay tests to pass. */
1627         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1628                 RETURN(0);
1629
1630         LDLM_DEBUG_NOLOCK("server-side cancel handler START: %d locks, "
1631                           "starting at %d", count, first);
1632
1633         for (i = first; i < count; i++) {
1634                 lock = ldlm_handle2lock(&dlm_req->lock_handle[i]);
1635                 if (!lock) {
1636                         LDLM_DEBUG_NOLOCK("server-side cancel handler stale "
1637                                           "lock (cookie %llu)",
1638                                           dlm_req->lock_handle[i].cookie);
1639                         continue;
1640                 }
1641
1642                 res = lock->l_resource;
1643                 done++;
1644
1645                 /* This code is an optimization to only attempt lock
1646                  * granting on the resource (that could be CPU-expensive)
1647                  * after we are done cancelling lock in that resource. */
1648                 if (res != pres) {
1649                         if (pres != NULL) {
1650                                 ldlm_reprocess_all(pres);
1651                                 LDLM_RESOURCE_DELREF(pres);
1652                                 ldlm_resource_putref(pres);
1653                         }
1654                         if (res != NULL) {
1655                                 ldlm_resource_getref(res);
1656                                 LDLM_RESOURCE_ADDREF(res);
1657
1658                                 if (!ldlm_is_discard_data(lock))
1659                                         ldlm_lvbo_update(env, res, lock,
1660                                                          NULL, 1);
1661                         }
1662                         pres = res;
1663                 }
1664
1665                 if ((flags & LATF_STATS) && ldlm_is_ast_sent(lock) &&
1666                     lock->l_blast_sent != 0) {
1667                         time64_t delay = ktime_get_real_seconds() -
1668                                          lock->l_blast_sent;
1669                         LDLM_DEBUG(lock, "server cancels blocked lock after %llds",
1670                                    (s64)delay);
1671                         at_measured(&lock->l_export->exp_bl_lock_at, delay);
1672                 }
1673                 ldlm_lock_cancel(lock);
1674                 LDLM_LOCK_PUT(lock);
1675         }
1676         if (pres != NULL) {
1677                 ldlm_reprocess_all(pres);
1678                 LDLM_RESOURCE_DELREF(pres);
1679                 ldlm_resource_putref(pres);
1680         }
1681         LDLM_DEBUG_NOLOCK("server-side cancel handler END");
1682         RETURN(done);
1683 }
1684 EXPORT_SYMBOL(ldlm_request_cancel);
1685
1686 /**
1687  * Main LDLM entry point for server code to cancel locks.
1688  *
1689  * Typically gets called from service handler on LDLM_CANCEL opc.
1690  */
1691 int ldlm_handle_cancel(struct ptlrpc_request *req)
1692 {
1693         struct ldlm_request *dlm_req;
1694         int rc;
1695         ENTRY;
1696
1697         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1698         if (dlm_req == NULL) {
1699                 CDEBUG(D_INFO, "bad request buffer for cancel\n");
1700                 RETURN(-EFAULT);
1701         }
1702
1703         if (req->rq_export && req->rq_export->exp_nid_stats &&
1704             req->rq_export->exp_nid_stats->nid_ldlm_stats)
1705                 lprocfs_counter_incr(req->rq_export->exp_nid_stats->nid_ldlm_stats,
1706                                      LDLM_CANCEL - LDLM_FIRST_OPC);
1707
1708         rc = req_capsule_server_pack(&req->rq_pill);
1709         if (rc)
1710                 RETURN(rc);
1711
1712         if (!ldlm_request_cancel(req, dlm_req, 0, LATF_STATS))
1713                 req->rq_status = LUSTRE_ESTALE;
1714
1715         RETURN(ptlrpc_reply(req));
1716 }
1717 #endif /* HAVE_SERVER_SUPPORT */
1718
1719 /**
1720  * Callback handler for receiving incoming blocking ASTs.
1721  *
1722  * This can only happen on client side.
1723  */
1724 void ldlm_handle_bl_callback(struct ldlm_namespace *ns,
1725                              struct ldlm_lock_desc *ld, struct ldlm_lock *lock)
1726 {
1727         int do_ast;
1728         ENTRY;
1729
1730         LDLM_DEBUG(lock, "client blocking AST callback handler");
1731
1732         lock_res_and_lock(lock);
1733
1734         /* set bits to cancel for this lock for possible lock convert */
1735         if (ns_is_client(ns) && (lock->l_resource->lr_type == LDLM_IBITS)) {
1736                 /* Lock description contains policy of blocking lock,
1737                  * and its cancel_bits is used to pass conflicting bits.
1738                  * NOTE: ld can be NULL or can be not NULL but zeroed if
1739                  * passed from ldlm_bl_thread_blwi(), check below used bits
1740                  * in ld to make sure it is valid description.
1741                  *
1742                  * If server may replace lock resource keeping the same cookie,
1743                  * never use cancel bits from different resource, full cancel
1744                  * is to be used.
1745                  */
1746                 if (ld && ld->l_policy_data.l_inodebits.bits &&
1747                     ldlm_res_eq(&ld->l_resource.lr_name,
1748                                 &lock->l_resource->lr_name))
1749                         lock->l_policy_data.l_inodebits.cancel_bits =
1750                                 ld->l_policy_data.l_inodebits.cancel_bits;
1751                 /* if there is no valid ld and lock is cbpending already
1752                  * then cancel_bits should be kept, otherwise it is zeroed.
1753                  */
1754                 else if (!ldlm_is_cbpending(lock))
1755                         lock->l_policy_data.l_inodebits.cancel_bits = 0;
1756         }
1757         ldlm_set_cbpending(lock);
1758
1759         do_ast = (!lock->l_readers && !lock->l_writers);
1760         unlock_res_and_lock(lock);
1761
1762         if (do_ast) {
1763                 CDEBUG(D_DLMTRACE, "Lock %p already unused, calling callback (%p)\n",
1764                        lock, lock->l_blocking_ast);
1765                 if (lock->l_blocking_ast != NULL)
1766                         lock->l_blocking_ast(lock, ld, lock->l_ast_data,
1767                                              LDLM_CB_BLOCKING);
1768         } else {
1769                 CDEBUG(D_DLMTRACE, "Lock %p is referenced, will be cancelled later\n",
1770                        lock);
1771         }
1772
1773         LDLM_DEBUG(lock, "client blocking callback handler END");
1774         LDLM_LOCK_RELEASE(lock);
1775         EXIT;
1776 }
1777
1778 /**
1779  * Callback handler for receiving incoming completion ASTs.
1780  *
1781  * This only can happen on client side.
1782  */
1783 static void ldlm_handle_cp_callback(struct ptlrpc_request *req,
1784                                     struct ldlm_namespace *ns,
1785                                     struct ldlm_request *dlm_req,
1786                                     struct ldlm_lock *lock)
1787 {
1788         struct list_head ast_list;
1789         int lvb_len;
1790         int rc = 0;
1791         ENTRY;
1792
1793         LDLM_DEBUG(lock, "client completion callback handler START");
1794
1795         INIT_LIST_HEAD(&ast_list);
1796         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_BL_CB_RACE)) {
1797                 long to = cfs_time_seconds(1);
1798
1799                 while (to > 0) {
1800                         set_current_state(TASK_INTERRUPTIBLE);
1801                         schedule_timeout(to);
1802                         if (ldlm_is_granted(lock) ||
1803                             ldlm_is_destroyed(lock))
1804                                 break;
1805                 }
1806         }
1807
1808         lvb_len = req_capsule_get_size(&req->rq_pill, &RMF_DLM_LVB, RCL_CLIENT);
1809         if (lvb_len < 0) {
1810                 LDLM_ERROR(lock, "Fail to get lvb_len, rc = %d", lvb_len);
1811                 GOTO(out, rc = lvb_len);
1812         } else if (lvb_len > 0) {
1813                 if (lock->l_lvb_len > 0) {
1814                         /* for extent lock, lvb contains ost_lvb{}. */
1815                         LASSERT(lock->l_lvb_data != NULL);
1816
1817                         if (unlikely(lock->l_lvb_len < lvb_len)) {
1818                                 LDLM_ERROR(lock, "Replied LVB is larger than "
1819                                            "expectation, expected = %d, "
1820                                            "replied = %d",
1821                                            lock->l_lvb_len, lvb_len);
1822                                 GOTO(out, rc = -EINVAL);
1823                         }
1824                 }
1825         }
1826
1827         lock_res_and_lock(lock);
1828
1829         if (!ldlm_res_eq(&dlm_req->lock_desc.l_resource.lr_name,
1830                          &lock->l_resource->lr_name)) {
1831                 ldlm_resource_unlink_lock(lock);
1832                 unlock_res_and_lock(lock);
1833                 rc = ldlm_lock_change_resource(ns, lock,
1834                                 &dlm_req->lock_desc.l_resource.lr_name);
1835                 if (rc < 0) {
1836                         LDLM_ERROR(lock, "Failed to allocate resource");
1837                         GOTO(out, rc);
1838                 }
1839                 LDLM_DEBUG(lock, "completion AST, new resource");
1840                 lock_res_and_lock(lock);
1841         }
1842
1843         if (ldlm_is_destroyed(lock) ||
1844             ldlm_is_granted(lock)) {
1845                 /* bug 11300: the lock has already been granted */
1846                 unlock_res_and_lock(lock);
1847                 LDLM_DEBUG(lock, "Double grant race happened");
1848                 GOTO(out, rc = 0);
1849         }
1850
1851         /* If we receive the completion AST before the actual enqueue returned,
1852          * then we might need to switch lock modes, resources, or extents. */
1853         if (dlm_req->lock_desc.l_granted_mode != lock->l_req_mode) {
1854                 lock->l_req_mode = dlm_req->lock_desc.l_granted_mode;
1855                 LDLM_DEBUG(lock, "completion AST, new lock mode");
1856         }
1857
1858         if (lock->l_resource->lr_type != LDLM_PLAIN) {
1859                 ldlm_convert_policy_to_local(req->rq_export,
1860                                           dlm_req->lock_desc.l_resource.lr_type,
1861                                           &dlm_req->lock_desc.l_policy_data,
1862                                           &lock->l_policy_data);
1863                 LDLM_DEBUG(lock, "completion AST, new policy data");
1864         }
1865
1866         ldlm_resource_unlink_lock(lock);
1867
1868         if (dlm_req->lock_flags & LDLM_FL_AST_SENT) {
1869                 /* BL_AST locks are not needed in LRU.
1870                  * Let ldlm_cancel_lru() be fast. */
1871                 ldlm_lock_remove_from_lru(lock);
1872                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_BL_AST;
1873                 LDLM_DEBUG(lock, "completion AST includes blocking AST");
1874         }
1875
1876         if (lock->l_lvb_len > 0) {
1877                 rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_CLIENT,
1878                                    lock->l_lvb_data, lvb_len);
1879                 if (rc < 0) {
1880                         unlock_res_and_lock(lock);
1881                         GOTO(out, rc);
1882                 }
1883         }
1884
1885         ldlm_grant_lock(lock, &ast_list);
1886         unlock_res_and_lock(lock);
1887
1888         LDLM_DEBUG(lock, "callback handler finished, about to run_ast_work");
1889
1890         /* Let Enqueue to call osc_lock_upcall() and initialize
1891          * l_ast_data */
1892         OBD_FAIL_TIMEOUT(OBD_FAIL_OSC_CP_ENQ_RACE, 2);
1893
1894         ldlm_run_ast_work(ns, &ast_list, LDLM_WORK_CP_AST);
1895
1896         LDLM_DEBUG_NOLOCK("client completion callback handler END (lock %p)",
1897                           lock);
1898         GOTO(out, rc);
1899
1900 out:
1901         if (rc < 0) {
1902                 lock_res_and_lock(lock);
1903                 ldlm_set_failed(lock);
1904                 unlock_res_and_lock(lock);
1905                 wake_up(&lock->l_waitq);
1906         }
1907         LDLM_LOCK_RELEASE(lock);
1908 }
1909
1910 /**
1911  * Callback handler for receiving incoming glimpse ASTs.
1912  *
1913  * This only can happen on client side.  After handling the glimpse AST
1914  * we also consider dropping the lock here if it is unused locally for a
1915  * long time.
1916  */
1917 static void ldlm_handle_gl_callback(struct ptlrpc_request *req,
1918                                     struct ldlm_namespace *ns,
1919                                     struct ldlm_request *dlm_req,
1920                                     struct ldlm_lock *lock)
1921 {
1922         int rc = -ENOSYS;
1923         ENTRY;
1924
1925         LDLM_DEBUG(lock, "client glimpse AST callback handler");
1926
1927         if (lock->l_glimpse_ast != NULL)
1928                 rc = lock->l_glimpse_ast(lock, req);
1929
1930         if (req->rq_repmsg != NULL) {
1931                 ptlrpc_reply(req);
1932         } else {
1933                 req->rq_status = rc;
1934                 ptlrpc_error(req);
1935         }
1936
1937         lock_res_and_lock(lock);
1938         if (lock->l_granted_mode == LCK_PW &&
1939             !lock->l_readers && !lock->l_writers &&
1940             ktime_after(ktime_get(),
1941                         ktime_add(lock->l_last_used,
1942                                   ktime_set(ns->ns_dirty_age_limit, 0)))) {
1943                 unlock_res_and_lock(lock);
1944                 if (ldlm_bl_to_thread_lock(ns, NULL, lock))
1945                         ldlm_handle_bl_callback(ns, NULL, lock);
1946
1947                 EXIT;
1948                 return;
1949         }
1950         unlock_res_and_lock(lock);
1951         LDLM_LOCK_RELEASE(lock);
1952         EXIT;
1953 }
1954
1955 static int ldlm_callback_reply(struct ptlrpc_request *req, int rc)
1956 {
1957         if (req->rq_no_reply)
1958                 return 0;
1959
1960         req->rq_status = rc;
1961         if (!req->rq_packed_final) {
1962                 rc = lustre_pack_reply(req, 1, NULL, NULL);
1963                 if (rc)
1964                         return rc;
1965         }
1966         return ptlrpc_reply(req);
1967 }
1968
1969 static int __ldlm_bl_to_thread(struct ldlm_bl_work_item *blwi,
1970                                enum ldlm_cancel_flags cancel_flags)
1971 {
1972         struct ldlm_bl_pool *blp = ldlm_state->ldlm_bl_pool;
1973         ENTRY;
1974
1975         spin_lock(&blp->blp_lock);
1976         if (blwi->blwi_lock &&
1977             ldlm_is_discard_data(blwi->blwi_lock)) {
1978                 /* add LDLM_FL_DISCARD_DATA requests to the priority list */
1979                 list_add_tail(&blwi->blwi_entry, &blp->blp_prio_list);
1980         } else {
1981                 /* other blocking callbacks are added to the regular list */
1982                 list_add_tail(&blwi->blwi_entry, &blp->blp_list);
1983         }
1984         spin_unlock(&blp->blp_lock);
1985
1986         wake_up(&blp->blp_waitq);
1987
1988         /* can not check blwi->blwi_flags as blwi could be already freed in
1989            LCF_ASYNC mode */
1990         if (!(cancel_flags & LCF_ASYNC))
1991                 wait_for_completion(&blwi->blwi_comp);
1992
1993         RETURN(0);
1994 }
1995
1996 static inline void init_blwi(struct ldlm_bl_work_item *blwi,
1997                              struct ldlm_namespace *ns,
1998                              struct ldlm_lock_desc *ld,
1999                              struct list_head *cancels, int count,
2000                              struct ldlm_lock *lock,
2001                              enum ldlm_cancel_flags cancel_flags)
2002 {
2003         init_completion(&blwi->blwi_comp);
2004         INIT_LIST_HEAD(&blwi->blwi_head);
2005
2006         if (memory_pressure_get())
2007                 blwi->blwi_mem_pressure = 1;
2008
2009         blwi->blwi_ns = ns;
2010         blwi->blwi_flags = cancel_flags;
2011         if (ld != NULL)
2012                 blwi->blwi_ld = *ld;
2013         if (count) {
2014                 list_add(&blwi->blwi_head, cancels);
2015                 list_del_init(cancels);
2016                 blwi->blwi_count = count;
2017         } else {
2018                 blwi->blwi_lock = lock;
2019         }
2020 }
2021
2022 /**
2023  * Queues a list of locks \a cancels containing \a count locks
2024  * for later processing by a blocking thread.  If \a count is zero,
2025  * then the lock referenced as \a lock is queued instead.
2026  *
2027  * The blocking thread would then call ->l_blocking_ast callback in the lock.
2028  * If list addition fails an error is returned and caller is supposed to
2029  * call ->l_blocking_ast itself.
2030  */
2031 static int ldlm_bl_to_thread(struct ldlm_namespace *ns,
2032                              struct ldlm_lock_desc *ld,
2033                              struct ldlm_lock *lock,
2034                              struct list_head *cancels, int count,
2035                              enum ldlm_cancel_flags cancel_flags)
2036 {
2037         ENTRY;
2038
2039         if (cancels && count == 0)
2040                 RETURN(0);
2041
2042         if (cancel_flags & LCF_ASYNC) {
2043                 struct ldlm_bl_work_item *blwi;
2044
2045                 OBD_ALLOC(blwi, sizeof(*blwi));
2046                 if (blwi == NULL)
2047                         RETURN(-ENOMEM);
2048                 init_blwi(blwi, ns, ld, cancels, count, lock, cancel_flags);
2049
2050                 RETURN(__ldlm_bl_to_thread(blwi, cancel_flags));
2051         } else {
2052                 /* if it is synchronous call do minimum mem alloc, as it could
2053                  * be triggered from kernel shrinker
2054                  */
2055                 struct ldlm_bl_work_item blwi;
2056
2057                 memset(&blwi, 0, sizeof(blwi));
2058                 init_blwi(&blwi, ns, ld, cancels, count, lock, cancel_flags);
2059                 RETURN(__ldlm_bl_to_thread(&blwi, cancel_flags));
2060         }
2061 }
2062
2063
2064 int ldlm_bl_to_thread_lock(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
2065                            struct ldlm_lock *lock)
2066 {
2067         return ldlm_bl_to_thread(ns, ld, lock, NULL, 0, LCF_ASYNC);
2068 }
2069
2070 int ldlm_bl_to_thread_list(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
2071                            struct list_head *cancels, int count,
2072                            enum ldlm_cancel_flags cancel_flags)
2073 {
2074         return ldlm_bl_to_thread(ns, ld, NULL, cancels, count, cancel_flags);
2075 }
2076
2077 int ldlm_bl_thread_wakeup(void)
2078 {
2079         wake_up(&ldlm_state->ldlm_bl_pool->blp_waitq);
2080         return 0;
2081 }
2082
2083 /* Setinfo coming from Server (eg MDT) to Client (eg MDC)! */
2084 static int ldlm_handle_setinfo(struct ptlrpc_request *req)
2085 {
2086         struct obd_device *obd = req->rq_export->exp_obd;
2087         char *key;
2088         void *val;
2089         int keylen, vallen;
2090         int rc = -ENOSYS;
2091         ENTRY;
2092
2093         DEBUG_REQ(D_HSM, req, "%s: handle setinfo\n", obd->obd_name);
2094
2095         req_capsule_set(&req->rq_pill, &RQF_OBD_SET_INFO);
2096
2097         key = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
2098         if (key == NULL) {
2099                 DEBUG_REQ(D_IOCTL, req, "no set_info key");
2100                 RETURN(-EFAULT);
2101         }
2102         keylen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_KEY,
2103                                       RCL_CLIENT);
2104         val = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
2105         if (val == NULL) {
2106                 DEBUG_REQ(D_IOCTL, req, "no set_info val");
2107                 RETURN(-EFAULT);
2108         }
2109         vallen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_VAL,
2110                                       RCL_CLIENT);
2111
2112         /* We are responsible for swabbing contents of val */
2113
2114         if (KEY_IS(KEY_HSM_COPYTOOL_SEND))
2115                 /* Pass it on to mdc (the "export" in this case) */
2116                 rc = obd_set_info_async(req->rq_svc_thread->t_env,
2117                                         req->rq_export,
2118                                         sizeof(KEY_HSM_COPYTOOL_SEND),
2119                                         KEY_HSM_COPYTOOL_SEND,
2120                                         vallen, val, NULL);
2121         else
2122                 DEBUG_REQ(D_WARNING, req, "ignoring unknown key %s", key);
2123
2124         return rc;
2125 }
2126
2127 static inline void ldlm_callback_errmsg(struct ptlrpc_request *req,
2128                                         const char *msg, int rc,
2129                                         const struct lustre_handle *handle)
2130 {
2131         DEBUG_REQ((req->rq_no_reply || rc) ? D_WARNING : D_DLMTRACE, req,
2132                   "%s: [nid %s] [rc %d] [lock %#llx]",
2133                   msg, libcfs_id2str(req->rq_peer), rc,
2134                   handle ? handle->cookie : 0);
2135         if (req->rq_no_reply)
2136                 CWARN("No reply was sent, maybe cause bug 21636.\n");
2137         else if (rc)
2138                 CWARN("Send reply failed, maybe cause bug 21636.\n");
2139 }
2140
2141 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
2142 static int ldlm_callback_handler(struct ptlrpc_request *req)
2143 {
2144         struct ldlm_namespace *ns;
2145         struct ldlm_request *dlm_req;
2146         struct ldlm_lock *lock;
2147         int rc;
2148         ENTRY;
2149
2150         /* Requests arrive in sender's byte order.  The ptlrpc service
2151          * handler has already checked and, if necessary, byte-swapped the
2152          * incoming request message body, but I am responsible for the
2153          * message buffers. */
2154
2155         /* do nothing for sec context finalize */
2156         if (lustre_msg_get_opc(req->rq_reqmsg) == SEC_CTX_FINI)
2157                 RETURN(0);
2158
2159         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2160
2161         if (req->rq_export == NULL) {
2162                 rc = ldlm_callback_reply(req, -ENOTCONN);
2163                 ldlm_callback_errmsg(req, "Operate on unconnected server",
2164                                      rc, NULL);
2165                 RETURN(0);
2166         }
2167
2168         LASSERT(req->rq_export != NULL);
2169         LASSERT(req->rq_export->exp_obd != NULL);
2170
2171         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2172         case LDLM_BL_CALLBACK:
2173                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET)) {
2174                         if (cfs_fail_err)
2175                                 ldlm_callback_reply(req, -(int)cfs_fail_err);
2176                         RETURN(0);
2177                 }
2178                 break;
2179         case LDLM_CP_CALLBACK:
2180                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CP_CALLBACK_NET))
2181                         RETURN(0);
2182                 break;
2183         case LDLM_GL_CALLBACK:
2184                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_GL_CALLBACK_NET))
2185                         RETURN(0);
2186                 break;
2187         case LDLM_SET_INFO:
2188                 rc = ldlm_handle_setinfo(req);
2189                 ldlm_callback_reply(req, rc);
2190                 RETURN(0);
2191         default:
2192                 CERROR("unknown opcode %u\n",
2193                        lustre_msg_get_opc(req->rq_reqmsg));
2194                 ldlm_callback_reply(req, -EPROTO);
2195                 RETURN(0);
2196         }
2197
2198         ns = req->rq_export->exp_obd->obd_namespace;
2199         LASSERT(ns != NULL);
2200
2201         req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2202
2203         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2204         if (dlm_req == NULL) {
2205                 rc = ldlm_callback_reply(req, -EPROTO);
2206                 ldlm_callback_errmsg(req, "Operate without parameter", rc,
2207                                      NULL);
2208                 RETURN(0);
2209         }
2210
2211         /* Force a known safe race, send a cancel to the server for a lock
2212          * which the server has already started a blocking callback on. */
2213         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_BL_CB_RACE) &&
2214             lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK) {
2215                 rc = ldlm_cli_cancel(&dlm_req->lock_handle[0], 0);
2216                 if (rc < 0)
2217                         CERROR("ldlm_cli_cancel: %d\n", rc);
2218         }
2219
2220         lock = ldlm_handle2lock_long(&dlm_req->lock_handle[0], 0);
2221         if (!lock) {
2222                 CDEBUG(D_DLMTRACE, "callback on lock %#llx - lock "
2223                        "disappeared\n", dlm_req->lock_handle[0].cookie);
2224                 rc = ldlm_callback_reply(req, -EINVAL);
2225                 ldlm_callback_errmsg(req, "Operate with invalid parameter", rc,
2226                                      &dlm_req->lock_handle[0]);
2227                 RETURN(0);
2228         }
2229
2230         if (ldlm_is_fail_loc(lock) &&
2231             lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK)
2232                 OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
2233
2234         /* Copy hints/flags (e.g. LDLM_FL_DISCARD_DATA) from AST. */
2235         lock_res_and_lock(lock);
2236         lock->l_flags |= ldlm_flags_from_wire(dlm_req->lock_flags &
2237                                               LDLM_FL_AST_MASK);
2238         if (lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK) {
2239                 /* If somebody cancels lock and cache is already dropped,
2240                  * or lock is failed before cp_ast received on client,
2241                  * we can tell the server we have no lock. Otherwise, we
2242                  * should send cancel after dropping the cache. */
2243                 if ((ldlm_is_canceling(lock) && ldlm_is_bl_done(lock)) ||
2244                      ldlm_is_failed(lock)) {
2245                         LDLM_DEBUG(lock, "callback on lock %llx - lock disappeared",
2246                                    dlm_req->lock_handle[0].cookie);
2247                         unlock_res_and_lock(lock);
2248                         LDLM_LOCK_RELEASE(lock);
2249                         rc = ldlm_callback_reply(req, -EINVAL);
2250                         ldlm_callback_errmsg(req, "Operate on stale lock", rc,
2251                                              &dlm_req->lock_handle[0]);
2252                         RETURN(0);
2253                 }
2254                 /* BL_AST locks are not needed in LRU.
2255                  * Let ldlm_cancel_lru() be fast. */
2256                 ldlm_lock_remove_from_lru(lock);
2257                 ldlm_set_bl_ast(lock);
2258         }
2259         unlock_res_and_lock(lock);
2260
2261         /* We want the ost thread to get this reply so that it can respond
2262          * to ost requests (write cache writeback) that might be triggered
2263          * in the callback.
2264          *
2265          * But we'd also like to be able to indicate in the reply that we're
2266          * cancelling right now, because it's unused, or have an intent result
2267          * in the reply, so we might have to push the responsibility for sending
2268          * the reply down into the AST handlers, alas. */
2269
2270         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2271         case LDLM_BL_CALLBACK:
2272                 CDEBUG(D_INODE, "blocking ast\n");
2273                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_BL_CALLBACK);
2274                 if (!ldlm_is_cancel_on_block(lock)) {
2275                         rc = ldlm_callback_reply(req, 0);
2276                         if (req->rq_no_reply || rc)
2277                                 ldlm_callback_errmsg(req, "Normal process", rc,
2278                                                      &dlm_req->lock_handle[0]);
2279                 }
2280                 if (ldlm_bl_to_thread_lock(ns, &dlm_req->lock_desc, lock))
2281                         ldlm_handle_bl_callback(ns, &dlm_req->lock_desc, lock);
2282                 break;
2283         case LDLM_CP_CALLBACK:
2284                 CDEBUG(D_INODE, "completion ast\n");
2285                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_CP_CALLBACK);
2286                 ldlm_callback_reply(req, 0);
2287                 ldlm_handle_cp_callback(req, ns, dlm_req, lock);
2288                 break;
2289         case LDLM_GL_CALLBACK:
2290                 CDEBUG(D_INODE, "glimpse ast\n");
2291                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_GL_CALLBACK);
2292                 ldlm_handle_gl_callback(req, ns, dlm_req, lock);
2293                 break;
2294         default:
2295                 LBUG();                         /* checked above */
2296         }
2297
2298         RETURN(0);
2299 }
2300
2301 #ifdef HAVE_SERVER_SUPPORT
2302 /**
2303  * Main handler for canceld thread.
2304  *
2305  * Separated into its own thread to avoid deadlocks.
2306  */
2307 static int ldlm_cancel_handler(struct ptlrpc_request *req)
2308 {
2309         int rc;
2310
2311         ENTRY;
2312
2313         /* Requests arrive in sender's byte order.  The ptlrpc service
2314          * handler has already checked and, if necessary, byte-swapped the
2315          * incoming request message body, but I am responsible for the
2316          * message buffers. */
2317
2318         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2319
2320         if (req->rq_export == NULL) {
2321                 struct ldlm_request *dlm_req;
2322
2323                 CERROR("%s from %s arrived at %lu with bad export cookie "
2324                        "%llu\n",
2325                        ll_opcode2str(lustre_msg_get_opc(req->rq_reqmsg)),
2326                        libcfs_nid2str(req->rq_peer.nid),
2327                        req->rq_arrival_time.tv_sec,
2328                        lustre_msg_get_handle(req->rq_reqmsg)->cookie);
2329
2330                 if (lustre_msg_get_opc(req->rq_reqmsg) == LDLM_CANCEL) {
2331                         req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2332                         dlm_req = req_capsule_client_get(&req->rq_pill,
2333                                                          &RMF_DLM_REQ);
2334                         if (dlm_req != NULL)
2335                                 ldlm_lock_dump_handle(D_ERROR,
2336                                                       &dlm_req->lock_handle[0]);
2337                 }
2338                 ldlm_callback_reply(req, -ENOTCONN);
2339                 RETURN(0);
2340         }
2341
2342         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2343         /* XXX FIXME move this back to mds/handler.c, bug 249 */
2344         case LDLM_CANCEL:
2345                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2346                 CDEBUG(D_INODE, "cancel\n");
2347                 if (CFS_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_NET) ||
2348                     CFS_FAIL_CHECK(OBD_FAIL_PTLRPC_CANCEL_RESEND) ||
2349                     CFS_FAIL_CHECK(OBD_FAIL_LDLM_BL_EVICT))
2350                         RETURN(0);
2351                 rc = ldlm_handle_cancel(req);
2352                 break;
2353         case LDLM_CONVERT:
2354         {
2355                 struct ldlm_request *dlm_req;
2356
2357                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CONVERT);
2358                 CDEBUG(D_INODE, "convert\n");
2359
2360                 dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2361                 if (dlm_req == NULL) {
2362                         CDEBUG(D_INFO, "bad request buffer for cancel\n");
2363                         rc = ldlm_callback_reply(req, -EPROTO);
2364                 } else {
2365                         req->rq_status = ldlm_handle_convert0(req, dlm_req);
2366                         rc = ptlrpc_reply(req);
2367                 }
2368                 break;
2369         }
2370         default:
2371                 CERROR("invalid opcode %d\n",
2372                        lustre_msg_get_opc(req->rq_reqmsg));
2373                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2374                 rc = ldlm_callback_reply(req, -EINVAL);
2375         }
2376
2377         RETURN(rc);
2378 }
2379
2380 static int ldlm_cancel_hpreq_lock_match(struct ptlrpc_request *req,
2381                                         struct ldlm_lock *lock)
2382 {
2383         struct ldlm_request *dlm_req;
2384         struct lustre_handle lockh;
2385         int rc = 0;
2386         int i;
2387
2388         ENTRY;
2389
2390         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2391         if (dlm_req == NULL)
2392                 RETURN(0);
2393
2394         ldlm_lock2handle(lock, &lockh);
2395         for (i = 0; i < dlm_req->lock_count; i++) {
2396                 if (lustre_handle_equal(&dlm_req->lock_handle[i],
2397                                         &lockh)) {
2398                         DEBUG_REQ(D_RPCTRACE, req,
2399                                   "Prio raised by lock %#llx.", lockh.cookie);
2400                         rc = 1;
2401                         break;
2402                 }
2403         }
2404
2405         RETURN(rc);
2406 }
2407
2408 static int ldlm_cancel_hpreq_check(struct ptlrpc_request *req)
2409 {
2410         struct ldlm_request *dlm_req;
2411         int rc = 0;
2412         int i;
2413
2414         ENTRY;
2415
2416         /* no prolong in recovery */
2417         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
2418                 RETURN(0);
2419
2420         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2421         if (dlm_req == NULL)
2422                 RETURN(-EFAULT);
2423
2424         for (i = 0; i < dlm_req->lock_count; i++) {
2425                 struct ldlm_lock *lock;
2426
2427                 lock = ldlm_handle2lock(&dlm_req->lock_handle[i]);
2428                 if (lock == NULL)
2429                         continue;
2430
2431                 rc = ldlm_is_ast_sent(lock) ? 1 : 0;
2432                 if (rc)
2433                         LDLM_DEBUG(lock, "hpreq cancel/convert lock");
2434                 LDLM_LOCK_PUT(lock);
2435
2436                 if (rc)
2437                         break;
2438         }
2439
2440         RETURN(rc);
2441 }
2442
2443 static struct ptlrpc_hpreq_ops ldlm_cancel_hpreq_ops = {
2444         .hpreq_lock_match = ldlm_cancel_hpreq_lock_match,
2445         .hpreq_check      = ldlm_cancel_hpreq_check,
2446         .hpreq_fini       = NULL,
2447 };
2448
2449 static int ldlm_hpreq_handler(struct ptlrpc_request *req)
2450 {
2451         ENTRY;
2452
2453         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2454
2455         if (req->rq_export == NULL)
2456                 RETURN(0);
2457
2458         if (LDLM_CANCEL == lustre_msg_get_opc(req->rq_reqmsg)) {
2459                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2460                 req->rq_ops = &ldlm_cancel_hpreq_ops;
2461         } else if (LDLM_CONVERT == lustre_msg_get_opc(req->rq_reqmsg)) {
2462                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CONVERT);
2463                 req->rq_ops = &ldlm_cancel_hpreq_ops;
2464         }
2465         RETURN(0);
2466 }
2467
2468 static int ldlm_revoke_lock_cb(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2469                                struct hlist_node *hnode, void *data)
2470
2471 {
2472         struct list_head         *rpc_list = data;
2473         struct ldlm_lock   *lock = cfs_hash_object(hs, hnode);
2474
2475         lock_res_and_lock(lock);
2476
2477         if (!ldlm_is_granted(lock)) {
2478                 unlock_res_and_lock(lock);
2479                 return 0;
2480         }
2481
2482         LASSERT(lock->l_resource);
2483         if (lock->l_resource->lr_type != LDLM_IBITS &&
2484             lock->l_resource->lr_type != LDLM_PLAIN) {
2485                 unlock_res_and_lock(lock);
2486                 return 0;
2487         }
2488
2489         if (ldlm_is_ast_sent(lock)) {
2490                 unlock_res_and_lock(lock);
2491                 return 0;
2492         }
2493
2494         LASSERT(lock->l_blocking_ast);
2495         LASSERT(!lock->l_blocking_lock);
2496
2497         ldlm_set_ast_sent(lock);
2498         if (lock->l_export && lock->l_export->exp_lock_hash) {
2499                 /* NB: it's safe to call cfs_hash_del() even lock isn't
2500                  * in exp_lock_hash. */
2501                 /* In the function below, .hs_keycmp resolves to
2502                  * ldlm_export_lock_keycmp() */
2503                 /* coverity[overrun-buffer-val] */
2504                 cfs_hash_del(lock->l_export->exp_lock_hash,
2505                              &lock->l_remote_handle, &lock->l_exp_hash);
2506         }
2507
2508         list_add_tail(&lock->l_rk_ast, rpc_list);
2509         LDLM_LOCK_GET(lock);
2510
2511         unlock_res_and_lock(lock);
2512         return 0;
2513 }
2514
2515 void ldlm_revoke_export_locks(struct obd_export *exp)
2516 {
2517         struct list_head  rpc_list;
2518         ENTRY;
2519
2520         INIT_LIST_HEAD(&rpc_list);
2521         cfs_hash_for_each_nolock(exp->exp_lock_hash,
2522                                  ldlm_revoke_lock_cb, &rpc_list, 0);
2523         ldlm_run_ast_work(exp->exp_obd->obd_namespace, &rpc_list,
2524                           LDLM_WORK_REVOKE_AST);
2525
2526         EXIT;
2527 }
2528 EXPORT_SYMBOL(ldlm_revoke_export_locks);
2529 #endif /* HAVE_SERVER_SUPPORT */
2530
2531 static int ldlm_bl_get_work(struct ldlm_bl_pool *blp,
2532                             struct ldlm_bl_work_item **p_blwi,
2533                             struct obd_export **p_exp)
2534 {
2535         struct ldlm_bl_work_item *blwi = NULL;
2536         static unsigned int num_bl = 0;
2537         static unsigned int num_stale;
2538         int num_th = atomic_read(&blp->blp_num_threads);
2539
2540         *p_exp = obd_stale_export_get();
2541
2542         spin_lock(&blp->blp_lock);
2543         if (*p_exp != NULL) {
2544                 if (num_th == 1 || ++num_stale < num_th) {
2545                         spin_unlock(&blp->blp_lock);
2546                         return 1;
2547                 } else {
2548                         num_stale = 0;
2549                 }
2550         }
2551
2552         /* process a request from the blp_list at least every blp_num_threads */
2553         if (!list_empty(&blp->blp_list) &&
2554             (list_empty(&blp->blp_prio_list) || num_bl == 0))
2555                 blwi = list_entry(blp->blp_list.next,
2556                                   struct ldlm_bl_work_item, blwi_entry);
2557         else
2558                 if (!list_empty(&blp->blp_prio_list))
2559                         blwi = list_entry(blp->blp_prio_list.next,
2560                                           struct ldlm_bl_work_item,
2561                                           blwi_entry);
2562
2563         if (blwi) {
2564                 if (++num_bl >= num_th)
2565                         num_bl = 0;
2566                 list_del(&blwi->blwi_entry);
2567         }
2568         spin_unlock(&blp->blp_lock);
2569         *p_blwi = blwi;
2570
2571         if (*p_exp != NULL && *p_blwi != NULL) {
2572                 obd_stale_export_put(*p_exp);
2573                 *p_exp = NULL;
2574         }
2575
2576         return (*p_blwi != NULL || *p_exp != NULL) ? 1 : 0;
2577 }
2578
2579 /* This only contains temporary data until the thread starts */
2580 struct ldlm_bl_thread_data {
2581         struct ldlm_bl_pool     *bltd_blp;
2582         struct completion       bltd_comp;
2583         int                     bltd_num;
2584 };
2585
2586 static int ldlm_bl_thread_main(void *arg);
2587
2588 static int ldlm_bl_thread_start(struct ldlm_bl_pool *blp, bool check_busy)
2589 {
2590         struct ldlm_bl_thread_data bltd = { .bltd_blp = blp };
2591         struct task_struct *task;
2592
2593         init_completion(&bltd.bltd_comp);
2594
2595         bltd.bltd_num = atomic_inc_return(&blp->blp_num_threads);
2596         if (bltd.bltd_num >= blp->blp_max_threads) {
2597                 atomic_dec(&blp->blp_num_threads);
2598                 return 0;
2599         }
2600
2601         LASSERTF(bltd.bltd_num > 0, "thread num:%d\n", bltd.bltd_num);
2602         if (check_busy &&
2603             atomic_read(&blp->blp_busy_threads) < (bltd.bltd_num - 1)) {
2604                 atomic_dec(&blp->blp_num_threads);
2605                 return 0;
2606         }
2607
2608         task = kthread_run(ldlm_bl_thread_main, &bltd, "ldlm_bl_%02d",
2609                            bltd.bltd_num);
2610         if (IS_ERR(task)) {
2611                 CERROR("cannot start LDLM thread ldlm_bl_%02d: rc %ld\n",
2612                        bltd.bltd_num, PTR_ERR(task));
2613                 atomic_dec(&blp->blp_num_threads);
2614                 return PTR_ERR(task);
2615         }
2616         wait_for_completion(&bltd.bltd_comp);
2617
2618         return 0;
2619 }
2620
2621 /* Not fatal if racy and have a few too many threads */
2622 static int ldlm_bl_thread_need_create(struct ldlm_bl_pool *blp,
2623                                       struct ldlm_bl_work_item *blwi)
2624 {
2625         if (atomic_read(&blp->blp_num_threads) >= blp->blp_max_threads)
2626                 return 0;
2627
2628         if (atomic_read(&blp->blp_busy_threads) <
2629             atomic_read(&blp->blp_num_threads))
2630                 return 0;
2631
2632         if (blwi != NULL && (blwi->blwi_ns == NULL ||
2633                              blwi->blwi_mem_pressure))
2634                 return 0;
2635
2636         return 1;
2637 }
2638
2639 static int ldlm_bl_thread_blwi(struct ldlm_bl_pool *blp,
2640                                struct ldlm_bl_work_item *blwi)
2641 {
2642         ENTRY;
2643
2644         if (blwi->blwi_ns == NULL)
2645                 /* added by ldlm_cleanup() */
2646                 RETURN(LDLM_ITER_STOP);
2647
2648         if (blwi->blwi_mem_pressure)
2649                 memory_pressure_set();
2650
2651         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL2, 4);
2652
2653         if (blwi->blwi_count) {
2654                 int count;
2655                 /* The special case when we cancel locks in lru
2656                  * asynchronously, we pass the list of locks here.
2657                  * Thus locks are marked LDLM_FL_CANCELING, but NOT
2658                  * canceled locally yet. */
2659                 count = ldlm_cli_cancel_list_local(&blwi->blwi_head,
2660                                                    blwi->blwi_count,
2661                                                    LCF_BL_AST);
2662                 ldlm_cli_cancel_list(&blwi->blwi_head, count, NULL,
2663                                      blwi->blwi_flags);
2664         } else {
2665                 ldlm_handle_bl_callback(blwi->blwi_ns, &blwi->blwi_ld,
2666                                         blwi->blwi_lock);
2667         }
2668         if (blwi->blwi_mem_pressure)
2669                 memory_pressure_clr();
2670
2671         if (blwi->blwi_flags & LCF_ASYNC)
2672                 OBD_FREE(blwi, sizeof(*blwi));
2673         else
2674                 complete(&blwi->blwi_comp);
2675
2676         RETURN(0);
2677 }
2678
2679 /**
2680  * Cancel stale locks on export. Cancel blocked locks first.
2681  * If the given export has blocked locks, the next in the list may have
2682  * them too, thus cancel not blocked locks only if the current export has
2683  * no blocked locks.
2684  **/
2685 static int ldlm_bl_thread_exports(struct ldlm_bl_pool *blp,
2686                                   struct obd_export *exp)
2687 {
2688         int num;
2689         ENTRY;
2690
2691         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_BL_EVICT, 4);
2692
2693         num = ldlm_export_cancel_blocked_locks(exp);
2694         if (num == 0)
2695                 ldlm_export_cancel_locks(exp);
2696
2697         obd_stale_export_put(exp);
2698
2699         RETURN(0);
2700 }
2701
2702
2703 /**
2704  * Main blocking requests processing thread.
2705  *
2706  * Callers put locks into its queue by calling ldlm_bl_to_thread.
2707  * This thread in the end ends up doing actual call to ->l_blocking_ast
2708  * for queued locks.
2709  */
2710 static int ldlm_bl_thread_main(void *arg)
2711 {
2712         struct ldlm_bl_pool *blp;
2713         struct ldlm_bl_thread_data *bltd = arg;
2714         ENTRY;
2715
2716         blp = bltd->bltd_blp;
2717
2718         complete(&bltd->bltd_comp);
2719         /* cannot use bltd after this, it is only on caller's stack */
2720
2721         while (1) {
2722                 struct l_wait_info lwi = { 0 };
2723                 struct ldlm_bl_work_item *blwi = NULL;
2724                 struct obd_export *exp = NULL;
2725                 int rc;
2726
2727                 rc = ldlm_bl_get_work(blp, &blwi, &exp);
2728
2729                 if (rc == 0)
2730                         l_wait_event_exclusive(blp->blp_waitq,
2731                                                ldlm_bl_get_work(blp, &blwi,
2732                                                                 &exp),
2733                                                &lwi);
2734                 atomic_inc(&blp->blp_busy_threads);
2735
2736                 if (ldlm_bl_thread_need_create(blp, blwi))
2737                         /* discard the return value, we tried */
2738                         ldlm_bl_thread_start(blp, true);
2739
2740                 if (exp)
2741                         rc = ldlm_bl_thread_exports(blp, exp);
2742                 else if (blwi)
2743                         rc = ldlm_bl_thread_blwi(blp, blwi);
2744
2745                 atomic_dec(&blp->blp_busy_threads);
2746
2747                 if (rc == LDLM_ITER_STOP)
2748                         break;
2749
2750                 /* If there are many namespaces, we will not sleep waiting for
2751                  * work, and must do a cond_resched to avoid holding the CPU
2752                  * for too long */
2753                 cond_resched();
2754         }
2755
2756         atomic_dec(&blp->blp_num_threads);
2757         complete(&blp->blp_comp);
2758         RETURN(0);
2759 }
2760
2761
2762 static int ldlm_setup(void);
2763 static int ldlm_cleanup(void);
2764
2765 int ldlm_get_ref(void)
2766 {
2767         int rc = 0;
2768         ENTRY;
2769         mutex_lock(&ldlm_ref_mutex);
2770         if (++ldlm_refcount == 1) {
2771                 rc = ldlm_setup();
2772                 if (rc)
2773                         ldlm_refcount--;
2774         }
2775         mutex_unlock(&ldlm_ref_mutex);
2776
2777         RETURN(rc);
2778 }
2779
2780 void ldlm_put_ref(void)
2781 {
2782         ENTRY;
2783         mutex_lock(&ldlm_ref_mutex);
2784         if (ldlm_refcount == 1) {
2785                 int rc = ldlm_cleanup();
2786                 if (rc)
2787                         CERROR("ldlm_cleanup failed: %d\n", rc);
2788                 else
2789                         ldlm_refcount--;
2790         } else {
2791                 ldlm_refcount--;
2792         }
2793         mutex_unlock(&ldlm_ref_mutex);
2794
2795         EXIT;
2796 }
2797
2798 /*
2799  * Export handle<->lock hash operations.
2800  */
2801 static unsigned
2802 ldlm_export_lock_hash(struct cfs_hash *hs, const void *key, unsigned mask)
2803 {
2804         return cfs_hash_u64_hash(((struct lustre_handle *)key)->cookie, mask);
2805 }
2806
2807 static void *
2808 ldlm_export_lock_key(struct hlist_node *hnode)
2809 {
2810         struct ldlm_lock *lock;
2811
2812         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2813         return &lock->l_remote_handle;
2814 }
2815
2816 static void
2817 ldlm_export_lock_keycpy(struct hlist_node *hnode, void *key)
2818 {
2819         struct ldlm_lock     *lock;
2820
2821         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2822         lock->l_remote_handle = *(struct lustre_handle *)key;
2823 }
2824
2825 static int
2826 ldlm_export_lock_keycmp(const void *key, struct hlist_node *hnode)
2827 {
2828         return lustre_handle_equal(ldlm_export_lock_key(hnode), key);
2829 }
2830
2831 static void *
2832 ldlm_export_lock_object(struct hlist_node *hnode)
2833 {
2834         return hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2835 }
2836
2837 static void
2838 ldlm_export_lock_get(struct cfs_hash *hs, struct hlist_node *hnode)
2839 {
2840         struct ldlm_lock *lock;
2841
2842         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2843         LDLM_LOCK_GET(lock);
2844 }
2845
2846 static void
2847 ldlm_export_lock_put(struct cfs_hash *hs, struct hlist_node *hnode)
2848 {
2849         struct ldlm_lock *lock;
2850
2851         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2852         LDLM_LOCK_RELEASE(lock);
2853 }
2854
2855 static struct cfs_hash_ops ldlm_export_lock_ops = {
2856         .hs_hash        = ldlm_export_lock_hash,
2857         .hs_key         = ldlm_export_lock_key,
2858         .hs_keycmp      = ldlm_export_lock_keycmp,
2859         .hs_keycpy      = ldlm_export_lock_keycpy,
2860         .hs_object      = ldlm_export_lock_object,
2861         .hs_get         = ldlm_export_lock_get,
2862         .hs_put         = ldlm_export_lock_put,
2863         .hs_put_locked  = ldlm_export_lock_put,
2864 };
2865
2866 int ldlm_init_export(struct obd_export *exp)
2867 {
2868         int rc;
2869         ENTRY;
2870
2871         exp->exp_lock_hash =
2872                 cfs_hash_create(obd_uuid2str(&exp->exp_client_uuid),
2873                                 HASH_EXP_LOCK_CUR_BITS,
2874                                 HASH_EXP_LOCK_MAX_BITS,
2875                                 HASH_EXP_LOCK_BKT_BITS, 0,
2876                                 CFS_HASH_MIN_THETA, CFS_HASH_MAX_THETA,
2877                                 &ldlm_export_lock_ops,
2878                                 CFS_HASH_DEFAULT | CFS_HASH_REHASH_KEY |
2879                                 CFS_HASH_NBLK_CHANGE);
2880
2881         if (!exp->exp_lock_hash)
2882                 RETURN(-ENOMEM);
2883
2884         rc = ldlm_init_flock_export(exp);
2885         if (rc)
2886                 GOTO(err, rc);
2887
2888         RETURN(0);
2889 err:
2890         ldlm_destroy_export(exp);
2891         RETURN(rc);
2892 }
2893 EXPORT_SYMBOL(ldlm_init_export);
2894
2895 void ldlm_destroy_export(struct obd_export *exp)
2896 {
2897         ENTRY;
2898         cfs_hash_putref(exp->exp_lock_hash);
2899         exp->exp_lock_hash = NULL;
2900
2901         ldlm_destroy_flock_export(exp);
2902         EXIT;
2903 }
2904 EXPORT_SYMBOL(ldlm_destroy_export);
2905
2906 static ssize_t cancel_unused_locks_before_replay_show(struct kobject *kobj,
2907                                                       struct attribute *attr,
2908                                                       char *buf)
2909 {
2910         return sprintf(buf, "%d\n", ldlm_cancel_unused_locks_before_replay);
2911 }
2912
2913 static ssize_t cancel_unused_locks_before_replay_store(struct kobject *kobj,
2914                                                        struct attribute *attr,
2915                                                        const char *buffer,
2916                                                        size_t count)
2917 {
2918         int rc;
2919         unsigned long val;
2920
2921         rc = kstrtoul(buffer, 10, &val);
2922         if (rc)
2923                 return rc;
2924
2925         ldlm_cancel_unused_locks_before_replay = val;
2926
2927         return count;
2928 }
2929 LUSTRE_RW_ATTR(cancel_unused_locks_before_replay);
2930
2931 static struct attribute *ldlm_attrs[] = {
2932         &lustre_attr_cancel_unused_locks_before_replay.attr,
2933         NULL,
2934 };
2935
2936 static struct attribute_group ldlm_attr_group = {
2937         .attrs = ldlm_attrs,
2938 };
2939
2940 static int ldlm_setup(void)
2941 {
2942         static struct ptlrpc_service_conf       conf;
2943         struct ldlm_bl_pool                    *blp = NULL;
2944 #ifdef HAVE_SERVER_SUPPORT
2945         struct task_struct *task;
2946 #endif /* HAVE_SERVER_SUPPORT */
2947         int i;
2948         int rc = 0;
2949
2950         ENTRY;
2951
2952         if (ldlm_state != NULL)
2953                 RETURN(-EALREADY);
2954
2955         OBD_ALLOC(ldlm_state, sizeof(*ldlm_state));
2956         if (ldlm_state == NULL)
2957                 RETURN(-ENOMEM);
2958
2959         ldlm_kobj = kobject_create_and_add("ldlm", &lustre_kset->kobj);
2960         if (!ldlm_kobj)
2961                 GOTO(out, -ENOMEM);
2962
2963         rc = sysfs_create_group(ldlm_kobj, &ldlm_attr_group);
2964         if (rc)
2965                 GOTO(out, rc);
2966
2967         ldlm_ns_kset = kset_create_and_add("namespaces", NULL, ldlm_kobj);
2968         if (!ldlm_ns_kset)
2969                 GOTO(out, -ENOMEM);
2970
2971         ldlm_svc_kset = kset_create_and_add("services", NULL, ldlm_kobj);
2972         if (!ldlm_svc_kset)
2973                 GOTO(out, -ENOMEM);
2974
2975         rc = ldlm_debugfs_setup();
2976         if (rc != 0)
2977                 GOTO(out, rc);
2978
2979         memset(&conf, 0, sizeof(conf));
2980         conf = (typeof(conf)) {
2981                 .psc_name               = "ldlm_cbd",
2982                 .psc_watchdog_factor    = 2,
2983                 .psc_buf                = {
2984                         .bc_nbufs               = LDLM_CLIENT_NBUFS,
2985                         .bc_buf_size            = LDLM_BUFSIZE,
2986                         .bc_req_max_size        = LDLM_MAXREQSIZE,
2987                         .bc_rep_max_size        = LDLM_MAXREPSIZE,
2988                         .bc_req_portal          = LDLM_CB_REQUEST_PORTAL,
2989                         .bc_rep_portal          = LDLM_CB_REPLY_PORTAL,
2990                 },
2991                 .psc_thr                = {
2992                         .tc_thr_name            = "ldlm_cb",
2993                         .tc_thr_factor          = LDLM_THR_FACTOR,
2994                         .tc_nthrs_init          = LDLM_NTHRS_INIT,
2995                         .tc_nthrs_base          = LDLM_NTHRS_BASE,
2996                         .tc_nthrs_max           = LDLM_NTHRS_MAX,
2997                         .tc_nthrs_user          = ldlm_num_threads,
2998                         .tc_cpu_bind            = ldlm_cpu_bind,
2999                         .tc_ctx_tags            = LCT_MD_THREAD | LCT_DT_THREAD,
3000                 },
3001                 .psc_cpt                = {
3002                         .cc_pattern             = ldlm_cpts,
3003                         .cc_affinity            = true,
3004                 },
3005                 .psc_ops                = {
3006                         .so_req_handler         = ldlm_callback_handler,
3007                 },
3008         };
3009         ldlm_state->ldlm_cb_service = \
3010                         ptlrpc_register_service(&conf, ldlm_svc_kset,
3011                                                 ldlm_svc_debugfs_dir);
3012         if (IS_ERR(ldlm_state->ldlm_cb_service)) {
3013                 CERROR("failed to start service\n");
3014                 rc = PTR_ERR(ldlm_state->ldlm_cb_service);
3015                 ldlm_state->ldlm_cb_service = NULL;
3016                 GOTO(out, rc);
3017         }
3018
3019 #ifdef HAVE_SERVER_SUPPORT
3020         memset(&conf, 0, sizeof(conf));
3021         conf = (typeof(conf)) {
3022                 .psc_name               = "ldlm_canceld",
3023                 .psc_watchdog_factor    = 6,
3024                 .psc_buf                = {
3025                         .bc_nbufs               = LDLM_SERVER_NBUFS,
3026                         .bc_buf_size            = LDLM_BUFSIZE,
3027                         .bc_req_max_size        = LDLM_MAXREQSIZE,
3028                         .bc_rep_max_size        = LDLM_MAXREPSIZE,
3029                         .bc_req_portal          = LDLM_CANCEL_REQUEST_PORTAL,
3030                         .bc_rep_portal          = LDLM_CANCEL_REPLY_PORTAL,
3031
3032                 },
3033                 .psc_thr                = {
3034                         .tc_thr_name            = "ldlm_cn",
3035                         .tc_thr_factor          = LDLM_THR_FACTOR,
3036                         .tc_nthrs_init          = LDLM_NTHRS_INIT,
3037                         .tc_nthrs_base          = LDLM_NTHRS_BASE,
3038                         .tc_nthrs_max           = LDLM_NTHRS_MAX,
3039                         .tc_nthrs_user          = ldlm_num_threads,
3040                         .tc_cpu_bind            = ldlm_cpu_bind,
3041                         .tc_ctx_tags            = LCT_MD_THREAD | \
3042                                                   LCT_DT_THREAD | \
3043                                                   LCT_CL_THREAD,
3044                 },
3045                 .psc_cpt                = {
3046                         .cc_pattern             = ldlm_cpts,
3047                         .cc_affinity            = true,
3048                 },
3049                 .psc_ops                = {
3050                         .so_req_handler         = ldlm_cancel_handler,
3051                         .so_hpreq_handler       = ldlm_hpreq_handler,
3052                 },
3053         };
3054         ldlm_state->ldlm_cancel_service = \
3055                         ptlrpc_register_service(&conf, ldlm_svc_kset,
3056                                                 ldlm_svc_debugfs_dir);
3057         if (IS_ERR(ldlm_state->ldlm_cancel_service)) {
3058                 CERROR("failed to start service\n");
3059                 rc = PTR_ERR(ldlm_state->ldlm_cancel_service);
3060                 ldlm_state->ldlm_cancel_service = NULL;
3061                 GOTO(out, rc);
3062         }
3063 #endif /* HAVE_SERVER_SUPPORT */
3064
3065         OBD_ALLOC(blp, sizeof(*blp));
3066         if (blp == NULL)
3067                 GOTO(out, rc = -ENOMEM);
3068         ldlm_state->ldlm_bl_pool = blp;
3069
3070         spin_lock_init(&blp->blp_lock);
3071         INIT_LIST_HEAD(&blp->blp_list);
3072         INIT_LIST_HEAD(&blp->blp_prio_list);
3073         init_waitqueue_head(&blp->blp_waitq);
3074         atomic_set(&blp->blp_num_threads, 0);
3075         atomic_set(&blp->blp_busy_threads, 0);
3076
3077         if (ldlm_num_threads == 0) {
3078                 blp->blp_min_threads = LDLM_NTHRS_INIT;
3079                 blp->blp_max_threads = LDLM_NTHRS_MAX;
3080         } else {
3081                 blp->blp_min_threads = blp->blp_max_threads = \
3082                         min_t(int, LDLM_NTHRS_MAX, max_t(int, LDLM_NTHRS_INIT,
3083                                                          ldlm_num_threads));
3084         }
3085
3086         for (i = 0; i < blp->blp_min_threads; i++) {
3087                 rc = ldlm_bl_thread_start(blp, false);
3088                 if (rc < 0)
3089                         GOTO(out, rc);
3090         }
3091
3092 #ifdef HAVE_SERVER_SUPPORT
3093         task = kthread_run(expired_lock_main, NULL, "ldlm_elt");
3094         if (IS_ERR(task)) {
3095                 rc = PTR_ERR(task);
3096                 CERROR("Cannot start ldlm expired-lock thread: %d\n", rc);
3097                 GOTO(out, rc);
3098         }
3099
3100         wait_event(expired_lock_wait_queue,
3101                    expired_lock_thread_state == ELT_READY);
3102 #endif /* HAVE_SERVER_SUPPORT */
3103
3104         rc = ldlm_pools_init();
3105         if (rc) {
3106                 CERROR("Failed to initialize LDLM pools: %d\n", rc);
3107                 GOTO(out, rc);
3108         }
3109
3110         rc = ldlm_reclaim_setup();
3111         if (rc) {
3112                 CERROR("Failed to setup reclaim thread: rc = %d\n", rc);
3113                 GOTO(out, rc);
3114         }
3115         RETURN(0);
3116
3117  out:
3118         ldlm_cleanup();
3119         RETURN(rc);
3120 }
3121
3122 static int ldlm_cleanup(void)
3123 {
3124         ENTRY;
3125
3126         if (!list_empty(ldlm_namespace_list(LDLM_NAMESPACE_SERVER)) ||
3127             !list_empty(ldlm_namespace_list(LDLM_NAMESPACE_CLIENT))) {
3128                 CERROR("ldlm still has namespaces; clean these up first.\n");
3129                 ldlm_dump_all_namespaces(LDLM_NAMESPACE_SERVER, D_DLMTRACE);
3130                 ldlm_dump_all_namespaces(LDLM_NAMESPACE_CLIENT, D_DLMTRACE);
3131                 RETURN(-EBUSY);
3132         }
3133
3134         ldlm_reclaim_cleanup();
3135         ldlm_pools_fini();
3136
3137         if (ldlm_state->ldlm_bl_pool != NULL) {
3138                 struct ldlm_bl_pool *blp = ldlm_state->ldlm_bl_pool;
3139
3140                 while (atomic_read(&blp->blp_num_threads) > 0) {
3141                         struct ldlm_bl_work_item blwi = { .blwi_ns = NULL };
3142
3143                         init_completion(&blp->blp_comp);
3144
3145                         spin_lock(&blp->blp_lock);
3146                         list_add_tail(&blwi.blwi_entry, &blp->blp_list);
3147                         wake_up(&blp->blp_waitq);
3148                         spin_unlock(&blp->blp_lock);
3149
3150                         wait_for_completion(&blp->blp_comp);
3151                 }
3152
3153                 OBD_FREE(blp, sizeof(*blp));
3154         }
3155
3156         if (ldlm_state->ldlm_cb_service != NULL)
3157                 ptlrpc_unregister_service(ldlm_state->ldlm_cb_service);
3158 #ifdef HAVE_SERVER_SUPPORT
3159         if (ldlm_state->ldlm_cancel_service != NULL)
3160                 ptlrpc_unregister_service(ldlm_state->ldlm_cancel_service);
3161 #endif
3162
3163         if (ldlm_ns_kset)
3164                 kset_unregister(ldlm_ns_kset);
3165         if (ldlm_svc_kset)
3166                 kset_unregister(ldlm_svc_kset);
3167         if (ldlm_kobj) {
3168                 sysfs_remove_group(ldlm_kobj, &ldlm_attr_group);
3169                 kobject_put(ldlm_kobj);
3170         }
3171
3172         ldlm_debugfs_cleanup();
3173
3174 #ifdef HAVE_SERVER_SUPPORT
3175         if (expired_lock_thread_state != ELT_STOPPED) {
3176                 expired_lock_thread_state = ELT_TERMINATE;
3177                 wake_up(&expired_lock_wait_queue);
3178                 wait_event(expired_lock_wait_queue,
3179                            expired_lock_thread_state == ELT_STOPPED);
3180         }
3181 #endif
3182
3183         OBD_FREE(ldlm_state, sizeof(*ldlm_state));
3184         ldlm_state = NULL;
3185
3186         RETURN(0);
3187 }
3188
3189 int ldlm_init(void)
3190 {
3191         ldlm_resource_slab = kmem_cache_create("ldlm_resources",
3192                                                sizeof(struct ldlm_resource), 0,
3193                                                SLAB_HWCACHE_ALIGN, NULL);
3194         if (ldlm_resource_slab == NULL)
3195                 return -ENOMEM;
3196
3197         ldlm_lock_slab = kmem_cache_create("ldlm_locks",
3198                               sizeof(struct ldlm_lock), 0,
3199                               SLAB_HWCACHE_ALIGN, NULL);
3200         if (ldlm_lock_slab == NULL)
3201                 goto out_resource;
3202
3203         ldlm_interval_slab = kmem_cache_create("interval_node",
3204                                         sizeof(struct ldlm_interval),
3205                                         0, SLAB_HWCACHE_ALIGN, NULL);
3206         if (ldlm_interval_slab == NULL)
3207                 goto out_lock;
3208
3209         ldlm_interval_tree_slab = kmem_cache_create("interval_tree",
3210                         sizeof(struct ldlm_interval_tree) * LCK_MODE_NUM,
3211                         0, SLAB_HWCACHE_ALIGN, NULL);
3212         if (ldlm_interval_tree_slab == NULL)
3213                 goto out_interval;
3214
3215 #ifdef HAVE_SERVER_SUPPORT
3216         ldlm_glimpse_work_kmem = kmem_cache_create("ldlm_glimpse_work_kmem",
3217                                         sizeof(struct ldlm_glimpse_work),
3218                                         0, 0, NULL);
3219         if (ldlm_glimpse_work_kmem == NULL)
3220                 goto out_interval_tree;
3221 #endif
3222
3223 #if LUSTRE_TRACKS_LOCK_EXP_REFS
3224         class_export_dump_hook = ldlm_dump_export_locks;
3225 #endif
3226         return 0;
3227 #ifdef HAVE_SERVER_SUPPORT
3228 out_interval_tree:
3229         kmem_cache_destroy(ldlm_interval_tree_slab);
3230 #endif
3231 out_interval:
3232         kmem_cache_destroy(ldlm_interval_slab);
3233 out_lock:
3234         kmem_cache_destroy(ldlm_lock_slab);
3235 out_resource:
3236         kmem_cache_destroy(ldlm_resource_slab);
3237
3238         return -ENOMEM;
3239 }
3240
3241 void ldlm_exit(void)
3242 {
3243         if (ldlm_refcount)
3244                 CERROR("ldlm_refcount is %d in ldlm_exit!\n", ldlm_refcount);
3245         kmem_cache_destroy(ldlm_resource_slab);
3246         /* ldlm_lock_put() use RCU to call ldlm_lock_free, so need call
3247          * synchronize_rcu() to wait a grace period elapsed, so that
3248          * ldlm_lock_free() get a chance to be called. */
3249         synchronize_rcu();
3250         kmem_cache_destroy(ldlm_lock_slab);
3251         kmem_cache_destroy(ldlm_interval_slab);
3252         kmem_cache_destroy(ldlm_interval_tree_slab);
3253 #ifdef HAVE_SERVER_SUPPORT
3254         kmem_cache_destroy(ldlm_glimpse_work_kmem);
3255 #endif
3256 }