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