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