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