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