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