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