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