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