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