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