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