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