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