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