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