Whamcloud - gitweb
LU-6245 libcfs: remove prim wrappers for libcfs
[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                 } else if (ldlm_has_layout(lock)) { /* for layout lock, lvb has
1790                                                      * variable length */
1791                         void *lvb_data;
1792
1793                         OBD_ALLOC_LARGE(lvb_data, lvb_len);
1794                         if (lvb_data == NULL) {
1795                                 LDLM_ERROR(lock, "No memory: %d.\n", lvb_len);
1796                                 GOTO(out, rc = -ENOMEM);
1797                         }
1798
1799                         lock_res_and_lock(lock);
1800                         LASSERT(lock->l_lvb_data == NULL);
1801                         lock->l_lvb_type = LVB_T_LAYOUT;
1802                         lock->l_lvb_data = lvb_data;
1803                         lock->l_lvb_len = lvb_len;
1804                         unlock_res_and_lock(lock);
1805                 }
1806         }
1807
1808         lock_res_and_lock(lock);
1809         if (ldlm_is_destroyed(lock) ||
1810             lock->l_granted_mode == lock->l_req_mode) {
1811                 /* bug 11300: the lock has already been granted */
1812                 unlock_res_and_lock(lock);
1813                 LDLM_DEBUG(lock, "Double grant race happened");
1814                 GOTO(out, rc = 0);
1815         }
1816
1817         /* If we receive the completion AST before the actual enqueue returned,
1818          * then we might need to switch lock modes, resources, or extents. */
1819         if (dlm_req->lock_desc.l_granted_mode != lock->l_req_mode) {
1820                 lock->l_req_mode = dlm_req->lock_desc.l_granted_mode;
1821                 LDLM_DEBUG(lock, "completion AST, new lock mode");
1822         }
1823
1824         if (lock->l_resource->lr_type != LDLM_PLAIN) {
1825                 ldlm_convert_policy_to_local(req->rq_export,
1826                                           dlm_req->lock_desc.l_resource.lr_type,
1827                                           &dlm_req->lock_desc.l_policy_data,
1828                                           &lock->l_policy_data);
1829                 LDLM_DEBUG(lock, "completion AST, new policy data");
1830         }
1831
1832         ldlm_resource_unlink_lock(lock);
1833         if (memcmp(&dlm_req->lock_desc.l_resource.lr_name,
1834                    &lock->l_resource->lr_name,
1835                    sizeof(lock->l_resource->lr_name)) != 0) {
1836                 unlock_res_and_lock(lock);
1837                 rc = ldlm_lock_change_resource(ns, lock,
1838                                 &dlm_req->lock_desc.l_resource.lr_name);
1839                 if (rc < 0) {
1840                         LDLM_ERROR(lock, "Failed to allocate resource");
1841                         GOTO(out, rc);
1842                 }
1843                 LDLM_DEBUG(lock, "completion AST, new resource");
1844                 CERROR("change resource!\n");
1845                 lock_res_and_lock(lock);
1846         }
1847
1848         if (dlm_req->lock_flags & LDLM_FL_AST_SENT) {
1849                 /* BL_AST locks are not needed in LRU.
1850                  * Let ldlm_cancel_lru() be fast. */
1851                 ldlm_lock_remove_from_lru(lock);
1852                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_BL_AST;
1853                 LDLM_DEBUG(lock, "completion AST includes blocking AST");
1854         }
1855
1856         if (lock->l_lvb_len > 0) {
1857                 rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_CLIENT,
1858                                    lock->l_lvb_data, lvb_len);
1859                 if (rc < 0) {
1860                         unlock_res_and_lock(lock);
1861                         GOTO(out, rc);
1862                 }
1863         }
1864
1865         ldlm_grant_lock(lock, &ast_list);
1866         unlock_res_and_lock(lock);
1867
1868         LDLM_DEBUG(lock, "callback handler finished, about to run_ast_work");
1869
1870         /* Let Enqueue to call osc_lock_upcall() and initialize
1871          * l_ast_data */
1872         OBD_FAIL_TIMEOUT(OBD_FAIL_OSC_CP_ENQ_RACE, 2);
1873
1874         ldlm_run_ast_work(ns, &ast_list, LDLM_WORK_CP_AST);
1875
1876         LDLM_DEBUG_NOLOCK("client completion callback handler END (lock %p)",
1877                           lock);
1878         GOTO(out, rc);
1879
1880 out:
1881         if (rc < 0) {
1882                 lock_res_and_lock(lock);
1883                 ldlm_set_failed(lock);
1884                 unlock_res_and_lock(lock);
1885                 wake_up(&lock->l_waitq);
1886         }
1887         LDLM_LOCK_RELEASE(lock);
1888 }
1889
1890 /**
1891  * Callback handler for receiving incoming glimpse ASTs.
1892  *
1893  * This only can happen on client side.  After handling the glimpse AST
1894  * we also consider dropping the lock here if it is unused locally for a
1895  * long time.
1896  */
1897 static void ldlm_handle_gl_callback(struct ptlrpc_request *req,
1898                                     struct ldlm_namespace *ns,
1899                                     struct ldlm_request *dlm_req,
1900                                     struct ldlm_lock *lock)
1901 {
1902         int rc = -ENOSYS;
1903         ENTRY;
1904
1905         LDLM_DEBUG(lock, "client glimpse AST callback handler");
1906
1907         if (lock->l_glimpse_ast != NULL)
1908                 rc = lock->l_glimpse_ast(lock, req);
1909
1910         if (req->rq_repmsg != NULL) {
1911                 ptlrpc_reply(req);
1912         } else {
1913                 req->rq_status = rc;
1914                 ptlrpc_error(req);
1915         }
1916
1917         lock_res_and_lock(lock);
1918         if (lock->l_granted_mode == LCK_PW &&
1919             !lock->l_readers && !lock->l_writers &&
1920             cfs_time_after(cfs_time_current(),
1921                            cfs_time_add(lock->l_last_used,
1922                                         cfs_time_seconds(10)))) {
1923                 unlock_res_and_lock(lock);
1924                 if (ldlm_bl_to_thread_lock(ns, NULL, lock))
1925                         ldlm_handle_bl_callback(ns, NULL, lock);
1926
1927                 EXIT;
1928                 return;
1929         }
1930         unlock_res_and_lock(lock);
1931         LDLM_LOCK_RELEASE(lock);
1932         EXIT;
1933 }
1934
1935 static int ldlm_callback_reply(struct ptlrpc_request *req, int rc)
1936 {
1937         if (req->rq_no_reply)
1938                 return 0;
1939
1940         req->rq_status = rc;
1941         if (!req->rq_packed_final) {
1942                 rc = lustre_pack_reply(req, 1, NULL, NULL);
1943                 if (rc)
1944                         return rc;
1945         }
1946         return ptlrpc_reply(req);
1947 }
1948
1949 static int __ldlm_bl_to_thread(struct ldlm_bl_work_item *blwi,
1950                                ldlm_cancel_flags_t cancel_flags)
1951 {
1952         struct ldlm_bl_pool *blp = ldlm_state->ldlm_bl_pool;
1953         ENTRY;
1954
1955         spin_lock(&blp->blp_lock);
1956         if (blwi->blwi_lock &&
1957             ldlm_is_discard_data(blwi->blwi_lock)) {
1958                 /* add LDLM_FL_DISCARD_DATA requests to the priority list */
1959                 list_add_tail(&blwi->blwi_entry, &blp->blp_prio_list);
1960         } else {
1961                 /* other blocking callbacks are added to the regular list */
1962                 list_add_tail(&blwi->blwi_entry, &blp->blp_list);
1963         }
1964         spin_unlock(&blp->blp_lock);
1965
1966         wake_up(&blp->blp_waitq);
1967
1968         /* can not check blwi->blwi_flags as blwi could be already freed in
1969            LCF_ASYNC mode */
1970         if (!(cancel_flags & LCF_ASYNC))
1971                 wait_for_completion(&blwi->blwi_comp);
1972
1973         RETURN(0);
1974 }
1975
1976 static inline void init_blwi(struct ldlm_bl_work_item *blwi,
1977                              struct ldlm_namespace *ns,
1978                              struct ldlm_lock_desc *ld,
1979                              struct list_head *cancels, int count,
1980                              struct ldlm_lock *lock,
1981                              ldlm_cancel_flags_t cancel_flags)
1982 {
1983         init_completion(&blwi->blwi_comp);
1984         INIT_LIST_HEAD(&blwi->blwi_head);
1985
1986         if (memory_pressure_get())
1987                 blwi->blwi_mem_pressure = 1;
1988
1989         blwi->blwi_ns = ns;
1990         blwi->blwi_flags = cancel_flags;
1991         if (ld != NULL)
1992                 blwi->blwi_ld = *ld;
1993         if (count) {
1994                 list_add(&blwi->blwi_head, cancels);
1995                 list_del_init(cancels);
1996                 blwi->blwi_count = count;
1997         } else {
1998                 blwi->blwi_lock = lock;
1999         }
2000 }
2001
2002 /**
2003  * Queues a list of locks \a cancels containing \a count locks
2004  * for later processing by a blocking thread.  If \a count is zero,
2005  * then the lock referenced as \a lock is queued instead.
2006  *
2007  * The blocking thread would then call ->l_blocking_ast callback in the lock.
2008  * If list addition fails an error is returned and caller is supposed to
2009  * call ->l_blocking_ast itself.
2010  */
2011 static int ldlm_bl_to_thread(struct ldlm_namespace *ns,
2012                              struct ldlm_lock_desc *ld,
2013                              struct ldlm_lock *lock,
2014                              struct list_head *cancels, int count,
2015                              ldlm_cancel_flags_t cancel_flags)
2016 {
2017         ENTRY;
2018
2019         if (cancels && count == 0)
2020                 RETURN(0);
2021
2022         if (cancel_flags & LCF_ASYNC) {
2023                 struct ldlm_bl_work_item *blwi;
2024
2025                 OBD_ALLOC(blwi, sizeof(*blwi));
2026                 if (blwi == NULL)
2027                         RETURN(-ENOMEM);
2028                 init_blwi(blwi, ns, ld, cancels, count, lock, cancel_flags);
2029
2030                 RETURN(__ldlm_bl_to_thread(blwi, cancel_flags));
2031         } else {
2032                 /* if it is synchronous call do minimum mem alloc, as it could
2033                  * be triggered from kernel shrinker
2034                  */
2035                 struct ldlm_bl_work_item blwi;
2036
2037                 memset(&blwi, 0, sizeof(blwi));
2038                 init_blwi(&blwi, ns, ld, cancels, count, lock, cancel_flags);
2039                 RETURN(__ldlm_bl_to_thread(&blwi, cancel_flags));
2040         }
2041 }
2042
2043
2044 int ldlm_bl_to_thread_lock(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
2045                            struct ldlm_lock *lock)
2046 {
2047         return ldlm_bl_to_thread(ns, ld, lock, NULL, 0, LCF_ASYNC);
2048 }
2049
2050 int ldlm_bl_to_thread_list(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
2051                            struct list_head *cancels, int count,
2052                            ldlm_cancel_flags_t cancel_flags)
2053 {
2054         return ldlm_bl_to_thread(ns, ld, NULL, cancels, count, cancel_flags);
2055 }
2056
2057 /* Setinfo coming from Server (eg MDT) to Client (eg MDC)! */
2058 static int ldlm_handle_setinfo(struct ptlrpc_request *req)
2059 {
2060         struct obd_device *obd = req->rq_export->exp_obd;
2061         char *key;
2062         void *val;
2063         int keylen, vallen;
2064         int rc = -ENOSYS;
2065         ENTRY;
2066
2067         DEBUG_REQ(D_HSM, req, "%s: handle setinfo\n", obd->obd_name);
2068
2069         req_capsule_set(&req->rq_pill, &RQF_OBD_SET_INFO);
2070
2071         key = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
2072         if (key == NULL) {
2073                 DEBUG_REQ(D_IOCTL, req, "no set_info key");
2074                 RETURN(-EFAULT);
2075         }
2076         keylen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_KEY,
2077                                       RCL_CLIENT);
2078         val = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
2079         if (val == NULL) {
2080                 DEBUG_REQ(D_IOCTL, req, "no set_info val");
2081                 RETURN(-EFAULT);
2082         }
2083         vallen = req_capsule_get_size(&req->rq_pill, &RMF_SETINFO_VAL,
2084                                       RCL_CLIENT);
2085
2086         /* We are responsible for swabbing contents of val */
2087
2088         if (KEY_IS(KEY_HSM_COPYTOOL_SEND))
2089                 /* Pass it on to mdc (the "export" in this case) */
2090                 rc = obd_set_info_async(req->rq_svc_thread->t_env,
2091                                         req->rq_export,
2092                                         sizeof(KEY_HSM_COPYTOOL_SEND),
2093                                         KEY_HSM_COPYTOOL_SEND,
2094                                         vallen, val, NULL);
2095         else
2096                 DEBUG_REQ(D_WARNING, req, "ignoring unknown key %s", key);
2097
2098         return rc;
2099 }
2100
2101 static inline void ldlm_callback_errmsg(struct ptlrpc_request *req,
2102                                         const char *msg, int rc,
2103                                         struct lustre_handle *handle)
2104 {
2105         DEBUG_REQ((req->rq_no_reply || rc) ? D_WARNING : D_DLMTRACE, req,
2106                   "%s: [nid %s] [rc %d] [lock "LPX64"]",
2107                   msg, libcfs_id2str(req->rq_peer), rc,
2108                   handle ? handle->cookie : 0);
2109         if (req->rq_no_reply)
2110                 CWARN("No reply was sent, maybe cause bug 21636.\n");
2111         else if (rc)
2112                 CWARN("Send reply failed, maybe cause bug 21636.\n");
2113 }
2114
2115 static int ldlm_handle_qc_callback(struct ptlrpc_request *req)
2116 {
2117         struct obd_quotactl *oqctl;
2118         struct client_obd *cli = &req->rq_export->exp_obd->u.cli;
2119
2120         oqctl = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
2121         if (oqctl == NULL) {
2122                 CERROR("Can't unpack obd_quotactl\n");
2123                 RETURN(-EPROTO);
2124         }
2125
2126         oqctl->qc_stat = ptlrpc_status_ntoh(oqctl->qc_stat);
2127
2128         cli->cl_qchk_stat = oqctl->qc_stat;
2129         return 0;
2130 }
2131
2132 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
2133 static int ldlm_callback_handler(struct ptlrpc_request *req)
2134 {
2135         struct ldlm_namespace *ns;
2136         struct ldlm_request *dlm_req;
2137         struct ldlm_lock *lock;
2138         int rc;
2139         ENTRY;
2140
2141         /* Requests arrive in sender's byte order.  The ptlrpc service
2142          * handler has already checked and, if necessary, byte-swapped the
2143          * incoming request message body, but I am responsible for the
2144          * message buffers. */
2145
2146         /* do nothing for sec context finalize */
2147         if (lustre_msg_get_opc(req->rq_reqmsg) == SEC_CTX_FINI)
2148                 RETURN(0);
2149
2150         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2151
2152         if (req->rq_export == NULL) {
2153                 rc = ldlm_callback_reply(req, -ENOTCONN);
2154                 ldlm_callback_errmsg(req, "Operate on unconnected server",
2155                                      rc, NULL);
2156                 RETURN(0);
2157         }
2158
2159         LASSERT(req->rq_export != NULL);
2160         LASSERT(req->rq_export->exp_obd != NULL);
2161
2162         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2163         case LDLM_BL_CALLBACK:
2164                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET)) {
2165                         if (cfs_fail_err)
2166                                 ldlm_callback_reply(req, -(int)cfs_fail_err);
2167                         RETURN(0);
2168                 }
2169                 break;
2170         case LDLM_CP_CALLBACK:
2171                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CP_CALLBACK_NET))
2172                         RETURN(0);
2173                 break;
2174         case LDLM_GL_CALLBACK:
2175                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_GL_CALLBACK_NET))
2176                         RETURN(0);
2177                 break;
2178         case LDLM_SET_INFO:
2179                 rc = ldlm_handle_setinfo(req);
2180                 ldlm_callback_reply(req, rc);
2181                 RETURN(0);
2182         case LLOG_ORIGIN_HANDLE_CREATE:
2183                 req_capsule_set(&req->rq_pill, &RQF_LLOG_ORIGIN_HANDLE_CREATE);
2184                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
2185                         RETURN(0);
2186                 rc = llog_origin_handle_open(req);
2187                 ldlm_callback_reply(req, rc);
2188                 RETURN(0);
2189         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
2190                 req_capsule_set(&req->rq_pill,
2191                                 &RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK);
2192                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
2193                         RETURN(0);
2194                 rc = llog_origin_handle_next_block(req);
2195                 ldlm_callback_reply(req, rc);
2196                 RETURN(0);
2197         case LLOG_ORIGIN_HANDLE_READ_HEADER:
2198                 req_capsule_set(&req->rq_pill,
2199                                 &RQF_LLOG_ORIGIN_HANDLE_READ_HEADER);
2200                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
2201                         RETURN(0);
2202                 rc = llog_origin_handle_read_header(req);
2203                 ldlm_callback_reply(req, rc);
2204                 RETURN(0);
2205         case LLOG_ORIGIN_HANDLE_CLOSE:
2206                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
2207                         RETURN(0);
2208                 rc = llog_origin_handle_close(req);
2209                 ldlm_callback_reply(req, rc);
2210                 RETURN(0);
2211         case OBD_QC_CALLBACK:
2212                 req_capsule_set(&req->rq_pill, &RQF_QC_CALLBACK);
2213                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_QC_CALLBACK_NET))
2214                         RETURN(0);
2215                 rc = ldlm_handle_qc_callback(req);
2216                 ldlm_callback_reply(req, rc);
2217                 RETURN(0);
2218         default:
2219                 CERROR("unknown opcode %u\n",
2220                        lustre_msg_get_opc(req->rq_reqmsg));
2221                 ldlm_callback_reply(req, -EPROTO);
2222                 RETURN(0);
2223         }
2224
2225         ns = req->rq_export->exp_obd->obd_namespace;
2226         LASSERT(ns != NULL);
2227
2228         req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2229
2230         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2231         if (dlm_req == NULL) {
2232                 rc = ldlm_callback_reply(req, -EPROTO);
2233                 ldlm_callback_errmsg(req, "Operate without parameter", rc,
2234                                      NULL);
2235                 RETURN(0);
2236         }
2237
2238         /* Force a known safe race, send a cancel to the server for a lock
2239          * which the server has already started a blocking callback on. */
2240         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_BL_CB_RACE) &&
2241             lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK) {
2242                 rc = ldlm_cli_cancel(&dlm_req->lock_handle[0], 0);
2243                 if (rc < 0)
2244                         CERROR("ldlm_cli_cancel: %d\n", rc);
2245         }
2246
2247         lock = ldlm_handle2lock_long(&dlm_req->lock_handle[0], 0);
2248         if (!lock) {
2249                 CDEBUG(D_DLMTRACE, "callback on lock "LPX64" - lock "
2250                        "disappeared\n", dlm_req->lock_handle[0].cookie);
2251                 rc = ldlm_callback_reply(req, -EINVAL);
2252                 ldlm_callback_errmsg(req, "Operate with invalid parameter", rc,
2253                                      &dlm_req->lock_handle[0]);
2254                 RETURN(0);
2255         }
2256
2257         if (ldlm_is_fail_loc(lock) &&
2258             lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK)
2259                 OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
2260
2261         /* Copy hints/flags (e.g. LDLM_FL_DISCARD_DATA) from AST. */
2262         lock_res_and_lock(lock);
2263         lock->l_flags |= ldlm_flags_from_wire(dlm_req->lock_flags &
2264                                               LDLM_FL_AST_MASK);
2265         if (lustre_msg_get_opc(req->rq_reqmsg) == LDLM_BL_CALLBACK) {
2266                 /* If somebody cancels lock and cache is already dropped,
2267                  * or lock is failed before cp_ast received on client,
2268                  * we can tell the server we have no lock. Otherwise, we
2269                  * should send cancel after dropping the cache. */
2270                 if ((ldlm_is_canceling(lock) && ldlm_is_bl_done(lock)) ||
2271                     ldlm_is_failed(lock)) {
2272                         LDLM_DEBUG(lock, "callback on lock "
2273                                    LPX64" - lock disappeared\n",
2274                                    dlm_req->lock_handle[0].cookie);
2275                         unlock_res_and_lock(lock);
2276                         LDLM_LOCK_RELEASE(lock);
2277                         rc = ldlm_callback_reply(req, -EINVAL);
2278                         ldlm_callback_errmsg(req, "Operate on stale lock", rc,
2279                                              &dlm_req->lock_handle[0]);
2280                         RETURN(0);
2281                 }
2282                 /* BL_AST locks are not needed in LRU.
2283                  * Let ldlm_cancel_lru() be fast. */
2284                 ldlm_lock_remove_from_lru(lock);
2285                 ldlm_set_bl_ast(lock);
2286         }
2287         unlock_res_and_lock(lock);
2288
2289         /* We want the ost thread to get this reply so that it can respond
2290          * to ost requests (write cache writeback) that might be triggered
2291          * in the callback.
2292          *
2293          * But we'd also like to be able to indicate in the reply that we're
2294          * cancelling right now, because it's unused, or have an intent result
2295          * in the reply, so we might have to push the responsibility for sending
2296          * the reply down into the AST handlers, alas. */
2297
2298         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2299         case LDLM_BL_CALLBACK:
2300                 CDEBUG(D_INODE, "blocking ast\n");
2301                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_BL_CALLBACK);
2302                 if (!ldlm_is_cancel_on_block(lock)) {
2303                         rc = ldlm_callback_reply(req, 0);
2304                         if (req->rq_no_reply || rc)
2305                                 ldlm_callback_errmsg(req, "Normal process", rc,
2306                                                      &dlm_req->lock_handle[0]);
2307                 }
2308                 if (ldlm_bl_to_thread_lock(ns, &dlm_req->lock_desc, lock))
2309                         ldlm_handle_bl_callback(ns, &dlm_req->lock_desc, lock);
2310                 break;
2311         case LDLM_CP_CALLBACK:
2312                 CDEBUG(D_INODE, "completion ast\n");
2313                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_CP_CALLBACK);
2314                 ldlm_callback_reply(req, 0);
2315                 ldlm_handle_cp_callback(req, ns, dlm_req, lock);
2316                 break;
2317         case LDLM_GL_CALLBACK:
2318                 CDEBUG(D_INODE, "glimpse ast\n");
2319                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_GL_CALLBACK);
2320                 ldlm_handle_gl_callback(req, ns, dlm_req, lock);
2321                 break;
2322         default:
2323                 LBUG();                         /* checked above */
2324         }
2325
2326         RETURN(0);
2327 }
2328
2329 #ifdef HAVE_SERVER_SUPPORT
2330 /**
2331  * Main handler for canceld thread.
2332  *
2333  * Separated into its own thread to avoid deadlocks.
2334  */
2335 static int ldlm_cancel_handler(struct ptlrpc_request *req)
2336 {
2337         int rc;
2338         ENTRY;
2339
2340         /* Requests arrive in sender's byte order.  The ptlrpc service
2341          * handler has already checked and, if necessary, byte-swapped the
2342          * incoming request message body, but I am responsible for the
2343          * message buffers. */
2344
2345         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2346
2347         if (req->rq_export == NULL) {
2348                 struct ldlm_request *dlm_req;
2349
2350                 CERROR("%s from %s arrived at %lu with bad export cookie "
2351                        LPU64"\n",
2352                        ll_opcode2str(lustre_msg_get_opc(req->rq_reqmsg)),
2353                        libcfs_nid2str(req->rq_peer.nid),
2354                        req->rq_arrival_time.tv_sec,
2355                        lustre_msg_get_handle(req->rq_reqmsg)->cookie);
2356
2357                 if (lustre_msg_get_opc(req->rq_reqmsg) == LDLM_CANCEL) {
2358                         req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2359                         dlm_req = req_capsule_client_get(&req->rq_pill,
2360                                                          &RMF_DLM_REQ);
2361                         if (dlm_req != NULL)
2362                                 ldlm_lock_dump_handle(D_ERROR,
2363                                                       &dlm_req->lock_handle[0]);
2364                 }
2365                 ldlm_callback_reply(req, -ENOTCONN);
2366                 RETURN(0);
2367         }
2368
2369         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
2370
2371         /* XXX FIXME move this back to mds/handler.c, bug 249 */
2372         case LDLM_CANCEL:
2373                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2374                 CDEBUG(D_INODE, "cancel\n");
2375                 if (CFS_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_NET) ||
2376                     CFS_FAIL_CHECK(OBD_FAIL_PTLRPC_CANCEL_RESEND))
2377                         RETURN(0);
2378                 rc = ldlm_handle_cancel(req);
2379                 if (rc)
2380                         break;
2381                 RETURN(0);
2382         default:
2383                 CERROR("invalid opcode %d\n",
2384                        lustre_msg_get_opc(req->rq_reqmsg));
2385                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CALLBACK);
2386                 ldlm_callback_reply(req, -EINVAL);
2387         }
2388
2389         RETURN(0);
2390 }
2391
2392 static int ldlm_cancel_hpreq_lock_match(struct ptlrpc_request *req,
2393                                         struct ldlm_lock *lock)
2394 {
2395         struct ldlm_request *dlm_req;
2396         struct lustre_handle lockh;
2397         int rc = 0;
2398         int i;
2399         ENTRY;
2400
2401         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2402         if (dlm_req == NULL)
2403                 RETURN(0);
2404
2405         ldlm_lock2handle(lock, &lockh);
2406         for (i = 0; i < dlm_req->lock_count; i++) {
2407                 if (lustre_handle_equal(&dlm_req->lock_handle[i],
2408                                         &lockh)) {
2409                         DEBUG_REQ(D_RPCTRACE, req,
2410                                   "Prio raised by lock "LPX64".", lockh.cookie);
2411
2412                         rc = 1;
2413                         break;
2414                 }
2415         }
2416
2417         RETURN(rc);
2418
2419 }
2420
2421 static int ldlm_cancel_hpreq_check(struct ptlrpc_request *req)
2422 {
2423         struct ldlm_request *dlm_req;
2424         int rc = 0;
2425         int i;
2426         ENTRY;
2427
2428         /* no prolong in recovery */
2429         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
2430                 RETURN(0);
2431
2432         dlm_req = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2433         if (dlm_req == NULL)
2434                 RETURN(-EFAULT);
2435
2436         for (i = 0; i < dlm_req->lock_count; i++) {
2437                 struct ldlm_lock *lock;
2438
2439                 lock = ldlm_handle2lock(&dlm_req->lock_handle[i]);
2440                 if (lock == NULL)
2441                         continue;
2442
2443                 rc = ldlm_is_ast_sent(lock) ? 1 : 0;
2444                 if (rc)
2445                         LDLM_DEBUG(lock, "hpreq cancel lock");
2446                 LDLM_LOCK_PUT(lock);
2447
2448                 if (rc)
2449                         break;
2450         }
2451
2452         RETURN(rc);
2453 }
2454
2455 static struct ptlrpc_hpreq_ops ldlm_cancel_hpreq_ops = {
2456         .hpreq_lock_match = ldlm_cancel_hpreq_lock_match,
2457         .hpreq_check      = ldlm_cancel_hpreq_check,
2458         .hpreq_fini       = NULL,
2459 };
2460
2461 static int ldlm_hpreq_handler(struct ptlrpc_request *req)
2462 {
2463         ENTRY;
2464
2465         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
2466
2467         if (req->rq_export == NULL)
2468                 RETURN(0);
2469
2470         if (LDLM_CANCEL == lustre_msg_get_opc(req->rq_reqmsg)) {
2471                 req_capsule_set(&req->rq_pill, &RQF_LDLM_CANCEL);
2472                 req->rq_ops = &ldlm_cancel_hpreq_ops;
2473         }
2474         RETURN(0);
2475 }
2476
2477 static int ldlm_revoke_lock_cb(cfs_hash_t *hs, cfs_hash_bd_t *bd,
2478                                struct hlist_node *hnode, void *data)
2479
2480 {
2481         struct list_head         *rpc_list = data;
2482         struct ldlm_lock   *lock = cfs_hash_object(hs, hnode);
2483
2484         lock_res_and_lock(lock);
2485
2486         if (lock->l_req_mode != lock->l_granted_mode) {
2487                 unlock_res_and_lock(lock);
2488                 return 0;
2489         }
2490
2491         LASSERT(lock->l_resource);
2492         if (lock->l_resource->lr_type != LDLM_IBITS &&
2493             lock->l_resource->lr_type != LDLM_PLAIN) {
2494                 unlock_res_and_lock(lock);
2495                 return 0;
2496         }
2497
2498         if (ldlm_is_ast_sent(lock)) {
2499                 unlock_res_and_lock(lock);
2500                 return 0;
2501         }
2502
2503         LASSERT(lock->l_blocking_ast);
2504         LASSERT(!lock->l_blocking_lock);
2505
2506         ldlm_set_ast_sent(lock);
2507         if (lock->l_export && lock->l_export->exp_lock_hash) {
2508                 /* NB: it's safe to call cfs_hash_del() even lock isn't
2509                  * in exp_lock_hash. */
2510                 /* In the function below, .hs_keycmp resolves to
2511                  * ldlm_export_lock_keycmp() */
2512                 /* coverity[overrun-buffer-val] */
2513                 cfs_hash_del(lock->l_export->exp_lock_hash,
2514                              &lock->l_remote_handle, &lock->l_exp_hash);
2515         }
2516
2517         list_add_tail(&lock->l_rk_ast, rpc_list);
2518         LDLM_LOCK_GET(lock);
2519
2520         unlock_res_and_lock(lock);
2521         return 0;
2522 }
2523
2524 void ldlm_revoke_export_locks(struct obd_export *exp)
2525 {
2526         struct list_head  rpc_list;
2527         ENTRY;
2528
2529         INIT_LIST_HEAD(&rpc_list);
2530         cfs_hash_for_each_empty(exp->exp_lock_hash,
2531                                 ldlm_revoke_lock_cb, &rpc_list);
2532         ldlm_run_ast_work(exp->exp_obd->obd_namespace, &rpc_list,
2533                           LDLM_WORK_REVOKE_AST);
2534
2535         EXIT;
2536 }
2537 EXPORT_SYMBOL(ldlm_revoke_export_locks);
2538 #endif /* HAVE_SERVER_SUPPORT */
2539
2540 static struct ldlm_bl_work_item *ldlm_bl_get_work(struct ldlm_bl_pool *blp)
2541 {
2542         struct ldlm_bl_work_item *blwi = NULL;
2543         static unsigned int num_bl = 0;
2544
2545         spin_lock(&blp->blp_lock);
2546         /* process a request from the blp_list at least every blp_num_threads */
2547         if (!list_empty(&blp->blp_list) &&
2548             (list_empty(&blp->blp_prio_list) || num_bl == 0))
2549                 blwi = list_entry(blp->blp_list.next,
2550                                   struct ldlm_bl_work_item, blwi_entry);
2551         else
2552                 if (!list_empty(&blp->blp_prio_list))
2553                         blwi = list_entry(blp->blp_prio_list.next,
2554                                           struct ldlm_bl_work_item,
2555                                           blwi_entry);
2556
2557         if (blwi) {
2558                 if (++num_bl >= atomic_read(&blp->blp_num_threads))
2559                         num_bl = 0;
2560                 list_del(&blwi->blwi_entry);
2561         }
2562         spin_unlock(&blp->blp_lock);
2563
2564         return blwi;
2565 }
2566
2567 /* This only contains temporary data until the thread starts */
2568 struct ldlm_bl_thread_data {
2569         char                    bltd_name[CFS_CURPROC_COMM_MAX];
2570         struct ldlm_bl_pool     *bltd_blp;
2571         struct completion       bltd_comp;
2572         int                     bltd_num;
2573 };
2574
2575 static int ldlm_bl_thread_main(void *arg);
2576
2577 static int ldlm_bl_thread_start(struct ldlm_bl_pool *blp)
2578 {
2579         struct ldlm_bl_thread_data bltd = { .bltd_blp = blp };
2580         struct task_struct *task;
2581
2582         init_completion(&bltd.bltd_comp);
2583         bltd.bltd_num = atomic_read(&blp->blp_num_threads);
2584         snprintf(bltd.bltd_name, sizeof(bltd.bltd_name) - 1,
2585                 "ldlm_bl_%02d", bltd.bltd_num);
2586         task = kthread_run(ldlm_bl_thread_main, &bltd, bltd.bltd_name);
2587         if (IS_ERR(task)) {
2588                 CERROR("cannot start LDLM thread ldlm_bl_%02d: rc %ld\n",
2589                        atomic_read(&blp->blp_num_threads), PTR_ERR(task));
2590                 return PTR_ERR(task);
2591         }
2592         wait_for_completion(&bltd.bltd_comp);
2593
2594         return 0;
2595 }
2596
2597 /**
2598  * Main blocking requests processing thread.
2599  *
2600  * Callers put locks into its queue by calling ldlm_bl_to_thread.
2601  * This thread in the end ends up doing actual call to ->l_blocking_ast
2602  * for queued locks.
2603  */
2604 static int ldlm_bl_thread_main(void *arg)
2605 {
2606         struct ldlm_bl_pool *blp;
2607         struct ldlm_bl_thread_data *bltd = arg;
2608         ENTRY;
2609
2610         blp = bltd->bltd_blp;
2611
2612         atomic_inc(&blp->blp_num_threads);
2613         atomic_inc(&blp->blp_busy_threads);
2614
2615         complete(&bltd->bltd_comp);
2616         /* cannot use bltd after this, it is only on caller's stack */
2617
2618         while (1) {
2619                 struct l_wait_info lwi = { 0 };
2620                 struct ldlm_bl_work_item *blwi = NULL;
2621                 int busy;
2622
2623                 blwi = ldlm_bl_get_work(blp);
2624
2625                 if (blwi == NULL) {
2626                         atomic_dec(&blp->blp_busy_threads);
2627                         l_wait_event_exclusive(blp->blp_waitq,
2628                                          (blwi = ldlm_bl_get_work(blp)) != NULL,
2629                                          &lwi);
2630                         busy = atomic_inc_return(&blp->blp_busy_threads);
2631                 } else {
2632                         busy = atomic_read(&blp->blp_busy_threads);
2633                 }
2634
2635                 if (blwi->blwi_ns == NULL)
2636                         /* added by ldlm_cleanup() */
2637                         break;
2638
2639                 /* Not fatal if racy and have a few too many threads */
2640                 if (unlikely(busy < blp->blp_max_threads &&
2641                              busy >= atomic_read(&blp->blp_num_threads) &&
2642                              !blwi->blwi_mem_pressure))
2643                         /* discard the return value, we tried */
2644                         ldlm_bl_thread_start(blp);
2645
2646                 if (blwi->blwi_mem_pressure)
2647                         memory_pressure_set();
2648
2649                 OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL2, 4);
2650
2651                 if (blwi->blwi_count) {
2652                         int count;
2653                         /* The special case when we cancel locks in LRU
2654                          * asynchronously, we pass the list of locks here.
2655                          * Thus locks are marked LDLM_FL_CANCELING, but NOT
2656                          * canceled locally yet. */
2657                         count = ldlm_cli_cancel_list_local(&blwi->blwi_head,
2658                                                            blwi->blwi_count,
2659                                                            LCF_BL_AST);
2660                         ldlm_cli_cancel_list(&blwi->blwi_head, count, NULL,
2661                                              blwi->blwi_flags);
2662                 } else {
2663                         ldlm_handle_bl_callback(blwi->blwi_ns, &blwi->blwi_ld,
2664                                                 blwi->blwi_lock);
2665                 }
2666                 if (blwi->blwi_mem_pressure)
2667                         memory_pressure_clr();
2668
2669                 if (blwi->blwi_flags & LCF_ASYNC)
2670                         OBD_FREE(blwi, sizeof(*blwi));
2671                 else
2672                         complete(&blwi->blwi_comp);
2673         }
2674
2675         atomic_dec(&blp->blp_busy_threads);
2676         atomic_dec(&blp->blp_num_threads);
2677         complete(&blp->blp_comp);
2678         RETURN(0);
2679 }
2680
2681
2682 static int ldlm_setup(void);
2683 static int ldlm_cleanup(void);
2684
2685 int ldlm_get_ref(void)
2686 {
2687         int rc = 0;
2688         ENTRY;
2689         mutex_lock(&ldlm_ref_mutex);
2690         if (++ldlm_refcount == 1) {
2691                 rc = ldlm_setup();
2692                 if (rc)
2693                         ldlm_refcount--;
2694         }
2695         mutex_unlock(&ldlm_ref_mutex);
2696
2697         RETURN(rc);
2698 }
2699
2700 void ldlm_put_ref(void)
2701 {
2702         ENTRY;
2703         mutex_lock(&ldlm_ref_mutex);
2704         if (ldlm_refcount == 1) {
2705                 int rc = ldlm_cleanup();
2706                 if (rc)
2707                         CERROR("ldlm_cleanup failed: %d\n", rc);
2708                 else
2709                         ldlm_refcount--;
2710         } else {
2711                 ldlm_refcount--;
2712         }
2713         mutex_unlock(&ldlm_ref_mutex);
2714
2715         EXIT;
2716 }
2717
2718 /*
2719  * Export handle<->lock hash operations.
2720  */
2721 static unsigned
2722 ldlm_export_lock_hash(cfs_hash_t *hs, const void *key, unsigned mask)
2723 {
2724         return cfs_hash_u64_hash(((struct lustre_handle *)key)->cookie, mask);
2725 }
2726
2727 static void *
2728 ldlm_export_lock_key(struct hlist_node *hnode)
2729 {
2730         struct ldlm_lock *lock;
2731
2732         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2733         return &lock->l_remote_handle;
2734 }
2735
2736 static void
2737 ldlm_export_lock_keycpy(struct hlist_node *hnode, void *key)
2738 {
2739         struct ldlm_lock     *lock;
2740
2741         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2742         lock->l_remote_handle = *(struct lustre_handle *)key;
2743 }
2744
2745 static int
2746 ldlm_export_lock_keycmp(const void *key, struct hlist_node *hnode)
2747 {
2748         return lustre_handle_equal(ldlm_export_lock_key(hnode), key);
2749 }
2750
2751 static void *
2752 ldlm_export_lock_object(struct hlist_node *hnode)
2753 {
2754         return hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2755 }
2756
2757 static void
2758 ldlm_export_lock_get(cfs_hash_t *hs, struct hlist_node *hnode)
2759 {
2760         struct ldlm_lock *lock;
2761
2762         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2763         LDLM_LOCK_GET(lock);
2764 }
2765
2766 static void
2767 ldlm_export_lock_put(cfs_hash_t *hs, struct hlist_node *hnode)
2768 {
2769         struct ldlm_lock *lock;
2770
2771         lock = hlist_entry(hnode, struct ldlm_lock, l_exp_hash);
2772         LDLM_LOCK_RELEASE(lock);
2773 }
2774
2775 static cfs_hash_ops_t ldlm_export_lock_ops = {
2776         .hs_hash        = ldlm_export_lock_hash,
2777         .hs_key         = ldlm_export_lock_key,
2778         .hs_keycmp      = ldlm_export_lock_keycmp,
2779         .hs_keycpy      = ldlm_export_lock_keycpy,
2780         .hs_object      = ldlm_export_lock_object,
2781         .hs_get         = ldlm_export_lock_get,
2782         .hs_put         = ldlm_export_lock_put,
2783         .hs_put_locked  = ldlm_export_lock_put,
2784 };
2785
2786 int ldlm_init_export(struct obd_export *exp)
2787 {
2788         int rc;
2789         ENTRY;
2790
2791         exp->exp_lock_hash =
2792                 cfs_hash_create(obd_uuid2str(&exp->exp_client_uuid),
2793                                 HASH_EXP_LOCK_CUR_BITS,
2794                                 HASH_EXP_LOCK_MAX_BITS,
2795                                 HASH_EXP_LOCK_BKT_BITS, 0,
2796                                 CFS_HASH_MIN_THETA, CFS_HASH_MAX_THETA,
2797                                 &ldlm_export_lock_ops,
2798                                 CFS_HASH_DEFAULT | CFS_HASH_REHASH_KEY |
2799                                 CFS_HASH_NBLK_CHANGE);
2800
2801         if (!exp->exp_lock_hash)
2802                 RETURN(-ENOMEM);
2803
2804         rc = ldlm_init_flock_export(exp);
2805         if (rc)
2806                 GOTO(err, rc);
2807
2808         RETURN(0);
2809 err:
2810         ldlm_destroy_export(exp);
2811         RETURN(rc);
2812 }
2813 EXPORT_SYMBOL(ldlm_init_export);
2814
2815 void ldlm_destroy_export(struct obd_export *exp)
2816 {
2817         ENTRY;
2818         cfs_hash_putref(exp->exp_lock_hash);
2819         exp->exp_lock_hash = NULL;
2820
2821         ldlm_destroy_flock_export(exp);
2822         EXIT;
2823 }
2824 EXPORT_SYMBOL(ldlm_destroy_export);
2825
2826 static int ldlm_setup(void)
2827 {
2828         static struct ptlrpc_service_conf       conf;
2829         struct ldlm_bl_pool                    *blp = NULL;
2830 #ifdef HAVE_SERVER_SUPPORT
2831         struct task_struct *task;
2832 #endif /* HAVE_SERVER_SUPPORT */
2833         int i;
2834         int rc = 0;
2835
2836         ENTRY;
2837
2838         if (ldlm_state != NULL)
2839                 RETURN(-EALREADY);
2840
2841         OBD_ALLOC(ldlm_state, sizeof(*ldlm_state));
2842         if (ldlm_state == NULL)
2843                 RETURN(-ENOMEM);
2844
2845 #ifdef CONFIG_PROC_FS
2846         rc = ldlm_proc_setup();
2847         if (rc != 0)
2848                 GOTO(out, rc);
2849 #endif /* CONFIG_PROC_FS */
2850
2851         memset(&conf, 0, sizeof(conf));
2852         conf = (typeof(conf)) {
2853                 .psc_name               = "ldlm_cbd",
2854                 .psc_watchdog_factor    = 2,
2855                 .psc_buf                = {
2856                         .bc_nbufs               = LDLM_CLIENT_NBUFS,
2857                         .bc_buf_size            = LDLM_BUFSIZE,
2858                         .bc_req_max_size        = LDLM_MAXREQSIZE,
2859                         .bc_rep_max_size        = LDLM_MAXREPSIZE,
2860                         .bc_req_portal          = LDLM_CB_REQUEST_PORTAL,
2861                         .bc_rep_portal          = LDLM_CB_REPLY_PORTAL,
2862                 },
2863                 .psc_thr                = {
2864                         .tc_thr_name            = "ldlm_cb",
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 | LCT_DT_THREAD,
2872                 },
2873                 .psc_cpt                = {
2874                         .cc_pattern             = ldlm_cpts,
2875                 },
2876                 .psc_ops                = {
2877                         .so_req_handler         = ldlm_callback_handler,
2878                 },
2879         };
2880         ldlm_state->ldlm_cb_service = \
2881                         ptlrpc_register_service(&conf, ldlm_svc_proc_dir);
2882         if (IS_ERR(ldlm_state->ldlm_cb_service)) {
2883                 CERROR("failed to start service\n");
2884                 rc = PTR_ERR(ldlm_state->ldlm_cb_service);
2885                 ldlm_state->ldlm_cb_service = NULL;
2886                 GOTO(out, rc);
2887         }
2888
2889 #ifdef HAVE_SERVER_SUPPORT
2890         memset(&conf, 0, sizeof(conf));
2891         conf = (typeof(conf)) {
2892                 .psc_name               = "ldlm_canceld",
2893                 .psc_watchdog_factor    = 6,
2894                 .psc_buf                = {
2895                         .bc_nbufs               = LDLM_SERVER_NBUFS,
2896                         .bc_buf_size            = LDLM_BUFSIZE,
2897                         .bc_req_max_size        = LDLM_MAXREQSIZE,
2898                         .bc_rep_max_size        = LDLM_MAXREPSIZE,
2899                         .bc_req_portal          = LDLM_CANCEL_REQUEST_PORTAL,
2900                         .bc_rep_portal          = LDLM_CANCEL_REPLY_PORTAL,
2901
2902                 },
2903                 .psc_thr                = {
2904                         .tc_thr_name            = "ldlm_cn",
2905                         .tc_thr_factor          = LDLM_THR_FACTOR,
2906                         .tc_nthrs_init          = LDLM_NTHRS_INIT,
2907                         .tc_nthrs_base          = LDLM_NTHRS_BASE,
2908                         .tc_nthrs_max           = LDLM_NTHRS_MAX,
2909                         .tc_nthrs_user          = ldlm_num_threads,
2910                         .tc_cpu_affinity        = 1,
2911                         .tc_ctx_tags            = LCT_MD_THREAD | \
2912                                                   LCT_DT_THREAD | \
2913                                                   LCT_CL_THREAD,
2914                 },
2915                 .psc_cpt                = {
2916                         .cc_pattern             = ldlm_cpts,
2917                 },
2918                 .psc_ops                = {
2919                         .so_req_handler         = ldlm_cancel_handler,
2920                         .so_hpreq_handler       = ldlm_hpreq_handler,
2921                 },
2922         };
2923         ldlm_state->ldlm_cancel_service = \
2924                         ptlrpc_register_service(&conf, ldlm_svc_proc_dir);
2925         if (IS_ERR(ldlm_state->ldlm_cancel_service)) {
2926                 CERROR("failed to start service\n");
2927                 rc = PTR_ERR(ldlm_state->ldlm_cancel_service);
2928                 ldlm_state->ldlm_cancel_service = NULL;
2929                 GOTO(out, rc);
2930         }
2931 #endif /* HAVE_SERVER_SUPPORT */
2932
2933         OBD_ALLOC(blp, sizeof(*blp));
2934         if (blp == NULL)
2935                 GOTO(out, rc = -ENOMEM);
2936         ldlm_state->ldlm_bl_pool = blp;
2937
2938         spin_lock_init(&blp->blp_lock);
2939         INIT_LIST_HEAD(&blp->blp_list);
2940         INIT_LIST_HEAD(&blp->blp_prio_list);
2941         init_waitqueue_head(&blp->blp_waitq);
2942         atomic_set(&blp->blp_num_threads, 0);
2943         atomic_set(&blp->blp_busy_threads, 0);
2944
2945         if (ldlm_num_threads == 0) {
2946                 blp->blp_min_threads = LDLM_NTHRS_INIT;
2947                 blp->blp_max_threads = LDLM_NTHRS_MAX;
2948         } else {
2949                 blp->blp_min_threads = blp->blp_max_threads = \
2950                         min_t(int, LDLM_NTHRS_MAX, max_t(int, LDLM_NTHRS_INIT,
2951                                                          ldlm_num_threads));
2952         }
2953
2954         for (i = 0; i < blp->blp_min_threads; i++) {
2955                 rc = ldlm_bl_thread_start(blp);
2956                 if (rc < 0)
2957                         GOTO(out, rc);
2958         }
2959
2960 #ifdef HAVE_SERVER_SUPPORT
2961         INIT_LIST_HEAD(&expired_lock_thread.elt_expired_locks);
2962         expired_lock_thread.elt_state = ELT_STOPPED;
2963         init_waitqueue_head(&expired_lock_thread.elt_waitq);
2964
2965         INIT_LIST_HEAD(&waiting_locks_list);
2966         spin_lock_init(&waiting_locks_spinlock);
2967         cfs_timer_init(&waiting_locks_timer, waiting_locks_callback, NULL);
2968
2969         task = kthread_run(expired_lock_main, NULL, "ldlm_elt");
2970         if (IS_ERR(task)) {
2971                 rc = PTR_ERR(task);
2972                 CERROR("Cannot start ldlm expired-lock thread: %d\n", rc);
2973                 GOTO(out, rc);
2974         }
2975
2976         wait_event(expired_lock_thread.elt_waitq,
2977                        expired_lock_thread.elt_state == ELT_READY);
2978 #endif /* HAVE_SERVER_SUPPORT */
2979
2980         rc = ldlm_pools_init();
2981         if (rc) {
2982                 CERROR("Failed to initialize LDLM pools: %d\n", rc);
2983                 GOTO(out, rc);
2984         }
2985         RETURN(0);
2986
2987  out:
2988         ldlm_cleanup();
2989         RETURN(rc);
2990 }
2991
2992 static int ldlm_cleanup(void)
2993 {
2994         ENTRY;
2995
2996         if (!list_empty(ldlm_namespace_list(LDLM_NAMESPACE_SERVER)) ||
2997             !list_empty(ldlm_namespace_list(LDLM_NAMESPACE_CLIENT))) {
2998                 CERROR("ldlm still has namespaces; clean these up first.\n");
2999                 ldlm_dump_all_namespaces(LDLM_NAMESPACE_SERVER, D_DLMTRACE);
3000                 ldlm_dump_all_namespaces(LDLM_NAMESPACE_CLIENT, D_DLMTRACE);
3001                 RETURN(-EBUSY);
3002         }
3003
3004         ldlm_pools_fini();
3005
3006         if (ldlm_state->ldlm_bl_pool != NULL) {
3007                 struct ldlm_bl_pool *blp = ldlm_state->ldlm_bl_pool;
3008
3009                 while (atomic_read(&blp->blp_num_threads) > 0) {
3010                         struct ldlm_bl_work_item blwi = { .blwi_ns = NULL };
3011
3012                         init_completion(&blp->blp_comp);
3013
3014                         spin_lock(&blp->blp_lock);
3015                         list_add_tail(&blwi.blwi_entry, &blp->blp_list);
3016                         wake_up(&blp->blp_waitq);
3017                         spin_unlock(&blp->blp_lock);
3018
3019                         wait_for_completion(&blp->blp_comp);
3020                 }
3021
3022                 OBD_FREE(blp, sizeof(*blp));
3023         }
3024
3025         if (ldlm_state->ldlm_cb_service != NULL)
3026                 ptlrpc_unregister_service(ldlm_state->ldlm_cb_service);
3027 #ifdef HAVE_SERVER_SUPPORT
3028         if (ldlm_state->ldlm_cancel_service != NULL)
3029                 ptlrpc_unregister_service(ldlm_state->ldlm_cancel_service);
3030 #endif
3031
3032         ldlm_proc_cleanup();
3033
3034 #ifdef HAVE_SERVER_SUPPORT
3035         if (expired_lock_thread.elt_state != ELT_STOPPED) {
3036                 expired_lock_thread.elt_state = ELT_TERMINATE;
3037                 wake_up(&expired_lock_thread.elt_waitq);
3038                 wait_event(expired_lock_thread.elt_waitq,
3039                                expired_lock_thread.elt_state == ELT_STOPPED);
3040         }
3041 #endif
3042
3043         OBD_FREE(ldlm_state, sizeof(*ldlm_state));
3044         ldlm_state = NULL;
3045
3046         RETURN(0);
3047 }
3048
3049 int ldlm_init(void)
3050 {
3051         mutex_init(&ldlm_ref_mutex);
3052         mutex_init(ldlm_namespace_lock(LDLM_NAMESPACE_SERVER));
3053         mutex_init(ldlm_namespace_lock(LDLM_NAMESPACE_CLIENT));
3054
3055         INIT_LIST_HEAD(&ldlm_srv_namespace_list);
3056         INIT_LIST_HEAD(&ldlm_cli_active_namespace_list);
3057         INIT_LIST_HEAD(&ldlm_cli_inactive_namespace_list);
3058
3059         ldlm_resource_slab = kmem_cache_create("ldlm_resources",
3060                                                sizeof(struct ldlm_resource), 0,
3061                                                SLAB_HWCACHE_ALIGN, NULL);
3062         if (ldlm_resource_slab == NULL)
3063                 return -ENOMEM;
3064
3065         ldlm_lock_slab = kmem_cache_create("ldlm_locks",
3066                               sizeof(struct ldlm_lock), 0,
3067                               SLAB_HWCACHE_ALIGN | SLAB_DESTROY_BY_RCU, NULL);
3068         if (ldlm_lock_slab == NULL) {
3069                 kmem_cache_destroy(ldlm_resource_slab);
3070                 return -ENOMEM;
3071         }
3072
3073         ldlm_interval_slab = kmem_cache_create("interval_node",
3074                                         sizeof(struct ldlm_interval),
3075                                         0, SLAB_HWCACHE_ALIGN, NULL);
3076         if (ldlm_interval_slab == NULL) {
3077                 kmem_cache_destroy(ldlm_resource_slab);
3078                 kmem_cache_destroy(ldlm_lock_slab);
3079                 return -ENOMEM;
3080         }
3081 #if LUSTRE_TRACKS_LOCK_EXP_REFS
3082         class_export_dump_hook = ldlm_dump_export_locks;
3083 #endif
3084         return 0;
3085 }
3086
3087 void ldlm_exit(void)
3088 {
3089         if (ldlm_refcount)
3090                 CERROR("ldlm_refcount is %d in ldlm_exit!\n", ldlm_refcount);
3091         kmem_cache_destroy(ldlm_resource_slab);
3092         /* ldlm_lock_put() use RCU to call ldlm_lock_free, so need call
3093          * synchronize_rcu() to wait a grace period elapsed, so that
3094          * ldlm_lock_free() get a chance to be called. */
3095         synchronize_rcu();
3096         kmem_cache_destroy(ldlm_lock_slab);
3097         kmem_cache_destroy(ldlm_interval_slab);
3098 }