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