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