Whamcloud - gitweb
LU-2791 ldlm: release reference against failed lock
[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, 2012, 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         int                     blwi_mode;
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_request_reorderable() without
814                  * holding svcpt->scp_req_lock, and then redo the checks 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         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_CLIENT, lvb_len);
957         rc = ptlrpc_request_pack(req, LUSTRE_DLM_VERSION, LDLM_CP_CALLBACK);
958         if (rc) {
959                 ptlrpc_request_free(req);
960                 RETURN(rc);
961         }
962
963         CLASSERT(sizeof(*ca) <= sizeof(req->rq_async_args));
964         ca = ptlrpc_req_async_args(req);
965         ca->ca_set_arg = arg;
966         ca->ca_lock = lock;
967
968         req->rq_interpret_reply = ldlm_cb_interpret;
969         req->rq_no_resend = 1;
970         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
971
972         body->lock_handle[0] = lock->l_remote_handle;
973         body->lock_flags = ldlm_flags_to_wire(flags);
974         ldlm_lock2desc(lock, &body->lock_desc);
975         if (lvb_len > 0) {
976                 void *lvb = req_capsule_client_get(&req->rq_pill, &RMF_DLM_LVB);
977
978                 lvb_len = ldlm_lvbo_fill(lock, lvb, lvb_len);
979                 if (lvb_len < 0) {
980                         /* We still need to send the RPC to wake up the blocked
981                          * enqueue thread on the client.
982                          *
983                          * Consider old client, there is no better way to notify
984                          * the failure, just zero-sized the LVB, then the client
985                          * will fail out as "-EPROTO". */
986                         req_capsule_shrink(&req->rq_pill, &RMF_DLM_LVB, 0,
987                                            RCL_CLIENT);
988                         instant_cancel = 1;
989                 } else {
990                         req_capsule_shrink(&req->rq_pill, &RMF_DLM_LVB, lvb_len,
991                                            RCL_CLIENT);
992                 }
993         }
994
995         LDLM_DEBUG(lock, "server preparing completion AST (after %lds wait)",
996                    total_enqueue_wait);
997
998         /* Server-side enqueue wait time estimate, used in
999             __ldlm_add_waiting_lock to set future enqueue timers */
1000         if (total_enqueue_wait < ldlm_get_enq_timeout(lock))
1001                 at_measured(ldlm_lock_to_ns_at(lock),
1002                             total_enqueue_wait);
1003         else
1004                 /* bz18618. Don't add lock enqueue time we spend waiting for a
1005                    previous callback to fail. Locks waiting legitimately will
1006                    get extended by ldlm_refresh_waiting_lock regardless of the
1007                    estimate, so it's okay to underestimate here. */
1008                 LDLM_DEBUG(lock, "lock completed after %lus; estimate was %ds. "
1009                        "It is likely that a previous callback timed out.",
1010                        total_enqueue_wait,
1011                        at_get(ldlm_lock_to_ns_at(lock)));
1012
1013         ptlrpc_request_set_replen(req);
1014
1015         req->rq_send_state = LUSTRE_IMP_FULL;
1016         /* ptlrpc_request_pack already set timeout */
1017         if (AT_OFF)
1018                 req->rq_timeout = ldlm_get_rq_timeout();
1019
1020         /* We only send real blocking ASTs after the lock is granted */
1021         lock_res_and_lock(lock);
1022         if (lock->l_flags & LDLM_FL_AST_SENT) {
1023                 body->lock_flags |= ldlm_flags_to_wire(LDLM_FL_AST_SENT);
1024                 /* Copy AST flags like LDLM_FL_DISCARD_DATA. */
1025                 body->lock_flags |= ldlm_flags_to_wire(lock->l_flags &
1026                                                        LDLM_AST_FLAGS);
1027
1028                 /* We might get here prior to ldlm_handle_enqueue setting
1029                  * LDLM_FL_CANCEL_ON_BLOCK flag. Then we will put this lock
1030                  * into waiting list, but this is safe and similar code in
1031                  * ldlm_handle_enqueue will call ldlm_lock_cancel() still,
1032                  * that would not only cancel the lock, but will also remove
1033                  * it from waiting list */
1034                 if (lock->l_flags & LDLM_FL_CANCEL_ON_BLOCK) {
1035                         unlock_res_and_lock(lock);
1036                         ldlm_lock_cancel(lock);
1037                         instant_cancel = 1;
1038                         lock_res_and_lock(lock);
1039                 } else {
1040                         /* start the lock-timeout clock */
1041                         ldlm_add_waiting_lock(lock);
1042                 }
1043         }
1044         unlock_res_and_lock(lock);
1045
1046         if (lock->l_export && lock->l_export->exp_nid_stats &&
1047             lock->l_export->exp_nid_stats->nid_ldlm_stats)
1048                 lprocfs_counter_incr(lock->l_export->exp_nid_stats->nid_ldlm_stats,
1049                                      LDLM_CP_CALLBACK - LDLM_FIRST_OPC);
1050
1051         rc = ldlm_ast_fini(req, arg, lock, instant_cancel);
1052
1053         RETURN(lvb_len < 0 ? lvb_len : rc);
1054 }
1055 EXPORT_SYMBOL(ldlm_server_completion_ast);
1056
1057 /**
1058  * Server side ->l_glimpse_ast handler for client locks.
1059  *
1060  * Sends glimpse AST to the client and waits for reply. Then updates
1061  * lvbo with the result.
1062  */
1063 int ldlm_server_glimpse_ast(struct ldlm_lock *lock, void *data)
1064 {
1065         struct ldlm_cb_set_arg          *arg = data;
1066         struct ldlm_request             *body;
1067         struct ptlrpc_request           *req;
1068         struct ldlm_cb_async_args       *ca;
1069         int                              rc;
1070         struct req_format               *req_fmt;
1071         ENTRY;
1072
1073         LASSERT(lock != NULL);
1074
1075         if (arg->gl_desc != NULL)
1076                 /* There is a glimpse descriptor to pack */
1077                 req_fmt = &RQF_LDLM_GL_DESC_CALLBACK;
1078         else
1079                 req_fmt = &RQF_LDLM_GL_CALLBACK;
1080
1081         req = ptlrpc_request_alloc_pack(lock->l_export->exp_imp_reverse,
1082                                         req_fmt, LUSTRE_DLM_VERSION,
1083                                         LDLM_GL_CALLBACK);
1084
1085         if (req == NULL)
1086                 RETURN(-ENOMEM);
1087
1088         if (arg->gl_desc != NULL) {
1089                 /* copy the GL descriptor */
1090                 union ldlm_gl_desc      *desc;
1091                 desc = req_capsule_client_get(&req->rq_pill, &RMF_DLM_GL_DESC);
1092                 *desc = *arg->gl_desc;
1093         }
1094
1095         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1096         body->lock_handle[0] = lock->l_remote_handle;
1097         ldlm_lock2desc(lock, &body->lock_desc);
1098
1099         CLASSERT(sizeof(*ca) <= sizeof(req->rq_async_args));
1100         ca = ptlrpc_req_async_args(req);
1101         ca->ca_set_arg = arg;
1102         ca->ca_lock = lock;
1103
1104         /* server namespace, doesn't need lock */
1105         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
1106                              ldlm_lvbo_size(lock));
1107         ptlrpc_request_set_replen(req);
1108
1109         req->rq_send_state = LUSTRE_IMP_FULL;
1110         /* ptlrpc_request_alloc_pack already set timeout */
1111         if (AT_OFF)
1112                 req->rq_timeout = ldlm_get_rq_timeout();
1113
1114         req->rq_interpret_reply = ldlm_cb_interpret;
1115
1116         if (lock->l_export && lock->l_export->exp_nid_stats &&
1117             lock->l_export->exp_nid_stats->nid_ldlm_stats)
1118                 lprocfs_counter_incr(lock->l_export->exp_nid_stats->nid_ldlm_stats,
1119                                      LDLM_GL_CALLBACK - LDLM_FIRST_OPC);
1120
1121         rc = ldlm_ast_fini(req, arg, lock, 0);
1122
1123         RETURN(rc);
1124 }
1125 EXPORT_SYMBOL(ldlm_server_glimpse_ast);
1126
1127 int ldlm_glimpse_locks(struct ldlm_resource *res, cfs_list_t *gl_work_list)
1128 {
1129         int     rc;
1130         ENTRY;
1131
1132         rc = ldlm_run_ast_work(ldlm_res_to_ns(res), gl_work_list,
1133                                LDLM_WORK_GL_AST);
1134         if (rc == -ERESTART)
1135                 ldlm_reprocess_all(res);
1136
1137         RETURN(rc);
1138 }
1139 EXPORT_SYMBOL(ldlm_glimpse_locks);
1140
1141 /* return LDLM lock associated with a lock callback request */
1142 struct ldlm_lock *ldlm_request_lock(struct ptlrpc_request *req)
1143 {
1144         struct ldlm_cb_async_args       *ca;
1145         struct ldlm_lock                *lock;
1146         ENTRY;
1147
1148         ca = ptlrpc_req_async_args(req);
1149         lock = ca->ca_lock;
1150         if (lock == NULL)
1151                 RETURN(ERR_PTR(-EFAULT));
1152
1153         RETURN(lock);
1154 }
1155 EXPORT_SYMBOL(ldlm_request_lock);
1156
1157 static void ldlm_svc_get_eopc(const struct ldlm_request *dlm_req,
1158                        struct lprocfs_stats *srv_stats)
1159 {
1160         int lock_type = 0, op = 0;
1161
1162         lock_type = dlm_req->lock_desc.l_resource.lr_type;
1163
1164         switch (lock_type) {
1165         case LDLM_PLAIN:
1166                 op = PTLRPC_LAST_CNTR + LDLM_PLAIN_ENQUEUE;
1167                 break;
1168         case LDLM_EXTENT:
1169                 if (dlm_req->lock_flags & LDLM_FL_HAS_INTENT)
1170                         op = PTLRPC_LAST_CNTR + LDLM_GLIMPSE_ENQUEUE;
1171                 else
1172                         op = PTLRPC_LAST_CNTR + LDLM_EXTENT_ENQUEUE;
1173                 break;
1174         case LDLM_FLOCK:
1175                 op = PTLRPC_LAST_CNTR + LDLM_FLOCK_ENQUEUE;
1176                 break;
1177         case LDLM_IBITS:
1178                 op = PTLRPC_LAST_CNTR + LDLM_IBITS_ENQUEUE;
1179                 break;
1180         default:
1181                 op = 0;
1182                 break;
1183         }
1184
1185         if (op)
1186                 lprocfs_counter_incr(srv_stats, op);
1187
1188         return;
1189 }
1190
1191 /**
1192  * Main server-side entry point into LDLM for enqueue. This is called by ptlrpc
1193  * service threads to carry out client lock enqueueing requests.
1194  */
1195 int ldlm_handle_enqueue0(struct ldlm_namespace *ns,
1196                          struct ptlrpc_request *req,
1197                          const struct ldlm_request *dlm_req,
1198                          const struct ldlm_callback_suite *cbs)
1199 {
1200         struct ldlm_reply *dlm_rep;
1201         __u64 flags;
1202         ldlm_error_t err = ELDLM_OK;
1203         struct ldlm_lock *lock = NULL;
1204         void *cookie = NULL;
1205         int rc = 0;
1206         ENTRY;
1207
1208         LDLM_DEBUG_NOLOCK("server-side enqueue handler START");
1209
1210         ldlm_request_cancel(req, dlm_req, LDLM_ENQUEUE_CANCEL_OFF);
1211         flags = ldlm_flags_from_wire(dlm_req->lock_flags);
1212
1213         LASSERT(req->rq_export);
1214
1215         if (ptlrpc_req2svc(req)->srv_stats != NULL)
1216                 ldlm_svc_get_eopc(dlm_req, ptlrpc_req2svc(req)->srv_stats);
1217
1218         if (req->rq_export && req->rq_export->exp_nid_stats &&
1219             req->rq_export->exp_nid_stats->nid_ldlm_stats)
1220                 lprocfs_counter_incr(req->rq_export->exp_nid_stats->nid_ldlm_stats,
1221                                      LDLM_ENQUEUE - LDLM_FIRST_OPC);
1222
1223         if (unlikely(dlm_req->lock_desc.l_resource.lr_type < LDLM_MIN_TYPE ||
1224                      dlm_req->lock_desc.l_resource.lr_type >= LDLM_MAX_TYPE)) {
1225                 DEBUG_REQ(D_ERROR, req, "invalid lock request type %d",
1226                           dlm_req->lock_desc.l_resource.lr_type);
1227                 GOTO(out, rc = -EFAULT);
1228         }
1229
1230         if (unlikely(dlm_req->lock_desc.l_req_mode <= LCK_MINMODE ||
1231                      dlm_req->lock_desc.l_req_mode >= LCK_MAXMODE ||
1232                      dlm_req->lock_desc.l_req_mode &
1233                      (dlm_req->lock_desc.l_req_mode-1))) {
1234                 DEBUG_REQ(D_ERROR, req, "invalid lock request mode %d",
1235                           dlm_req->lock_desc.l_req_mode);
1236                 GOTO(out, rc = -EFAULT);
1237         }
1238
1239         if (exp_connect_flags(req->rq_export) & OBD_CONNECT_IBITS) {
1240                 if (unlikely(dlm_req->lock_desc.l_resource.lr_type ==
1241                              LDLM_PLAIN)) {
1242                         DEBUG_REQ(D_ERROR, req,
1243                                   "PLAIN lock request from IBITS client?");
1244                         GOTO(out, rc = -EPROTO);
1245                 }
1246         } else if (unlikely(dlm_req->lock_desc.l_resource.lr_type ==
1247                             LDLM_IBITS)) {
1248                 DEBUG_REQ(D_ERROR, req,
1249                           "IBITS lock request from unaware client?");
1250                 GOTO(out, rc = -EPROTO);
1251         }
1252
1253 #if 0
1254         /* FIXME this makes it impossible to use LDLM_PLAIN locks -- check
1255            against server's _CONNECT_SUPPORTED flags? (I don't want to use
1256            ibits for mgc/mgs) */
1257
1258         /* INODEBITS_INTEROP: Perform conversion from plain lock to
1259          * inodebits lock if client does not support them. */
1260         if (!(exp_connect_flags(req->rq_export) & OBD_CONNECT_IBITS) &&
1261             (dlm_req->lock_desc.l_resource.lr_type == LDLM_PLAIN)) {
1262                 dlm_req->lock_desc.l_resource.lr_type = LDLM_IBITS;
1263                 dlm_req->lock_desc.l_policy_data.l_inodebits.bits =
1264                         MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE;
1265                 if (dlm_req->lock_desc.l_req_mode == LCK_PR)
1266                         dlm_req->lock_desc.l_req_mode = LCK_CR;
1267         }
1268 #endif
1269
1270         if (unlikely(flags & LDLM_FL_REPLAY)) {
1271                 /* Find an existing lock in the per-export lock hash */
1272                 /* In the function below, .hs_keycmp resolves to
1273                  * ldlm_export_lock_keycmp() */
1274                 /* coverity[overrun-buffer-val] */
1275                 lock = cfs_hash_lookup(req->rq_export->exp_lock_hash,
1276                                        (void *)&dlm_req->lock_handle[0]);
1277                 if (lock != NULL) {
1278                         DEBUG_REQ(D_DLMTRACE, req, "found existing lock cookie "
1279                                   LPX64, lock->l_handle.h_cookie);
1280                         GOTO(existing_lock, rc = 0);
1281                 }
1282         }
1283
1284         /* The lock's callback data might be set in the policy function */
1285         lock = ldlm_lock_create(ns, &dlm_req->lock_desc.l_resource.lr_name,
1286                                 dlm_req->lock_desc.l_resource.lr_type,
1287                                 dlm_req->lock_desc.l_req_mode,
1288                                 cbs, NULL, 0, LVB_T_NONE);
1289         if (!lock)
1290                 GOTO(out, rc = -ENOMEM);
1291
1292         lock->l_last_activity = cfs_time_current_sec();
1293         lock->l_remote_handle = dlm_req->lock_handle[0];
1294         LDLM_DEBUG(lock, "server-side enqueue handler, new lock created");
1295
1296         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_ENQUEUE_BLOCKED, obd_timeout * 2);
1297         /* Don't enqueue a lock onto the export if it is been disonnected
1298          * due to eviction (bug 3822) or server umount (bug 24324).
1299          * Cancel it now instead. */
1300         if (req->rq_export->exp_disconnected) {
1301                 LDLM_ERROR(lock, "lock on disconnected export %p",
1302                            req->rq_export);
1303                 GOTO(out, rc = -ENOTCONN);
1304         }
1305
1306         lock->l_export = class_export_lock_get(req->rq_export, lock);
1307         if (lock->l_export->exp_lock_hash)
1308                 cfs_hash_add(lock->l_export->exp_lock_hash,
1309                              &lock->l_remote_handle,
1310                              &lock->l_exp_hash);
1311
1312 existing_lock:
1313
1314         if (flags & LDLM_FL_HAS_INTENT) {
1315                 /* In this case, the reply buffer is allocated deep in
1316                  * local_lock_enqueue by the policy function. */
1317                 cookie = req;
1318         } else {
1319                 /* based on the assumption that lvb size never changes during
1320                  * resource life time otherwise it need resource->lr_lock's
1321                  * protection */
1322                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB,
1323                                      RCL_SERVER, ldlm_lvbo_size(lock));
1324
1325                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR))
1326                         GOTO(out, rc = -ENOMEM);
1327
1328                 rc = req_capsule_server_pack(&req->rq_pill);
1329                 if (rc)
1330                         GOTO(out, rc);
1331         }
1332
1333         if (dlm_req->lock_desc.l_resource.lr_type != LDLM_PLAIN)
1334                 ldlm_convert_policy_to_local(req->rq_export,
1335                                           dlm_req->lock_desc.l_resource.lr_type,
1336                                           &dlm_req->lock_desc.l_policy_data,
1337                                           &lock->l_policy_data);
1338         if (dlm_req->lock_desc.l_resource.lr_type == LDLM_EXTENT)
1339                 lock->l_req_extent = lock->l_policy_data.l_extent;
1340
1341         err = ldlm_lock_enqueue(ns, &lock, cookie, &flags);
1342         if (err)
1343                 GOTO(out, err);
1344
1345         dlm_rep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1346         dlm_rep->lock_flags = ldlm_flags_to_wire(flags);
1347
1348         ldlm_lock2desc(lock, &dlm_rep->lock_desc);
1349         ldlm_lock2handle(lock, &dlm_rep->lock_handle);
1350
1351         /* We never send a blocking AST until the lock is granted, but
1352          * we can tell it right now */
1353         lock_res_and_lock(lock);
1354
1355         /* Now take into account flags to be inherited from original lock
1356            request both in reply to client and in our own lock flags. */
1357         dlm_rep->lock_flags |= dlm_req->lock_flags & LDLM_INHERIT_FLAGS;
1358         lock->l_flags |= ldlm_flags_from_wire(dlm_req->lock_flags &
1359                                               LDLM_INHERIT_FLAGS);
1360
1361         /* Don't move a pending lock onto the export if it has already been
1362          * disconnected due to eviction (bug 5683) or server umount (bug 24324).
1363          * Cancel it now instead. */
1364         if (unlikely(req->rq_export->exp_disconnected ||
1365                      OBD_FAIL_CHECK(OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT))) {
1366                 LDLM_ERROR(lock, "lock on destroyed export %p", req->rq_export);
1367                 rc = -ENOTCONN;
1368         } else if (lock->l_flags & LDLM_FL_AST_SENT) {
1369                 dlm_rep->lock_flags |= ldlm_flags_to_wire(LDLM_FL_AST_SENT);
1370                 if (lock->l_granted_mode == lock->l_req_mode) {
1371                         /*
1372                          * Only cancel lock if it was granted, because it would
1373                          * be destroyed immediately and would never be granted
1374                          * in the future, causing timeouts on client.  Not
1375                          * granted lock will be cancelled immediately after
1376                          * sending completion AST.
1377                          */
1378                         if (dlm_rep->lock_flags & LDLM_FL_CANCEL_ON_BLOCK) {
1379                                 unlock_res_and_lock(lock);
1380                                 ldlm_lock_cancel(lock);
1381                                 lock_res_and_lock(lock);
1382                         } else
1383                                 ldlm_add_waiting_lock(lock);
1384                 }
1385         }
1386         /* Make sure we never ever grant usual metadata locks to liblustre
1387            clients */
1388         if ((dlm_req->lock_desc.l_resource.lr_type == LDLM_PLAIN ||
1389             dlm_req->lock_desc.l_resource.lr_type == LDLM_IBITS) &&
1390              req->rq_export->exp_libclient) {
1391                 if (unlikely(!(lock->l_flags & LDLM_FL_CANCEL_ON_BLOCK) ||
1392                              !(dlm_rep->lock_flags & LDLM_FL_CANCEL_ON_BLOCK))){
1393                         CERROR("Granting sync lock to libclient. "
1394                                "req fl %d, rep fl %d, lock fl "LPX64"\n",
1395                                dlm_req->lock_flags, dlm_rep->lock_flags,
1396                                lock->l_flags);
1397                         LDLM_ERROR(lock, "sync lock");
1398                         if (dlm_req->lock_flags & LDLM_FL_HAS_INTENT) {
1399                                 struct ldlm_intent *it;
1400
1401                                 it = req_capsule_client_get(&req->rq_pill,
1402                                                             &RMF_LDLM_INTENT);
1403                                 if (it != NULL) {
1404                                         CERROR("This is intent %s ("LPU64")\n",
1405                                                ldlm_it2str(it->opc), it->opc);
1406                                 }
1407                         }
1408                 }
1409         }
1410
1411         unlock_res_and_lock(lock);
1412
1413         EXIT;
1414  out:
1415         req->rq_status = rc ?: err; /* return either error - bug 11190 */
1416         if (!req->rq_packed_final) {
1417                 err = lustre_pack_reply(req, 1, NULL, NULL);
1418                 if (rc == 0)
1419                         rc = err;
1420         }
1421
1422         /* The LOCK_CHANGED code in ldlm_lock_enqueue depends on this
1423          * ldlm_reprocess_all.  If this moves, revisit that code. -phil */
1424         if (lock) {
1425                 LDLM_DEBUG(lock, "server-side enqueue handler, sending reply"
1426                            "(err=%d, rc=%d)", err, rc);
1427
1428                 if (rc == 0) {
1429                         if (req_capsule_has_field(&req->rq_pill, &RMF_DLM_LVB,
1430                                                   RCL_SERVER) &&
1431                             ldlm_lvbo_size(lock) > 0) {
1432                                 void *buf;
1433                                 int buflen;
1434
1435                                 buf = req_capsule_server_get(&req->rq_pill,
1436                                                              &RMF_DLM_LVB);
1437                                 LASSERTF(buf != NULL, "req %p, lock %p\n",
1438                                          req, lock);
1439                                 buflen = req_capsule_get_size(&req->rq_pill,
1440                                                 &RMF_DLM_LVB, RCL_SERVER);
1441                                 buflen = ldlm_lvbo_fill(lock, buf, buflen);
1442                                 if (buflen >= 0)
1443                                         req_capsule_shrink(&req->rq_pill,
1444                                                            &RMF_DLM_LVB,
1445                                                            buflen, RCL_SERVER);
1446                                 else
1447                                         rc = buflen;
1448                         }
1449                 } else {
1450                         lock_res_and_lock(lock);
1451                         ldlm_resource_unlink_lock(lock);
1452                         ldlm_lock_destroy_nolock(lock);
1453                         unlock_res_and_lock(lock);
1454                 }
1455
1456                 if (!err && dlm_req->lock_desc.l_resource.lr_type != LDLM_FLOCK)
1457                         ldlm_reprocess_all(lock->l_resource);
1458
1459                 LDLM_LOCK_RELEASE(lock);
1460         }
1461
1462         LDLM_DEBUG_NOLOCK("server-side enqueue handler END (lock %p, rc %d)",
1463                           lock, rc);
1464
1465         return rc;
1466 }
1467 EXPORT_SYMBOL(ldlm_handle_enqueue0);
1468
1469 /**
1470  * Old-style LDLM main entry point for server code enqueue.
1471  */
1472 int ldlm_handle_enqueue(struct ptlrpc_request *req,
1473                         ldlm_completion_callback completion_callback,
1474                         ldlm_blocking_callback blocking_callback,
1475                         ldlm_glimpse_callback glimpse_callback)
1476 {
1477         struct ldlm_request *dlm_req;
1478         struct ldlm_callback_suite cbs = {
1479                 .lcs_completion = completion_callback,
1480                 .lcs_blocking   = blocking_callback,
1481                 .lcs_glimpse    = glimpse_callback
1482         };
1483         int rc;
1484
1485         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1486         if (dlm_req != NULL) {
1487                 rc = ldlm_handle_enqueue0(req->rq_export->exp_obd->obd_namespace,
1488                                           req, dlm_req, &cbs);
1489         } else {
1490                 rc = -EFAULT;
1491         }
1492         return rc;
1493 }
1494 EXPORT_SYMBOL(ldlm_handle_enqueue);
1495
1496 /**
1497  * Main LDLM entry point for server code to process lock conversion requests.
1498  */
1499 int ldlm_handle_convert0(struct ptlrpc_request *req,
1500                          const struct ldlm_request *dlm_req)
1501 {
1502         struct ldlm_reply *dlm_rep;
1503         struct ldlm_lock *lock;
1504         int rc;
1505         ENTRY;
1506
1507         if (req->rq_export && req->rq_export->exp_nid_stats &&
1508             req->rq_export->exp_nid_stats->nid_ldlm_stats)
1509                 lprocfs_counter_incr(req->rq_export->exp_nid_stats->nid_ldlm_stats,
1510                                      LDLM_CONVERT - LDLM_FIRST_OPC);
1511
1512         rc = req_capsule_server_pack(&req->rq_pill);
1513         if (rc)
1514                 RETURN(rc);
1515
1516         dlm_rep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1517         dlm_rep->lock_flags = dlm_req->lock_flags;
1518
1519         lock = ldlm_handle2lock(&dlm_req->lock_handle[0]);
1520         if (!lock) {
1521                 req->rq_status = EINVAL;
1522         } else {
1523                 void *res = NULL;
1524
1525                 LDLM_DEBUG(lock, "server-side convert handler START");
1526
1527                 lock->l_last_activity = cfs_time_current_sec();
1528                 res = ldlm_lock_convert(lock, dlm_req->lock_desc.l_req_mode,
1529                                         &dlm_rep->lock_flags);
1530                 if (res) {
1531                         if (ldlm_del_waiting_lock(lock))
1532                                 LDLM_DEBUG(lock, "converted waiting lock");
1533                         req->rq_status = 0;
1534                 } else {
1535                         req->rq_status = EDEADLOCK;
1536                 }
1537         }
1538
1539         if (lock) {
1540                 if (!req->rq_status)
1541                         ldlm_reprocess_all(lock->l_resource);
1542                 LDLM_DEBUG(lock, "server-side convert handler END");
1543                 LDLM_LOCK_PUT(lock);
1544         } else
1545                 LDLM_DEBUG_NOLOCK("server-side convert handler END");
1546
1547         RETURN(0);
1548 }
1549 EXPORT_SYMBOL(ldlm_handle_convert0);
1550
1551 /**
1552  * Old-style main LDLM entry point for server code to process lock conversion
1553  * requests.
1554  */
1555 int ldlm_handle_convert(struct ptlrpc_request *req)
1556 {
1557         int rc;
1558         struct ldlm_request *dlm_req;
1559
1560         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1561         if (dlm_req != NULL) {
1562                 rc = ldlm_handle_convert0(req, dlm_req);
1563         } else {
1564                 CERROR ("Can't unpack dlm_req\n");
1565                 rc = -EFAULT;
1566         }
1567         return rc;
1568 }
1569 EXPORT_SYMBOL(ldlm_handle_convert);
1570
1571 /**
1572  * Cancel all the locks whose handles are packed into ldlm_request
1573  *
1574  * Called by server code expecting such combined cancel activity
1575  * requests.
1576  */
1577 int ldlm_request_cancel(struct ptlrpc_request *req,
1578                         const struct ldlm_request *dlm_req, int first)
1579 {
1580         struct ldlm_resource *res, *pres = NULL;
1581         struct ldlm_lock *lock;
1582         int i, count, done = 0;
1583         ENTRY;
1584
1585         count = dlm_req->lock_count ? dlm_req->lock_count : 1;
1586         if (first >= count)
1587                 RETURN(0);
1588
1589         if (count == 1 && dlm_req->lock_handle[0].cookie == 0)
1590                 RETURN(0);
1591
1592         /* There is no lock on the server at the replay time,
1593          * skip lock cancelling to make replay tests to pass. */
1594         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1595                 RETURN(0);
1596
1597         LDLM_DEBUG_NOLOCK("server-side cancel handler START: %d locks, "
1598                           "starting at %d", count, first);
1599
1600         for (i = first; i < count; i++) {
1601                 lock = ldlm_handle2lock(&dlm_req->lock_handle[i]);
1602                 if (!lock) {
1603                         LDLM_DEBUG_NOLOCK("server-side cancel handler stale "
1604                                           "lock (cookie "LPU64")",
1605                                           dlm_req->lock_handle[i].cookie);
1606                         continue;
1607                 }
1608
1609                 res = lock->l_resource;
1610                 done++;
1611
1612                 /* This code is an optimization to only attempt lock
1613                  * granting on the resource (that could be CPU-expensive)
1614                  * after we are done cancelling lock in that resource. */
1615                 if (res != pres) {
1616                         if (pres != NULL) {
1617                                 ldlm_reprocess_all(pres);
1618                                 LDLM_RESOURCE_DELREF(pres);
1619                                 ldlm_resource_putref(pres);
1620                         }
1621                         if (res != NULL) {
1622                                 ldlm_resource_getref(res);
1623                                 LDLM_RESOURCE_ADDREF(res);
1624                                 ldlm_res_lvbo_update(res, NULL, 1);
1625                         }
1626                         pres = res;
1627                 }
1628                 ldlm_lock_cancel(lock);
1629                 LDLM_LOCK_PUT(lock);
1630         }
1631         if (pres != NULL) {
1632                 ldlm_reprocess_all(pres);
1633                 LDLM_RESOURCE_DELREF(pres);
1634                 ldlm_resource_putref(pres);
1635         }
1636         LDLM_DEBUG_NOLOCK("server-side cancel handler END");
1637         RETURN(done);
1638 }
1639 EXPORT_SYMBOL(ldlm_request_cancel);
1640
1641 /**
1642  * Main LDLM entry point for server code to cancel locks.
1643  *
1644  * Typically gets called from service handler on LDLM_CANCEL opc.
1645  */
1646 int ldlm_handle_cancel(struct ptlrpc_request *req)
1647 {
1648         struct ldlm_request *dlm_req;
1649         int rc;
1650         ENTRY;
1651
1652         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1653         if (dlm_req == NULL) {
1654                 CDEBUG(D_INFO, "bad request buffer for cancel\n");
1655                 RETURN(-EFAULT);
1656         }
1657
1658         if (req->rq_export && req->rq_export->exp_nid_stats &&
1659             req->rq_export->exp_nid_stats->nid_ldlm_stats)
1660                 lprocfs_counter_incr(req->rq_export->exp_nid_stats->nid_ldlm_stats,
1661                                      LDLM_CANCEL - LDLM_FIRST_OPC);
1662
1663         rc = req_capsule_server_pack(&req->rq_pill);
1664         if (rc)
1665                 RETURN(rc);
1666
1667         if (!ldlm_request_cancel(req, dlm_req, 0))
1668                 req->rq_status = ESTALE;
1669
1670         RETURN(ptlrpc_reply(req));
1671 }
1672 EXPORT_SYMBOL(ldlm_handle_cancel);
1673 #endif /* HAVE_SERVER_SUPPORT */
1674
1675 /**
1676  * Callback handler for receiving incoming blocking ASTs.
1677  *
1678  * This can only happen on client side.
1679  */
1680 void ldlm_handle_bl_callback(struct ldlm_namespace *ns,
1681                              struct ldlm_lock_desc *ld, struct ldlm_lock *lock)
1682 {
1683         int do_ast;
1684         ENTRY;
1685
1686         LDLM_DEBUG(lock, "client blocking AST callback handler");
1687
1688         lock_res_and_lock(lock);
1689         lock->l_flags |= LDLM_FL_CBPENDING;
1690
1691         if (lock->l_flags & LDLM_FL_CANCEL_ON_BLOCK)
1692                 lock->l_flags |= LDLM_FL_CANCEL;
1693
1694         do_ast = (!lock->l_readers && !lock->l_writers);
1695         unlock_res_and_lock(lock);
1696
1697         if (do_ast) {
1698                 CDEBUG(D_DLMTRACE, "Lock %p already unused, calling callback (%p)\n",
1699                        lock, lock->l_blocking_ast);
1700                 if (lock->l_blocking_ast != NULL)
1701                         lock->l_blocking_ast(lock, ld, lock->l_ast_data,
1702                                              LDLM_CB_BLOCKING);
1703         } else {
1704                 CDEBUG(D_DLMTRACE, "Lock %p is referenced, will be cancelled later\n",
1705                        lock);
1706         }
1707
1708         LDLM_DEBUG(lock, "client blocking callback handler END");
1709         LDLM_LOCK_RELEASE(lock);
1710         EXIT;
1711 }
1712
1713 /**
1714  * Callback handler for receiving incoming completion ASTs.
1715  *
1716  * This only can happen on client side.
1717  */
1718 static void ldlm_handle_cp_callback(struct ptlrpc_request *req,
1719                                     struct ldlm_namespace *ns,
1720                                     struct ldlm_request *dlm_req,
1721                                     struct ldlm_lock *lock)
1722 {
1723         int lvb_len;
1724         CFS_LIST_HEAD(ast_list);
1725         int rc = 0;
1726         ENTRY;
1727
1728         LDLM_DEBUG(lock, "client completion callback handler START");
1729
1730         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_BL_CB_RACE)) {
1731                 int to = cfs_time_seconds(1);
1732                 while (to > 0) {
1733                         cfs_schedule_timeout_and_set_state(
1734                                 CFS_TASK_INTERRUPTIBLE, to);
1735                         if (lock->l_granted_mode == lock->l_req_mode ||
1736                             lock->l_destroyed)
1737                                 break;
1738                 }
1739         }
1740
1741         lvb_len = req_capsule_get_size(&req->rq_pill, &RMF_DLM_LVB, RCL_CLIENT);
1742         if (lvb_len < 0) {
1743                 LDLM_ERROR(lock, "Fail to get lvb_len, rc = %d", lvb_len);
1744                 GOTO(out, rc = lvb_len);
1745         } else if (lvb_len > 0) {
1746                 if (lock->l_lvb_len > 0) {
1747                         /* for extent lock, lvb contains ost_lvb{}. */
1748                         LASSERT(lock->l_lvb_data != NULL);
1749
1750                         if (unlikely(lock->l_lvb_len < lvb_len)) {
1751                                 LDLM_ERROR(lock, "Replied LVB is larger than "
1752                                            "expectation, expected = %d, "
1753                                            "replied = %d",
1754                                            lock->l_lvb_len, lvb_len);
1755                                 GOTO(out, rc = -EINVAL);
1756                         }
1757                 } else if (ldlm_has_layout(lock)) { /* for layout lock, lvb has
1758                                                      * variable length */
1759                         void *lvb_data;
1760
1761                         OBD_ALLOC(lvb_data, lvb_len);
1762                         if (lvb_data == NULL) {
1763                                 LDLM_ERROR(lock, "No memory: %d.\n", lvb_len);
1764                                 GOTO(out, rc = -ENOMEM);
1765                         }
1766
1767                         lock_res_and_lock(lock);
1768                         LASSERT(lock->l_lvb_data == NULL);
1769                         lock->l_lvb_data = lvb_data;
1770                         lock->l_lvb_len = lvb_len;
1771                         unlock_res_and_lock(lock);
1772                 }
1773         }
1774
1775         lock_res_and_lock(lock);
1776         if (lock->l_destroyed ||
1777             lock->l_granted_mode == lock->l_req_mode) {
1778                 /* bug 11300: the lock has already been granted */
1779                 unlock_res_and_lock(lock);
1780                 LDLM_DEBUG(lock, "Double grant race happened");
1781                 GOTO(out, rc = 0);
1782         }
1783
1784         /* If we receive the completion AST before the actual enqueue returned,
1785          * then we might need to switch lock modes, resources, or extents. */
1786         if (dlm_req->lock_desc.l_granted_mode != lock->l_req_mode) {
1787                 lock->l_req_mode = dlm_req->lock_desc.l_granted_mode;
1788                 LDLM_DEBUG(lock, "completion AST, new lock mode");
1789         }
1790
1791         if (lock->l_resource->lr_type != LDLM_PLAIN) {
1792                 ldlm_convert_policy_to_local(req->rq_export,
1793                                           dlm_req->lock_desc.l_resource.lr_type,
1794                                           &dlm_req->lock_desc.l_policy_data,
1795                                           &lock->l_policy_data);
1796                 LDLM_DEBUG(lock, "completion AST, new policy data");
1797         }
1798
1799         ldlm_resource_unlink_lock(lock);
1800         if (memcmp(&dlm_req->lock_desc.l_resource.lr_name,
1801                    &lock->l_resource->lr_name,
1802                    sizeof(lock->l_resource->lr_name)) != 0) {
1803                 unlock_res_and_lock(lock);
1804                 rc = ldlm_lock_change_resource(ns, lock,
1805                                 &dlm_req->lock_desc.l_resource.lr_name);
1806                 if (rc < 0) {
1807                         LDLM_ERROR(lock, "Failed to allocate resource");
1808                         GOTO(out, rc);
1809                 }
1810                 LDLM_DEBUG(lock, "completion AST, new resource");
1811                 CERROR("change resource!\n");
1812                 lock_res_and_lock(lock);
1813         }
1814
1815         if (dlm_req->lock_flags & LDLM_FL_AST_SENT) {
1816                 /* BL_AST locks are not needed in LRU.
1817                  * Let ldlm_cancel_lru() be fast. */
1818                 ldlm_lock_remove_from_lru(lock);
1819                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_BL_AST;
1820                 LDLM_DEBUG(lock, "completion AST includes blocking AST");
1821         }
1822
1823         if (lock->l_lvb_len > 0) {
1824                 rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_CLIENT,
1825                                    lock->l_lvb_data, lvb_len);
1826                 if (rc < 0) {
1827                         unlock_res_and_lock(lock);
1828                         GOTO(out, rc);
1829                 }
1830         }
1831
1832         ldlm_grant_lock(lock, &ast_list);
1833         unlock_res_and_lock(lock);
1834
1835         LDLM_DEBUG(lock, "callback handler finished, about to run_ast_work");
1836
1837         /* Let Enqueue to call osc_lock_upcall() and initialize
1838          * l_ast_data */
1839         OBD_FAIL_TIMEOUT(OBD_FAIL_OSC_CP_ENQ_RACE, 2);
1840
1841         ldlm_run_ast_work(ns, &ast_list, LDLM_WORK_CP_AST);
1842
1843         LDLM_DEBUG_NOLOCK("client completion callback handler END (lock %p)",
1844                           lock);
1845         GOTO(out, rc);
1846
1847 out:
1848         if (rc < 0) {
1849                 lock_res_and_lock(lock);
1850                 lock->l_flags |= LDLM_FL_FAILED;
1851                 unlock_res_and_lock(lock);
1852                 cfs_waitq_signal(&lock->l_waitq);
1853         }
1854         LDLM_LOCK_RELEASE(lock);
1855 }
1856
1857 /**
1858  * Callback handler for receiving incoming glimpse ASTs.
1859  *
1860  * This only can happen on client side.  After handling the glimpse AST
1861  * we also consider dropping the lock here if it is unused locally for a
1862  * long time.
1863  */
1864 static void ldlm_handle_gl_callback(struct ptlrpc_request *req,
1865                                     struct ldlm_namespace *ns,
1866                                     struct ldlm_request *dlm_req,
1867                                     struct ldlm_lock *lock)
1868 {
1869         int rc = -ENOSYS;
1870         ENTRY;
1871
1872         LDLM_DEBUG(lock, "client glimpse AST callback handler");
1873
1874         if (lock->l_glimpse_ast != NULL)
1875                 rc = lock->l_glimpse_ast(lock, req);
1876
1877         if (req->rq_repmsg != NULL) {
1878                 ptlrpc_reply(req);
1879         } else {
1880                 req->rq_status = rc;
1881                 ptlrpc_error(req);
1882         }
1883
1884         lock_res_and_lock(lock);
1885         if (lock->l_granted_mode == LCK_PW &&
1886             !lock->l_readers && !lock->l_writers &&
1887             cfs_time_after(cfs_time_current(),
1888                            cfs_time_add(lock->l_last_used,
1889                                         cfs_time_seconds(10)))) {
1890                 unlock_res_and_lock(lock);
1891                 if (ldlm_bl_to_thread_lock(ns, NULL, lock))
1892                         ldlm_handle_bl_callback(ns, NULL, lock);
1893
1894                 EXIT;
1895                 return;
1896         }
1897         unlock_res_and_lock(lock);
1898         LDLM_LOCK_RELEASE(lock);
1899         EXIT;
1900 }
1901
1902 static int ldlm_callback_reply(struct ptlrpc_request *req, int rc)
1903 {
1904         if (req->rq_no_reply)
1905                 return 0;
1906
1907         req->rq_status = rc;
1908         if (!req->rq_packed_final) {
1909                 rc = lustre_pack_reply(req, 1, NULL, NULL);
1910                 if (rc)
1911                         return rc;
1912         }
1913         return ptlrpc_reply(req);
1914 }
1915
1916 #ifdef __KERNEL__
1917 static int __ldlm_bl_to_thread(struct ldlm_bl_work_item *blwi, int mode)
1918 {
1919         struct ldlm_bl_pool *blp = ldlm_state->ldlm_bl_pool;
1920         ENTRY;
1921
1922         spin_lock(&blp->blp_lock);
1923         if (blwi->blwi_lock &&
1924             blwi->blwi_lock->l_flags & LDLM_FL_DISCARD_DATA) {
1925                 /* add LDLM_FL_DISCARD_DATA requests to the priority list */
1926                 cfs_list_add_tail(&blwi->blwi_entry, &blp->blp_prio_list);
1927         } else {
1928                 /* other blocking callbacks are added to the regular list */
1929                 cfs_list_add_tail(&blwi->blwi_entry, &blp->blp_list);
1930         }
1931         spin_unlock(&blp->blp_lock);
1932
1933         cfs_waitq_signal(&blp->blp_waitq);
1934
1935         /* can not use blwi->blwi_mode as blwi could be already freed in
1936            LDLM_ASYNC mode */
1937         if (mode == LDLM_SYNC)
1938                 wait_for_completion(&blwi->blwi_comp);
1939
1940         RETURN(0);
1941 }
1942
1943 static inline void init_blwi(struct ldlm_bl_work_item *blwi,
1944                              struct ldlm_namespace *ns,
1945                              struct ldlm_lock_desc *ld,
1946                              cfs_list_t *cancels, int count,
1947                              struct ldlm_lock *lock,
1948                              int mode)
1949 {
1950         init_completion(&blwi->blwi_comp);
1951         CFS_INIT_LIST_HEAD(&blwi->blwi_head);
1952
1953         if (cfs_memory_pressure_get())
1954                 blwi->blwi_mem_pressure = 1;
1955
1956         blwi->blwi_ns = ns;
1957         blwi->blwi_mode = mode;
1958         if (ld != NULL)
1959                 blwi->blwi_ld = *ld;
1960         if (count) {
1961                 cfs_list_add(&blwi->blwi_head, cancels);
1962                 cfs_list_del_init(cancels);
1963                 blwi->blwi_count = count;
1964         } else {
1965                 blwi->blwi_lock = lock;
1966         }
1967 }
1968
1969 /**
1970  * Queues a list of locks \a cancels containing \a count locks
1971  * for later processing by a blocking thread.  If \a count is zero,
1972  * then the lock referenced as \a lock is queued instead.
1973  *
1974  * The blocking thread would then call ->l_blocking_ast callback in the lock.
1975  * If list addition fails an error is returned and caller is supposed to
1976  * call ->l_blocking_ast itself.
1977  */
1978 static int ldlm_bl_to_thread(struct ldlm_namespace *ns,
1979                              struct ldlm_lock_desc *ld, struct ldlm_lock *lock,
1980                              cfs_list_t *cancels, int count, int mode)
1981 {
1982         ENTRY;
1983
1984         if (cancels && count == 0)
1985                 RETURN(0);
1986
1987         if (mode == LDLM_SYNC) {
1988                 /* if it is synchronous call do minimum mem alloc, as it could
1989                  * be triggered from kernel shrinker
1990                  */
1991                 struct ldlm_bl_work_item blwi;
1992                 memset(&blwi, 0, sizeof(blwi));
1993                 init_blwi(&blwi, ns, ld, cancels, count, lock, LDLM_SYNC);
1994                 RETURN(__ldlm_bl_to_thread(&blwi, LDLM_SYNC));
1995         } else {
1996                 struct ldlm_bl_work_item *blwi;
1997                 OBD_ALLOC(blwi, sizeof(*blwi));
1998                 if (blwi == NULL)
1999                         RETURN(-ENOMEM);
2000                 init_blwi(blwi, ns, ld, cancels, count, lock, LDLM_ASYNC);
2001
2002                 RETURN(__ldlm_bl_to_thread(blwi, LDLM_ASYNC));
2003         }
2004 }
2005
2006 #endif
2007
2008 int ldlm_bl_to_thread_lock(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
2009                            struct ldlm_lock *lock)
2010 {
2011 #ifdef __KERNEL__
2012         RETURN(ldlm_bl_to_thread(ns, ld, lock, NULL, 0, LDLM_ASYNC));
2013 #else
2014         RETURN(-ENOSYS);
2015 #endif
2016 }
2017
2018 int ldlm_bl_to_thread_list(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
2019                            cfs_list_t *cancels, int count, int mode)
2020 {
2021 #ifdef __KERNEL__
2022         RETURN(ldlm_bl_to_thread(ns, ld, NULL, cancels, count, mode));
2023 #else
2024         RETURN(-ENOSYS);
2025 #endif
2026 }
2027
2028 /* Setinfo coming from Server (eg MDT) to Client (eg MDC)! */
2029 static int ldlm_handle_setinfo(struct ptlrpc_request *req)
2030 {
2031         struct obd_device *obd = req->rq_export->exp_obd;
2032         char *key;
2033         void *val;
2034         int keylen, vallen;
2035         int rc = -ENOSYS;
2036         ENTRY;
2037
2038         DEBUG_REQ(D_HSM, req, "%s: handle setinfo\n", obd->obd_name);
2039
2040         req_capsule_set(&req->rq_pill, &RQF_OBD_SET_INFO);
2041
2042         key = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
2043         if (key == NULL) {
2044                 DEBUG_REQ(D_IOCTL, req, "no set_info key");
2045                 RETURN(-EFAULT);
2046         }
2047         keylen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_KEY,
2048                                       RCL_CLIENT);
2049         val = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
2050         if (val == NULL) {
2051                 DEBUG_REQ(D_IOCTL, req, "no set_info val");
2052                 RETURN(-EFAULT);
2053         }
2054         vallen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_VAL,
2055                                       RCL_CLIENT);
2056
2057         /* We are responsible for swabbing contents of val */
2058
2059         if (KEY_IS(KEY_HSM_COPYTOOL_SEND))
2060                 /* Pass it on to mdc (the "export" in this case) */
2061                 rc = obd_set_info_async(req->rq_svc_thread->t_env,
2062                                         req->rq_export,
2063                                         sizeof(KEY_HSM_COPYTOOL_SEND),
2064                                         KEY_HSM_COPYTOOL_SEND,
2065                                         vallen, val, NULL);
2066         else
2067                 DEBUG_REQ(D_WARNING, req, "ignoring unknown key %s", key);
2068
2069         return rc;
2070 }
2071
2072 static inline void ldlm_callback_errmsg(struct ptlrpc_request *req,
2073                                         const char *msg, int rc,
2074                                         struct lustre_handle *handle)
2075 {
2076         DEBUG_REQ((req->rq_no_reply || rc) ? D_WARNING : D_DLMTRACE, req,
2077                   "%s: [nid %s] [rc %d] [lock "LPX64"]",
2078                   msg, libcfs_id2str(req->rq_peer), rc,
2079                   handle ? handle->cookie : 0);
2080         if (req->rq_no_reply)
2081                 CWARN("No reply was sent, maybe cause bug 21636.\n");
2082         else if (rc)
2083                 CWARN("Send reply failed, maybe cause bug 21636.\n");
2084 }
2085
2086 static int ldlm_handle_qc_callback(struct ptlrpc_request *req)
2087 {
2088         struct obd_quotactl *oqctl;
2089         struct client_obd *cli = &req->rq_export->exp_obd->u.cli;
2090
2091         oqctl = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
2092         if (oqctl == NULL) {
2093                 CERROR("Can't unpack obd_quotactl\n");
2094                 RETURN(-EPROTO);
2095         }
2096
2097         cli->cl_qchk_stat = oqctl->qc_stat;
2098         return 0;
2099 }
2100
2101 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
2102 static int ldlm_callback_handler(struct ptlrpc_request *req)
2103 {
2104         struct ldlm_namespace *ns;
2105         struct ldlm_request *dlm_req;
2106         struct ldlm_lock *lock;
2107         int rc;
2108         ENTRY;
2109
2110         /* Requests arrive in sender's byte order.  The ptlrpc service
2111          * handler has already checked and, if necessary, byte-swapped the
2112          * incoming request message body, but I am responsible for the
2113          * message buffers. */
2114
2115         /* do nothing for sec context finalize */
2116         if (lustre_msg_get_opc(req->rq_reqmsg) == SEC_CTX_FINI)
2117                 RETURN(0);
2118
2119         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2120
2121         if (req->rq_export == NULL) {
2122                 rc = ldlm_callback_reply(req, -ENOTCONN);
2123                 ldlm_callback_errmsg(req, "Operate on unconnected server",
2124                                      rc, NULL);
2125                 RETURN(0);
2126         }
2127
2128         LASSERT(req->rq_export != NULL);
2129         LASSERT(req->rq_export->exp_obd != NULL);
2130
2131         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2132         case LDLM_BL_CALLBACK:
2133                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET))
2134                         RETURN(0);
2135                 break;
2136         case LDLM_CP_CALLBACK:
2137                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CP_CALLBACK_NET))
2138                         RETURN(0);
2139                 break;
2140         case LDLM_GL_CALLBACK:
2141                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_GL_CALLBACK_NET))
2142                         RETURN(0);
2143                 break;
2144         case LDLM_SET_INFO:
2145                 rc = ldlm_handle_setinfo(req);
2146                 ldlm_callback_reply(req, rc);
2147                 RETURN(0);
2148         case OBD_LOG_CANCEL: /* remove this eventually - for 1.4.0 compat */
2149                 CERROR("shouldn't be handling OBD_LOG_CANCEL on DLM thread\n");
2150                 req_capsule_set(&req->rq_pill, &RQF_LOG_CANCEL);
2151                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOG_CANCEL_NET))
2152                         RETURN(0);
2153                 rc = llog_origin_handle_cancel(req);
2154                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOG_CANCEL_REP))
2155                         RETURN(0);
2156                 ldlm_callback_reply(req, rc);
2157                 RETURN(0);
2158         case LLOG_ORIGIN_HANDLE_CREATE:
2159                 req_capsule_set(&req->rq_pill, &RQF_LLOG_ORIGIN_HANDLE_CREATE);
2160                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
2161                         RETURN(0);
2162                 rc = llog_origin_handle_open(req);
2163                 ldlm_callback_reply(req, rc);
2164                 RETURN(0);
2165         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
2166                 req_capsule_set(&req->rq_pill,
2167                                 &RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK);
2168                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
2169                         RETURN(0);
2170                 rc = llog_origin_handle_next_block(req);
2171                 ldlm_callback_reply(req, rc);
2172                 RETURN(0);
2173         case LLOG_ORIGIN_HANDLE_READ_HEADER:
2174                 req_capsule_set(&req->rq_pill,
2175                                 &RQF_LLOG_ORIGIN_HANDLE_READ_HEADER);
2176                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
2177                         RETURN(0);
2178                 rc = llog_origin_handle_read_header(req);
2179                 ldlm_callback_reply(req, rc);
2180                 RETURN(0);
2181         case LLOG_ORIGIN_HANDLE_CLOSE:
2182                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
2183                         RETURN(0);
2184                 rc = llog_origin_handle_close(req);
2185                 ldlm_callback_reply(req, rc);
2186                 RETURN(0);
2187         case OBD_QC_CALLBACK:
2188                 req_capsule_set(&req->rq_pill, &RQF_QC_CALLBACK);
2189                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_QC_CALLBACK_NET))
2190                         RETURN(0);
2191                 rc = ldlm_handle_qc_callback(req);
2192                 ldlm_callback_reply(req, rc);
2193                 RETURN(0);
2194         default:
2195                 CERROR("unknown opcode %u\n",
2196                        lustre_msg_get_opc(req->rq_reqmsg));
2197                 ldlm_callback_reply(req, -EPROTO);
2198                 RETURN(0);
2199         }
2200
2201         ns = req->rq_export->exp_obd->obd_namespace;
2202         LASSERT(ns != NULL);
2203
2204         req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2205
2206         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2207         if (dlm_req == NULL) {
2208                 rc = ldlm_callback_reply(req, -EPROTO);
2209                 ldlm_callback_errmsg(req, "Operate without parameter", rc,
2210                                      NULL);
2211                 RETURN(0);
2212         }
2213
2214         /* Force a known safe race, send a cancel to the server for a lock
2215          * which the server has already started a blocking callback on. */
2216         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_BL_CB_RACE) &&
2217             lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK) {
2218                 rc = ldlm_cli_cancel(&dlm_req->lock_handle[0]);
2219                 if (rc < 0)
2220                         CERROR("ldlm_cli_cancel: %d\n", rc);
2221         }
2222
2223         lock = ldlm_handle2lock_long(&dlm_req->lock_handle[0], 0);
2224         if (!lock) {
2225                 CDEBUG(D_DLMTRACE, "callback on lock "LPX64" - lock "
2226                        "disappeared\n", dlm_req->lock_handle[0].cookie);
2227                 rc = ldlm_callback_reply(req, -EINVAL);
2228                 ldlm_callback_errmsg(req, "Operate with invalid parameter", rc,
2229                                      &dlm_req->lock_handle[0]);
2230                 RETURN(0);
2231         }
2232
2233         if ((lock->l_flags & LDLM_FL_FAIL_LOC) &&
2234             lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK)
2235                 OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
2236
2237         /* Copy hints/flags (e.g. LDLM_FL_DISCARD_DATA) from AST. */
2238         lock_res_and_lock(lock);
2239         lock->l_flags |= ldlm_flags_from_wire(dlm_req->lock_flags &
2240                                               LDLM_AST_FLAGS);
2241         if (lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK) {
2242                 /* If somebody cancels lock and cache is already dropped,
2243                  * or lock is failed before cp_ast received on client,
2244                  * we can tell the server we have no lock. Otherwise, we
2245                  * should send cancel after dropping the cache. */
2246                 if (((lock->l_flags & LDLM_FL_CANCELING) &&
2247                     (lock->l_flags & LDLM_FL_BL_DONE)) ||
2248                     (lock->l_flags & LDLM_FL_FAILED)) {
2249                         LDLM_DEBUG(lock, "callback on lock "
2250                                    LPX64" - lock disappeared\n",
2251                                    dlm_req->lock_handle[0].cookie);
2252                         unlock_res_and_lock(lock);
2253                         LDLM_LOCK_RELEASE(lock);
2254                         rc = ldlm_callback_reply(req, -EINVAL);
2255                         ldlm_callback_errmsg(req, "Operate on stale lock", rc,
2256                                              &dlm_req->lock_handle[0]);
2257                         RETURN(0);
2258                 }
2259                 /* BL_AST locks are not needed in LRU.
2260                  * Let ldlm_cancel_lru() be fast. */
2261                 ldlm_lock_remove_from_lru(lock);
2262                 lock->l_flags |= LDLM_FL_BL_AST;
2263         }
2264         unlock_res_and_lock(lock);
2265
2266         /* We want the ost thread to get this reply so that it can respond
2267          * to ost requests (write cache writeback) that might be triggered
2268          * in the callback.
2269          *
2270          * But we'd also like to be able to indicate in the reply that we're
2271          * cancelling right now, because it's unused, or have an intent result
2272          * in the reply, so we might have to push the responsibility for sending
2273          * the reply down into the AST handlers, alas. */
2274
2275         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2276         case LDLM_BL_CALLBACK:
2277                 CDEBUG(D_INODE, "blocking ast\n");
2278                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_BL_CALLBACK);
2279                 if (!(lock->l_flags & LDLM_FL_CANCEL_ON_BLOCK)) {
2280                         rc = ldlm_callback_reply(req, 0);
2281                         if (req->rq_no_reply || rc)
2282                                 ldlm_callback_errmsg(req, "Normal process", rc,
2283                                                      &dlm_req->lock_handle[0]);
2284                 }
2285                 if (ldlm_bl_to_thread_lock(ns, &dlm_req->lock_desc, lock))
2286                         ldlm_handle_bl_callback(ns, &dlm_req->lock_desc, lock);
2287                 break;
2288         case LDLM_CP_CALLBACK:
2289                 CDEBUG(D_INODE, "completion ast\n");
2290                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_CP_CALLBACK);
2291                 ldlm_callback_reply(req, 0);
2292                 ldlm_handle_cp_callback(req, ns, dlm_req, lock);
2293                 break;
2294         case LDLM_GL_CALLBACK:
2295                 CDEBUG(D_INODE, "glimpse ast\n");
2296                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_GL_CALLBACK);
2297                 ldlm_handle_gl_callback(req, ns, dlm_req, lock);
2298                 break;
2299         default:
2300                 LBUG();                         /* checked above */
2301         }
2302
2303         RETURN(0);
2304 }
2305
2306 #ifdef HAVE_SERVER_SUPPORT
2307 /**
2308  * Main handler for canceld thread.
2309  *
2310  * Separated into its own thread to avoid deadlocks.
2311  */
2312 static int ldlm_cancel_handler(struct ptlrpc_request *req)
2313 {
2314         int rc;
2315         ENTRY;
2316
2317         /* Requests arrive in sender's byte order.  The ptlrpc service
2318          * handler has already checked and, if necessary, byte-swapped the
2319          * incoming request message body, but I am responsible for the
2320          * message buffers. */
2321
2322         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2323
2324         if (req->rq_export == NULL) {
2325                 struct ldlm_request *dlm_req;
2326
2327                 CERROR("%s from %s arrived at %lu with bad export cookie "
2328                        LPU64"\n",
2329                        ll_opcode2str(lustre_msg_get_opc(req->rq_reqmsg)),
2330                        libcfs_nid2str(req->rq_peer.nid),
2331                        req->rq_arrival_time.tv_sec,
2332                        lustre_msg_get_handle(req->rq_reqmsg)->cookie);
2333
2334                 if (lustre_msg_get_opc(req->rq_reqmsg) == LDLM_CANCEL) {
2335                         req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2336                         dlm_req = req_capsule_client_get(&req->rq_pill,
2337                                                          &RMF_DLM_REQ);
2338                         if (dlm_req != NULL)
2339                                 ldlm_lock_dump_handle(D_ERROR,
2340                                                       &dlm_req->lock_handle[0]);
2341                 }
2342                 ldlm_callback_reply(req, -ENOTCONN);
2343                 RETURN(0);
2344         }
2345
2346         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2347
2348         /* XXX FIXME move this back to mds/handler.c, bug 249 */
2349         case LDLM_CANCEL:
2350                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2351                 CDEBUG(D_INODE, "cancel\n");
2352                 if (CFS_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_NET) ||
2353                     CFS_FAIL_CHECK(OBD_FAIL_PTLRPC_CANCEL_RESEND))
2354                         RETURN(0);
2355                 rc = ldlm_handle_cancel(req);
2356                 if (rc)
2357                         break;
2358                 RETURN(0);
2359         case OBD_LOG_CANCEL:
2360                 req_capsule_set(&req->rq_pill, &RQF_LOG_CANCEL);
2361                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOG_CANCEL_NET))
2362                         RETURN(0);
2363                 rc = llog_origin_handle_cancel(req);
2364                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOG_CANCEL_REP))
2365                         RETURN(0);
2366                 ldlm_callback_reply(req, rc);
2367                 RETURN(0);
2368         default:
2369                 CERROR("invalid opcode %d\n",
2370                        lustre_msg_get_opc(req->rq_reqmsg));
2371                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2372                 ldlm_callback_reply(req, -EINVAL);
2373         }
2374
2375         RETURN(0);
2376 }
2377
2378 static int ldlm_cancel_hpreq_lock_match(struct ptlrpc_request *req,
2379                                         struct ldlm_lock *lock)
2380 {
2381         struct ldlm_request *dlm_req;
2382         struct lustre_handle lockh;
2383         int rc = 0;
2384         int i;
2385         ENTRY;
2386
2387         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2388         if (dlm_req == NULL)
2389                 RETURN(0);
2390
2391         ldlm_lock2handle(lock, &lockh);
2392         for (i = 0; i < dlm_req->lock_count; i++) {
2393                 if (lustre_handle_equal(&dlm_req->lock_handle[i],
2394                                         &lockh)) {
2395                         DEBUG_REQ(D_RPCTRACE, req,
2396                                   "Prio raised by lock "LPX64".", lockh.cookie);
2397
2398                         rc = 1;
2399                         break;
2400                 }
2401         }
2402
2403         RETURN(rc);
2404
2405 }
2406
2407 static int ldlm_cancel_hpreq_check(struct ptlrpc_request *req)
2408 {
2409         struct ldlm_request *dlm_req;
2410         int rc = 0;
2411         int i;
2412         ENTRY;
2413
2414         /* no prolong in recovery */
2415         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
2416                 RETURN(0);
2417
2418         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2419         if (dlm_req == NULL)
2420                 RETURN(-EFAULT);
2421
2422         for (i = 0; i < dlm_req->lock_count; i++) {
2423                 struct ldlm_lock *lock;
2424
2425                 lock = ldlm_handle2lock(&dlm_req->lock_handle[i]);
2426                 if (lock == NULL)
2427                         continue;
2428
2429                 rc = !!(lock->l_flags & LDLM_FL_AST_SENT);
2430                 if (rc)
2431                         LDLM_DEBUG(lock, "hpreq cancel lock");
2432                 LDLM_LOCK_PUT(lock);
2433
2434                 if (rc)
2435                         break;
2436         }
2437
2438         RETURN(rc);
2439 }
2440
2441 static struct ptlrpc_hpreq_ops ldlm_cancel_hpreq_ops = {
2442         .hpreq_lock_match = ldlm_cancel_hpreq_lock_match,
2443         .hpreq_check      = ldlm_cancel_hpreq_check,
2444         .hpreq_fini       = NULL,
2445 };
2446
2447 static int ldlm_hpreq_handler(struct ptlrpc_request *req)
2448 {
2449         ENTRY;
2450
2451         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2452
2453         if (req->rq_export == NULL)
2454                 RETURN(0);
2455
2456         if (LDLM_CANCEL == lustre_msg_get_opc(req->rq_reqmsg)) {
2457                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2458                 req->rq_ops = &ldlm_cancel_hpreq_ops;
2459         }
2460         RETURN(0);
2461 }
2462
2463 int ldlm_revoke_lock_cb(cfs_hash_t *hs, cfs_hash_bd_t *bd,
2464                         cfs_hlist_node_t *hnode, void *data)
2465
2466 {
2467         cfs_list_t         *rpc_list = data;
2468         struct ldlm_lock   *lock = cfs_hash_object(hs, hnode);
2469
2470         lock_res_and_lock(lock);
2471
2472         if (lock->l_req_mode != lock->l_granted_mode) {
2473                 unlock_res_and_lock(lock);
2474                 return 0;
2475         }
2476
2477         LASSERT(lock->l_resource);
2478         if (lock->l_resource->lr_type != LDLM_IBITS &&
2479             lock->l_resource->lr_type != LDLM_PLAIN) {
2480                 unlock_res_and_lock(lock);
2481                 return 0;
2482         }
2483
2484         if (lock->l_flags & LDLM_FL_AST_SENT) {
2485                 unlock_res_and_lock(lock);
2486                 return 0;
2487         }
2488
2489         LASSERT(lock->l_blocking_ast);
2490         LASSERT(!lock->l_blocking_lock);
2491
2492         lock->l_flags |= LDLM_FL_AST_SENT;
2493         if (lock->l_export && lock->l_export->exp_lock_hash) {
2494                 /* NB: it's safe to call cfs_hash_del() even lock isn't
2495                  * in exp_lock_hash. */
2496                 /* In the function below, .hs_keycmp resolves to
2497                  * ldlm_export_lock_keycmp() */
2498                 /* coverity[overrun-buffer-val] */
2499                 cfs_hash_del(lock->l_export->exp_lock_hash,
2500                              &lock->l_remote_handle, &lock->l_exp_hash);
2501         }
2502
2503         cfs_list_add_tail(&lock->l_rk_ast, rpc_list);
2504         LDLM_LOCK_GET(lock);
2505
2506         unlock_res_and_lock(lock);
2507         return 0;
2508 }
2509
2510 void ldlm_revoke_export_locks(struct obd_export *exp)
2511 {
2512         cfs_list_t  rpc_list;
2513         ENTRY;
2514
2515         CFS_INIT_LIST_HEAD(&rpc_list);
2516         cfs_hash_for_each_empty(exp->exp_lock_hash,
2517                                 ldlm_revoke_lock_cb, &rpc_list);
2518         ldlm_run_ast_work(exp->exp_obd->obd_namespace, &rpc_list,
2519                           LDLM_WORK_REVOKE_AST);
2520
2521         EXIT;
2522 }
2523 EXPORT_SYMBOL(ldlm_revoke_export_locks);
2524 #endif /* HAVE_SERVER_SUPPORT */
2525
2526 #ifdef __KERNEL__
2527 static struct ldlm_bl_work_item *ldlm_bl_get_work(struct ldlm_bl_pool *blp)
2528 {
2529         struct ldlm_bl_work_item *blwi = NULL;
2530         static unsigned int num_bl = 0;
2531
2532         spin_lock(&blp->blp_lock);
2533         /* process a request from the blp_list at least every blp_num_threads */
2534         if (!cfs_list_empty(&blp->blp_list) &&
2535             (cfs_list_empty(&blp->blp_prio_list) || num_bl == 0))
2536                 blwi = cfs_list_entry(blp->blp_list.next,
2537                                       struct ldlm_bl_work_item, blwi_entry);
2538         else
2539                 if (!cfs_list_empty(&blp->blp_prio_list))
2540                         blwi = cfs_list_entry(blp->blp_prio_list.next,
2541                                               struct ldlm_bl_work_item,
2542                                               blwi_entry);
2543
2544         if (blwi) {
2545                 if (++num_bl >= cfs_atomic_read(&blp->blp_num_threads))
2546                         num_bl = 0;
2547                 cfs_list_del(&blwi->blwi_entry);
2548         }
2549         spin_unlock(&blp->blp_lock);
2550
2551         return blwi;
2552 }
2553
2554 /* This only contains temporary data until the thread starts */
2555 struct ldlm_bl_thread_data {
2556         char                    bltd_name[CFS_CURPROC_COMM_MAX];
2557         struct ldlm_bl_pool     *bltd_blp;
2558         struct completion       bltd_comp;
2559         int                     bltd_num;
2560 };
2561
2562 static int ldlm_bl_thread_main(void *arg);
2563
2564 static int ldlm_bl_thread_start(struct ldlm_bl_pool *blp)
2565 {
2566         struct ldlm_bl_thread_data bltd = { .bltd_blp = blp };
2567         int rc;
2568
2569         init_completion(&bltd.bltd_comp);
2570         rc = cfs_create_thread(ldlm_bl_thread_main, &bltd, 0);
2571         if (rc < 0) {
2572                 CERROR("cannot start LDLM thread ldlm_bl_%02d: rc %d\n",
2573                        cfs_atomic_read(&blp->blp_num_threads), rc);
2574                 return rc;
2575         }
2576         wait_for_completion(&bltd.bltd_comp);
2577
2578         return 0;
2579 }
2580
2581 /**
2582  * Main blocking requests processing thread.
2583  *
2584  * Callers put locks into its queue by calling ldlm_bl_to_thread.
2585  * This thread in the end ends up doing actual call to ->l_blocking_ast
2586  * for queued locks.
2587  */
2588 static int ldlm_bl_thread_main(void *arg)
2589 {
2590         struct ldlm_bl_pool *blp;
2591         ENTRY;
2592
2593         {
2594                 struct ldlm_bl_thread_data *bltd = arg;
2595
2596                 blp = bltd->bltd_blp;
2597
2598                 bltd->bltd_num =
2599                         cfs_atomic_inc_return(&blp->blp_num_threads) - 1;
2600                 cfs_atomic_inc(&blp->blp_busy_threads);
2601
2602                 snprintf(bltd->bltd_name, sizeof(bltd->bltd_name) - 1,
2603                         "ldlm_bl_%02d", bltd->bltd_num);
2604                 cfs_daemonize(bltd->bltd_name);
2605
2606                 complete(&bltd->bltd_comp);
2607                 /* cannot use bltd after this, it is only on caller's stack */
2608         }
2609
2610         while (1) {
2611                 struct l_wait_info lwi = { 0 };
2612                 struct ldlm_bl_work_item *blwi = NULL;
2613                 int busy;
2614
2615                 blwi = ldlm_bl_get_work(blp);
2616
2617                 if (blwi == NULL) {
2618                         cfs_atomic_dec(&blp->blp_busy_threads);
2619                         l_wait_event_exclusive(blp->blp_waitq,
2620                                          (blwi = ldlm_bl_get_work(blp)) != NULL,
2621                                          &lwi);
2622                         busy = cfs_atomic_inc_return(&blp->blp_busy_threads);
2623                 } else {
2624                         busy = cfs_atomic_read(&blp->blp_busy_threads);
2625                 }
2626
2627                 if (blwi->blwi_ns == NULL)
2628                         /* added by ldlm_cleanup() */
2629                         break;
2630
2631                 /* Not fatal if racy and have a few too many threads */
2632                 if (unlikely(busy < blp->blp_max_threads &&
2633                              busy >= cfs_atomic_read(&blp->blp_num_threads) &&
2634                              !blwi->blwi_mem_pressure))
2635                         /* discard the return value, we tried */
2636                         ldlm_bl_thread_start(blp);
2637
2638                 if (blwi->blwi_mem_pressure)
2639                         cfs_memory_pressure_set();
2640
2641                 if (blwi->blwi_count) {
2642                         int count;
2643                         /* The special case when we cancel locks in LRU
2644                          * asynchronously, we pass the list of locks here.
2645                          * Thus locks are marked LDLM_FL_CANCELING, but NOT
2646                          * canceled locally yet. */
2647                         count = ldlm_cli_cancel_list_local(&blwi->blwi_head,
2648                                                            blwi->blwi_count,
2649                                                            LCF_BL_AST);
2650                         ldlm_cli_cancel_list(&blwi->blwi_head, count, NULL, 0);
2651                 } else {
2652                         ldlm_handle_bl_callback(blwi->blwi_ns, &blwi->blwi_ld,
2653                                                 blwi->blwi_lock);
2654                 }
2655                 if (blwi->blwi_mem_pressure)
2656                         cfs_memory_pressure_clr();
2657
2658                 if (blwi->blwi_mode == LDLM_ASYNC)
2659                         OBD_FREE(blwi, sizeof(*blwi));
2660                 else
2661                         complete(&blwi->blwi_comp);
2662         }
2663
2664         cfs_atomic_dec(&blp->blp_busy_threads);
2665         cfs_atomic_dec(&blp->blp_num_threads);
2666         complete(&blp->blp_comp);
2667         RETURN(0);
2668 }
2669
2670 #endif
2671
2672 static int ldlm_setup(void);
2673 static int ldlm_cleanup(void);
2674
2675 int ldlm_get_ref(void)
2676 {
2677         int rc = 0;
2678         ENTRY;
2679         mutex_lock(&ldlm_ref_mutex);
2680         if (++ldlm_refcount == 1) {
2681                 rc = ldlm_setup();
2682                 if (rc)
2683                         ldlm_refcount--;
2684         }
2685         mutex_unlock(&ldlm_ref_mutex);
2686
2687         RETURN(rc);
2688 }
2689 EXPORT_SYMBOL(ldlm_get_ref);
2690
2691 void ldlm_put_ref(void)
2692 {
2693         ENTRY;
2694         mutex_lock(&ldlm_ref_mutex);
2695         if (ldlm_refcount == 1) {
2696                 int rc = ldlm_cleanup();
2697                 if (rc)
2698                         CERROR("ldlm_cleanup failed: %d\n", rc);
2699                 else
2700                         ldlm_refcount--;
2701         } else {
2702                 ldlm_refcount--;
2703         }
2704         mutex_unlock(&ldlm_ref_mutex);
2705
2706         EXIT;
2707 }
2708 EXPORT_SYMBOL(ldlm_put_ref);
2709
2710 /*
2711  * Export handle<->lock hash operations.
2712  */
2713 static unsigned
2714 ldlm_export_lock_hash(cfs_hash_t *hs, const void *key, unsigned mask)
2715 {
2716         return cfs_hash_u64_hash(((struct lustre_handle *)key)->cookie, mask);
2717 }
2718
2719 static void *
2720 ldlm_export_lock_key(cfs_hlist_node_t *hnode)
2721 {
2722         struct ldlm_lock *lock;
2723
2724         lock = cfs_hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2725         return &lock->l_remote_handle;
2726 }
2727
2728 static void
2729 ldlm_export_lock_keycpy(cfs_hlist_node_t *hnode, void *key)
2730 {
2731         struct ldlm_lock     *lock;
2732
2733         lock = cfs_hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2734         lock->l_remote_handle = *(struct lustre_handle *)key;
2735 }
2736
2737 static int
2738 ldlm_export_lock_keycmp(const void *key, cfs_hlist_node_t *hnode)
2739 {
2740         return lustre_handle_equal(ldlm_export_lock_key(hnode), key);
2741 }
2742
2743 static void *
2744 ldlm_export_lock_object(cfs_hlist_node_t *hnode)
2745 {
2746         return cfs_hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2747 }
2748
2749 static void
2750 ldlm_export_lock_get(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
2751 {
2752         struct ldlm_lock *lock;
2753
2754         lock = cfs_hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2755         LDLM_LOCK_GET(lock);
2756 }
2757
2758 static void
2759 ldlm_export_lock_put(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
2760 {
2761         struct ldlm_lock *lock;
2762
2763         lock = cfs_hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2764         LDLM_LOCK_RELEASE(lock);
2765 }
2766
2767 static cfs_hash_ops_t ldlm_export_lock_ops = {
2768         .hs_hash        = ldlm_export_lock_hash,
2769         .hs_key         = ldlm_export_lock_key,
2770         .hs_keycmp      = ldlm_export_lock_keycmp,
2771         .hs_keycpy      = ldlm_export_lock_keycpy,
2772         .hs_object      = ldlm_export_lock_object,
2773         .hs_get         = ldlm_export_lock_get,
2774         .hs_put         = ldlm_export_lock_put,
2775         .hs_put_locked  = ldlm_export_lock_put,
2776 };
2777
2778 int ldlm_init_export(struct obd_export *exp)
2779 {
2780         ENTRY;
2781
2782         exp->exp_lock_hash =
2783                 cfs_hash_create(obd_uuid2str(&exp->exp_client_uuid),
2784                                 HASH_EXP_LOCK_CUR_BITS,
2785                                 HASH_EXP_LOCK_MAX_BITS,
2786                                 HASH_EXP_LOCK_BKT_BITS, 0,
2787                                 CFS_HASH_MIN_THETA, CFS_HASH_MAX_THETA,
2788                                 &ldlm_export_lock_ops,
2789                                 CFS_HASH_DEFAULT | CFS_HASH_REHASH_KEY |
2790                                 CFS_HASH_NBLK_CHANGE);
2791
2792         if (!exp->exp_lock_hash)
2793                 RETURN(-ENOMEM);
2794
2795         RETURN(0);
2796 }
2797 EXPORT_SYMBOL(ldlm_init_export);
2798
2799 void ldlm_destroy_export(struct obd_export *exp)
2800 {
2801         ENTRY;
2802         cfs_hash_putref(exp->exp_lock_hash);
2803         exp->exp_lock_hash = NULL;
2804
2805         ldlm_destroy_flock_export(exp);
2806         EXIT;
2807 }
2808 EXPORT_SYMBOL(ldlm_destroy_export);
2809
2810 static int ldlm_setup(void)
2811 {
2812         static struct ptlrpc_service_conf       conf;
2813         struct ldlm_bl_pool                     *blp = NULL;
2814         int rc = 0;
2815 #ifdef __KERNEL__
2816         int i;
2817 #endif
2818         ENTRY;
2819
2820         if (ldlm_state != NULL)
2821                 RETURN(-EALREADY);
2822
2823         OBD_ALLOC(ldlm_state, sizeof(*ldlm_state));
2824         if (ldlm_state == NULL)
2825                 RETURN(-ENOMEM);
2826
2827 #ifdef LPROCFS
2828         rc = ldlm_proc_setup();
2829         if (rc != 0)
2830                 GOTO(out, rc);
2831 #endif
2832
2833         memset(&conf, 0, sizeof(conf));
2834         conf = (typeof(conf)) {
2835                 .psc_name               = "ldlm_cbd",
2836                 .psc_watchdog_factor    = 2,
2837                 .psc_buf                = {
2838                         .bc_nbufs               = LDLM_NBUFS,
2839                         .bc_buf_size            = LDLM_BUFSIZE,
2840                         .bc_req_max_size        = LDLM_MAXREQSIZE,
2841                         .bc_rep_max_size        = LDLM_MAXREPSIZE,
2842                         .bc_req_portal          = LDLM_CB_REQUEST_PORTAL,
2843                         .bc_rep_portal          = LDLM_CB_REPLY_PORTAL,
2844                 },
2845                 .psc_thr                = {
2846                         .tc_thr_name            = "ldlm_cb",
2847                         .tc_thr_factor          = LDLM_THR_FACTOR,
2848                         .tc_nthrs_init          = LDLM_NTHRS_INIT,
2849                         .tc_nthrs_base          = LDLM_NTHRS_BASE,
2850                         .tc_nthrs_max           = LDLM_NTHRS_MAX,
2851                         .tc_nthrs_user          = ldlm_num_threads,
2852                         .tc_cpu_affinity        = 1,
2853                         .tc_ctx_tags            = LCT_MD_THREAD | LCT_DT_THREAD,
2854                 },
2855                 .psc_cpt                = {
2856                         .cc_pattern             = ldlm_cpts,
2857                 },
2858                 .psc_ops                = {
2859                         .so_req_handler         = ldlm_callback_handler,
2860                 },
2861         };
2862         ldlm_state->ldlm_cb_service = \
2863                         ptlrpc_register_service(&conf, ldlm_svc_proc_dir);
2864         if (IS_ERR(ldlm_state->ldlm_cb_service)) {
2865                 CERROR("failed to start service\n");
2866                 rc = PTR_ERR(ldlm_state->ldlm_cb_service);
2867                 ldlm_state->ldlm_cb_service = NULL;
2868                 GOTO(out, rc);
2869         }
2870
2871 #ifdef HAVE_SERVER_SUPPORT
2872         memset(&conf, 0, sizeof(conf));
2873         conf = (typeof(conf)) {
2874                 .psc_name               = "ldlm_canceld",
2875                 .psc_watchdog_factor    = 6,
2876                 .psc_buf                = {
2877                         .bc_nbufs               = LDLM_NBUFS,
2878                         .bc_buf_size            = LDLM_BUFSIZE,
2879                         .bc_req_max_size        = LDLM_MAXREQSIZE,
2880                         .bc_rep_max_size        = LDLM_MAXREPSIZE,
2881                         .bc_req_portal          = LDLM_CANCEL_REQUEST_PORTAL,
2882                         .bc_rep_portal          = LDLM_CANCEL_REPLY_PORTAL,
2883
2884                 },
2885                 .psc_thr                = {
2886                         .tc_thr_name            = "ldlm_cn",
2887                         .tc_thr_factor          = LDLM_THR_FACTOR,
2888                         .tc_nthrs_init          = LDLM_NTHRS_INIT,
2889                         .tc_nthrs_base          = LDLM_NTHRS_BASE,
2890                         .tc_nthrs_max           = LDLM_NTHRS_MAX,
2891                         .tc_nthrs_user          = ldlm_num_threads,
2892                         .tc_cpu_affinity        = 1,
2893                         .tc_ctx_tags            = LCT_MD_THREAD | \
2894                                                   LCT_DT_THREAD | \
2895                                                   LCT_CL_THREAD,
2896                 },
2897                 .psc_cpt                = {
2898                         .cc_pattern             = ldlm_cpts,
2899                 },
2900                 .psc_ops                = {
2901                         .so_req_handler         = ldlm_cancel_handler,
2902                         .so_hpreq_handler       = ldlm_hpreq_handler,
2903                 },
2904         };
2905         ldlm_state->ldlm_cancel_service = \
2906                         ptlrpc_register_service(&conf, ldlm_svc_proc_dir);
2907         if (IS_ERR(ldlm_state->ldlm_cancel_service)) {
2908                 CERROR("failed to start service\n");
2909                 rc = PTR_ERR(ldlm_state->ldlm_cancel_service);
2910                 ldlm_state->ldlm_cancel_service = NULL;
2911                 GOTO(out, rc);
2912         }
2913 #endif
2914
2915         OBD_ALLOC(blp, sizeof(*blp));
2916         if (blp == NULL)
2917                 GOTO(out, rc = -ENOMEM);
2918         ldlm_state->ldlm_bl_pool = blp;
2919
2920         spin_lock_init(&blp->blp_lock);
2921         CFS_INIT_LIST_HEAD(&blp->blp_list);
2922         CFS_INIT_LIST_HEAD(&blp->blp_prio_list);
2923         cfs_waitq_init(&blp->blp_waitq);
2924         cfs_atomic_set(&blp->blp_num_threads, 0);
2925         cfs_atomic_set(&blp->blp_busy_threads, 0);
2926
2927 #ifdef __KERNEL__
2928         if (ldlm_num_threads == 0) {
2929                 blp->blp_min_threads = LDLM_NTHRS_INIT;
2930                 blp->blp_max_threads = LDLM_NTHRS_MAX;
2931         } else {
2932                 blp->blp_min_threads = blp->blp_max_threads = \
2933                         min_t(int, LDLM_NTHRS_MAX, max_t(int, LDLM_NTHRS_INIT,
2934                                                          ldlm_num_threads));
2935         }
2936
2937         for (i = 0; i < blp->blp_min_threads; i++) {
2938                 rc = ldlm_bl_thread_start(blp);
2939                 if (rc < 0)
2940                         GOTO(out, rc);
2941         }
2942
2943 # ifdef HAVE_SERVER_SUPPORT
2944         CFS_INIT_LIST_HEAD(&expired_lock_thread.elt_expired_locks);
2945         expired_lock_thread.elt_state = ELT_STOPPED;
2946         cfs_waitq_init(&expired_lock_thread.elt_waitq);
2947
2948         CFS_INIT_LIST_HEAD(&waiting_locks_list);
2949         spin_lock_init(&waiting_locks_spinlock);
2950         cfs_timer_init(&waiting_locks_timer, waiting_locks_callback, 0);
2951
2952         rc = cfs_create_thread(expired_lock_main, NULL, CFS_DAEMON_FLAGS);
2953         if (rc < 0) {
2954                 CERROR("Cannot start ldlm expired-lock thread: %d\n", rc);
2955                 GOTO(out, rc);
2956         }
2957
2958         cfs_wait_event(expired_lock_thread.elt_waitq,
2959                        expired_lock_thread.elt_state == ELT_READY);
2960 # endif /* HAVE_SERVER_SUPPORT */
2961
2962         rc = ldlm_pools_init();
2963         if (rc) {
2964                 CERROR("Failed to initialize LDLM pools: %d\n", rc);
2965                 GOTO(out, rc);
2966         }
2967 #endif
2968         RETURN(0);
2969
2970  out:
2971         ldlm_cleanup();
2972         RETURN(rc);
2973 }
2974
2975 static int ldlm_cleanup(void)
2976 {
2977         ENTRY;
2978
2979         if (!cfs_list_empty(ldlm_namespace_list(LDLM_NAMESPACE_SERVER)) ||
2980             !cfs_list_empty(ldlm_namespace_list(LDLM_NAMESPACE_CLIENT))) {
2981                 CERROR("ldlm still has namespaces; clean these up first.\n");
2982                 ldlm_dump_all_namespaces(LDLM_NAMESPACE_SERVER, D_DLMTRACE);
2983                 ldlm_dump_all_namespaces(LDLM_NAMESPACE_CLIENT, D_DLMTRACE);
2984                 RETURN(-EBUSY);
2985         }
2986
2987 #ifdef __KERNEL__
2988         ldlm_pools_fini();
2989
2990         if (ldlm_state->ldlm_bl_pool != NULL) {
2991                 struct ldlm_bl_pool *blp = ldlm_state->ldlm_bl_pool;
2992
2993                 while (cfs_atomic_read(&blp->blp_num_threads) > 0) {
2994                         struct ldlm_bl_work_item blwi = { .blwi_ns = NULL };
2995
2996                         init_completion(&blp->blp_comp);
2997
2998                         spin_lock(&blp->blp_lock);
2999                         cfs_list_add_tail(&blwi.blwi_entry, &blp->blp_list);
3000                         cfs_waitq_signal(&blp->blp_waitq);
3001                         spin_unlock(&blp->blp_lock);
3002
3003                         wait_for_completion(&blp->blp_comp);
3004                 }
3005
3006                 OBD_FREE(blp, sizeof(*blp));
3007         }
3008 #endif /* __KERNEL__ */
3009
3010         if (ldlm_state->ldlm_cb_service != NULL)
3011                 ptlrpc_unregister_service(ldlm_state->ldlm_cb_service);
3012 # ifdef HAVE_SERVER_SUPPORT
3013         if (ldlm_state->ldlm_cancel_service != NULL)
3014                 ptlrpc_unregister_service(ldlm_state->ldlm_cancel_service);
3015 # endif
3016
3017 #ifdef __KERNEL__
3018         ldlm_proc_cleanup();
3019
3020 # ifdef HAVE_SERVER_SUPPORT
3021         if (expired_lock_thread.elt_state != ELT_STOPPED) {
3022                 expired_lock_thread.elt_state = ELT_TERMINATE;
3023                 cfs_waitq_signal(&expired_lock_thread.elt_waitq);
3024                 cfs_wait_event(expired_lock_thread.elt_waitq,
3025                                expired_lock_thread.elt_state == ELT_STOPPED);
3026         }
3027 # endif
3028 #endif /* __KERNEL__ */
3029
3030         OBD_FREE(ldlm_state, sizeof(*ldlm_state));
3031         ldlm_state = NULL;
3032
3033         RETURN(0);
3034 }
3035
3036 int ldlm_init(void)
3037 {
3038         mutex_init(&ldlm_ref_mutex);
3039         mutex_init(ldlm_namespace_lock(LDLM_NAMESPACE_SERVER));
3040         mutex_init(ldlm_namespace_lock(LDLM_NAMESPACE_CLIENT));
3041         ldlm_resource_slab = cfs_mem_cache_create("ldlm_resources",
3042                                                sizeof(struct ldlm_resource), 0,
3043                                                CFS_SLAB_HWCACHE_ALIGN);
3044         if (ldlm_resource_slab == NULL)
3045                 return -ENOMEM;
3046
3047         ldlm_lock_slab = cfs_mem_cache_create("ldlm_locks",
3048                               sizeof(struct ldlm_lock), 0,
3049                               CFS_SLAB_HWCACHE_ALIGN | SLAB_DESTROY_BY_RCU);
3050         if (ldlm_lock_slab == NULL) {
3051                 cfs_mem_cache_destroy(ldlm_resource_slab);
3052                 return -ENOMEM;
3053         }
3054
3055         ldlm_interval_slab = cfs_mem_cache_create("interval_node",
3056                                         sizeof(struct ldlm_interval),
3057                                         0, CFS_SLAB_HWCACHE_ALIGN);
3058         if (ldlm_interval_slab == NULL) {
3059                 cfs_mem_cache_destroy(ldlm_resource_slab);
3060                 cfs_mem_cache_destroy(ldlm_lock_slab);
3061                 return -ENOMEM;
3062         }
3063 #if LUSTRE_TRACKS_LOCK_EXP_REFS
3064         class_export_dump_hook = ldlm_dump_export_locks;
3065 #endif
3066         return 0;
3067 }
3068
3069 void ldlm_exit(void)
3070 {
3071         int rc;
3072         if (ldlm_refcount)
3073                 CERROR("ldlm_refcount is %d in ldlm_exit!\n", ldlm_refcount);
3074         rc = cfs_mem_cache_destroy(ldlm_resource_slab);
3075         LASSERTF(rc == 0, "couldn't free ldlm resource slab\n");
3076 #ifdef __KERNEL__
3077         /* ldlm_lock_put() use RCU to call ldlm_lock_free, so need call
3078          * synchronize_rcu() to wait a grace period elapsed, so that
3079          * ldlm_lock_free() get a chance to be called. */
3080         synchronize_rcu();
3081 #endif
3082         rc = cfs_mem_cache_destroy(ldlm_lock_slab);
3083         LASSERTF(rc == 0, "couldn't free ldlm lock slab\n");
3084         rc = cfs_mem_cache_destroy(ldlm_interval_slab);
3085         LASSERTF(rc == 0, "couldn't free interval node slab\n");
3086 }